From 3dc535f7d1c044d58aa40129e23f7697a3d30737 Mon Sep 17 00:00:00 2001 From: Nour-Cheour10 Date: Wed, 19 Jun 2024 15:35:37 +0200 Subject: [PATCH 01/21] fix map css+ implement HeatmapLayer --- examples/introduction.ipynb | 255 +-- ipyopenlayers/Map.py | 32 + package.json | 1 + ui-tests/tests/ipyopenlayers.test.ts | 63 +- yarn.lock | 2799 +++++++++++++++++++++++++- 5 files changed, 2964 insertions(+), 186 deletions(-) diff --git a/examples/introduction.ipynb b/examples/introduction.ipynb index 6227495..14deed0 100644 --- a/examples/introduction.ipynb +++ b/examples/introduction.ipynb @@ -33,7 +33,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "4c76f387aa9d4970b97a987e4dbae92f", + "model_id": "f3814db2cab84231aad173964f68fbf8", "version_major": 2, "version_minor": 0 }, @@ -89,7 +89,7 @@ { "data": { "text/plain": [ - "2.0" + "3.83605035505807" ] }, "execution_count": 6, @@ -147,7 +147,7 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -158,7 +158,7 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -167,7 +167,7 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -176,7 +176,7 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -187,7 +187,7 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -196,7 +196,7 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -207,7 +207,7 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -217,7 +217,7 @@ }, { "cell_type": "code", - "execution_count": 18, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -226,7 +226,7 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -237,7 +237,7 @@ }, { "cell_type": "code", - "execution_count": 20, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -246,7 +246,7 @@ }, { "cell_type": "code", - "execution_count": 21, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -257,7 +257,7 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -266,7 +266,7 @@ }, { "cell_type": "code", - "execution_count": 23, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -275,7 +275,7 @@ }, { "cell_type": "code", - "execution_count": 24, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -311,7 +311,7 @@ }, { "cell_type": "code", - "execution_count": 25, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -320,7 +320,7 @@ }, { "cell_type": "code", - "execution_count": 26, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -329,7 +329,7 @@ }, { "cell_type": "code", - "execution_count": 27, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -338,30 +338,16 @@ }, { "cell_type": "code", - "execution_count": 28, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "{'type': 'FeatureCollection',\n", - " 'features': [{'type': 'Feature',\n", - " 'geometry': {'type': 'Point', 'coordinates': [0, 0]},\n", - " 'properties': {'name': 'Null Island'}}]}" - ] - }, - "execution_count": 28, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [ "widget.data" ] }, { "cell_type": "code", - "execution_count": 29, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -384,7 +370,7 @@ }, { "cell_type": "code", - "execution_count": 30, + "execution_count": null, "metadata": { "jupyter": { "source_hidden": true @@ -400,21 +386,13 @@ }, { "cell_type": "code", - "execution_count": 31, + "execution_count": null, "metadata": { "jupyter": { "source_hidden": true } }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "20\n" - ] - } - ], + "outputs": [], "source": [ "n_features = len(data[\"features\"])\n", "colors = n_colors(n_features)\n", @@ -423,46 +401,16 @@ }, { "cell_type": "code", - "execution_count": 32, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "['#f7fbff',\n", - " '#edf4fc',\n", - " '#e3eef8',\n", - " '#d8e7f5',\n", - " '#cee0f2',\n", - " '#c2d9ee',\n", - " '#b2d2e8',\n", - " '#a0cbe2',\n", - " '#8cc0dd',\n", - " '#75b4d8',\n", - " '#63a8d3',\n", - " '#519ccc',\n", - " '#4090c5',\n", - " '#3282be',\n", - " '#2474b7',\n", - " '#1966ad',\n", - " '#0e59a2',\n", - " '#084b93',\n", - " '#083d7f',\n", - " '#08306b']" - ] - }, - "execution_count": 32, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [ "colors" ] }, { "cell_type": "code", - "execution_count": 33, + "execution_count": null, "metadata": { "jupyter": { "source_hidden": true @@ -481,60 +429,20 @@ }, { "cell_type": "code", - "execution_count": 34, + "execution_count": null, "metadata": { "jupyter": { "source_hidden": true } }, - "outputs": [ - { - "data": { - "text/plain": [ - "{'geometry': {'type': 'MultiPolygon',\n", - " 'coordinates': [[[[-77.39940577291571, 34.5780540544853],\n", - " [-77.39940610066606, 34.57805427015046],\n", - " [-77.39940640189788, 34.57805446836596],\n", - " [-77.39940680648922, 34.57805473459376],\n", - " [-77.39940687019617, 34.57805477651398],\n", - " [-77.39940689381065, 34.57805472199389],\n", - " [-77.3994073308358, 34.57805432604519],\n", - " [-77.39940731720131, 34.578054179242265],\n", - " [-77.39940728534575, 34.578053836252096],\n", - " [-77.39940728147378, 34.57805380828763],\n", - " [-77.39940726378504, 34.57805363205166],\n", - " [-77.39940725501071, 34.57805361742678],\n", - " [-77.39940719593868, 34.57805349818902],\n", - " [-77.39940711258689, 34.57805350039165],\n", - " [-77.39940706262787, 34.57805349996589],\n", - " [-77.3994070238417, 34.578053501157314],\n", - " [-77.39940689549977, 34.57805350509971],\n", - " [-77.3994068702403, 34.5780535173504],\n", - " [-77.39940683257294, 34.57805352755014],\n", - " [-77.39940665584797, 34.57805351246129],\n", - " [-77.39940650171212, 34.578053517196004],\n", - " [-77.39940646539253, 34.578053518311656],\n", - " [-77.39940610067742, 34.578053945657025]]]]},\n", - " 'type': 'Feature',\n", - " 'id': 'demo0',\n", - " 'properties': {'style': {'color': '#f7fbff',\n", - " 'weight': 1,\n", - " 'fillColor': '#f7fbff',\n", - " 'fillOpacity': 0.5}}}" - ] - }, - "execution_count": 34, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [ "data[\"features\"][0]\n" ] }, { "cell_type": "code", - "execution_count": 35, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -543,7 +451,7 @@ }, { "cell_type": "code", - "execution_count": 36, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -552,7 +460,7 @@ }, { "cell_type": "code", - "execution_count": 37, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -663,6 +571,103 @@ "outputs": [], "source": [] }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "points = [[0, 0]]\n", + "heatmap_layer = HeatmapLayer(blur=20, radius=15, points=points)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "m.add_layer(heatmap_layer)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "points_data_france = [\n", + " [48.8566, 2.3522, 0.8], # Paris\n", + " [45.7640, 4.8357, 0.6], # Lyon\n", + " [43.2965, 5.3698, 0.7], # Marseille\n", + " [43.6045, 1.4442, 0.5], # Toulouse\n", + " [43.7102, 7.2620, 0.4], # Nice\n", + " [47.2184, -1.5536, 0.3], # Nantes\n", + " [48.5734, 7.7521, 0.6], # Strasbourg\n", + " [43.6119, 3.8772, 0.5], # Montpellier\n", + " [44.8378, -0.5792, 0.4], # Bordeaux\n", + " [50.6292, 3.0573, 0.3], # Lille\n", + "]\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "heatmap_layer = HeatmapLayer(blur=20, radius=15, points=points_data_france)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "points_data_france_1 = [\n", + " [42.3656, 9.1493, 16.79], # Haute-Corse\n", + " [43.4527, 6.2649, 16.28], # Var\n", + " [43.6043, 5.0123, 15.93], # Bouches-du-Rhône\n", + " [42.6987, 2.8956, 15.87], # Pyrénées-Orientales\n", + " [43.6119, 3.8772, 15.81], # Hérault\n", + " [41.9264, 8.7364, 15.64], # Corse-du-Sud\n", + " [44.8378, -0.5792, 15.28], # Gironde\n", + " [43.8914, -1.2200, 15.2], # Landes\n", + " [43.9493, 4.8055, 15.17], # Vaucluse\n", + " [44.1004, 1.3555, 14.85], # Tarn-et-Garonne\n", + " [44.3058, 0.6283, 14.85], # Lot-et-Garonne\n", + " [43.6045, 1.4442, 14.75], # Haute-Garonne\n", + " [43.9074, 4.5079, 14.65], # Gard\n", + " [43.6205, 0.5898, 14.52], # Gers\n", + " [43.7102, 7.2620, 14.41], # Alpes-Maritimes\n", + " [45.7515, -0.6331, 14.34], # Charente-Maritime\n", + " [44.6144, 1.9023, 14.05], # Lot\n", + " [43.6043, 2.2344, 13.88], # Tarn\n", + " [43.1566, 2.3605, 13.88], # Aude\n", + " [43.2998, -0.3674, 13.85], # Pyrénées-Atlantiques\n", + " # Continue for other locations as needed\n", + "]\n" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "heatmap_layer1 = HeatmapLayer(blur=20, radius=15, points=points_data_france_1)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "m.add_layer(heatmap_layer1)" + ] + }, { "cell_type": "code", "execution_count": null, diff --git a/ipyopenlayers/Map.py b/ipyopenlayers/Map.py index 1afa787..cdefe4e 100644 --- a/ipyopenlayers/Map.py +++ b/ipyopenlayers/Map.py @@ -38,6 +38,38 @@ class GeoJSON(Layer): data = Dict({}).tag(sync=True) style = Dict({}).tag(sync=True) visible = Bool(True).tag(sync=True) + def __init__(self, **kwargs): + super().__init__(**kwargs) + + self.points = kwargs.get('points', []) + self.blur = kwargs.get('blur', 15) + self.radius = kwargs.get('radius', 8) + +class HeatmapLayer(Layer): + + _view_name = Unicode('HeatmapLayerView').tag(sync=True) + _model_name = Unicode('HeatmapLayerModel').tag(sync=True) + points= List([]).tag(sync=True) + blur =Int(15).tag(sync=True) + radius = Int(8).tag(sync=True) + + + +class HeatmapLayer(Layer): + + _view_name = Unicode('HeatmapLayerView').tag(sync=True) + _model_name = Unicode('HeatmapLayerModel').tag(sync=True) + points= List([]).tag(sync=True) + blur =Int(15).tag(sync=True) + radius = Int(8).tag(sync=True) + def __init__(self, **kwargs): + super().__init__(**kwargs) + + self.points = kwargs.get('points', []) + self.blur = kwargs.get('blur', 15) + self.radius = kwargs.get('radius', 8) + + class HeatmapLayer(Layer): diff --git a/package.json b/package.json index eb7e710..454cde6 100644 --- a/package.json +++ b/package.json @@ -50,6 +50,7 @@ }, "dependencies": { "@jupyter-widgets/base": "^1.1.10 || ^2 || ^3 || ^4 || ^5 || ^6", + "@jupyterlab/galata": "^5.2.2", "ol": "^9.1.0" }, "devDependencies": { diff --git a/ui-tests/tests/ipyopenlayers.test.ts b/ui-tests/tests/ipyopenlayers.test.ts index 647a515..3a33e9c 100644 --- a/ui-tests/tests/ipyopenlayers.test.ts +++ b/ui-tests/tests/ipyopenlayers.test.ts @@ -5,15 +5,21 @@ import { expect, IJupyterLabPageFixture, test } from '@jupyterlab/galata'; import * as path from 'path'; const klaw = require('klaw-sync'); - -const filterUpdateNotebooks = item => { +const filterUpdateNotebooks = (item) => { const basename = path.basename(item.path); return basename.includes('_update'); -} +}; -const testCellOutputs = async (page: IJupyterLabPageFixture, tmpPath: string, theme: 'JupyterLab Light' | 'JupyterLab Dark') => { - const paths = klaw(path.resolve(__dirname, './notebooks'), {filter: item => !filterUpdateNotebooks(item), nodir: true}); - const notebooks = paths.map(item => path.basename(item.path)); +const testCellOutputs = async ( + page: IJupyterLabPageFixture, + tmpPath: string, + theme: 'JupyterLab Light' | 'JupyterLab Dark', +) => { + const paths = klaw(path.resolve(__dirname, './notebooks'), { + filter: (item) => !filterUpdateNotebooks(item), + nodir: true, + }); + const notebooks = paths.map((item) => path.basename(item.path)); const contextPrefix = theme == 'JupyterLab Dark' ? 'light' : 'dark'; if (theme == 'JupyterLab Dark') { @@ -28,7 +34,11 @@ const testCellOutputs = async (page: IJupyterLabPageFixture, tmpPath: string, th let numCellImages = 0; - const getCaptureImageName = (contextPrefix: string, notebook: string, id: number): string => { + const getCaptureImageName = ( + contextPrefix: string, + notebook: string, + id: number, + ): string => { return `${contextPrefix}-${notebook}-cell-${id}.png`; }; @@ -44,22 +54,32 @@ const testCellOutputs = async (page: IJupyterLabPageFixture, tmpPath: string, th results.push(await cell.screenshot()); numCellImages++; } - } + }, }); await page.notebook.save(); for (let c = 0; c < numCellImages; ++c) { - expect(results[c]).toMatchSnapshot(getCaptureImageName(contextPrefix, notebook, c), {threshold: 0.3}); + expect(results[c]).toMatchSnapshot( + getCaptureImageName(contextPrefix, notebook, c), + { threshold: 0.3 }, + ); } await page.notebook.close(true); } -} +}; -const testPlotUpdates = async (page: IJupyterLabPageFixture, tmpPath: string, theme: 'JupyterLab Light' | 'JupyterLab Dark') => { - const paths = klaw(path.resolve(__dirname, './notebooks'), {filter: item => filterUpdateNotebooks(item), nodir: true}); - const notebooks = paths.map(item => path.basename(item.path)); +const testPlotUpdates = async ( + page: IJupyterLabPageFixture, + tmpPath: string, + theme: 'JupyterLab Light' | 'JupyterLab Dark', +) => { + const paths = klaw(path.resolve(__dirname, './notebooks'), { + filter: (item) => filterUpdateNotebooks(item), + nodir: true, + }); + const notebooks = paths.map((item) => path.basename(item.path)); const contextPrefix = theme == 'JupyterLab Light' ? 'light' : 'dark'; if (theme == 'JupyterLab Dark') { @@ -72,7 +92,11 @@ const testPlotUpdates = async (page: IJupyterLabPageFixture, tmpPath: string, th await page.notebook.openByPath(`${tmpPath}/${notebook}`); await page.notebook.activate(notebook); - const getCaptureImageName = (contextPrefix: string, notebook: string, id: number): string => { + const getCaptureImageName = ( + contextPrefix: string, + notebook: string, + id: number, + ): string => { return `${contextPrefix}-${notebook}-cell-${id}.png`; }; @@ -85,13 +109,16 @@ const testPlotUpdates = async (page: IJupyterLabPageFixture, tmpPath: string, th results.push(await cell.screenshot()); cellCount++; } - } + }, }); await page.notebook.save(); for (let i = 0; i < cellCount; i++) { - expect(results[i]).toMatchSnapshot(getCaptureImageName(contextPrefix, notebook, i), {threshold: 0.3}); + expect(results[i]).toMatchSnapshot( + getCaptureImageName(contextPrefix, notebook, i), + { threshold: 0.3 }, + ); } await page.notebook.close(true); @@ -100,13 +127,13 @@ const testPlotUpdates = async (page: IJupyterLabPageFixture, tmpPath: string, th test.describe('ipyopenlayers Visual Regression', () => { test.beforeEach(async ({ page, tmpPath }) => { - page.on("console", (message) => { + page.on('console', (message) => { console.log('CONSOLE MSG ---', message.text()); }); await page.contents.uploadDirectory( path.resolve(__dirname, './notebooks'), - tmpPath + tmpPath, ); await page.filebrowser.openDirectory(tmpPath); }); diff --git a/yarn.lock b/yarn.lock index 6d1abd6..d85412e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1372,6 +1372,264 @@ __metadata: languageName: node linkType: hard +"@codemirror/autocomplete@npm:^6.0.0, @codemirror/autocomplete@npm:^6.15.0, @codemirror/autocomplete@npm:^6.3.2, @codemirror/autocomplete@npm:^6.7.1": + version: 6.16.3 + resolution: "@codemirror/autocomplete@npm:6.16.3" + dependencies: + "@codemirror/language": ^6.0.0 + "@codemirror/state": ^6.0.0 + "@codemirror/view": ^6.17.0 + "@lezer/common": ^1.0.0 + peerDependencies: + "@codemirror/language": ^6.0.0 + "@codemirror/state": ^6.0.0 + "@codemirror/view": ^6.0.0 + "@lezer/common": ^1.0.0 + checksum: bd38808c9c143c61f2d4a4f8532a376614a511000e31dea1c7ea38240b707bd8b94a95141b592aeb62ee9ed39050af58a218926834c28e6867ab32c482ecd374 + languageName: node + linkType: hard + +"@codemirror/commands@npm:^6.3.3": + version: 6.6.0 + resolution: "@codemirror/commands@npm:6.6.0" + dependencies: + "@codemirror/language": ^6.0.0 + "@codemirror/state": ^6.4.0 + "@codemirror/view": ^6.27.0 + "@lezer/common": ^1.1.0 + checksum: 53bb29f11f4453b7409836c41a9c13c0a8cb300e05ecc4928217330cf6e6735b1e5fb7fb831a2b1b8636593d6f3da42d016196ee1c8bb424f9cb73d55b8cb884 + languageName: node + linkType: hard + +"@codemirror/lang-cpp@npm:^6.0.2": + version: 6.0.2 + resolution: "@codemirror/lang-cpp@npm:6.0.2" + dependencies: + "@codemirror/language": ^6.0.0 + "@lezer/cpp": ^1.0.0 + checksum: bb9eba482cca80037ce30c7b193cf45eff19ccbb773764fddf2071756468ecc25aa53c777c943635054f89095b0247b9b50c339e107e41e68d34d12a7295f9a9 + languageName: node + linkType: hard + +"@codemirror/lang-css@npm:^6.0.0, @codemirror/lang-css@npm:^6.2.1": + version: 6.2.1 + resolution: "@codemirror/lang-css@npm:6.2.1" + dependencies: + "@codemirror/autocomplete": ^6.0.0 + "@codemirror/language": ^6.0.0 + "@codemirror/state": ^6.0.0 + "@lezer/common": ^1.0.2 + "@lezer/css": ^1.0.0 + checksum: 5a8457ee8a4310030a969f2d3128429f549c4dc9b7907ee8888b42119c80b65af99093801432efdf659b8ec36a147d2a947bc1ecbbf69a759395214e3f4834a8 + languageName: node + linkType: hard + +"@codemirror/lang-html@npm:^6.0.0, @codemirror/lang-html@npm:^6.4.8": + version: 6.4.9 + resolution: "@codemirror/lang-html@npm:6.4.9" + dependencies: + "@codemirror/autocomplete": ^6.0.0 + "@codemirror/lang-css": ^6.0.0 + "@codemirror/lang-javascript": ^6.0.0 + "@codemirror/language": ^6.4.0 + "@codemirror/state": ^6.0.0 + "@codemirror/view": ^6.17.0 + "@lezer/common": ^1.0.0 + "@lezer/css": ^1.1.0 + "@lezer/html": ^1.3.0 + checksum: ac8c3ceb0396f2e032752c5079bd950124dca708bc64e96fc147dc5fe7133e5cee0814fe951abdb953ec1d11fa540e4b30a712b5149d9a36016a197a28de45d7 + languageName: node + linkType: hard + +"@codemirror/lang-java@npm:^6.0.1": + version: 6.0.1 + resolution: "@codemirror/lang-java@npm:6.0.1" + dependencies: + "@codemirror/language": ^6.0.0 + "@lezer/java": ^1.0.0 + checksum: 4679104683cbffcd224ac04c7e5d144b787494697b26470b07017259035b7bb3fa62609d9a61bfbc566f1756d9f972f9f26d96a3c1362dd48881c1172f9a914d + languageName: node + linkType: hard + +"@codemirror/lang-javascript@npm:^6.0.0, @codemirror/lang-javascript@npm:^6.2.2": + version: 6.2.2 + resolution: "@codemirror/lang-javascript@npm:6.2.2" + dependencies: + "@codemirror/autocomplete": ^6.0.0 + "@codemirror/language": ^6.6.0 + "@codemirror/lint": ^6.0.0 + "@codemirror/state": ^6.0.0 + "@codemirror/view": ^6.17.0 + "@lezer/common": ^1.0.0 + "@lezer/javascript": ^1.0.0 + checksum: 66379942a8347dff2bd76d10ed7cf313bca83872f8336fdd3e14accfef23e7b690cd913c9d11a3854fba2b32299da07fc3275995327642c9ee43c2a8e538c19d + languageName: node + linkType: hard + +"@codemirror/lang-json@npm:^6.0.1": + version: 6.0.1 + resolution: "@codemirror/lang-json@npm:6.0.1" + dependencies: + "@codemirror/language": ^6.0.0 + "@lezer/json": ^1.0.0 + checksum: e9e87d50ff7b81bd56a6ab50740b1dd54e9a93f1be585e1d59d0642e2148842ea1528ac7b7221eb4ddc7fe84bbc28065144cc3ab86f6e06c6aeb2d4b4e62acf1 + languageName: node + linkType: hard + +"@codemirror/lang-markdown@npm:^6.2.4": + version: 6.2.5 + resolution: "@codemirror/lang-markdown@npm:6.2.5" + dependencies: + "@codemirror/autocomplete": ^6.7.1 + "@codemirror/lang-html": ^6.0.0 + "@codemirror/language": ^6.3.0 + "@codemirror/state": ^6.0.0 + "@codemirror/view": ^6.0.0 + "@lezer/common": ^1.2.1 + "@lezer/markdown": ^1.0.0 + checksum: 3d9e0817f888eddcb6d05ec8f0d8dacbde7b9ef7650303bc4ab8b08a550a986c60c65b1565212e06af389c31590330f1f5ed65e619a9446dc2979ff3dac0e874 + languageName: node + linkType: hard + +"@codemirror/lang-php@npm:^6.0.1": + version: 6.0.1 + resolution: "@codemirror/lang-php@npm:6.0.1" + dependencies: + "@codemirror/lang-html": ^6.0.0 + "@codemirror/language": ^6.0.0 + "@codemirror/state": ^6.0.0 + "@lezer/common": ^1.0.0 + "@lezer/php": ^1.0.0 + checksum: c003a29a426486453fdfddbf7302982fa2aa7f059bf6f1ce4cbf08341b0162eee5e2f50e0d71c418dcd358491631780156d846fe352754d042576172c5d86721 + languageName: node + linkType: hard + +"@codemirror/lang-python@npm:^6.1.4": + version: 6.1.6 + resolution: "@codemirror/lang-python@npm:6.1.6" + dependencies: + "@codemirror/autocomplete": ^6.3.2 + "@codemirror/language": ^6.8.0 + "@codemirror/state": ^6.0.0 + "@lezer/common": ^1.2.1 + "@lezer/python": ^1.1.4 + checksum: eb1faabd332bb95d0f3e227eb19ac5a31140cf238905bbe73e061040999f5680a012f9145fb3688bc2fcbb1908c957511edc8eeb8a9aa88d27d4fa55ad451e95 + languageName: node + linkType: hard + +"@codemirror/lang-rust@npm:^6.0.1": + version: 6.0.1 + resolution: "@codemirror/lang-rust@npm:6.0.1" + dependencies: + "@codemirror/language": ^6.0.0 + "@lezer/rust": ^1.0.0 + checksum: 8a439944cb22159b0b3465ca4fa4294c69843219d5d30e278ae6df8e48f30a7a9256129723c025ec9b5e694d31a3560fb004300b125ffcd81c22d13825845170 + languageName: node + linkType: hard + +"@codemirror/lang-sql@npm:^6.6.1": + version: 6.6.5 + resolution: "@codemirror/lang-sql@npm:6.6.5" + dependencies: + "@codemirror/autocomplete": ^6.0.0 + "@codemirror/language": ^6.0.0 + "@codemirror/state": ^6.0.0 + "@lezer/common": ^1.2.0 + "@lezer/highlight": ^1.0.0 + "@lezer/lr": ^1.0.0 + checksum: 543f4010ba86c85be13eaf5baa6236d4446dc1d2045fb451fdd55545fd3349dda650b833d98da0c67123dbd9e18a5137564c026059537b4096f8a3582bcb7dac + languageName: node + linkType: hard + +"@codemirror/lang-wast@npm:^6.0.2": + version: 6.0.2 + resolution: "@codemirror/lang-wast@npm:6.0.2" + dependencies: + "@codemirror/language": ^6.0.0 + "@lezer/common": ^1.2.0 + "@lezer/highlight": ^1.0.0 + "@lezer/lr": ^1.0.0 + checksum: 72119d4a7d726c54167aa227c982ae9fa785c8ad97a158d8350ae95eecfbd8028a803eef939f7e6c5c6e626fcecda1dc37e9dffc6d5d6ec105f686aeda6b2c24 + languageName: node + linkType: hard + +"@codemirror/lang-xml@npm:^6.1.0": + version: 6.1.0 + resolution: "@codemirror/lang-xml@npm:6.1.0" + dependencies: + "@codemirror/autocomplete": ^6.0.0 + "@codemirror/language": ^6.4.0 + "@codemirror/state": ^6.0.0 + "@codemirror/view": ^6.0.0 + "@lezer/common": ^1.0.0 + "@lezer/xml": ^1.0.0 + checksum: 3a1b7af07b29ad7e53b77bf584245580b613bc92256059f175f2b1d7c28c4e39b75654fe169b9a8a330a60164b53ff5254bdb5b8ee8c6e6766427ee115c4e229 + languageName: node + linkType: hard + +"@codemirror/language@npm:^6.0.0, @codemirror/language@npm:^6.10.1, @codemirror/language@npm:^6.3.0, @codemirror/language@npm:^6.4.0, @codemirror/language@npm:^6.6.0, @codemirror/language@npm:^6.8.0": + version: 6.10.2 + resolution: "@codemirror/language@npm:6.10.2" + dependencies: + "@codemirror/state": ^6.0.0 + "@codemirror/view": ^6.23.0 + "@lezer/common": ^1.1.0 + "@lezer/highlight": ^1.0.0 + "@lezer/lr": ^1.0.0 + style-mod: ^4.0.0 + checksum: 4e60afb75fb56519f59d9d85e0aa03f0c8d017e0da0f3f8f321baf35a776801fcec9787f3d0c029eba12aa766fba98b0fe86fc3111b43e0812b554184c0e8d67 + languageName: node + linkType: hard + +"@codemirror/legacy-modes@npm:^6.3.3": + version: 6.4.0 + resolution: "@codemirror/legacy-modes@npm:6.4.0" + dependencies: + "@codemirror/language": ^6.0.0 + checksum: d382aa6f640a67418bd209e1e4b395340f96aac1b0cf185927fc2c7f98b62cfd0c59ef0f7048148ce8771622003ca844c78c2d18548235ecc57d0bcbfbbfe091 + languageName: node + linkType: hard + +"@codemirror/lint@npm:^6.0.0": + version: 6.8.1 + resolution: "@codemirror/lint@npm:6.8.1" + dependencies: + "@codemirror/state": ^6.0.0 + "@codemirror/view": ^6.0.0 + crelt: ^1.0.5 + checksum: faa222b679770baf094ea707251e27d6eef347157006223c22d7726fb5adc9d77257f36c366367ec729cb6286aca3276d30a470e0d0ea9a884ec948e798668e9 + languageName: node + linkType: hard + +"@codemirror/search@npm:^6.5.6": + version: 6.5.6 + resolution: "@codemirror/search@npm:6.5.6" + dependencies: + "@codemirror/state": ^6.0.0 + "@codemirror/view": ^6.0.0 + crelt: ^1.0.5 + checksum: 19dc88d09fc750563347001e83c6194bbb2a25c874bd919d2d81809e1f98d6330222ddbd284aa9758a09eeb41fd153ec7c2cf810b2ee51452c25963d7f5833d5 + languageName: node + linkType: hard + +"@codemirror/state@npm:^6.0.0, @codemirror/state@npm:^6.4.0, @codemirror/state@npm:^6.4.1": + version: 6.4.1 + resolution: "@codemirror/state@npm:6.4.1" + checksum: b81b55574091349eed4d32fc0eadb0c9688f1f7c98b681318f59138ee0f527cb4c4a97831b70547c0640f02f3127647838ae6730782de4a3dd2cc58836125d01 + languageName: node + linkType: hard + +"@codemirror/view@npm:^6.0.0, @codemirror/view@npm:^6.17.0, @codemirror/view@npm:^6.23.0, @codemirror/view@npm:^6.26.0, @codemirror/view@npm:^6.27.0": + version: 6.28.1 + resolution: "@codemirror/view@npm:6.28.1" + dependencies: + "@codemirror/state": ^6.4.0 + style-mod: ^4.1.0 + w3c-keyname: ^2.2.4 + checksum: 8899717af925f9e23beca20e4e095cc974b122a7a41049c6f9cf0027aeb700faa71d012fc78db838747f8a525f3f34aa4e489a7c7042504d45a0097287d89a76 + languageName: node + linkType: hard + "@discoveryjs/json-ext@npm:^0.5.0": version: 0.5.7 resolution: "@discoveryjs/json-ext@npm:0.5.7" @@ -1421,6 +1679,13 @@ __metadata: languageName: node linkType: hard +"@fortawesome/fontawesome-free@npm:^5.12.0": + version: 5.15.4 + resolution: "@fortawesome/fontawesome-free@npm:5.15.4" + checksum: 32281c3df4075290d9a96dfc22f72fadb3da7055d4117e48d34046b8c98032a55fa260ae351b0af5d6f6fb57a2f5d79a4abe52af456da35195f7cb7dda27b4a2 + languageName: node + linkType: hard + "@humanwhocodes/config-array@npm:^0.11.14": version: 0.11.14 resolution: "@humanwhocodes/config-array@npm:0.11.14" @@ -1792,6 +2057,29 @@ __metadata: languageName: node linkType: hard +"@jupyter/react-components@npm:^0.15.3": + version: 0.15.3 + resolution: "@jupyter/react-components@npm:0.15.3" + dependencies: + "@jupyter/web-components": ^0.15.3 + "@microsoft/fast-react-wrapper": ^0.3.22 + react: ">=17.0.0 <19.0.0" + checksum: 1a6b256314259c6465c4b6d958575710536b82234a7bf0fba3e889a07e1f19ff8ab321450be354359876f92c45dbcc9d21a840237ff4a619806d9de696f55496 + languageName: node + linkType: hard + +"@jupyter/web-components@npm:^0.15.3": + version: 0.15.3 + resolution: "@jupyter/web-components@npm:0.15.3" + dependencies: + "@microsoft/fast-colors": ^5.3.1 + "@microsoft/fast-element": ^1.12.0 + "@microsoft/fast-foundation": ^2.49.4 + "@microsoft/fast-web-utilities": ^5.4.1 + checksum: a0980af934157bfdbdb6cc169c0816c1b2e57602d524c56bdcef746a4c25dfeb8f505150d83207c8695ed89b5486cf53d35a3382584d25ef64db666e4e16e45b + languageName: node + linkType: hard + "@jupyter/ydoc@npm:^2.0.1": version: 2.0.1 resolution: "@jupyter/ydoc@npm:2.0.1" @@ -1806,6 +2094,77 @@ __metadata: languageName: node linkType: hard +"@jupyterlab/application@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/application@npm:4.2.2" + dependencies: + "@fortawesome/fontawesome-free": ^5.12.0 + "@jupyterlab/apputils": ^4.3.2 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/docregistry": ^4.2.2 + "@jupyterlab/rendermime": ^4.2.2 + "@jupyterlab/rendermime-interfaces": ^3.10.2 + "@jupyterlab/services": ^7.2.2 + "@jupyterlab/statedb": ^4.2.2 + "@jupyterlab/translation": ^4.2.2 + "@jupyterlab/ui-components": ^4.2.2 + "@lumino/algorithm": ^2.0.1 + "@lumino/application": ^2.3.1 + "@lumino/commands": ^2.3.0 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/messaging": ^2.0.1 + "@lumino/polling": ^2.1.2 + "@lumino/properties": ^2.0.1 + "@lumino/signaling": ^2.1.2 + "@lumino/widgets": ^2.3.2 + checksum: 86dbf944df8dbeecce88d5588054bb097f6817ba23c7366002e4a7dcb34bb229371be6d803008a2a8413bf7285db977426a806d9686f135d004f74bf5338b28a + languageName: node + linkType: hard + +"@jupyterlab/apputils@npm:^4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/apputils@npm:4.3.2" + dependencies: + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/observables": ^5.2.2 + "@jupyterlab/rendermime-interfaces": ^3.10.2 + "@jupyterlab/services": ^7.2.2 + "@jupyterlab/settingregistry": ^4.2.2 + "@jupyterlab/statedb": ^4.2.2 + "@jupyterlab/statusbar": ^4.2.2 + "@jupyterlab/translation": ^4.2.2 + "@jupyterlab/ui-components": ^4.2.2 + "@lumino/algorithm": ^2.0.1 + "@lumino/commands": ^2.3.0 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/domutils": ^2.0.1 + "@lumino/messaging": ^2.0.1 + "@lumino/signaling": ^2.1.2 + "@lumino/virtualdom": ^2.0.1 + "@lumino/widgets": ^2.3.2 + "@types/react": ^18.0.26 + react: ^18.2.0 + sanitize-html: ~2.12.1 + checksum: 4a49f2b56abc80ab1ca144d39901da5250e7394ace3ceb2e14cba9cc638c6ea720a3f8a3a90cd1f878c34d91b1ce8fe63206d2c314d048b3d83ade0e2e787c89 + languageName: node + linkType: hard + +"@jupyterlab/attachments@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/attachments@npm:4.2.2" + dependencies: + "@jupyterlab/nbformat": ^4.2.2 + "@jupyterlab/observables": ^5.2.2 + "@jupyterlab/rendermime": ^4.2.2 + "@jupyterlab/rendermime-interfaces": ^3.10.2 + "@lumino/disposable": ^2.1.2 + "@lumino/signaling": ^2.1.2 + checksum: 36e6b833fd1debe35d19bcd105eb71f1346c7e4d6ea0d710eb9cdef9818e1e9b04fd5763660776aa19332f196a89baaceff17236990afc835d9f5b2971105eda + languageName: node + linkType: hard + "@jupyterlab/builder@npm:^4.0.11": version: 4.2.0 resolution: "@jupyterlab/builder@npm:4.2.0" @@ -1847,6 +2206,133 @@ __metadata: languageName: node linkType: hard +"@jupyterlab/cells@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/cells@npm:4.2.2" + dependencies: + "@codemirror/state": ^6.4.1 + "@codemirror/view": ^6.26.0 + "@jupyter/ydoc": ^2.0.1 + "@jupyterlab/apputils": ^4.3.2 + "@jupyterlab/attachments": ^4.2.2 + "@jupyterlab/codeeditor": ^4.2.2 + "@jupyterlab/codemirror": ^4.2.2 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/documentsearch": ^4.2.2 + "@jupyterlab/filebrowser": ^4.2.2 + "@jupyterlab/nbformat": ^4.2.2 + "@jupyterlab/observables": ^5.2.2 + "@jupyterlab/outputarea": ^4.2.2 + "@jupyterlab/rendermime": ^4.2.2 + "@jupyterlab/services": ^7.2.2 + "@jupyterlab/toc": ^6.2.2 + "@jupyterlab/translation": ^4.2.2 + "@jupyterlab/ui-components": ^4.2.2 + "@lumino/algorithm": ^2.0.1 + "@lumino/coreutils": ^2.1.2 + "@lumino/domutils": ^2.0.1 + "@lumino/dragdrop": ^2.1.4 + "@lumino/messaging": ^2.0.1 + "@lumino/polling": ^2.1.2 + "@lumino/signaling": ^2.1.2 + "@lumino/virtualdom": ^2.0.1 + "@lumino/widgets": ^2.3.2 + react: ^18.2.0 + checksum: 974d81f3917c8c39e9fc603a7f83a06733c21523fa17e4781f8b7d846c9e2b9731fa362c0469dcfbf1370846a34ec652a379408e5e57f78d7aaa271f8180c90e + languageName: node + linkType: hard + +"@jupyterlab/codeeditor@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/codeeditor@npm:4.2.2" + dependencies: + "@codemirror/state": ^6.4.1 + "@jupyter/ydoc": ^2.0.1 + "@jupyterlab/apputils": ^4.3.2 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/nbformat": ^4.2.2 + "@jupyterlab/observables": ^5.2.2 + "@jupyterlab/statusbar": ^4.2.2 + "@jupyterlab/translation": ^4.2.2 + "@jupyterlab/ui-components": ^4.2.2 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/dragdrop": ^2.1.4 + "@lumino/messaging": ^2.0.1 + "@lumino/signaling": ^2.1.2 + "@lumino/widgets": ^2.3.2 + react: ^18.2.0 + checksum: 22a1b7846f4d6c8bd7b472b311d21383031dd98d232f7e83add2acfaa8f277a7a9a48919b8e14bedeb786f53f45adc64387a724337ee91ab52620ea5a9d0a692 + languageName: node + linkType: hard + +"@jupyterlab/codemirror@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/codemirror@npm:4.2.2" + dependencies: + "@codemirror/autocomplete": ^6.15.0 + "@codemirror/commands": ^6.3.3 + "@codemirror/lang-cpp": ^6.0.2 + "@codemirror/lang-css": ^6.2.1 + "@codemirror/lang-html": ^6.4.8 + "@codemirror/lang-java": ^6.0.1 + "@codemirror/lang-javascript": ^6.2.2 + "@codemirror/lang-json": ^6.0.1 + "@codemirror/lang-markdown": ^6.2.4 + "@codemirror/lang-php": ^6.0.1 + "@codemirror/lang-python": ^6.1.4 + "@codemirror/lang-rust": ^6.0.1 + "@codemirror/lang-sql": ^6.6.1 + "@codemirror/lang-wast": ^6.0.2 + "@codemirror/lang-xml": ^6.1.0 + "@codemirror/language": ^6.10.1 + "@codemirror/legacy-modes": ^6.3.3 + "@codemirror/search": ^6.5.6 + "@codemirror/state": ^6.4.1 + "@codemirror/view": ^6.26.0 + "@jupyter/ydoc": ^2.0.1 + "@jupyterlab/codeeditor": ^4.2.2 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/documentsearch": ^4.2.2 + "@jupyterlab/nbformat": ^4.2.2 + "@jupyterlab/translation": ^4.2.2 + "@lezer/common": ^1.2.1 + "@lezer/generator": ^1.7.0 + "@lezer/highlight": ^1.2.0 + "@lezer/markdown": ^1.2.0 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/signaling": ^2.1.2 + yjs: ^13.5.40 + checksum: 60641e41c424407d5584fdde5630b2ada1663b988fd299c628c58d840d3e8b87d7bcdc4bf0da261ad2eaf0b071e868a31e8c458eb0ce989a0b33f3901411d79c + languageName: node + linkType: hard + +"@jupyterlab/console@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/console@npm:4.2.2" + dependencies: + "@jupyter/ydoc": ^2.0.1 + "@jupyterlab/apputils": ^4.3.2 + "@jupyterlab/cells": ^4.2.2 + "@jupyterlab/codeeditor": ^4.2.2 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/nbformat": ^4.2.2 + "@jupyterlab/observables": ^5.2.2 + "@jupyterlab/rendermime": ^4.2.2 + "@jupyterlab/services": ^7.2.2 + "@jupyterlab/translation": ^4.2.2 + "@jupyterlab/ui-components": ^4.2.2 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/dragdrop": ^2.1.4 + "@lumino/messaging": ^2.0.1 + "@lumino/signaling": ^2.1.2 + "@lumino/widgets": ^2.3.2 + checksum: ee10a3c5eb5f6094fcaaacfc95d39b98551c61a6e30bbf6450689bd4195bda1499a539ac1d1b315a682974ecac3e24bc21c2ab7d94b75b9e5490bd773e62f510 + languageName: node + linkType: hard + "@jupyterlab/coreutils@npm:^6.2.0": version: 6.2.0 resolution: "@jupyterlab/coreutils@npm:6.2.0" @@ -1861,6 +2347,232 @@ __metadata: languageName: node linkType: hard +"@jupyterlab/coreutils@npm:^6.2.2": + version: 6.2.2 + resolution: "@jupyterlab/coreutils@npm:6.2.2" + dependencies: + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/signaling": ^2.1.2 + minimist: ~1.2.0 + path-browserify: ^1.0.0 + url-parse: ~1.5.4 + checksum: cea1ec210ce60b32ccd213a75e10d85aed149437817e81ea89230552b33cec4be61472880669035228a156b89dcf99dccac3fe2e19191f8690d8870a732fa30b + languageName: node + linkType: hard + +"@jupyterlab/debugger@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/debugger@npm:4.2.2" + dependencies: + "@codemirror/state": ^6.4.1 + "@codemirror/view": ^6.26.0 + "@jupyter/react-components": ^0.15.3 + "@jupyter/ydoc": ^2.0.1 + "@jupyterlab/application": ^4.2.2 + "@jupyterlab/apputils": ^4.3.2 + "@jupyterlab/cells": ^4.2.2 + "@jupyterlab/codeeditor": ^4.2.2 + "@jupyterlab/codemirror": ^4.2.2 + "@jupyterlab/console": ^4.2.2 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/docregistry": ^4.2.2 + "@jupyterlab/fileeditor": ^4.2.2 + "@jupyterlab/notebook": ^4.2.2 + "@jupyterlab/observables": ^5.2.2 + "@jupyterlab/rendermime": ^4.2.2 + "@jupyterlab/services": ^7.2.2 + "@jupyterlab/translation": ^4.2.2 + "@jupyterlab/ui-components": ^4.2.2 + "@lumino/algorithm": ^2.0.1 + "@lumino/commands": ^2.3.0 + "@lumino/coreutils": ^2.1.2 + "@lumino/datagrid": ^2.3.1 + "@lumino/disposable": ^2.1.2 + "@lumino/messaging": ^2.0.1 + "@lumino/polling": ^2.1.2 + "@lumino/signaling": ^2.1.2 + "@lumino/widgets": ^2.3.2 + "@vscode/debugprotocol": ^1.51.0 + react: ^18.2.0 + checksum: cff0dd6914a3808ce938ca445b532e4751cf0993be67bdd980e9251d621d7f3e474443df7cfab976c81a87d420c6088faae3e519747ef4981e65aa6a06beb520 + languageName: node + linkType: hard + +"@jupyterlab/docmanager@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/docmanager@npm:4.2.2" + dependencies: + "@jupyterlab/apputils": ^4.3.2 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/docregistry": ^4.2.2 + "@jupyterlab/services": ^7.2.2 + "@jupyterlab/statedb": ^4.2.2 + "@jupyterlab/statusbar": ^4.2.2 + "@jupyterlab/translation": ^4.2.2 + "@jupyterlab/ui-components": ^4.2.2 + "@lumino/algorithm": ^2.0.1 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/messaging": ^2.0.1 + "@lumino/polling": ^2.1.2 + "@lumino/properties": ^2.0.1 + "@lumino/signaling": ^2.1.2 + "@lumino/widgets": ^2.3.2 + react: ^18.2.0 + checksum: e45a8cbdf82cac4d949ef7177e5ac22530ab03502dea73d21ead1061686ef4c703e1eee749ddd4c33672269922045b4bf2dba6ccfc2b44dc8d696b36f1652fe3 + languageName: node + linkType: hard + +"@jupyterlab/docregistry@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/docregistry@npm:4.2.2" + dependencies: + "@jupyter/ydoc": ^2.0.1 + "@jupyterlab/apputils": ^4.3.2 + "@jupyterlab/codeeditor": ^4.2.2 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/observables": ^5.2.2 + "@jupyterlab/rendermime": ^4.2.2 + "@jupyterlab/rendermime-interfaces": ^3.10.2 + "@jupyterlab/services": ^7.2.2 + "@jupyterlab/translation": ^4.2.2 + "@jupyterlab/ui-components": ^4.2.2 + "@lumino/algorithm": ^2.0.1 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/messaging": ^2.0.1 + "@lumino/properties": ^2.0.1 + "@lumino/signaling": ^2.1.2 + "@lumino/widgets": ^2.3.2 + react: ^18.2.0 + checksum: 8cad65f88d827beee8e804683e021da260084243b9e74495093df9bd7e7aff25431c07debc8cfe86c90fa395ab5ebd77ce998ea096a17c5543b5a035f50cd813 + languageName: node + linkType: hard + +"@jupyterlab/documentsearch@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/documentsearch@npm:4.2.2" + dependencies: + "@jupyterlab/apputils": ^4.3.2 + "@jupyterlab/translation": ^4.2.2 + "@jupyterlab/ui-components": ^4.2.2 + "@lumino/commands": ^2.3.0 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/messaging": ^2.0.1 + "@lumino/polling": ^2.1.2 + "@lumino/signaling": ^2.1.2 + "@lumino/widgets": ^2.3.2 + react: ^18.2.0 + checksum: 2d6806fdf0f85873eb35c7730717a9eb69775760d6fd081cbb274104e04fdf3dcf1e72002271739021552721732fa77bd2d6601c27abca8bf1e6b88a9836a2c8 + languageName: node + linkType: hard + +"@jupyterlab/filebrowser@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/filebrowser@npm:4.2.2" + dependencies: + "@jupyterlab/apputils": ^4.3.2 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/docmanager": ^4.2.2 + "@jupyterlab/docregistry": ^4.2.2 + "@jupyterlab/services": ^7.2.2 + "@jupyterlab/statedb": ^4.2.2 + "@jupyterlab/statusbar": ^4.2.2 + "@jupyterlab/translation": ^4.2.2 + "@jupyterlab/ui-components": ^4.2.2 + "@lumino/algorithm": ^2.0.1 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/domutils": ^2.0.1 + "@lumino/dragdrop": ^2.1.4 + "@lumino/messaging": ^2.0.1 + "@lumino/polling": ^2.1.2 + "@lumino/signaling": ^2.1.2 + "@lumino/virtualdom": ^2.0.1 + "@lumino/widgets": ^2.3.2 + react: ^18.2.0 + checksum: f4354f84060bd100b4530d4816b25b819ce028f92ceb130d79ca90dacf32bb46bcd8e134244b6172bca3bb1cae3402079ffbb8173cc94c5ce75e5b55e77cd67c + languageName: node + linkType: hard + +"@jupyterlab/fileeditor@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/fileeditor@npm:4.2.2" + dependencies: + "@jupyter/ydoc": ^2.0.1 + "@jupyterlab/apputils": ^4.3.2 + "@jupyterlab/codeeditor": ^4.2.2 + "@jupyterlab/codemirror": ^4.2.2 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/docregistry": ^4.2.2 + "@jupyterlab/documentsearch": ^4.2.2 + "@jupyterlab/lsp": ^4.2.2 + "@jupyterlab/statusbar": ^4.2.2 + "@jupyterlab/toc": ^6.2.2 + "@jupyterlab/translation": ^4.2.2 + "@jupyterlab/ui-components": ^4.2.2 + "@lumino/commands": ^2.3.0 + "@lumino/coreutils": ^2.1.2 + "@lumino/messaging": ^2.0.1 + "@lumino/widgets": ^2.3.2 + react: ^18.2.0 + regexp-match-indices: ^1.0.2 + checksum: 688340fe2ba275a22b6fc240b16b73db96889f128894a5d4f28c4ff5df68ef6f9947316ff9404ec93624eecd60a9834e2b343b04f82fa980f701d5ec30cd349d + languageName: node + linkType: hard + +"@jupyterlab/galata@npm:^5.2.2": + version: 5.2.2 + resolution: "@jupyterlab/galata@npm:5.2.2" + dependencies: + "@jupyterlab/application": ^4.2.2 + "@jupyterlab/apputils": ^4.3.2 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/debugger": ^4.2.2 + "@jupyterlab/docmanager": ^4.2.2 + "@jupyterlab/nbformat": ^4.2.2 + "@jupyterlab/notebook": ^4.2.2 + "@jupyterlab/services": ^7.2.2 + "@jupyterlab/settingregistry": ^4.2.2 + "@lumino/coreutils": ^2.1.2 + "@playwright/test": ^1.43.1 + "@stdlib/stats": ~0.0.13 + fs-extra: ^10.1.0 + json5: ^2.2.3 + path: ~0.12.7 + systeminformation: ^5.8.6 + vega: ^5.20.0 + vega-lite: ^5.6.1 + vega-statistics: ^1.7.9 + checksum: ac841ae68ad55396c8268f373a7b453cf263058af0c847f8f5c5c36307064f0bba85365aeadcfa81ec917d55ac8965787ef5ce4c948ef26b7fcf0d750619f8a5 + languageName: node + linkType: hard + +"@jupyterlab/lsp@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/lsp@npm:4.2.2" + dependencies: + "@jupyterlab/apputils": ^4.3.2 + "@jupyterlab/codeeditor": ^4.2.2 + "@jupyterlab/codemirror": ^4.2.2 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/docregistry": ^4.2.2 + "@jupyterlab/services": ^7.2.2 + "@jupyterlab/translation": ^4.2.2 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/signaling": ^2.1.2 + "@lumino/widgets": ^2.3.2 + lodash.mergewith: ^4.6.1 + vscode-jsonrpc: ^6.0.0 + vscode-languageserver-protocol: ^3.17.0 + vscode-ws-jsonrpc: ~1.0.2 + checksum: 57853e7cf4010dab80fd1f135bddefb62710c6d379c942306a6913ebf4683853a3d519aee8f1b4f72725a87f9cff4387d1fb3125813b0aa4fae25131ab2bff95 + languageName: node + linkType: hard + "@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@npm:^4.2.0": version: 4.2.0 resolution: "@jupyterlab/nbformat@npm:4.2.0" @@ -1870,6 +2582,118 @@ __metadata: languageName: node linkType: hard +"@jupyterlab/nbformat@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/nbformat@npm:4.2.2" + dependencies: + "@lumino/coreutils": ^2.1.2 + checksum: a60774bcf3e9735bc80dc411b4b79ad2da0dd4df596fef0a74537bfbfb8b168b70b34619638d0abaca6243ac337520275002a27dc13d6951efd681527643d25b + languageName: node + linkType: hard + +"@jupyterlab/notebook@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/notebook@npm:4.2.2" + dependencies: + "@jupyter/ydoc": ^2.0.1 + "@jupyterlab/apputils": ^4.3.2 + "@jupyterlab/cells": ^4.2.2 + "@jupyterlab/codeeditor": ^4.2.2 + "@jupyterlab/codemirror": ^4.2.2 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/docregistry": ^4.2.2 + "@jupyterlab/documentsearch": ^4.2.2 + "@jupyterlab/lsp": ^4.2.2 + "@jupyterlab/nbformat": ^4.2.2 + "@jupyterlab/observables": ^5.2.2 + "@jupyterlab/rendermime": ^4.2.2 + "@jupyterlab/services": ^7.2.2 + "@jupyterlab/settingregistry": ^4.2.2 + "@jupyterlab/statusbar": ^4.2.2 + "@jupyterlab/toc": ^6.2.2 + "@jupyterlab/translation": ^4.2.2 + "@jupyterlab/ui-components": ^4.2.2 + "@lumino/algorithm": ^2.0.1 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/domutils": ^2.0.1 + "@lumino/dragdrop": ^2.1.4 + "@lumino/messaging": ^2.0.1 + "@lumino/polling": ^2.1.2 + "@lumino/properties": ^2.0.1 + "@lumino/signaling": ^2.1.2 + "@lumino/virtualdom": ^2.0.1 + "@lumino/widgets": ^2.3.2 + react: ^18.2.0 + checksum: 0544a44162ca9de8e1341035037fd3fda263b72769ef49f1bbd241196336d5f71f9f4d3b7f442c8c955ed76f3fa8d6c0177f75db8b66d5e68a76d6aff8e7b037 + languageName: node + linkType: hard + +"@jupyterlab/observables@npm:^5.2.2": + version: 5.2.2 + resolution: "@jupyterlab/observables@npm:5.2.2" + dependencies: + "@lumino/algorithm": ^2.0.1 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/messaging": ^2.0.1 + "@lumino/signaling": ^2.1.2 + checksum: 916363cb75bd58f109d81ba84649379a848c23b8ced30f9283108fb4133bd5d4f62ebdf9648f053df744701193d4fadbae4491561dd02d14157bf23a0b813dda + languageName: node + linkType: hard + +"@jupyterlab/outputarea@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/outputarea@npm:4.2.2" + dependencies: + "@jupyterlab/apputils": ^4.3.2 + "@jupyterlab/nbformat": ^4.2.2 + "@jupyterlab/observables": ^5.2.2 + "@jupyterlab/rendermime": ^4.2.2 + "@jupyterlab/rendermime-interfaces": ^3.10.2 + "@jupyterlab/services": ^7.2.2 + "@jupyterlab/translation": ^4.2.2 + "@lumino/algorithm": ^2.0.1 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/messaging": ^2.0.1 + "@lumino/properties": ^2.0.1 + "@lumino/signaling": ^2.1.2 + "@lumino/widgets": ^2.3.2 + checksum: b7d085edca968dc280677df0853080b00a3df3f05b67887933375bd28eaf12e056f7c3396b9a1a28075e617f979400a19742312c6964233f8135c5054fa98e20 + languageName: node + linkType: hard + +"@jupyterlab/rendermime-interfaces@npm:^3.10.2": + version: 3.10.2 + resolution: "@jupyterlab/rendermime-interfaces@npm:3.10.2" + dependencies: + "@lumino/coreutils": ^1.11.0 || ^2.1.2 + "@lumino/widgets": ^1.37.2 || ^2.3.2 + checksum: 4ace6cda40bc3cdd59e36afb8dce6f4448f974a8214086d2541860b0e5c0de95fe22969fa4f5537e6e7fa06c00543655feaf77825dbb57da0147c38c51686707 + languageName: node + linkType: hard + +"@jupyterlab/rendermime@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/rendermime@npm:4.2.2" + dependencies: + "@jupyterlab/apputils": ^4.3.2 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/nbformat": ^4.2.2 + "@jupyterlab/observables": ^5.2.2 + "@jupyterlab/rendermime-interfaces": ^3.10.2 + "@jupyterlab/services": ^7.2.2 + "@jupyterlab/translation": ^4.2.2 + "@lumino/coreutils": ^2.1.2 + "@lumino/messaging": ^2.0.1 + "@lumino/signaling": ^2.1.2 + "@lumino/widgets": ^2.3.2 + lodash.escape: ^4.0.1 + checksum: cadf8a1d7c001d3863389b7e9561a54c633a85c89713b7d204f9ba86b960b23b592bfb6c68340dac1c02d86d51e4ea1af295672120597c9d8f7c654c8f020182 + languageName: node + linkType: hard + "@jupyterlab/services@npm:^6.0.0 || ^7.0.0": version: 7.2.0 resolution: "@jupyterlab/services@npm:7.2.0" @@ -1889,6 +2713,25 @@ __metadata: languageName: node linkType: hard +"@jupyterlab/services@npm:^7.2.2": + version: 7.2.2 + resolution: "@jupyterlab/services@npm:7.2.2" + dependencies: + "@jupyter/ydoc": ^2.0.1 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/nbformat": ^4.2.2 + "@jupyterlab/settingregistry": ^4.2.2 + "@jupyterlab/statedb": ^4.2.2 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/polling": ^2.1.2 + "@lumino/properties": ^2.0.1 + "@lumino/signaling": ^2.1.2 + ws: ^8.11.0 + checksum: dace4f2838cefb129c63cc2b20b35ce2b593e9da4db51dea2963c1109c7f9867faf0a7f428bfd53889f8560953924bf51b355f555ce4fd756b358cfaf8f145c7 + languageName: node + linkType: hard + "@jupyterlab/settingregistry@npm:^4.2.0": version: 4.2.0 resolution: "@jupyterlab/settingregistry@npm:4.2.0" @@ -1908,6 +2751,25 @@ __metadata: languageName: node linkType: hard +"@jupyterlab/settingregistry@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/settingregistry@npm:4.2.2" + dependencies: + "@jupyterlab/nbformat": ^4.2.2 + "@jupyterlab/statedb": ^4.2.2 + "@lumino/commands": ^2.3.0 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/signaling": ^2.1.2 + "@rjsf/utils": ^5.13.4 + ajv: ^8.12.0 + json5: ^2.2.3 + peerDependencies: + react: ">=16" + checksum: 610a43c2308ea7b35c58bc4fdffa0613cd04bbd56bae3f64ee7d7869ae8e484e26102726f5a31f6ae2ffc6f3e77527473fb1a8a9869fdbdac93d5a12984bd56d + languageName: node + linkType: hard + "@jupyterlab/statedb@npm:^4.2.0": version: 4.2.0 resolution: "@jupyterlab/statedb@npm:4.2.0" @@ -1921,6 +2783,258 @@ __metadata: languageName: node linkType: hard +"@jupyterlab/statedb@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/statedb@npm:4.2.2" + dependencies: + "@lumino/commands": ^2.3.0 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/properties": ^2.0.1 + "@lumino/signaling": ^2.1.2 + checksum: 6fbeed16a659b3f0d9b7a86cca91a0fd082c35b500264d58206f8a79640ea34ac00192c749a96c10f8762c6153ef26d3face6e6ce30b0e84479a0a5896254c38 + languageName: node + linkType: hard + +"@jupyterlab/statusbar@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/statusbar@npm:4.2.2" + dependencies: + "@jupyterlab/ui-components": ^4.2.2 + "@lumino/algorithm": ^2.0.1 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/messaging": ^2.0.1 + "@lumino/signaling": ^2.1.2 + "@lumino/widgets": ^2.3.2 + react: ^18.2.0 + checksum: f687fe87f693036edabaf7273aa3b1da89dac4636daf6632bb8d76bf79693ca713f83105247a90b1b378bfc42f61313d3ebc6177a01d2647b957c3c1b01e25f3 + languageName: node + linkType: hard + +"@jupyterlab/toc@npm:^6.2.2": + version: 6.2.2 + resolution: "@jupyterlab/toc@npm:6.2.2" + dependencies: + "@jupyterlab/apputils": ^4.3.2 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/docregistry": ^4.2.2 + "@jupyterlab/observables": ^5.2.2 + "@jupyterlab/rendermime": ^4.2.2 + "@jupyterlab/rendermime-interfaces": ^3.10.2 + "@jupyterlab/translation": ^4.2.2 + "@jupyterlab/ui-components": ^4.2.2 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/messaging": ^2.0.1 + "@lumino/signaling": ^2.1.2 + "@lumino/widgets": ^2.3.2 + react: ^18.2.0 + checksum: 8b8692da9d0b85e35fe59cc21b026ce25e5f8cb5c21607d304512cab2ef280dd9e2468dedbf6819aedb8f5e17ae7ee757504008dc792886531d09beed98e2f9e + languageName: node + linkType: hard + +"@jupyterlab/translation@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/translation@npm:4.2.2" + dependencies: + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/rendermime-interfaces": ^3.10.2 + "@jupyterlab/services": ^7.2.2 + "@jupyterlab/statedb": ^4.2.2 + "@lumino/coreutils": ^2.1.2 + checksum: faeda0940384b5d204e5f7ca0e50cdf0122d6be8618a10c9c77ba57b675fc7045c65da8c1fc51fb4803361b7d0bbbbd1d6d224d5905677f3782231bdad2f8164 + languageName: node + linkType: hard + +"@jupyterlab/ui-components@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/ui-components@npm:4.2.2" + dependencies: + "@jupyter/react-components": ^0.15.3 + "@jupyter/web-components": ^0.15.3 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/observables": ^5.2.2 + "@jupyterlab/rendermime-interfaces": ^3.10.2 + "@jupyterlab/translation": ^4.2.2 + "@lumino/algorithm": ^2.0.1 + "@lumino/commands": ^2.3.0 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/messaging": ^2.0.1 + "@lumino/polling": ^2.1.2 + "@lumino/properties": ^2.0.1 + "@lumino/signaling": ^2.1.2 + "@lumino/virtualdom": ^2.0.1 + "@lumino/widgets": ^2.3.2 + "@rjsf/core": ^5.13.4 + "@rjsf/utils": ^5.13.4 + react: ^18.2.0 + react-dom: ^18.2.0 + typestyle: ^2.0.4 + peerDependencies: + react: ^18.2.0 + checksum: 5e0f7c835dd64db51332966cb56b5b5f12a22b4b42b229ade772b853dc31aab92ec323125a2e7781e3c7acd41949cd5600b1f1421e64ebafe1c05957e1176501 + languageName: node + linkType: hard + +"@lezer/common@npm:^1.0.0, @lezer/common@npm:^1.0.2, @lezer/common@npm:^1.1.0, @lezer/common@npm:^1.2.0, @lezer/common@npm:^1.2.1": + version: 1.2.1 + resolution: "@lezer/common@npm:1.2.1" + checksum: 0bd092e293a509ce334f4aaf9a4d4a25528f743cd9d7e7948c697e34ac703b805b288b62ad01563488fb206fc34ff05084f7fc5d864be775924b3d0d53ea5dd2 + languageName: node + linkType: hard + +"@lezer/cpp@npm:^1.0.0": + version: 1.1.2 + resolution: "@lezer/cpp@npm:1.1.2" + dependencies: + "@lezer/common": ^1.2.0 + "@lezer/highlight": ^1.0.0 + "@lezer/lr": ^1.0.0 + checksum: a319cd46fd32affc07c9432e9b2b9954becf7766be0361176c525d03474bb794cc051aad9932f48c9df33833eee1d6bfdccab12e571f2b137b4ca765c60c75de + languageName: node + linkType: hard + +"@lezer/css@npm:^1.0.0, @lezer/css@npm:^1.1.0": + version: 1.1.8 + resolution: "@lezer/css@npm:1.1.8" + dependencies: + "@lezer/common": ^1.2.0 + "@lezer/highlight": ^1.0.0 + "@lezer/lr": ^1.0.0 + checksum: 1f5968360dbac7ba27f0c2a194143769f7b01824715274dd8507dacf13cc790bb8c48ce95de355e9c58be93bb3e271bf98b9fc51213f79e4ce918e7c7ebbef04 + languageName: node + linkType: hard + +"@lezer/generator@npm:^1.7.0": + version: 1.7.1 + resolution: "@lezer/generator@npm:1.7.1" + dependencies: + "@lezer/common": ^1.1.0 + "@lezer/lr": ^1.3.0 + bin: + lezer-generator: src/lezer-generator.cjs + checksum: e46df5a31252fb036ea17fce820acdf47672bb5405b2a38e26a430182b9a50b8513fde37d9a43d8334cde3bb2f2106ce7a5ab1a01e244876ce3217c4db59e627 + languageName: node + linkType: hard + +"@lezer/highlight@npm:^1.0.0, @lezer/highlight@npm:^1.1.3, @lezer/highlight@npm:^1.2.0": + version: 1.2.0 + resolution: "@lezer/highlight@npm:1.2.0" + dependencies: + "@lezer/common": ^1.0.0 + checksum: 5b9dfe741f95db13f6124cb9556a43011cb8041ecf490be98d44a86b04d926a66e912bcd3a766f6a3d79e064410f1a2f60ab240b50b645a12c56987bf4870086 + languageName: node + linkType: hard + +"@lezer/html@npm:^1.3.0": + version: 1.3.10 + resolution: "@lezer/html@npm:1.3.10" + dependencies: + "@lezer/common": ^1.2.0 + "@lezer/highlight": ^1.0.0 + "@lezer/lr": ^1.0.0 + checksum: cce391aab9259704ae3079b3209f74b2f248594dd8b851c28aaff26765e00ebb890a5ff1fe600f2d03aaf4ade0e36de8048d9632b12bfbccd47b3e649c3b0ecd + languageName: node + linkType: hard + +"@lezer/java@npm:^1.0.0": + version: 1.1.2 + resolution: "@lezer/java@npm:1.1.2" + dependencies: + "@lezer/common": ^1.2.0 + "@lezer/highlight": ^1.0.0 + "@lezer/lr": ^1.0.0 + checksum: 752e8c9b99cccf022669a702016e0c3a793d8326e043b1d053159f5de4d222cd188e8e31e1427cbe6a8ed8e53de3977ab551c64cbd5a76a12eb3a1da5e18b6a5 + languageName: node + linkType: hard + +"@lezer/javascript@npm:^1.0.0": + version: 1.4.17 + resolution: "@lezer/javascript@npm:1.4.17" + dependencies: + "@lezer/common": ^1.2.0 + "@lezer/highlight": ^1.1.3 + "@lezer/lr": ^1.3.0 + checksum: dfcc4130af0bc681cd1ff6ec655a58e747fd877d8aadad2deba5f84512fa539177ece602c5389f4354c93555d3064737dedbe3384ca48b03c4968126bfd1b9a9 + languageName: node + linkType: hard + +"@lezer/json@npm:^1.0.0": + version: 1.0.2 + resolution: "@lezer/json@npm:1.0.2" + dependencies: + "@lezer/common": ^1.2.0 + "@lezer/highlight": ^1.0.0 + "@lezer/lr": ^1.0.0 + checksum: f899d13765d95599c9199fc3404cb57969031dc40ce07de30f4e648979153966581f0bee02e2f8f70463b0a5322206a97c2fe8d5d14f218888c72a6dcedf90ef + languageName: node + linkType: hard + +"@lezer/lr@npm:^1.0.0, @lezer/lr@npm:^1.1.0, @lezer/lr@npm:^1.3.0": + version: 1.4.1 + resolution: "@lezer/lr@npm:1.4.1" + dependencies: + "@lezer/common": ^1.0.0 + checksum: 65ae107a14619b1c514040eec2c48470e921895bb10a80d0b90e7735e121138c50e8207e2e0d9339e7cc42a716cdb367ae08f282c452934c89860093b26c40c2 + languageName: node + linkType: hard + +"@lezer/markdown@npm:^1.0.0, @lezer/markdown@npm:^1.2.0": + version: 1.3.0 + resolution: "@lezer/markdown@npm:1.3.0" + dependencies: + "@lezer/common": ^1.0.0 + "@lezer/highlight": ^1.0.0 + checksum: 13eb2720e4cb84278349bad8af116f748813094f99fad02680010c3a8c5985e0358c344487990f87a31ef0d6c1a2be582301f914c0e4a6e9cfa22647b6cd6545 + languageName: node + linkType: hard + +"@lezer/php@npm:^1.0.0": + version: 1.0.2 + resolution: "@lezer/php@npm:1.0.2" + dependencies: + "@lezer/common": ^1.2.0 + "@lezer/highlight": ^1.0.0 + "@lezer/lr": ^1.1.0 + checksum: c85ef18571d37826b687dd141a0fe110f5814adaf9d1a391e7e482020d7f81df189ca89ec0dd141c1433d48eff4c6e53648b46f008dea8ad2dc574f35f1d4d79 + languageName: node + linkType: hard + +"@lezer/python@npm:^1.1.4": + version: 1.1.14 + resolution: "@lezer/python@npm:1.1.14" + dependencies: + "@lezer/common": ^1.2.0 + "@lezer/highlight": ^1.0.0 + "@lezer/lr": ^1.0.0 + checksum: 1608187f698e972d11b340dfdfd79e15b1359641e386e386befd37d5e5839620b45a5a39c5616792a24da29ef1d99d11ea0dad52b9617f1767e7ea6a11c2fed3 + languageName: node + linkType: hard + +"@lezer/rust@npm:^1.0.0": + version: 1.0.2 + resolution: "@lezer/rust@npm:1.0.2" + dependencies: + "@lezer/common": ^1.2.0 + "@lezer/highlight": ^1.0.0 + "@lezer/lr": ^1.0.0 + checksum: fc5e97852b42beeb44a0ebe316dc64e3cc49ff481c22e3e67d6003fc4a5c257fcd94959cfcc76cd154fa172db9b3b4b28de5c09f10550d6e5f14869ddc274e5b + languageName: node + linkType: hard + +"@lezer/xml@npm:^1.0.0": + version: 1.0.5 + resolution: "@lezer/xml@npm:1.0.5" + dependencies: + "@lezer/common": ^1.2.0 + "@lezer/highlight": ^1.0.0 + "@lezer/lr": ^1.0.0 + checksum: a0a077b9e455b03593b93a7fdff2a4eab2cb7b230c8e1b878a8bebe80184632b9cc75ca018f1f9e2acb3a26e1386f4777385ab6e87aea70ccf479cde5ca268ee + languageName: node + linkType: hard + "@lumino/algorithm@npm:^1.9.2": version: 1.9.2 resolution: "@lumino/algorithm@npm:1.9.2" @@ -1979,13 +3093,30 @@ __metadata: languageName: node linkType: hard -"@lumino/coreutils@npm:^1.11.0 || ^2.0.0, @lumino/coreutils@npm:^1.11.1 || ^2, @lumino/coreutils@npm:^1.11.1 || ^2.1, @lumino/coreutils@npm:^2.1.2": +"@lumino/coreutils@npm:^1.11.0 || ^2.0.0, @lumino/coreutils@npm:^1.11.0 || ^2.1.2, @lumino/coreutils@npm:^1.11.1 || ^2, @lumino/coreutils@npm:^1.11.1 || ^2.1, @lumino/coreutils@npm:^2.1.2": version: 2.1.2 resolution: "@lumino/coreutils@npm:2.1.2" checksum: 7865317ac0676b448d108eb57ab5d8b2a17c101995c0f7a7106662d9fe6c859570104525f83ee3cda12ae2e326803372206d6f4c1f415a5b59e4158a7b81066f languageName: node linkType: hard +"@lumino/datagrid@npm:^2.3.1": + version: 2.3.1 + resolution: "@lumino/datagrid@npm:2.3.1" + dependencies: + "@lumino/algorithm": ^2.0.1 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/domutils": ^2.0.1 + "@lumino/dragdrop": ^2.1.4 + "@lumino/keyboard": ^2.0.1 + "@lumino/messaging": ^2.0.1 + "@lumino/signaling": ^2.1.2 + "@lumino/widgets": ^2.3.2 + checksum: 5d9fa32f3eb4fac041f75276d5a03118b36257db79a29c5ccabe826d423f15473e60ea337d8148379e8906bf78850a923b149c8d2956089aa940eae419b00e60 + languageName: node + linkType: hard + "@lumino/disposable@npm:^1.10.0 || ^2.0.0, @lumino/disposable@npm:^2.1.2": version: 2.1.2 resolution: "@lumino/disposable@npm:2.1.2" @@ -2076,7 +3207,7 @@ __metadata: languageName: node linkType: hard -"@lumino/widgets@npm:^1.30.0 || ^2.1, @lumino/widgets@npm:^2.3.1, @lumino/widgets@npm:^2.3.2": +"@lumino/widgets@npm:^1.30.0 || ^2.1, @lumino/widgets@npm:^1.37.2 || ^2.3.2, @lumino/widgets@npm:^2.3.1, @lumino/widgets@npm:^2.3.2": version: 2.3.2 resolution: "@lumino/widgets@npm:2.3.2" dependencies: @@ -2095,6 +3226,53 @@ __metadata: languageName: node linkType: hard +"@microsoft/fast-colors@npm:^5.3.1": + version: 5.3.1 + resolution: "@microsoft/fast-colors@npm:5.3.1" + checksum: ff87f402faadb4b5aeee3d27762566c11807f927cd4012b8bbc7f073ca68de0e2197f95330ff5dfd7038f4b4f0e2f51b11feb64c5d570f5c598d37850a5daf60 + languageName: node + linkType: hard + +"@microsoft/fast-element@npm:^1.12.0, @microsoft/fast-element@npm:^1.13.0": + version: 1.13.0 + resolution: "@microsoft/fast-element@npm:1.13.0" + checksum: 1cb7b4cfb7531116a3542d3f59bf1dd35106194f5764205403590250aaff744de79e35a5a1f36b4941c4eda9edc088148d4d629fb80be15fdf25f6be01770f3a + languageName: node + linkType: hard + +"@microsoft/fast-foundation@npm:^2.49.4, @microsoft/fast-foundation@npm:^2.49.6": + version: 2.49.6 + resolution: "@microsoft/fast-foundation@npm:2.49.6" + dependencies: + "@microsoft/fast-element": ^1.13.0 + "@microsoft/fast-web-utilities": ^5.4.1 + tabbable: ^5.2.0 + tslib: ^1.13.0 + checksum: 15fdf9dd0b910a72a9cff140f765d522304df11f8a78d5a97a815e2bbae25027c2b336e94f89ca31e650d6aabe17b590b7453acc0d2cb7340c219eb76350a942 + languageName: node + linkType: hard + +"@microsoft/fast-react-wrapper@npm:^0.3.22": + version: 0.3.24 + resolution: "@microsoft/fast-react-wrapper@npm:0.3.24" + dependencies: + "@microsoft/fast-element": ^1.13.0 + "@microsoft/fast-foundation": ^2.49.6 + peerDependencies: + react: ">=16.9.0" + checksum: 1d7a87509c22872bafc9b5c64f66659e52ba0cfdff484d7204125e503dafdea143f5e1bd2a643e2f3fbba6cc7567d916393369433f19dab9f0adcbe7a88b7d98 + languageName: node + linkType: hard + +"@microsoft/fast-web-utilities@npm:^5.4.1": + version: 5.4.1 + resolution: "@microsoft/fast-web-utilities@npm:5.4.1" + dependencies: + exenv-es6: ^1.1.1 + checksum: 303e87847f962944f474e3716c3eb305668243916ca9e0719e26bb9a32346144bc958d915c103776b3e552cea0f0f6233f839fad66adfdf96a8436b947288ca7 + languageName: node + linkType: hard + "@nodelib/fs.scandir@npm:2.1.5": version: 2.1.5 resolution: "@nodelib/fs.scandir@npm:2.1.5" @@ -2165,43 +3343,474 @@ __metadata: languageName: node linkType: hard -"@rjsf/utils@npm:^5.13.4": - version: 5.18.3 - resolution: "@rjsf/utils@npm:5.18.3" +"@playwright/test@npm:^1.43.1": + version: 1.44.1 + resolution: "@playwright/test@npm:1.44.1" + dependencies: + playwright: 1.44.1 + bin: + playwright: cli.js + checksum: 90507b77e388aa984deb92db56f7bb3b305c6be441e1d0087ca046989cfdda068bbc26d75bd29c20ad3dbb2434e69a8ff0d6b30003b88c9234cd3aa6a9f7deb9 + languageName: node + linkType: hard + +"@rjsf/core@npm:^5.13.4": + version: 5.18.4 + resolution: "@rjsf/core@npm:5.18.4" + dependencies: + lodash: ^4.17.21 + lodash-es: ^4.17.21 + markdown-to-jsx: ^7.4.1 + nanoid: ^3.3.7 + prop-types: ^15.8.1 + peerDependencies: + "@rjsf/utils": ^5.18.x + react: ^16.14.0 || >=17 + checksum: 8c3f49914be396595ce67dc4c36ac25c5cb6673917ec82c47f79321f5bb78d02741e8dca39287d0435270e7c9ccb06f7d40e396bdf71a3e9eb1371ef16954817 + languageName: node + linkType: hard + +"@rjsf/utils@npm:^5.13.4": + version: 5.18.3 + resolution: "@rjsf/utils@npm:5.18.3" + dependencies: + json-schema-merge-allof: "npm:^0.8.1" + jsonpointer: "npm:^5.0.1" + lodash: "npm:^4.17.21" + lodash-es: "npm:^4.17.21" + react-is: "npm:^18.2.0" + peerDependencies: + react: ^16.14.0 || >=17 + checksum: 36f6574836e8ccad27b8215f940cb86b1a02939d325e0223a8d8e70b9ae65245e6649dd4835a40e628153f26d961a5cfbdd6c0bdd7b70a80f7cb1911357f78ff + languageName: node + linkType: hard + +"@sinclair/typebox@npm:^0.27.8": + version: 0.27.8 + resolution: "@sinclair/typebox@npm:0.27.8" + checksum: 00bd7362a3439021aa1ea51b0e0d0a0e8ca1351a3d54c606b115fdcc49b51b16db6e5f43b4fe7a28c38688523e22a94d49dd31168868b655f0d4d50f032d07a1 + languageName: node + linkType: hard + +"@sinonjs/commons@npm:^3.0.0": + version: 3.0.1 + resolution: "@sinonjs/commons@npm:3.0.1" + dependencies: + type-detect: "npm:4.0.8" + checksum: a7c3e7cc612352f4004873747d9d8b2d4d90b13a6d483f685598c945a70e734e255f1ca5dc49702515533c403b32725defff148177453b3f3915bcb60e9d4601 + languageName: node + linkType: hard + +"@sinonjs/fake-timers@npm:^10.0.2": + version: 10.3.0 + resolution: "@sinonjs/fake-timers@npm:10.3.0" + dependencies: + "@sinonjs/commons": "npm:^3.0.0" + checksum: 614d30cb4d5201550c940945d44c9e0b6d64a888ff2cd5b357f95ad6721070d6b8839cd10e15b76bf5e14af0bcc1d8f9ec00d49a46318f1f669a4bec1d7f3148 + languageName: node + linkType: hard + +"@stdlib/array@npm:^0.0.x": + version: 0.0.12 + resolution: "@stdlib/array@npm:0.0.12" + dependencies: + "@stdlib/assert": ^0.0.x + "@stdlib/blas": ^0.0.x + "@stdlib/complex": ^0.0.x + "@stdlib/constants": ^0.0.x + "@stdlib/math": ^0.0.x + "@stdlib/symbol": ^0.0.x + "@stdlib/types": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: 0d95690461f0c4560eabef0796d1170274415cd03de80333c6d39814d0484a6873ef4be04a64941ebf3a600747e84c3a4f23b21c7020e53842c07985331b39f1 + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/assert@npm:^0.0.x": + version: 0.0.12 + resolution: "@stdlib/assert@npm:0.0.12" + dependencies: + "@stdlib/array": ^0.0.x + "@stdlib/cli": ^0.0.x + "@stdlib/complex": ^0.0.x + "@stdlib/constants": ^0.0.x + "@stdlib/fs": ^0.0.x + "@stdlib/math": ^0.0.x + "@stdlib/ndarray": ^0.0.x + "@stdlib/number": ^0.0.x + "@stdlib/os": ^0.0.x + "@stdlib/process": ^0.0.x + "@stdlib/regexp": ^0.0.x + "@stdlib/streams": ^0.0.x + "@stdlib/string": ^0.0.x + "@stdlib/symbol": ^0.0.x + "@stdlib/types": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: d4dcbeabbfb86ba56cdd972ff785f43e7d25018b2b1800cab8b0deb9e5c54c795d6ead3d142f4dd13c351f636deba4dc1857c85147d6b059fdc78eb2c9510b99 + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/bigint@npm:^0.0.x": + version: 0.0.11 + resolution: "@stdlib/bigint@npm:0.0.11" + dependencies: + "@stdlib/utils": ^0.0.x + checksum: 7bf825d116e4b010e214209af239706ac1ef923eecb5c8b0af9229c9975450081355e441ecc7b4765d81a9e653141868e0492b8061d1e65724fa42fb8283aabd + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/blas@npm:^0.0.x": + version: 0.0.12 + resolution: "@stdlib/blas@npm:0.0.12" + dependencies: + "@stdlib/array": ^0.0.x + "@stdlib/assert": ^0.0.x + "@stdlib/math": ^0.0.x + "@stdlib/number": ^0.0.x + "@stdlib/types": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: 67ea00a968f7a9c710b37f718b7f756e2830e479a1a1ee44cbf6ec3cc27dd8863078928867707d9d1624007e81de89d040f2326d10f435e2cce913cab121975e + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/buffer@npm:^0.0.x": + version: 0.0.11 + resolution: "@stdlib/buffer@npm:0.0.11" + dependencies: + "@stdlib/array": ^0.0.x + "@stdlib/assert": ^0.0.x + "@stdlib/process": ^0.0.x + "@stdlib/types": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: 93df02e3bf548e940ff9cef65121566e7bf93b554f0614d62336c9dbccfc07c9f1b1c4e9a7aebbe4819ef16a6d2a33a7010c2fdf908fface8298a3109c3c4ef0 + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/cli@npm:^0.0.x": + version: 0.0.10 + resolution: "@stdlib/cli@npm:0.0.10" + dependencies: + "@stdlib/utils": ^0.0.x + minimist: ^1.2.0 + checksum: bbece8d3dbff2835518582a7726c6c4c22743dc408d2303d9e35a3b72151d5d0a8e78d61bc896663d4c3fb702e966abea7a1bd621ed943723a359f57053f121f + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/complex@npm:^0.0.x": + version: 0.0.12 + resolution: "@stdlib/complex@npm:0.0.12" + dependencies: + "@stdlib/array": ^0.0.x + "@stdlib/assert": ^0.0.x + "@stdlib/types": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: 8eda35027495417f1b0dd9bbbc2d4983f50ad3cf9e2276ffe0945ccdbe78f0fc66b9fc36ab71926d2a125c8fb7467c8970a222b230b42ff4bb8042c53314ca09 + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/constants@npm:^0.0.x": + version: 0.0.11 + resolution: "@stdlib/constants@npm:0.0.11" + dependencies: + "@stdlib/array": ^0.0.x + "@stdlib/assert": ^0.0.x + "@stdlib/number": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: fc19d055a4e71ae84b6c92e4a3a88371d50693da8f0a813df4063dc549374d19b9cf23f4fdae2fb7b2013e13929f713c3e1b9e4054767e741b75561ed43d15c3 + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/fs@npm:^0.0.x": + version: 0.0.12 + resolution: "@stdlib/fs@npm:0.0.12" + dependencies: + "@stdlib/array": ^0.0.x + "@stdlib/assert": ^0.0.x + "@stdlib/cli": ^0.0.x + "@stdlib/math": ^0.0.x + "@stdlib/process": ^0.0.x + "@stdlib/string": ^0.0.x + "@stdlib/utils": ^0.0.x + debug: ^2.6.9 + checksum: 33ac5ee4844d4599fe3a8a8402f1a3e2cafee31a5c9cf5b85df530a61a2b54ef17dc30a67be98dacdc2958219413edd0e4cdc3c28266f4bc30277ee024f6a49e + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/math@npm:^0.0.x": + version: 0.0.11 + resolution: "@stdlib/math@npm:0.0.11" + dependencies: + "@stdlib/assert": ^0.0.x + "@stdlib/constants": ^0.0.x + "@stdlib/ndarray": ^0.0.x + "@stdlib/number": ^0.0.x + "@stdlib/strided": ^0.0.x + "@stdlib/symbol": ^0.0.x + "@stdlib/types": ^0.0.x + "@stdlib/utils": ^0.0.x + debug: ^2.6.9 + checksum: 6c4c9dda36fbce50553e1437354c5286aa782c42399534dbed8e696ddeb1b91ef6cff5fe5962f1c9e1eb2ef63c63d9bd58f7ca4b87d59018aaac20099c3fb79a + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/ndarray@npm:^0.0.x": + version: 0.0.13 + resolution: "@stdlib/ndarray@npm:0.0.13" + dependencies: + "@stdlib/array": ^0.0.x + "@stdlib/assert": ^0.0.x + "@stdlib/bigint": ^0.0.x + "@stdlib/buffer": ^0.0.x + "@stdlib/complex": ^0.0.x + "@stdlib/constants": ^0.0.x + "@stdlib/math": ^0.0.x + "@stdlib/number": ^0.0.x + "@stdlib/string": ^0.0.x + "@stdlib/types": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: 842a94afce5fc74bf8a964b75a302ddb8713eadbc79616e6799f1310c8bce860ed9e9877adc4a39338d9136b8798947ee21cf03368d46408308a313c8075d49a + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/nlp@npm:^0.0.x": + version: 0.0.11 + resolution: "@stdlib/nlp@npm:0.0.11" dependencies: - json-schema-merge-allof: "npm:^0.8.1" - jsonpointer: "npm:^5.0.1" - lodash: "npm:^4.17.21" - lodash-es: "npm:^4.17.21" - react-is: "npm:^18.2.0" - peerDependencies: - react: ^16.14.0 || >=17 - checksum: 36f6574836e8ccad27b8215f940cb86b1a02939d325e0223a8d8e70b9ae65245e6649dd4835a40e628153f26d961a5cfbdd6c0bdd7b70a80f7cb1911357f78ff + "@stdlib/array": ^0.0.x + "@stdlib/assert": ^0.0.x + "@stdlib/math": ^0.0.x + "@stdlib/random": ^0.0.x + "@stdlib/string": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: 398fe2853fb95404bb6598e3e199ca3e0435b94447d50e14e2e30582cadfb91f43464f23d80a0e1da4d64567a4a108a7299d7440509f1ab26b02aea7bb16e9a8 + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/number@npm:^0.0.x": + version: 0.0.10 + resolution: "@stdlib/number@npm:0.0.10" + dependencies: + "@stdlib/array": ^0.0.x + "@stdlib/assert": ^0.0.x + "@stdlib/constants": ^0.0.x + "@stdlib/math": ^0.0.x + "@stdlib/os": ^0.0.x + "@stdlib/string": ^0.0.x + "@stdlib/types": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: 326190956c787cbf9321c332beedab5ba4b3fa97d52a82aa708a0349b4678c0df7a351424f00a606f4eaca4fb4ba4cc191580c99d7c64ee0f08d37baa3de14f2 + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/os@npm:^0.0.x": + version: 0.0.12 + resolution: "@stdlib/os@npm:0.0.12" + dependencies: + "@stdlib/assert": ^0.0.x + "@stdlib/cli": ^0.0.x + "@stdlib/fs": ^0.0.x + "@stdlib/process": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: 37156b0c723da70d7740d92d08fc592eae803461c1d546cff6ac044765d6e40722fdad342219277e747c39344b513096ac1d0aa1e733cf3079bd8a9a8578612a + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/process@npm:^0.0.x": + version: 0.0.12 + resolution: "@stdlib/process@npm:0.0.12" + dependencies: + "@stdlib/assert": ^0.0.x + "@stdlib/buffer": ^0.0.x + "@stdlib/cli": ^0.0.x + "@stdlib/fs": ^0.0.x + "@stdlib/streams": ^0.0.x + "@stdlib/string": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: 6d5c3d943f9914d1ae39bd36ad7436f783cf64baa2bff67a808035c99258676ae3f704c328a78d62754951cf85fe99d8e9af5f4fa7d5f8cba347bca72767e357 + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/random@npm:^0.0.x": + version: 0.0.12 + resolution: "@stdlib/random@npm:0.0.12" + dependencies: + "@stdlib/array": ^0.0.x + "@stdlib/assert": ^0.0.x + "@stdlib/blas": ^0.0.x + "@stdlib/buffer": ^0.0.x + "@stdlib/cli": ^0.0.x + "@stdlib/constants": ^0.0.x + "@stdlib/fs": ^0.0.x + "@stdlib/math": ^0.0.x + "@stdlib/process": ^0.0.x + "@stdlib/stats": ^0.0.x + "@stdlib/streams": ^0.0.x + "@stdlib/symbol": ^0.0.x + "@stdlib/types": ^0.0.x + "@stdlib/utils": ^0.0.x + debug: ^2.6.9 + readable-stream: ^2.1.4 + checksum: 67fcb5553274f8596ceae91153e96ae297bacfd55279821cb09f19f2844845aaf892802e4a5962965323dbfded0c7df8a89a6ce77d60d5c8a5899d483055a964 + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/regexp@npm:^0.0.x": + version: 0.0.13 + resolution: "@stdlib/regexp@npm:0.0.13" + dependencies: + "@stdlib/assert": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: dd52adb096ff9a02d1c4818be2889ae01bc04a0cdbc0d52473685e0a7a4eaa13e1be603b964f140f7488d11450b644dc5f8c97029d77db1ed4a563554245ff1c + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard -"@sinclair/typebox@npm:^0.27.8": - version: 0.27.8 - resolution: "@sinclair/typebox@npm:0.27.8" - checksum: 00bd7362a3439021aa1ea51b0e0d0a0e8ca1351a3d54c606b115fdcc49b51b16db6e5f43b4fe7a28c38688523e22a94d49dd31168868b655f0d4d50f032d07a1 +"@stdlib/stats@npm:^0.0.x, @stdlib/stats@npm:~0.0.13": + version: 0.0.13 + resolution: "@stdlib/stats@npm:0.0.13" + dependencies: + "@stdlib/array": ^0.0.x + "@stdlib/assert": ^0.0.x + "@stdlib/blas": ^0.0.x + "@stdlib/constants": ^0.0.x + "@stdlib/math": ^0.0.x + "@stdlib/ndarray": ^0.0.x + "@stdlib/random": ^0.0.x + "@stdlib/string": ^0.0.x + "@stdlib/symbol": ^0.0.x + "@stdlib/types": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: 5ca12b2e123543f56a59aca828e14afaf525ad4aa40467bee7037a9178e21e55d4ce8ba3de9387cc9a0efe3e0d035d6c58705b12f634f77a2b3f87d334dfb076 + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/streams@npm:^0.0.x": + version: 0.0.12 + resolution: "@stdlib/streams@npm:0.0.12" + dependencies: + "@stdlib/assert": ^0.0.x + "@stdlib/buffer": ^0.0.x + "@stdlib/cli": ^0.0.x + "@stdlib/fs": ^0.0.x + "@stdlib/types": ^0.0.x + "@stdlib/utils": ^0.0.x + debug: ^2.6.9 + readable-stream: ^2.1.4 + checksum: 231b4607d082ea81d9dadbeab08002ec398a29c7eb5d611d8a4183f9db6964428e2f8a9e0f8edd085ca12b5d58258576987a575e9d8f6fcabcb5a62c6b8efe88 + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/strided@npm:^0.0.x": + version: 0.0.12 + resolution: "@stdlib/strided@npm:0.0.12" + dependencies: + "@stdlib/assert": ^0.0.x + "@stdlib/math": ^0.0.x + "@stdlib/ndarray": ^0.0.x + "@stdlib/types": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: 55ccc8543596894a2e3ad734b394700c69697b499a54b3bfbcf80cddd8d91509792c23931f5cebf7c89269676ac3f44352582e4f42e2c2c2898363cc3a76403d + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/string@npm:^0.0.x": + version: 0.0.14 + resolution: "@stdlib/string@npm:0.0.14" + dependencies: + "@stdlib/assert": ^0.0.x + "@stdlib/cli": ^0.0.x + "@stdlib/constants": ^0.0.x + "@stdlib/fs": ^0.0.x + "@stdlib/math": ^0.0.x + "@stdlib/nlp": ^0.0.x + "@stdlib/process": ^0.0.x + "@stdlib/regexp": ^0.0.x + "@stdlib/streams": ^0.0.x + "@stdlib/types": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: aaaaaddf381cccc67f15dbab76f43ce81cb71a4f5595bfa06ef915b6747458deca3c25c60ff3c002c0c36482687d92a150f364069559dfea915f63a040d5f603 + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/symbol@npm:^0.0.x": + version: 0.0.12 + resolution: "@stdlib/symbol@npm:0.0.12" + dependencies: + "@stdlib/assert": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: 2263341ce0296de2063d26038902bd63bf1d7b820307402fdf38c3b248bd026f17d96bccdc3189fd9fcc9c83a778eaab797dc11805bd66203b8ac9c6934f6588 + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard -"@sinonjs/commons@npm:^3.0.0": - version: 3.0.1 - resolution: "@sinonjs/commons@npm:3.0.1" +"@stdlib/time@npm:^0.0.x": + version: 0.0.14 + resolution: "@stdlib/time@npm:0.0.14" dependencies: - type-detect: "npm:4.0.8" - checksum: a7c3e7cc612352f4004873747d9d8b2d4d90b13a6d483f685598c945a70e734e255f1ca5dc49702515533c403b32725defff148177453b3f3915bcb60e9d4601 + "@stdlib/assert": ^0.0.x + "@stdlib/cli": ^0.0.x + "@stdlib/constants": ^0.0.x + "@stdlib/fs": ^0.0.x + "@stdlib/math": ^0.0.x + "@stdlib/string": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: 6e8a1b985a09936ab09c98d44bf1b2c79e08995c3c73401494bc1f6f708747ef136d769af4809a8af92a9ceb3d390db6c4c4e01608cd8d794a86c4b57e343eb1 + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard -"@sinonjs/fake-timers@npm:^10.0.2": - version: 10.3.0 - resolution: "@sinonjs/fake-timers@npm:10.3.0" - dependencies: - "@sinonjs/commons": "npm:^3.0.0" - checksum: 614d30cb4d5201550c940945d44c9e0b6d64a888ff2cd5b357f95ad6721070d6b8839cd10e15b76bf5e14af0bcc1d8f9ec00d49a46318f1f669a4bec1d7f3148 +"@stdlib/types@npm:^0.0.x": + version: 0.0.14 + resolution: "@stdlib/types@npm:0.0.14" + checksum: 5680a655ddb3ad730f5c7eb2363a43e089f3e6a1b85b12546cab49f7749bb3baf293bd50fbfe55486f233f4227f1020b65eb461b754b94fb4a4bc2799647ec22 + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/utils@npm:^0.0.x": + version: 0.0.12 + resolution: "@stdlib/utils@npm:0.0.12" + dependencies: + "@stdlib/array": ^0.0.x + "@stdlib/assert": ^0.0.x + "@stdlib/blas": ^0.0.x + "@stdlib/buffer": ^0.0.x + "@stdlib/cli": ^0.0.x + "@stdlib/constants": ^0.0.x + "@stdlib/fs": ^0.0.x + "@stdlib/math": ^0.0.x + "@stdlib/os": ^0.0.x + "@stdlib/process": ^0.0.x + "@stdlib/random": ^0.0.x + "@stdlib/regexp": ^0.0.x + "@stdlib/streams": ^0.0.x + "@stdlib/string": ^0.0.x + "@stdlib/symbol": ^0.0.x + "@stdlib/time": ^0.0.x + "@stdlib/types": ^0.0.x + debug: ^2.6.9 + checksum: e0c3671c5f62c11bb3abd721f2958c41641b00a75d449bd25fbb62bcb8689cfe9c1f600c0688e7b6819ae870d6e5974d0fc7b2ec86081c45d9194b316b2a2ec2 + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard @@ -2276,13 +3885,20 @@ __metadata: languageName: node linkType: hard -"@types/estree@npm:*, @types/estree@npm:^1.0.5": +"@types/estree@npm:*, @types/estree@npm:^1.0.0, @types/estree@npm:^1.0.5": version: 1.0.5 resolution: "@types/estree@npm:1.0.5" checksum: dd8b5bed28e6213b7acd0fb665a84e693554d850b0df423ac8076cc3ad5823a6bc26b0251d080bdc545af83179ede51dd3f6fa78cad2c46ed1f29624ddf3e41a languageName: node linkType: hard +"@types/geojson@npm:7946.0.4": + version: 7946.0.4 + resolution: "@types/geojson@npm:7946.0.4" + checksum: 541aea46540c918b9fe21ab73f497fe17b1eaf4d0d3baeb5f5614029b7f488c37f63843b644c024a8178dc2fb66d3d6623c25d9cf61d7b553aa19c8dc7f99047 + languageName: node + linkType: hard + "@types/graceful-fs@npm:^4.1.3": version: 4.1.9 resolution: "@types/graceful-fs@npm:4.1.9" @@ -2359,6 +3975,23 @@ __metadata: languageName: node linkType: hard +"@types/prop-types@npm:*": + version: 15.7.12 + resolution: "@types/prop-types@npm:15.7.12" + checksum: ac16cc3d0a84431ffa5cfdf89579ad1e2269549f32ce0c769321fdd078f84db4fbe1b461ed5a1a496caf09e637c0e367d600c541435716a55b1d9713f5035dfe + languageName: node + linkType: hard + +"@types/react@npm:^18.0.26": + version: 18.3.3 + resolution: "@types/react@npm:18.3.3" + dependencies: + "@types/prop-types": "*" + csstype: ^3.0.2 + checksum: c63d6a78163244e2022b01ef79b0baec4fe4da3475dc4a90bb8accefad35ef0c43560fd0312e5974f92a0f1108aa4d669ac72d73d66396aa060ea03b5d2e3873 + languageName: node + linkType: hard + "@types/semver@npm:^7.5.0": version: 7.5.8 resolution: "@types/semver@npm:7.5.8" @@ -2558,6 +4191,13 @@ __metadata: languageName: node linkType: hard +"@vscode/debugprotocol@npm:^1.51.0": + version: 1.65.0 + resolution: "@vscode/debugprotocol@npm:1.65.0" + checksum: 3ea504d01c67cd6a0c56fa3357f61f2dbaa426445443dba8b860292232e62e5bff7111e68e4cb844cedd564db1617e08847477a19527becd9f2608199eae4118 + languageName: node + linkType: hard + "@webassemblyjs/ast@npm:1.12.1, @webassemblyjs/ast@npm:^1.12.1": version: 1.12.1 resolution: "@webassemblyjs/ast@npm:1.12.1" @@ -3438,6 +5078,20 @@ __metadata: languageName: node linkType: hard +"commander@npm:2, commander@npm:^2.20.0": + version: 2.20.3 + resolution: "commander@npm:2.20.3" + checksum: ab8c07884e42c3a8dbc5dd9592c606176c7eb5c1ca5ff274bcf907039b2c41de3626f684ea75ccf4d361ba004bbaff1f577d5384c155f3871e456bdf27becf9e + languageName: node + linkType: hard + +"commander@npm:7": + version: 7.2.0 + resolution: "commander@npm:7.2.0" + checksum: 53501cbeee61d5157546c0bef0fedb6cdfc763a882136284bed9a07225f09a14b82d2a84e7637edfd1a679fb35ed9502fd58ef1d091e6287f60d790147f68ddc + languageName: node + linkType: hard + "commander@npm:^10.0.1": version: 10.0.1 resolution: "commander@npm:10.0.1" @@ -3445,13 +5099,6 @@ __metadata: languageName: node linkType: hard -"commander@npm:^2.20.0": - version: 2.20.3 - resolution: "commander@npm:2.20.3" - checksum: ab8c07884e42c3a8dbc5dd9592c606176c7eb5c1ca5ff274bcf907039b2c41de3626f684ea75ccf4d361ba004bbaff1f577d5384c155f3871e456bdf27becf9e - languageName: node - linkType: hard - "commander@npm:^9.4.1": version: 9.5.0 resolution: "commander@npm:9.5.0" @@ -3505,6 +5152,13 @@ __metadata: languageName: node linkType: hard +"core-util-is@npm:~1.0.0": + version: 1.0.3 + resolution: "core-util-is@npm:1.0.3" + checksum: 9de8597363a8e9b9952491ebe18167e3b36e7707569eed0ebf14f8bba773611376466ae34575bca8cfe3c767890c859c74056084738f09d4e4a6f902b2ad7d99 + languageName: node + linkType: hard + "create-jest@npm:^29.7.0": version: 29.7.0 resolution: "create-jest@npm:29.7.0" @@ -3522,6 +5176,13 @@ __metadata: languageName: node linkType: hard +"crelt@npm:^1.0.5": + version: 1.0.6 + resolution: "crelt@npm:1.0.6" + checksum: dad842093371ad702afbc0531bfca2b0a8dd920b23a42f26e66dabbed9aad9acd5b9030496359545ef3937c3aced0fd4ac39f7a2d280a23ddf9eb7fdcb94a69f + languageName: node + linkType: hard + "cross-spawn@npm:^6.0.5": version: 6.0.5 resolution: "cross-spawn@npm:6.0.5" @@ -3603,6 +5264,204 @@ __metadata: languageName: node linkType: hard +"csstype@npm:3.0.10": + version: 3.0.10 + resolution: "csstype@npm:3.0.10" + checksum: 20a8fa324f2b33ddf94aa7507d1b6ab3daa6f3cc308888dc50126585d7952f2471de69b2dbe0635d1fdc31223fef8e070842691877e725caf456e2378685a631 + languageName: node + linkType: hard + +"csstype@npm:^3.0.2": + version: 3.1.3 + resolution: "csstype@npm:3.1.3" + checksum: 8db785cc92d259102725b3c694ec0c823f5619a84741b5c7991b8ad135dfaa66093038a1cc63e03361a6cd28d122be48f2106ae72334e067dd619a51f49eddf7 + languageName: node + linkType: hard + +"d3-array@npm:1 - 3, d3-array@npm:2 - 3, d3-array@npm:2.10.0 - 3, d3-array@npm:2.5.0 - 3, d3-array@npm:3.2.4, d3-array@npm:^3.2.2": + version: 3.2.4 + resolution: "d3-array@npm:3.2.4" + dependencies: + internmap: 1 - 2 + checksum: a5976a6d6205f69208478bb44920dd7ce3e788c9dceb86b304dbe401a4bfb42ecc8b04c20facde486e9adcb488b5d1800d49393a3f81a23902b68158e12cddd0 + languageName: node + linkType: hard + +"d3-color@npm:1 - 3, d3-color@npm:^3.1.0": + version: 3.1.0 + resolution: "d3-color@npm:3.1.0" + checksum: 4931fbfda5d7c4b5cfa283a13c91a954f86e3b69d75ce588d06cde6c3628cebfc3af2069ccf225e982e8987c612aa7948b3932163ce15eb3c11cd7c003f3ee3b + languageName: node + linkType: hard + +"d3-delaunay@npm:^6.0.2": + version: 6.0.4 + resolution: "d3-delaunay@npm:6.0.4" + dependencies: + delaunator: 5 + checksum: ce6d267d5ef21a8aeadfe4606329fc80a22ab6e7748d47bc220bcc396ee8be84b77a5473033954c5ac4aa522d265ddc45d4165d30fe4787dd60a15ea66b9bbb4 + languageName: node + linkType: hard + +"d3-dispatch@npm:1 - 3": + version: 3.0.1 + resolution: "d3-dispatch@npm:3.0.1" + checksum: fdfd4a230f46463e28e5b22a45dd76d03be9345b605e1b5dc7d18bd7ebf504e6c00ae123fd6d03e23d9e2711e01f0e14ea89cd0632545b9f0c00b924ba4be223 + languageName: node + linkType: hard + +"d3-dsv@npm:^3.0.1": + version: 3.0.1 + resolution: "d3-dsv@npm:3.0.1" + dependencies: + commander: 7 + iconv-lite: 0.6 + rw: 1 + bin: + csv2json: bin/dsv2json.js + csv2tsv: bin/dsv2dsv.js + dsv2dsv: bin/dsv2dsv.js + dsv2json: bin/dsv2json.js + json2csv: bin/json2dsv.js + json2dsv: bin/json2dsv.js + json2tsv: bin/json2dsv.js + tsv2csv: bin/dsv2dsv.js + tsv2json: bin/dsv2json.js + checksum: 5fc0723647269d5dccd181d74f2265920ab368a2868b0b4f55ffa2fecdfb7814390ea28622cd61ee5d9594ab262879509059544e9f815c54fe76fbfb4ffa4c8a + languageName: node + linkType: hard + +"d3-force@npm:^3.0.0": + version: 3.0.0 + resolution: "d3-force@npm:3.0.0" + dependencies: + d3-dispatch: 1 - 3 + d3-quadtree: 1 - 3 + d3-timer: 1 - 3 + checksum: 6c7e96438cab62fa32aeadb0ade3297b62b51f81b1b38b0a60a5ec9fd627d74090c1189654d92df2250775f31b06812342f089f1d5947de9960a635ee3581def + languageName: node + linkType: hard + +"d3-format@npm:1 - 3, d3-format@npm:^3.1.0": + version: 3.1.0 + resolution: "d3-format@npm:3.1.0" + checksum: f345ec3b8ad3cab19bff5dead395bd9f5590628eb97a389b1dd89f0b204c7c4fc1d9520f13231c2c7cf14b7c9a8cf10f8ef15bde2befbab41454a569bd706ca2 + languageName: node + linkType: hard + +"d3-geo-projection@npm:^4.0.0": + version: 4.0.0 + resolution: "d3-geo-projection@npm:4.0.0" + dependencies: + commander: 7 + d3-array: 1 - 3 + d3-geo: 1.12.0 - 3 + bin: + geo2svg: bin/geo2svg.js + geograticule: bin/geograticule.js + geoproject: bin/geoproject.js + geoquantize: bin/geoquantize.js + geostitch: bin/geostitch.js + checksum: 631422b10dd78d1047ba5a3b073148bea27721060bd7087a5fa6c053ca80445d26432e505e0e3acbd6e0d76cf577c61bf9a5db70dabbc9310c493de1f7ff736d + languageName: node + linkType: hard + +"d3-geo@npm:1.12.0 - 3, d3-geo@npm:^3.1.0": + version: 3.1.1 + resolution: "d3-geo@npm:3.1.1" + dependencies: + d3-array: 2.5.0 - 3 + checksum: 3cc4bb50af5d2d4858d2df1729a1777b7fd361854079d9faab1166186c988d2cba0d11911da0c4598d5e22fae91d79113ed262a9f98cabdbc6dbf7c30e5c0363 + languageName: node + linkType: hard + +"d3-hierarchy@npm:^3.1.2": + version: 3.1.2 + resolution: "d3-hierarchy@npm:3.1.2" + checksum: 0fd946a8c5fd4686d43d3e11bbfc2037a145fda29d2261ccd0e36f70b66af6d7638e2c0c7112124d63fc3d3127197a00a6aecf676bd5bd392a94d7235a214263 + languageName: node + linkType: hard + +"d3-interpolate@npm:1 - 3, d3-interpolate@npm:1.2.0 - 3, d3-interpolate@npm:^3.0.1": + version: 3.0.1 + resolution: "d3-interpolate@npm:3.0.1" + dependencies: + d3-color: 1 - 3 + checksum: a42ba314e295e95e5365eff0f604834e67e4a3b3c7102458781c477bd67e9b24b6bb9d8e41ff5521050a3f2c7c0c4bbbb6e187fd586daa3980943095b267e78b + languageName: node + linkType: hard + +"d3-path@npm:^3.1.0": + version: 3.1.0 + resolution: "d3-path@npm:3.1.0" + checksum: 2306f1bd9191e1eac895ec13e3064f732a85f243d6e627d242a313f9777756838a2215ea11562f0c7630c7c3b16a19ec1fe0948b1c82f3317fac55882f6ee5d8 + languageName: node + linkType: hard + +"d3-quadtree@npm:1 - 3": + version: 3.0.1 + resolution: "d3-quadtree@npm:3.0.1" + checksum: 5469d462763811475f34a7294d984f3eb100515b0585ca5b249656f6b1a6e99b20056a2d2e463cc9944b888896d2b1d07859c50f9c0cf23438df9cd2e3146066 + languageName: node + linkType: hard + +"d3-scale-chromatic@npm:^3.1.0": + version: 3.1.0 + resolution: "d3-scale-chromatic@npm:3.1.0" + dependencies: + d3-color: 1 - 3 + d3-interpolate: 1 - 3 + checksum: ab6324bd8e1f708e731e02ab44e09741efda2b174cea1d8ca21e4a87546295e99856bc44e2fd3890f228849c96bccfbcf922328f95be6a7df117453eb5cf22c9 + languageName: node + linkType: hard + +"d3-scale@npm:^4.0.2": + version: 4.0.2 + resolution: "d3-scale@npm:4.0.2" + dependencies: + d3-array: 2.10.0 - 3 + d3-format: 1 - 3 + d3-interpolate: 1.2.0 - 3 + d3-time: 2.1.1 - 3 + d3-time-format: 2 - 4 + checksum: a9c770d283162c3bd11477c3d9d485d07f8db2071665f1a4ad23eec3e515e2cefbd369059ec677c9ac849877d1a765494e90e92051d4f21111aa56791c98729e + languageName: node + linkType: hard + +"d3-shape@npm:^3.2.0": + version: 3.2.0 + resolution: "d3-shape@npm:3.2.0" + dependencies: + d3-path: ^3.1.0 + checksum: de2af5fc9a93036a7b68581ca0bfc4aca2d5a328aa7ba7064c11aedd44d24f310c20c40157cb654359d4c15c3ef369f95ee53d71221017276e34172c7b719cfa + languageName: node + linkType: hard + +"d3-time-format@npm:2 - 4, d3-time-format@npm:^4.1.0": + version: 4.1.0 + resolution: "d3-time-format@npm:4.1.0" + dependencies: + d3-time: 1 - 3 + checksum: 7342bce28355378152bbd4db4e275405439cabba082d9cd01946d40581140481c8328456d91740b0fe513c51ec4a467f4471ffa390c7e0e30ea30e9ec98fcdf4 + languageName: node + linkType: hard + +"d3-time@npm:1 - 3, d3-time@npm:2.1.1 - 3, d3-time@npm:^3.1.0": + version: 3.1.0 + resolution: "d3-time@npm:3.1.0" + dependencies: + d3-array: 2 - 3 + checksum: 613b435352a78d9f31b7f68540788186d8c331b63feca60ad21c88e9db1989fe888f97f242322ebd6365e45ec3fb206a4324cd4ca0dfffa1d9b5feb856ba00a7 + languageName: node + linkType: hard + +"d3-timer@npm:1 - 3, d3-timer@npm:^3.0.1": + version: 3.0.1 + resolution: "d3-timer@npm:3.0.1" + checksum: 1cfddf86d7bca22f73f2c427f52dfa35c49f50d64e187eb788dcad6e927625c636aa18ae4edd44d084eb9d1f81d8ca4ec305dae7f733c15846a824575b789d73 + languageName: node + linkType: hard + "data-urls@npm:^2.0.0": version: 2.0.0 resolution: "data-urls@npm:2.0.0" @@ -3659,6 +5518,15 @@ __metadata: languageName: node linkType: hard +"debug@npm:^2.6.9": + version: 2.6.9 + resolution: "debug@npm:2.6.9" + dependencies: + ms: 2.0.0 + checksum: d2f51589ca66df60bf36e1fa6e4386b318c3f1e06772280eea5b1ae9fd3d05e9c2b7fd8a7d862457d00853c75b00451aa2d7459b924629ee385287a650f58fe6 + languageName: node + linkType: hard + "dedent@npm:^1.0.0": version: 1.5.3 resolution: "dedent@npm:1.5.3" @@ -3707,6 +5575,15 @@ __metadata: languageName: node linkType: hard +"delaunator@npm:5": + version: 5.0.1 + resolution: "delaunator@npm:5.0.1" + dependencies: + robust-predicates: ^3.0.2 + checksum: 69ee43ec649b4a13b7f33c8a027fb3e8dfcb09266af324286118da757e04d3d39df619b905dca41421405c311317ccf632ecfa93db44519bacec3303c57c5a0b + languageName: node + linkType: hard + "detect-newline@npm:^3.0.0": version: 3.1.0 resolution: "detect-newline@npm:3.1.0" @@ -4222,6 +6099,13 @@ __metadata: languageName: node linkType: hard +"exenv-es6@npm:^1.1.1": + version: 1.1.1 + resolution: "exenv-es6@npm:1.1.1" + checksum: 7f2aa12025e6f06c48dc286f380cf3183bb19c6017b36d91695034a3e5124a7235c4f8ff24ca2eb88ae801322f0f99605cedfcfd996a5fcbba7669320e2a448e + languageName: node + linkType: hard + "exit@npm:^0.1.2": version: 0.1.2 resolution: "exit@npm:0.1.2" @@ -4406,6 +6290,13 @@ __metadata: languageName: node linkType: hard +"free-style@npm:3.1.0": + version: 3.1.0 + resolution: "free-style@npm:3.1.0" + checksum: 949258ae315deda48cac93ecd5f9a80f36e8a027e19ce2103598dc8d5ab60e963bbad5444b2a4990ddb746798dd188896f430285cf484afbf2141f7d75a191d8 + languageName: node + linkType: hard + "fs-extra@npm:^10.1.0": version: 10.1.0 resolution: "fs-extra@npm:10.1.0" @@ -4453,6 +6344,16 @@ __metadata: languageName: node linkType: hard +"fsevents@npm:2.3.2": + version: 2.3.2 + resolution: "fsevents@npm:2.3.2" + dependencies: + node-gyp: latest + checksum: 97ade64e75091afee5265e6956cb72ba34db7819b4c3e94c431d4be2b19b8bb7a2d4116da417950c3425f17c8fe693d25e20212cac583ac1521ad066b77ae31f + conditions: os=darwin + languageName: node + linkType: hard + "fsevents@npm:^2.3.2": version: 2.3.3 resolution: "fsevents@npm:2.3.3" @@ -4463,6 +6364,15 @@ __metadata: languageName: node linkType: hard +"fsevents@patch:fsevents@2.3.2#~builtin": + version: 2.3.2 + resolution: "fsevents@patch:fsevents@npm%3A2.3.2#~builtin::version=2.3.2&hash=df0bf1" + dependencies: + node-gyp: latest + conditions: os=darwin + languageName: node + linkType: hard + "fsevents@patch:fsevents@npm%3A^2.3.2#~builtin": version: 2.3.3 resolution: "fsevents@patch:fsevents@npm%3A2.3.3#~builtin::version=2.3.3&hash=df0bf1" @@ -4826,7 +6736,7 @@ __metadata: languageName: node linkType: hard -"iconv-lite@npm:^0.6.2, iconv-lite@npm:^0.6.3": +"iconv-lite@npm:0.6, iconv-lite@npm:^0.6.2, iconv-lite@npm:^0.6.3": version: 0.6.3 resolution: "iconv-lite@npm:0.6.3" dependencies: @@ -4913,13 +6823,20 @@ __metadata: languageName: node linkType: hard -"inherits@npm:2": +"inherits@npm:2, inherits@npm:~2.0.3": version: 2.0.4 resolution: "inherits@npm:2.0.4" checksum: 4a48a733847879d6cf6691860a6b1e3f0f4754176e4d71494c41f3475553768b10f84b5ce1d40fbd0e34e6bfbb864ee35858ad4dd2cf31e02fc4a154b724d7f1 languageName: node linkType: hard +"inherits@npm:2.0.3": + version: 2.0.3 + resolution: "inherits@npm:2.0.3" + checksum: 78cb8d7d850d20a5e9a7f3620db31483aa00ad5f722ce03a55b110e5a723539b3716a3b463e2b96ce3fe286f33afc7c131fa2f91407528ba80cea98a7545d4c0 + languageName: node + linkType: hard + "internal-slot@npm:^1.0.7": version: 1.0.7 resolution: "internal-slot@npm:1.0.7" @@ -4931,6 +6848,13 @@ __metadata: languageName: node linkType: hard +"internmap@npm:1 - 2": + version: 2.0.3 + resolution: "internmap@npm:2.0.3" + checksum: 7ca41ec6aba8f0072fc32fa8a023450a9f44503e2d8e403583c55714b25efd6390c38a87161ec456bf42d7bc83aab62eb28f5aef34876b1ac4e60693d5e1d241 + languageName: node + linkType: hard + "interpret@npm:^3.1.1": version: 3.1.1 resolution: "interpret@npm:3.1.1" @@ -4957,6 +6881,7 @@ __metadata: "@jupyter-widgets/base": ^1.1.10 || ^2 || ^3 || ^4 || ^5 || ^6 "@jupyter-widgets/base-manager": ^1.0.7 "@jupyterlab/builder": ^4.0.11 + "@jupyterlab/galata": ^5.2.2 "@lumino/application": ^2.3.0 "@lumino/widgets": ^2.3.1 "@types/jest": ^29.5.11 @@ -5208,6 +7133,13 @@ __metadata: languageName: node linkType: hard +"isarray@npm:~1.0.0": + version: 1.0.0 + resolution: "isarray@npm:1.0.0" + checksum: f032df8e02dce8ec565cf2eb605ea939bdccea528dbcf565cdf92bfa2da9110461159d86a537388ef1acef8815a330642d7885b29010e8f7eac967c9993b65ab + languageName: node + linkType: hard + "isexe@npm:^2.0.0": version: 2.0.0 resolution: "isexe@npm:2.0.0" @@ -5771,7 +7703,7 @@ __metadata: languageName: node linkType: hard -"js-tokens@npm:^4.0.0": +"js-tokens@npm:^3.0.0 || ^4.0.0, js-tokens@npm:^4.0.0": version: 4.0.0 resolution: "js-tokens@npm:4.0.0" checksum: 8a95213a5a77deb6cbe94d86340e8d9ace2b93bc367790b260101d2f36a2eaf4e4e22d9fa9cf459b38af3a32fb4190e638024cf82ec95ef708680e405ea7cc78 @@ -5888,6 +7820,13 @@ __metadata: languageName: node linkType: hard +"json-stringify-pretty-compact@npm:~3.0.0": + version: 3.0.0 + resolution: "json-stringify-pretty-compact@npm:3.0.0" + checksum: 01ab5c5c8260299414868d96db97f53aef93c290fe469edd9a1363818e795006e01c952fa2fd7b47cbbab506d5768998eccc25e1da4fa2ccfebd1788c6098791 + languageName: node + linkType: hard + "json5@npm:^2.1.2, json5@npm:^2.2.3": version: 2.2.3 resolution: "json5@npm:2.2.3" @@ -6059,6 +7998,13 @@ __metadata: languageName: node linkType: hard +"lodash.escape@npm:^4.0.1": + version: 4.0.1 + resolution: "lodash.escape@npm:4.0.1" + checksum: fcb54f457497256964d619d5cccbd80a961916fca60df3fe0fa3e7f052715c2944c0ed5aefb4f9e047d127d44aa2d55555f3350cb42c6549e9e293fb30b41e7f + languageName: node + linkType: hard + "lodash.memoize@npm:4.x": version: 4.1.2 resolution: "lodash.memoize@npm:4.1.2" @@ -6073,6 +8019,13 @@ __metadata: languageName: node linkType: hard +"lodash.mergewith@npm:^4.6.1": + version: 4.6.2 + resolution: "lodash.mergewith@npm:4.6.2" + checksum: a6db2a9339752411f21b956908c404ec1e088e783a65c8b29e30ae5b3b6384f82517662d6f425cc97c2070b546cc2c7daaa8d33f78db7b6e9be06cd834abdeb8 + languageName: node + linkType: hard + "lodash@npm:^4.17.20, lodash@npm:^4.17.21, lodash@npm:^4.17.4, lodash@npm:^4.7.0": version: 4.17.21 resolution: "lodash@npm:4.17.21" @@ -6080,6 +8033,17 @@ __metadata: languageName: node linkType: hard +"loose-envify@npm:^1.1.0, loose-envify@npm:^1.4.0": + version: 1.4.0 + resolution: "loose-envify@npm:1.4.0" + dependencies: + js-tokens: ^3.0.0 || ^4.0.0 + bin: + loose-envify: cli.js + checksum: 6517e24e0cad87ec9888f500c5b5947032cdfe6ef65e1c1936a0c48a524b81e65542c9c3edc91c97d5bddc806ee2a985dbc79be89215d613b1de5db6d1cfe6f4 + languageName: node + linkType: hard + "lru-cache@npm:^10.0.1, lru-cache@npm:^10.2.0": version: 10.2.2 resolution: "lru-cache@npm:10.2.2" @@ -6141,6 +8105,15 @@ __metadata: languageName: node linkType: hard +"markdown-to-jsx@npm:^7.4.1": + version: 7.4.7 + resolution: "markdown-to-jsx@npm:7.4.7" + peerDependencies: + react: ">= 0.14.0" + checksum: bb8a696c8a95dd67ac1eb44255f31cf17e60b6c2ff03bfcd51b5e28da17856c57d7a16da59fda7f3a4eedb01d7e92eeef57a10ff3abd5431e5c80059d4565016 + languageName: node + linkType: hard + "memorystream@npm:^0.3.1": version: 0.3.1 resolution: "memorystream@npm:0.3.1" @@ -6243,7 +8216,7 @@ __metadata: languageName: node linkType: hard -"minimist@npm:~1.2.0": +"minimist@npm:^1.2.0, minimist@npm:~1.2.0": version: 1.2.8 resolution: "minimist@npm:1.2.8" checksum: 75a6d645fb122dad29c06a7597bddea977258957ed88d7a6df59b5cd3fe4a527e253e9bbf2e783e4b73657f9098b96a5fe96ab8a113655d4109108577ecf85b0 @@ -6352,6 +8325,13 @@ __metadata: languageName: node linkType: hard +"ms@npm:2.0.0": + version: 2.0.0 + resolution: "ms@npm:2.0.0" + checksum: 0e6a22b8b746d2e0b65a430519934fefd41b6db0682e3477c10f60c76e947c4c0ad06f63ffdf1d78d335f83edee8c0aa928aa66a36c7cd95b69b26f468d527f4 + languageName: node + linkType: hard + "ms@npm:2.1.2": version: 2.1.2 resolution: "ms@npm:2.1.2" @@ -6396,6 +8376,20 @@ __metadata: languageName: node linkType: hard +"node-fetch@npm:^2.6.7": + version: 2.7.0 + resolution: "node-fetch@npm:2.7.0" + dependencies: + whatwg-url: ^5.0.0 + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + checksum: d76d2f5edb451a3f05b15115ec89fc6be39de37c6089f1b6368df03b91e1633fd379a7e01b7ab05089a25034b2023d959b47e59759cb38d88341b2459e89d6e5 + languageName: node + linkType: hard + "node-gyp@npm:latest": version: 10.1.0 resolution: "node-gyp@npm:10.1.0" @@ -6490,6 +8484,13 @@ __metadata: languageName: node linkType: hard +"object-assign@npm:^4.1.1": + version: 4.1.1 + resolution: "object-assign@npm:4.1.1" + checksum: fcc6e4ea8c7fe48abfbb552578b1c53e0d194086e2e6bbbf59e0a536381a292f39943c6e9628af05b5528aa5e3318bb30d6b2e53cadaf5b8fe9e12c4b69af23f + languageName: node + linkType: hard + "object-inspect@npm:^1.13.1": version: 1.13.1 resolution: "object-inspect@npm:1.13.1" @@ -6734,6 +8735,16 @@ __metadata: languageName: node linkType: hard +"path@npm:~0.12.7": + version: 0.12.7 + resolution: "path@npm:0.12.7" + dependencies: + process: ^0.11.1 + util: ^0.10.3 + checksum: 5dedb71e78fc008fcba797defc0b4e1cf06c1f18e0a631e03ba5bb505136f587ff017afc14f9a3d481cbe77aeedff7dc0c1d2ce4d820c1ebf3c4281ca49423a1 + languageName: node + linkType: hard + "pbf@npm:3.2.1": version: 3.2.1 resolution: "pbf@npm:3.2.1" @@ -6792,6 +8803,30 @@ __metadata: languageName: node linkType: hard +"playwright-core@npm:1.44.1": + version: 1.44.1 + resolution: "playwright-core@npm:1.44.1" + bin: + playwright-core: cli.js + checksum: ebc6fa0ff77792fe52648fda06cc4474d4e9746db6dc5750d262b7fe2caf9f9e2327a71f1fb365e862213403a9daf95361c5040a9b0fd462928d7eb4fdc760e1 + languageName: node + linkType: hard + +"playwright@npm:1.44.1": + version: 1.44.1 + resolution: "playwright@npm:1.44.1" + dependencies: + fsevents: 2.3.2 + playwright-core: 1.44.1 + dependenciesMeta: + fsevents: + optional: true + bin: + playwright: cli.js + checksum: c2e8ff0a855e4a9e665ae5ffa0ff90423289546157be55e83f78916d17075c5910a7244773739c2a973da884a4ff0b3cf9b6e6b543de112e43b12169a9208e86 + languageName: node + linkType: hard + "possible-typed-array-names@npm:^1.0.0": version: 1.0.0 resolution: "possible-typed-array-names@npm:1.0.0" @@ -6921,7 +8956,14 @@ __metadata: languageName: node linkType: hard -"process@npm:^0.11.10": +"process-nextick-args@npm:~2.0.0": + version: 2.0.1 + resolution: "process-nextick-args@npm:2.0.1" + checksum: 1d38588e520dab7cea67cbbe2efdd86a10cc7a074c09657635e34f035277b59fbb57d09d8638346bf7090f8e8ebc070c96fa5fd183b777fff4f5edff5e9466cf + languageName: node + linkType: hard + +"process@npm:^0.11.1, process@npm:^0.11.10": version: 0.11.10 resolution: "process@npm:0.11.10" checksum: bfcce49814f7d172a6e6a14d5fa3ac92cc3d0c3b9feb1279774708a719e19acd673995226351a082a9ae99978254e320ccda4240ddc474ba31a76c79491ca7c3 @@ -6948,6 +8990,17 @@ __metadata: languageName: node linkType: hard +"prop-types@npm:^15.8.1": + version: 15.8.1 + resolution: "prop-types@npm:15.8.1" + dependencies: + loose-envify: ^1.4.0 + object-assign: ^4.1.1 + react-is: ^16.13.1 + checksum: c056d3f1c057cb7ff8344c645450e14f088a915d078dcda795041765047fa080d38e5d626560ccaac94a4e16e3aa15f3557c1a9a8d1174530955e992c675e459 + languageName: node + linkType: hard + "protocol-buffers-schema@npm:^3.3.1": version: 3.6.0 resolution: "protocol-buffers-schema@npm:3.6.0" @@ -7015,6 +9068,25 @@ __metadata: languageName: node linkType: hard +"react-dom@npm:^18.2.0": + version: 18.3.1 + resolution: "react-dom@npm:18.3.1" + dependencies: + loose-envify: ^1.1.0 + scheduler: ^0.23.2 + peerDependencies: + react: ^18.3.1 + checksum: 298954ecd8f78288dcaece05e88b570014d8f6dce5db6f66e6ee91448debeb59dcd31561dddb354eee47e6c1bb234669459060deb238ed0213497146e555a0b9 + languageName: node + linkType: hard + +"react-is@npm:^16.13.1": + version: 16.13.1 + resolution: "react-is@npm:16.13.1" + checksum: f7a19ac3496de32ca9ae12aa030f00f14a3d45374f1ceca0af707c831b2a6098ef0d6bdae51bd437b0a306d7f01d4677fcc8de7c0d331eb47ad0f46130e53c5f + languageName: node + linkType: hard + "react-is@npm:^18.0.0, react-is@npm:^18.2.0": version: 18.3.1 resolution: "react-is@npm:18.3.1" @@ -7022,6 +9094,15 @@ __metadata: languageName: node linkType: hard +"react@npm:>=17.0.0 <19.0.0, react@npm:^18.2.0": + version: 18.3.1 + resolution: "react@npm:18.3.1" + dependencies: + loose-envify: ^1.1.0 + checksum: a27bcfa8ff7c15a1e50244ad0d0c1cb2ad4375eeffefd266a64889beea6f6b64c4966c9b37d14ee32d6c9fcd5aa6ba183b6988167ab4d127d13e7cb5b386a376 + languageName: node + linkType: hard + "read-pkg@npm:^3.0.0": version: 3.0.0 resolution: "read-pkg@npm:3.0.0" @@ -7033,6 +9114,21 @@ __metadata: languageName: node linkType: hard +"readable-stream@npm:^2.1.4": + version: 2.3.8 + resolution: "readable-stream@npm:2.3.8" + dependencies: + core-util-is: ~1.0.0 + inherits: ~2.0.3 + isarray: ~1.0.0 + process-nextick-args: ~2.0.0 + safe-buffer: ~5.1.1 + string_decoder: ~1.1.1 + util-deprecate: ~1.0.1 + checksum: 65645467038704f0c8aaf026a72fbb588a9e2ef7a75cd57a01702ee9db1c4a1e4b03aaad36861a6a0926546a74d174149c8c207527963e0c2d3eee2f37678a42 + languageName: node + linkType: hard + "rechoir@npm:^0.8.0": version: 0.8.0 resolution: "rechoir@npm:0.8.0" @@ -7074,6 +9170,24 @@ __metadata: languageName: node linkType: hard +"regexp-match-indices@npm:^1.0.2": + version: 1.0.2 + resolution: "regexp-match-indices@npm:1.0.2" + dependencies: + regexp-tree: ^0.1.11 + checksum: 8cc779f6cf8f404ead828d09970a7d4bd66bd78d43ab9eb2b5e65f2ef2ba1ed53536f5b5fa839fb90b350365fb44b6a851c7f16289afc3f37789c113ab2a7916 + languageName: node + linkType: hard + +"regexp-tree@npm:^0.1.11": + version: 0.1.27 + resolution: "regexp-tree@npm:0.1.27" + bin: + regexp-tree: bin/regexp-tree + checksum: 129aebb34dae22d6694ab2ac328be3f99105143737528ab072ef624d599afecbcfae1f5c96a166fa9e5f64fa1ecf30b411c4691e7924c3e11bbaf1712c260c54 + languageName: node + linkType: hard + "regexp.prototype.flags@npm:^1.5.2": version: 1.5.2 resolution: "regexp.prototype.flags@npm:1.5.2" @@ -7233,6 +9347,13 @@ __metadata: languageName: node linkType: hard +"robust-predicates@npm:^3.0.2": + version: 3.0.2 + resolution: "robust-predicates@npm:3.0.2" + checksum: 36854c1321548ceca96d36ad9d6e0a5a512986029ec6929ad6ed3ec1612c22cc8b46cc72d2c5674af42e8074a119d793f6f0ea3a5b51373e3ab926c64b172d7a + languageName: node + linkType: hard + "run-parallel@npm:^1.1.9": version: 1.2.0 resolution: "run-parallel@npm:1.2.0" @@ -7242,6 +9363,13 @@ __metadata: languageName: node linkType: hard +"rw@npm:1": + version: 1.3.3 + resolution: "rw@npm:1.3.3" + checksum: c20d82421f5a71c86a13f76121b751553a99cd4a70ea27db86f9b23f33db941f3f06019c30f60d50c356d0bd674c8e74764ac146ea55e217c091bde6fba82aa3 + languageName: node + linkType: hard + "safe-array-concat@npm:^1.1.2": version: 1.1.2 resolution: "safe-array-concat@npm:1.1.2" @@ -7261,6 +9389,13 @@ __metadata: languageName: node linkType: hard +"safe-buffer@npm:~5.1.0, safe-buffer@npm:~5.1.1": + version: 5.1.2 + resolution: "safe-buffer@npm:5.1.2" + checksum: f2f1f7943ca44a594893a852894055cf619c1fbcb611237fc39e461ae751187e7baf4dc391a72125e0ac4fb2d8c5c0b3c71529622e6a58f46b960211e704903c + languageName: node + linkType: hard + "safe-regex-test@npm:^1.0.3": version: 1.0.3 resolution: "safe-regex-test@npm:1.0.3" @@ -7293,6 +9428,29 @@ __metadata: languageName: node linkType: hard +"sanitize-html@npm:~2.12.1": + version: 2.12.1 + resolution: "sanitize-html@npm:2.12.1" + dependencies: + deepmerge: ^4.2.2 + escape-string-regexp: ^4.0.0 + htmlparser2: ^8.0.0 + is-plain-object: ^5.0.0 + parse-srcset: ^1.0.2 + postcss: ^8.3.11 + checksum: fb96ea7170d51b5af2607f5cfd84464c78fc6f47e339407f55783e781c6a0288a8d40bbf97ea6a8758924ba9b2d33dcc4846bb94caacacd90d7f2de10ed8541a + languageName: node + linkType: hard + +"scheduler@npm:^0.23.2": + version: 0.23.2 + resolution: "scheduler@npm:0.23.2" + dependencies: + loose-envify: ^1.1.0 + checksum: 3e82d1f419e240ef6219d794ff29c7ee415fbdc19e038f680a10c067108e06284f1847450a210b29bbaf97b9d8a97ced5f624c31c681248ac84c80d56ad5a2c4 + languageName: node + linkType: hard + "schema-utils@npm:^2.7.0": version: 2.7.1 resolution: "schema-utils@npm:2.7.1" @@ -7724,6 +9882,15 @@ __metadata: languageName: node linkType: hard +"string_decoder@npm:~1.1.1": + version: 1.1.1 + resolution: "string_decoder@npm:1.1.1" + dependencies: + safe-buffer: ~5.1.0 + checksum: 9ab7e56f9d60a28f2be697419917c50cac19f3e8e6c28ef26ed5f4852289fe0de5d6997d29becf59028556f2c62983790c1d9ba1e2a3cc401768ca12d5183a5b + languageName: node + linkType: hard + "strip-ansi-cjs@npm:strip-ansi@^6.0.1, strip-ansi@npm:^6.0.0, strip-ansi@npm:^6.0.1": version: 6.0.1 resolution: "strip-ansi@npm:6.0.1" @@ -7788,6 +9955,13 @@ __metadata: languageName: node linkType: hard +"style-mod@npm:^4.0.0, style-mod@npm:^4.1.0": + version: 4.1.2 + resolution: "style-mod@npm:4.1.2" + checksum: 7c5c3e82747f9bcf5f288d8d07f50848e4630fe5ff7bfe4d94cc87d6b6a2588227cbf21b4c792ac6406e5852293300a75e710714479a5c59a06af677f0825ef8 + languageName: node + linkType: hard + "supports-color@npm:^5.3.0": version: 5.5.0 resolution: "supports-color@npm:5.5.0" @@ -7832,6 +10006,23 @@ __metadata: languageName: node linkType: hard +"systeminformation@npm:^5.8.6": + version: 5.22.11 + resolution: "systeminformation@npm:5.22.11" + bin: + systeminformation: lib/cli.js + checksum: 5e924a87ecd5453225456191c5a9201d763a59e905a45a4e1d4e99b98b69fed25d33e756ad8f9fef1f513259778cbcfd4cbba48b208f7f9c87db9cb97d1eabe7 + conditions: (os=darwin | os=linux | os=win32 | os=freebsd | os=openbsd | os=netbsd | os=sunos | os=android) + languageName: node + linkType: hard + +"tabbable@npm:^5.2.0": + version: 5.3.3 + resolution: "tabbable@npm:5.3.3" + checksum: 1aa56e1bb617cc10616c407f4e756f0607f3e2d30f9803664d70b85db037ca27e75918ed1c71443f3dc902e21dc9f991ce4b52d63a538c9b69b3218d3babcd70 + languageName: node + linkType: hard + "tapable@npm:^2.1.1, tapable@npm:^2.2.0, tapable@npm:^2.2.1": version: 2.2.1 resolution: "tapable@npm:2.2.1" @@ -7930,6 +10121,19 @@ __metadata: languageName: node linkType: hard +"topojson-client@npm:^3.1.0": + version: 3.1.0 + resolution: "topojson-client@npm:3.1.0" + dependencies: + commander: 2 + bin: + topo2geo: bin/topo2geo + topomerge: bin/topomerge + topoquantize: bin/topoquantize + checksum: 8c029a4f18324ace0b8b55dd90edbd40c9e3c6de18bafbb5da37ca20ebf20e26fbd4420891acb3c2c264e214185f7557871f5651a9eee517028663be98d836de + languageName: node + linkType: hard + "tr46@npm:^2.1.0": version: 2.1.0 resolution: "tr46@npm:2.1.0" @@ -7939,6 +10143,13 @@ __metadata: languageName: node linkType: hard +"tr46@npm:~0.0.3": + version: 0.0.3 + resolution: "tr46@npm:0.0.3" + checksum: 726321c5eaf41b5002e17ffbd1fb7245999a073e8979085dacd47c4b4e8068ff5777142fc6726d6ca1fd2ff16921b48788b87225cbc57c72636f6efa8efbffe3 + languageName: node + linkType: hard + "ts-api-utils@npm:^1.0.1": version: 1.3.0 resolution: "ts-api-utils@npm:1.3.0" @@ -7997,6 +10208,13 @@ __metadata: languageName: node linkType: hard +"tslib@npm:^1.13.0": + version: 1.14.1 + resolution: "tslib@npm:1.14.1" + checksum: dbe628ef87f66691d5d2959b3e41b9ca0045c3ee3c7c7b906cc1e328b39f199bb1ad9e671c39025bd56122ac57dfbf7385a94843b1cc07c60a4db74795829acd + languageName: node + linkType: hard + "tslib@npm:^2.6.2": version: 2.6.2 resolution: "tslib@npm:2.6.2" @@ -8004,6 +10222,13 @@ __metadata: languageName: node linkType: hard +"tslib@npm:~2.6.3": + version: 2.6.3 + resolution: "tslib@npm:2.6.3" + checksum: 74fce0e100f1ebd95b8995fbbd0e6c91bdd8f4c35c00d4da62e285a3363aaa534de40a80db30ecfd388ed7c313c42d930ee0eaf108e8114214b180eec3dbe6f5 + languageName: node + linkType: hard + "type-check@npm:^0.4.0, type-check@npm:~0.4.0": version: 0.4.0 resolution: "type-check@npm:0.4.0" @@ -8106,6 +10331,16 @@ __metadata: languageName: node linkType: hard +"typestyle@npm:^2.0.4": + version: 2.4.0 + resolution: "typestyle@npm:2.4.0" + dependencies: + csstype: 3.0.10 + free-style: 3.1.0 + checksum: 8b4f02c24f67b594f98507b15a753dabd4db5eb0af007e1d310527c64030e11e9464b25b5a6bc65fb5eec9a4459a8336050121ecc29063ac87b8b47a6d698893 + languageName: node + linkType: hard + "unbox-primitive@npm:^1.0.2": version: 1.0.2 resolution: "unbox-primitive@npm:1.0.2" @@ -8221,13 +10456,22 @@ __metadata: languageName: node linkType: hard -"util-deprecate@npm:^1.0.2": +"util-deprecate@npm:^1.0.2, util-deprecate@npm:~1.0.1": version: 1.0.2 resolution: "util-deprecate@npm:1.0.2" checksum: 474acf1146cb2701fe3b074892217553dfcf9a031280919ba1b8d651a068c9b15d863b7303cb15bd00a862b498e6cf4ad7b4a08fb134edd5a6f7641681cb54a2 languageName: node linkType: hard +"util@npm:^0.10.3": + version: 0.10.4 + resolution: "util@npm:0.10.4" + dependencies: + inherits: 2.0.3 + checksum: 913f9a90d05a60e91f91af01b8bd37e06bca4cc02d7b49e01089f9d5b78be2fffd61fb1a41b517de7238c5fc7337fa939c62d1fb4eb82e014894c7bee6637aaf + languageName: node + linkType: hard + "v8-to-istanbul@npm:^9.0.1": version: 9.2.0 resolution: "v8-to-istanbul@npm:9.2.0" @@ -8289,6 +10533,458 @@ __metadata: languageName: node linkType: hard +"vega-canvas@npm:^1.2.7": + version: 1.2.7 + resolution: "vega-canvas@npm:1.2.7" + checksum: 6ff92fcdf0c359f2f662909c859a7f4cb4a502436136ab2f4c02373c47a621996ec0eea23e2108f11d62a618be301de86cd8528b5058c2e207a53ddd7ff58d1b + languageName: node + linkType: hard + +"vega-crossfilter@npm:~4.1.2": + version: 4.1.2 + resolution: "vega-crossfilter@npm:4.1.2" + dependencies: + d3-array: ^3.2.2 + vega-dataflow: ^5.7.6 + vega-util: ^1.17.2 + checksum: 1aefd6ad0dd391b28a7fbcdcc5403932fa25b2bd22e37c149b281cd9c89327b8a5cc23f4d4086cee73e2c828ae61e81f192365a3453d4687d0950f0aed3d068e + languageName: node + linkType: hard + +"vega-dataflow@npm:^5.7.6, vega-dataflow@npm:~5.7.6": + version: 5.7.6 + resolution: "vega-dataflow@npm:5.7.6" + dependencies: + vega-format: ^1.1.2 + vega-loader: ^4.5.2 + vega-util: ^1.17.2 + checksum: bea1237a5ddaadaba774b1521ef2419249a0d7c926e8a8bd1dcbbc1b771b5e9fff4a64d515f056d63708c8cb11e0bccd64c302c179af03ecaba2c7fc870422e0 + languageName: node + linkType: hard + +"vega-encode@npm:~4.10.1": + version: 4.10.1 + resolution: "vega-encode@npm:4.10.1" + dependencies: + d3-array: ^3.2.2 + d3-interpolate: ^3.0.1 + vega-dataflow: ^5.7.6 + vega-scale: ^7.4.1 + vega-util: ^1.17.2 + checksum: cfaa3655bd0c22b19bd834e853770d0121a8f189b5697c786e85bdde8d61decbfe04f5c9c94936a260c3684177d61bc10a18a1895df56b70f025b7a4dc9a9fb8 + languageName: node + linkType: hard + +"vega-event-selector@npm:^3.0.1, vega-event-selector@npm:~3.0.1": + version: 3.0.1 + resolution: "vega-event-selector@npm:3.0.1" + checksum: 66d09b5800a19a9b0c75f28811b140a1a2e70e84be6d6f87c568cdbce6e17c8e195f130f4e3de5d6dc737142d1f46f4fe7645177e154582cc8ba27c6845b54e8 + languageName: node + linkType: hard + +"vega-expression@npm:^5.0.1, vega-expression@npm:^5.1.1, vega-expression@npm:~5.1.0, vega-expression@npm:~5.1.1": + version: 5.1.1 + resolution: "vega-expression@npm:5.1.1" + dependencies: + "@types/estree": ^1.0.0 + vega-util: ^1.17.2 + checksum: 5af3732b1757000e7f79f7b923cf6594cf75bdc2350b2d54992d8df0bad5cea04812d6d08b79e6fc7a20c3df944b6c11fc5e6ab39a098e5d51e3edf33df4d29f + languageName: node + linkType: hard + +"vega-force@npm:~4.2.1": + version: 4.2.1 + resolution: "vega-force@npm:4.2.1" + dependencies: + d3-force: ^3.0.0 + vega-dataflow: ^5.7.6 + vega-util: ^1.17.2 + checksum: da7b113943f4369a4217db88e17022966f1e228349eaf368bc487c6f73d488d20de5a5ced901948f96ebe1b6c45efb642e2a1dbc43299da1aea41c62648ab48b + languageName: node + linkType: hard + +"vega-format@npm:^1.1.2, vega-format@npm:~1.1.2": + version: 1.1.2 + resolution: "vega-format@npm:1.1.2" + dependencies: + d3-array: ^3.2.2 + d3-format: ^3.1.0 + d3-time-format: ^4.1.0 + vega-time: ^2.1.2 + vega-util: ^1.17.2 + checksum: 04edc955080a994353a7d8915fd2142b5f055b7d86d7d7ab45f44648a68d8138c958d40a4cc6f4ecdd4f2327866d5ad96aa8fb9b543f2c130c01d8893e2cb365 + languageName: node + linkType: hard + +"vega-functions@npm:^5.15.0, vega-functions@npm:~5.15.0": + version: 5.15.0 + resolution: "vega-functions@npm:5.15.0" + dependencies: + d3-array: ^3.2.2 + d3-color: ^3.1.0 + d3-geo: ^3.1.0 + vega-dataflow: ^5.7.6 + vega-expression: ^5.1.1 + vega-scale: ^7.4.1 + vega-scenegraph: ^4.13.0 + vega-selections: ^5.4.2 + vega-statistics: ^1.9.0 + vega-time: ^2.1.2 + vega-util: ^1.17.2 + checksum: 5aff41436560b18f03059f173d951e13f7d7c6d0cf0552829f951c7d992a69c9374651d472e51ba092e14cf99c3a9d000ebb2918a13354c52827da9cb3f462f0 + languageName: node + linkType: hard + +"vega-geo@npm:~4.4.2": + version: 4.4.2 + resolution: "vega-geo@npm:4.4.2" + dependencies: + d3-array: ^3.2.2 + d3-color: ^3.1.0 + d3-geo: ^3.1.0 + vega-canvas: ^1.2.7 + vega-dataflow: ^5.7.6 + vega-projection: ^1.6.1 + vega-statistics: ^1.9.0 + vega-util: ^1.17.2 + checksum: a7c0df4c0ae8c762136ca6b22047a278c32a848d970cb729f9b7886852856996b48ae0ffc44a357ddecd4fd665f66b33291efd056692864fba9d6d60a30115fa + languageName: node + linkType: hard + +"vega-hierarchy@npm:~4.1.2": + version: 4.1.2 + resolution: "vega-hierarchy@npm:4.1.2" + dependencies: + d3-hierarchy: ^3.1.2 + vega-dataflow: ^5.7.6 + vega-util: ^1.17.2 + checksum: 5c083982cc99f78f34a7ddec2719cd2e016971024d8e11572be35600d10940ab4c14624254d3cef99756345f5601c39f62fb9d2cbeab5a341b3c6dc4c47dc4e9 + languageName: node + linkType: hard + +"vega-label@npm:~1.3.0": + version: 1.3.0 + resolution: "vega-label@npm:1.3.0" + dependencies: + vega-canvas: ^1.2.7 + vega-dataflow: ^5.7.6 + vega-scenegraph: ^4.13.0 + vega-util: ^1.17.2 + checksum: d42049c2c9d1a92f3a2f5531d28ed9250593f0a62399d1397fc597674377a1c91ae1363dc753d0ce1c5c25eecbdda2f9710ad64c5ebfa52f171c5b57ca706490 + languageName: node + linkType: hard + +"vega-lite@npm:^5.6.1": + version: 5.19.0 + resolution: "vega-lite@npm:5.19.0" + dependencies: + json-stringify-pretty-compact: ~3.0.0 + tslib: ~2.6.3 + vega-event-selector: ~3.0.1 + vega-expression: ~5.1.0 + vega-util: ~1.17.2 + yargs: ~17.7.2 + peerDependencies: + vega: ^5.24.0 + bin: + vl2pdf: bin/vl2pdf + vl2png: bin/vl2png + vl2svg: bin/vl2svg + vl2vg: bin/vl2vg + checksum: 78baf896f1638637a3a2103923ceb00395dab658d043f187fe67992aacf6ba70264ce3f3e60012bfcf9e55a7f22183b9c4174c71ee082aa69e4b47bf827fb428 + languageName: node + linkType: hard + +"vega-loader@npm:^4.5.2, vega-loader@npm:~4.5.2": + version: 4.5.2 + resolution: "vega-loader@npm:4.5.2" + dependencies: + d3-dsv: ^3.0.1 + node-fetch: ^2.6.7 + topojson-client: ^3.1.0 + vega-format: ^1.1.2 + vega-util: ^1.17.2 + checksum: e2f77e36dd40d5604b31f7273a0cebc5cc2a83560131bec217fc9c2c1f03faa68fe57c86ff39d3b14d375a9ad91f1d5709abaf666e30ca97041f687756d99de6 + languageName: node + linkType: hard + +"vega-parser@npm:~6.4.0": + version: 6.4.0 + resolution: "vega-parser@npm:6.4.0" + dependencies: + vega-dataflow: ^5.7.6 + vega-event-selector: ^3.0.1 + vega-functions: ^5.15.0 + vega-scale: ^7.4.1 + vega-util: ^1.17.2 + checksum: bc0d0057e65820351513c550b0576e5860f7110e3de05fd682b01c3d6453c3aef8a3510ab039d8b45b4269b233a67f5bd4b09cfd770f21cdf58a1f2d186e03c8 + languageName: node + linkType: hard + +"vega-projection@npm:^1.6.1, vega-projection@npm:~1.6.1": + version: 1.6.1 + resolution: "vega-projection@npm:1.6.1" + dependencies: + d3-geo: ^3.1.0 + d3-geo-projection: ^4.0.0 + vega-scale: ^7.4.1 + checksum: 4ea5c449d4aed427add0777cecf430670c6addaa1c938bc112458e1b2281e5a976b9bcbe1b3aa2ce3e135ae39a6ddecd32c3ac1bd978f879d1bcd8fe0425aab3 + languageName: node + linkType: hard + +"vega-regression@npm:~1.3.0": + version: 1.3.0 + resolution: "vega-regression@npm:1.3.0" + dependencies: + d3-array: ^3.2.2 + vega-dataflow: ^5.7.6 + vega-statistics: ^1.9.0 + vega-util: ^1.17.2 + checksum: 1a442e5a8d17cc07a02b080ac2c75b1de5dd4133df70f482833c9d3fa4794bce2acc10ce9c85d7c96fa47e5566728c84fb6ee1afa309d96b522575e1cade84fd + languageName: node + linkType: hard + +"vega-runtime@npm:^6.2.0, vega-runtime@npm:~6.2.0": + version: 6.2.0 + resolution: "vega-runtime@npm:6.2.0" + dependencies: + vega-dataflow: ^5.7.6 + vega-util: ^1.17.2 + checksum: e818063dd9b1ca336cb27437047c50ed15f70be86413166d84687aca40270f574da82355934c43cedbb40b14639fe171cfae29eb975ede10910747d345f38e15 + languageName: node + linkType: hard + +"vega-scale@npm:^7.4.1, vega-scale@npm:~7.4.1": + version: 7.4.1 + resolution: "vega-scale@npm:7.4.1" + dependencies: + d3-array: ^3.2.2 + d3-interpolate: ^3.0.1 + d3-scale: ^4.0.2 + d3-scale-chromatic: ^3.1.0 + vega-time: ^2.1.2 + vega-util: ^1.17.2 + checksum: 7fe83fdcf09b1e328531d0e4a411ad2eaabbde40b5c0a6de21c75dc341ca208194b1cf48369d76a64718beac438549dad42ff5e7e495a6e39bcff1aeb24118b9 + languageName: node + linkType: hard + +"vega-scenegraph@npm:^4.13.0, vega-scenegraph@npm:~4.13.0": + version: 4.13.0 + resolution: "vega-scenegraph@npm:4.13.0" + dependencies: + d3-path: ^3.1.0 + d3-shape: ^3.2.0 + vega-canvas: ^1.2.7 + vega-loader: ^4.5.2 + vega-scale: ^7.4.1 + vega-util: ^1.17.2 + checksum: 8910511db2bd11237984716e69817d3e91fc83d871263771933f5693b281f9dfe74e93caab913869283fcbbfdb739657d246beed07e43dd5ebfa405bb21fca27 + languageName: node + linkType: hard + +"vega-selections@npm:^5.4.2": + version: 5.4.2 + resolution: "vega-selections@npm:5.4.2" + dependencies: + d3-array: 3.2.4 + vega-expression: ^5.0.1 + vega-util: ^1.17.1 + checksum: 4e78053ab1f8ba4338005ed424043e7d0e91c857b58ab03600a07292e3777a4244d34caa7f8c85e72b2fdd9916882dfdda2fa93c730120ce790ec9883738f2be + languageName: node + linkType: hard + +"vega-statistics@npm:^1.7.9, vega-statistics@npm:^1.9.0, vega-statistics@npm:~1.9.0": + version: 1.9.0 + resolution: "vega-statistics@npm:1.9.0" + dependencies: + d3-array: ^3.2.2 + checksum: bbf2ea088c5a6a662c6aed1bf57996c06a82a98228730ada8a97e57824a6ed391999ea974f16dcde6e73bf88799976d91aff748842848d38ab45dbb9fafba3f9 + languageName: node + linkType: hard + +"vega-time@npm:^2.1.2, vega-time@npm:~2.1.2": + version: 2.1.2 + resolution: "vega-time@npm:2.1.2" + dependencies: + d3-array: ^3.2.2 + d3-time: ^3.1.0 + vega-util: ^1.17.2 + checksum: 35605db00f110f75274ee115716dc9e981da3cecb8c5692865557860058931ecb43d64f0ec2e7f00225a73e00fb7d1424d12b091a43ed11962a2f63177465dd6 + languageName: node + linkType: hard + +"vega-transforms@npm:~4.12.0": + version: 4.12.0 + resolution: "vega-transforms@npm:4.12.0" + dependencies: + d3-array: ^3.2.2 + vega-dataflow: ^5.7.6 + vega-statistics: ^1.9.0 + vega-time: ^2.1.2 + vega-util: ^1.17.2 + checksum: f2dcc0ef9f8fe49df3f421956d689dc0b0eccd7c178575c9a1093729d70dab6780b9a54f3d5725e55b8480bb2eff363d606c8e001e49f9492952354f1ebb8e72 + languageName: node + linkType: hard + +"vega-typings@npm:~1.3.1": + version: 1.3.1 + resolution: "vega-typings@npm:1.3.1" + dependencies: + "@types/geojson": 7946.0.4 + vega-event-selector: ^3.0.1 + vega-expression: ^5.1.1 + vega-util: ^1.17.2 + checksum: 0a7b4ecf3c5858a1216389f94fea8ba725371569c072f1e561d545938efa7ef6982a35377408c5238e11f9ae17c07ee5622ab3d1bcc92935e757d8806966d42c + languageName: node + linkType: hard + +"vega-util@npm:^1.17.1, vega-util@npm:^1.17.2, vega-util@npm:~1.17.2": + version: 1.17.2 + resolution: "vega-util@npm:1.17.2" + checksum: 5d681cb1a6ffda7af1b74df7c1c46a32f1d874daef54f9c9c65c7d7c7bfc4271dc6d9b1c1c7a853b14eb6e4cc8ec811b0132cd3ea25fa85259eac92e1b4f07fa + languageName: node + linkType: hard + +"vega-view-transforms@npm:~4.6.0": + version: 4.6.0 + resolution: "vega-view-transforms@npm:4.6.0" + dependencies: + vega-dataflow: ^5.7.6 + vega-scenegraph: ^4.13.0 + vega-util: ^1.17.2 + checksum: 5fde295a051e41ee644480bb2554b7f39e9a77377a172e96265a0d95bd8049abc2e33e78707e193d28d990ca12072f9957da54a7c595b98b547020726bc07936 + languageName: node + linkType: hard + +"vega-view@npm:~5.13.0": + version: 5.13.0 + resolution: "vega-view@npm:5.13.0" + dependencies: + d3-array: ^3.2.2 + d3-timer: ^3.0.1 + vega-dataflow: ^5.7.6 + vega-format: ^1.1.2 + vega-functions: ^5.15.0 + vega-runtime: ^6.2.0 + vega-scenegraph: ^4.13.0 + vega-util: ^1.17.2 + checksum: 55ce2e108754a18d354070b2b48b9a90ae26d9d98db89871260bcfd6a3abc0882cdc91175d698c0eed88e9a34a49ae7bcd64187954acb7eb437b8e95064e3c8c + languageName: node + linkType: hard + +"vega-voronoi@npm:~4.2.3": + version: 4.2.3 + resolution: "vega-voronoi@npm:4.2.3" + dependencies: + d3-delaunay: ^6.0.2 + vega-dataflow: ^5.7.6 + vega-util: ^1.17.2 + checksum: 2f5146ce081373b1f0cf8cf96eb914224b4bd10e41b6b0fbc661a4de2dbf124ba4a2756b14ff9f19b8584374df0071a0d0c97043fca393aaa3526fb5d8a8bec1 + languageName: node + linkType: hard + +"vega-wordcloud@npm:~4.1.5": + version: 4.1.5 + resolution: "vega-wordcloud@npm:4.1.5" + dependencies: + vega-canvas: ^1.2.7 + vega-dataflow: ^5.7.6 + vega-scale: ^7.4.1 + vega-statistics: ^1.9.0 + vega-util: ^1.17.2 + checksum: 88ac7776a0f7e02b2e50de7fd59d593ff16cad58cd756e219a9c9e6005343eb41c96109aff141b6be344f824e5238bac0d83c8a8d78136e380f9020a14c0e373 + languageName: node + linkType: hard + +"vega@npm:^5.20.0": + version: 5.30.0 + resolution: "vega@npm:5.30.0" + dependencies: + vega-crossfilter: ~4.1.2 + vega-dataflow: ~5.7.6 + vega-encode: ~4.10.1 + vega-event-selector: ~3.0.1 + vega-expression: ~5.1.1 + vega-force: ~4.2.1 + vega-format: ~1.1.2 + vega-functions: ~5.15.0 + vega-geo: ~4.4.2 + vega-hierarchy: ~4.1.2 + vega-label: ~1.3.0 + vega-loader: ~4.5.2 + vega-parser: ~6.4.0 + vega-projection: ~1.6.1 + vega-regression: ~1.3.0 + vega-runtime: ~6.2.0 + vega-scale: ~7.4.1 + vega-scenegraph: ~4.13.0 + vega-statistics: ~1.9.0 + vega-time: ~2.1.2 + vega-transforms: ~4.12.0 + vega-typings: ~1.3.1 + vega-util: ~1.17.2 + vega-view: ~5.13.0 + vega-view-transforms: ~4.6.0 + vega-voronoi: ~4.2.3 + vega-wordcloud: ~4.1.5 + checksum: 4775a990339a5d45bc42b474678b8136134aed7f8df0cfd43be9b440c82b90e5784f642fd69298dc66a930297c3e828fc106d75d0cc2b6fc15ecea30313e6af6 + languageName: node + linkType: hard + +"vscode-jsonrpc@npm:8.2.0": + version: 8.2.0 + resolution: "vscode-jsonrpc@npm:8.2.0" + checksum: f302a01e59272adc1ae6494581fa31c15499f9278df76366e3b97b2236c7c53ebfc71efbace9041cfd2caa7f91675b9e56f2407871a1b3c7f760a2e2ee61484a + languageName: node + linkType: hard + +"vscode-jsonrpc@npm:^6.0.0": + version: 6.0.0 + resolution: "vscode-jsonrpc@npm:6.0.0" + checksum: 3a67a56f287e8c449f2d9752eedf91e704dc7b9a326f47fb56ac07667631deb45ca52192e9bccb2ab108764e48409d70fa64b930d46fc3822f75270b111c5f53 + languageName: node + linkType: hard + +"vscode-jsonrpc@npm:^8.0.2": + version: 8.2.1 + resolution: "vscode-jsonrpc@npm:8.2.1" + checksum: 2af2c333d73f6587896a7077978b8d4b430e55c674d5dbb90597a84a6647057c1655a3bff398a9b08f1f8ba57dbd2deabf05164315829c297b0debba3b8bc19e + languageName: node + linkType: hard + +"vscode-languageserver-protocol@npm:^3.17.0": + version: 3.17.5 + resolution: "vscode-languageserver-protocol@npm:3.17.5" + dependencies: + vscode-jsonrpc: 8.2.0 + vscode-languageserver-types: 3.17.5 + checksum: dfb42d276df5dfea728267885b99872ecff62f6c20448b8539fae71bb196b420f5351c5aca7c1047bf8fb1f89fa94a961dce2bc5bf7e726198f4be0bb86a1e71 + languageName: node + linkType: hard + +"vscode-languageserver-types@npm:3.17.5": + version: 3.17.5 + resolution: "vscode-languageserver-types@npm:3.17.5" + checksum: 79b420e7576398d396579ca3a461c9ed70e78db4403cd28bbdf4d3ed2b66a2b4114031172e51fad49f0baa60a2180132d7cb2ea35aa3157d7af3c325528210ac + languageName: node + linkType: hard + +"vscode-ws-jsonrpc@npm:~1.0.2": + version: 1.0.2 + resolution: "vscode-ws-jsonrpc@npm:1.0.2" + dependencies: + vscode-jsonrpc: ^8.0.2 + checksum: eb2fdb5c96f124326505f06564dfc6584318b748fd6e39b4c0ba16a0d383d13ba0e9433596abdb841428dfc2a5501994c3206723d1cb38c6af5fcac1faf4be26 + languageName: node + linkType: hard + +"w3c-keyname@npm:^2.2.4": + version: 2.2.8 + resolution: "w3c-keyname@npm:2.2.8" + checksum: 95bafa4c04fa2f685a86ca1000069c1ec43ace1f8776c10f226a73296caeddd83f893db885c2c220ebeb6c52d424e3b54d7c0c1e963bbf204038ff1a944fbb07 + languageName: node + linkType: hard + "walker@npm:^1.0.8": version: 1.0.8 resolution: "walker@npm:1.0.8" @@ -8315,6 +11011,13 @@ __metadata: languageName: node linkType: hard +"webidl-conversions@npm:^3.0.0": + version: 3.0.1 + resolution: "webidl-conversions@npm:3.0.1" + checksum: c92a0a6ab95314bde9c32e1d0a6dfac83b578f8fa5f21e675bc2706ed6981bc26b7eb7e6a1fab158e5ce4adf9caa4a0aee49a52505d4d13c7be545f15021b17c + languageName: node + linkType: hard + "webidl-conversions@npm:^6.1.0": version: 6.1.0 resolution: "webidl-conversions@npm:6.1.0" @@ -8426,6 +11129,16 @@ __metadata: languageName: node linkType: hard +"whatwg-url@npm:^5.0.0": + version: 5.0.0 + resolution: "whatwg-url@npm:5.0.0" + dependencies: + tr46: ~0.0.3 + webidl-conversions: ^3.0.0 + checksum: b8daed4ad3356cc4899048a15b2c143a9aed0dfae1f611ebd55073310c7b910f522ad75d727346ad64203d7e6c79ef25eafd465f4d12775ca44b90fa82ed9e2c + languageName: node + linkType: hard + "whatwg-url@npm:^8.0.0": version: 8.7.0 resolution: "whatwg-url@npm:8.7.0" @@ -8622,7 +11335,7 @@ __metadata: languageName: node linkType: hard -"yargs@npm:^17.3.1": +"yargs@npm:^17.3.1, yargs@npm:~17.7.2": version: 17.7.2 resolution: "yargs@npm:17.7.2" dependencies: From 4cc71c8a8a6a7a0a9a1473da60956392bcd328c8 Mon Sep 17 00:00:00 2001 From: Nour-Cheour10 Date: Thu, 27 Jun 2024 11:17:07 +0200 Subject: [PATCH 02/21] take off duplicated class --- ipyopenlayers/Map.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/ipyopenlayers/Map.py b/ipyopenlayers/Map.py index cdefe4e..10a1b49 100644 --- a/ipyopenlayers/Map.py +++ b/ipyopenlayers/Map.py @@ -46,17 +46,6 @@ def __init__(self, **kwargs): self.radius = kwargs.get('radius', 8) class HeatmapLayer(Layer): - - _view_name = Unicode('HeatmapLayerView').tag(sync=True) - _model_name = Unicode('HeatmapLayerModel').tag(sync=True) - points= List([]).tag(sync=True) - blur =Int(15).tag(sync=True) - radius = Int(8).tag(sync=True) - - - -class HeatmapLayer(Layer): - _view_name = Unicode('HeatmapLayerView').tag(sync=True) _model_name = Unicode('HeatmapLayerModel').tag(sync=True) points= List([]).tag(sync=True) From 5f019f8afc39a7327b02bf414cb682b0d8ba7e1f Mon Sep 17 00:00:00 2001 From: Nour-Cheour10 Date: Fri, 28 Jun 2024 10:40:57 +0200 Subject: [PATCH 03/21] jlpm install --- examples/introduction.ipynb | 255 ++++++++++++++++++------------------ ipyopenlayers/Map.py | 1 - 2 files changed, 125 insertions(+), 131 deletions(-) diff --git a/examples/introduction.ipynb b/examples/introduction.ipynb index 14deed0..6227495 100644 --- a/examples/introduction.ipynb +++ b/examples/introduction.ipynb @@ -33,7 +33,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "f3814db2cab84231aad173964f68fbf8", + "model_id": "4c76f387aa9d4970b97a987e4dbae92f", "version_major": 2, "version_minor": 0 }, @@ -89,7 +89,7 @@ { "data": { "text/plain": [ - "3.83605035505807" + "2.0" ] }, "execution_count": 6, @@ -147,7 +147,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 11, "metadata": {}, "outputs": [], "source": [ @@ -158,7 +158,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 12, "metadata": {}, "outputs": [], "source": [ @@ -167,7 +167,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 13, "metadata": {}, "outputs": [], "source": [ @@ -176,7 +176,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 14, "metadata": {}, "outputs": [], "source": [ @@ -187,7 +187,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 15, "metadata": {}, "outputs": [], "source": [ @@ -196,7 +196,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 16, "metadata": {}, "outputs": [], "source": [ @@ -207,7 +207,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 17, "metadata": {}, "outputs": [], "source": [ @@ -217,7 +217,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 18, "metadata": {}, "outputs": [], "source": [ @@ -226,7 +226,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 19, "metadata": {}, "outputs": [], "source": [ @@ -237,7 +237,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 20, "metadata": {}, "outputs": [], "source": [ @@ -246,7 +246,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 21, "metadata": {}, "outputs": [], "source": [ @@ -257,7 +257,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 22, "metadata": {}, "outputs": [], "source": [ @@ -266,7 +266,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 23, "metadata": {}, "outputs": [], "source": [ @@ -275,7 +275,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 24, "metadata": {}, "outputs": [], "source": [ @@ -311,7 +311,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 25, "metadata": {}, "outputs": [], "source": [ @@ -320,7 +320,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 26, "metadata": {}, "outputs": [], "source": [ @@ -329,7 +329,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 27, "metadata": {}, "outputs": [], "source": [ @@ -338,16 +338,30 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 28, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "{'type': 'FeatureCollection',\n", + " 'features': [{'type': 'Feature',\n", + " 'geometry': {'type': 'Point', 'coordinates': [0, 0]},\n", + " 'properties': {'name': 'Null Island'}}]}" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "widget.data" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 29, "metadata": {}, "outputs": [], "source": [ @@ -370,7 +384,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 30, "metadata": { "jupyter": { "source_hidden": true @@ -386,13 +400,21 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 31, "metadata": { "jupyter": { "source_hidden": true } }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "20\n" + ] + } + ], "source": [ "n_features = len(data[\"features\"])\n", "colors = n_colors(n_features)\n", @@ -401,16 +423,46 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 32, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['#f7fbff',\n", + " '#edf4fc',\n", + " '#e3eef8',\n", + " '#d8e7f5',\n", + " '#cee0f2',\n", + " '#c2d9ee',\n", + " '#b2d2e8',\n", + " '#a0cbe2',\n", + " '#8cc0dd',\n", + " '#75b4d8',\n", + " '#63a8d3',\n", + " '#519ccc',\n", + " '#4090c5',\n", + " '#3282be',\n", + " '#2474b7',\n", + " '#1966ad',\n", + " '#0e59a2',\n", + " '#084b93',\n", + " '#083d7f',\n", + " '#08306b']" + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "colors" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 33, "metadata": { "jupyter": { "source_hidden": true @@ -429,20 +481,60 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 34, "metadata": { "jupyter": { "source_hidden": true } }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "{'geometry': {'type': 'MultiPolygon',\n", + " 'coordinates': [[[[-77.39940577291571, 34.5780540544853],\n", + " [-77.39940610066606, 34.57805427015046],\n", + " [-77.39940640189788, 34.57805446836596],\n", + " [-77.39940680648922, 34.57805473459376],\n", + " [-77.39940687019617, 34.57805477651398],\n", + " [-77.39940689381065, 34.57805472199389],\n", + " [-77.3994073308358, 34.57805432604519],\n", + " [-77.39940731720131, 34.578054179242265],\n", + " [-77.39940728534575, 34.578053836252096],\n", + " [-77.39940728147378, 34.57805380828763],\n", + " [-77.39940726378504, 34.57805363205166],\n", + " [-77.39940725501071, 34.57805361742678],\n", + " [-77.39940719593868, 34.57805349818902],\n", + " [-77.39940711258689, 34.57805350039165],\n", + " [-77.39940706262787, 34.57805349996589],\n", + " [-77.3994070238417, 34.578053501157314],\n", + " [-77.39940689549977, 34.57805350509971],\n", + " [-77.3994068702403, 34.5780535173504],\n", + " [-77.39940683257294, 34.57805352755014],\n", + " [-77.39940665584797, 34.57805351246129],\n", + " [-77.39940650171212, 34.578053517196004],\n", + " [-77.39940646539253, 34.578053518311656],\n", + " [-77.39940610067742, 34.578053945657025]]]]},\n", + " 'type': 'Feature',\n", + " 'id': 'demo0',\n", + " 'properties': {'style': {'color': '#f7fbff',\n", + " 'weight': 1,\n", + " 'fillColor': '#f7fbff',\n", + " 'fillOpacity': 0.5}}}" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "data[\"features\"][0]\n" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 35, "metadata": {}, "outputs": [], "source": [ @@ -451,7 +543,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 36, "metadata": {}, "outputs": [], "source": [ @@ -460,7 +552,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 37, "metadata": {}, "outputs": [], "source": [ @@ -571,103 +663,6 @@ "outputs": [], "source": [] }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "points = [[0, 0]]\n", - "heatmap_layer = HeatmapLayer(blur=20, radius=15, points=points)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "m.add_layer(heatmap_layer)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "points_data_france = [\n", - " [48.8566, 2.3522, 0.8], # Paris\n", - " [45.7640, 4.8357, 0.6], # Lyon\n", - " [43.2965, 5.3698, 0.7], # Marseille\n", - " [43.6045, 1.4442, 0.5], # Toulouse\n", - " [43.7102, 7.2620, 0.4], # Nice\n", - " [47.2184, -1.5536, 0.3], # Nantes\n", - " [48.5734, 7.7521, 0.6], # Strasbourg\n", - " [43.6119, 3.8772, 0.5], # Montpellier\n", - " [44.8378, -0.5792, 0.4], # Bordeaux\n", - " [50.6292, 3.0573, 0.3], # Lille\n", - "]\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "heatmap_layer = HeatmapLayer(blur=20, radius=15, points=points_data_france)" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": {}, - "outputs": [], - "source": [ - "points_data_france_1 = [\n", - " [42.3656, 9.1493, 16.79], # Haute-Corse\n", - " [43.4527, 6.2649, 16.28], # Var\n", - " [43.6043, 5.0123, 15.93], # Bouches-du-Rhône\n", - " [42.6987, 2.8956, 15.87], # Pyrénées-Orientales\n", - " [43.6119, 3.8772, 15.81], # Hérault\n", - " [41.9264, 8.7364, 15.64], # Corse-du-Sud\n", - " [44.8378, -0.5792, 15.28], # Gironde\n", - " [43.8914, -1.2200, 15.2], # Landes\n", - " [43.9493, 4.8055, 15.17], # Vaucluse\n", - " [44.1004, 1.3555, 14.85], # Tarn-et-Garonne\n", - " [44.3058, 0.6283, 14.85], # Lot-et-Garonne\n", - " [43.6045, 1.4442, 14.75], # Haute-Garonne\n", - " [43.9074, 4.5079, 14.65], # Gard\n", - " [43.6205, 0.5898, 14.52], # Gers\n", - " [43.7102, 7.2620, 14.41], # Alpes-Maritimes\n", - " [45.7515, -0.6331, 14.34], # Charente-Maritime\n", - " [44.6144, 1.9023, 14.05], # Lot\n", - " [43.6043, 2.2344, 13.88], # Tarn\n", - " [43.1566, 2.3605, 13.88], # Aude\n", - " [43.2998, -0.3674, 13.85], # Pyrénées-Atlantiques\n", - " # Continue for other locations as needed\n", - "]\n" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "metadata": {}, - "outputs": [], - "source": [ - "heatmap_layer1 = HeatmapLayer(blur=20, radius=15, points=points_data_france_1)" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "metadata": {}, - "outputs": [], - "source": [ - "m.add_layer(heatmap_layer1)" - ] - }, { "cell_type": "code", "execution_count": null, diff --git a/ipyopenlayers/Map.py b/ipyopenlayers/Map.py index 10a1b49..2785cda 100644 --- a/ipyopenlayers/Map.py +++ b/ipyopenlayers/Map.py @@ -14,7 +14,6 @@ def_loc = [0.0, 0.0] - class Layer(Widget): _model_name = Unicode('LayerModel').tag(sync=True) From d5a75faa0e29ff5a0aa424693d34b5386b39e11b Mon Sep 17 00:00:00 2001 From: Nour Cheour <161816839+Nour-Cheour10@users.noreply.github.com> Date: Thu, 27 Jun 2024 13:29:53 +0200 Subject: [PATCH 04/21] Update package.json Co-authored-by: martinRenou --- package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/package.json b/package.json index 454cde6..eb7e710 100644 --- a/package.json +++ b/package.json @@ -50,7 +50,6 @@ }, "dependencies": { "@jupyter-widgets/base": "^1.1.10 || ^2 || ^3 || ^4 || ^5 || ^6", - "@jupyterlab/galata": "^5.2.2", "ol": "^9.1.0" }, "devDependencies": { From 4ceab2a56fd1f729cf8cad1fdca74306915a2943 Mon Sep 17 00:00:00 2001 From: Nour-Cheour10 Date: Thu, 27 Jun 2024 14:34:12 +0200 Subject: [PATCH 05/21] add await before screenshot --- ui-tests/tests/ipyopenlayers.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui-tests/tests/ipyopenlayers.test.ts b/ui-tests/tests/ipyopenlayers.test.ts index 3a33e9c..ce4c859 100644 --- a/ui-tests/tests/ipyopenlayers.test.ts +++ b/ui-tests/tests/ipyopenlayers.test.ts @@ -103,7 +103,7 @@ const testPlotUpdates = async ( let cellCount = 0; await page.notebook.runCellByCell({ onAfterCellRun: async (cellIndex: number) => { - // Always get first cell output which must contain the plot + const cell = await page.notebook.getCellOutput(0); if (cell) { results.push(await cell.screenshot()); @@ -111,7 +111,7 @@ const testPlotUpdates = async ( } }, }); - + await page.waitForTimeout(1000); await page.notebook.save(); for (let i = 0; i < cellCount; i++) { From f41b77fb22d4693efa469f51ea9aa73854fbcb95 Mon Sep 17 00:00:00 2001 From: Nour-Cheour10 Date: Thu, 27 Jun 2024 16:42:02 +0200 Subject: [PATCH 06/21] restore package --- ipyopenlayers/Map.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ipyopenlayers/Map.py b/ipyopenlayers/Map.py index 2785cda..3f58f71 100644 --- a/ipyopenlayers/Map.py +++ b/ipyopenlayers/Map.py @@ -44,6 +44,7 @@ def __init__(self, **kwargs): self.blur = kwargs.get('blur', 15) self.radius = kwargs.get('radius', 8) + class HeatmapLayer(Layer): _view_name = Unicode('HeatmapLayerView').tag(sync=True) _model_name = Unicode('HeatmapLayerModel').tag(sync=True) From b480bffb2b63d27f9f73e91bb7e9089338bfb012 Mon Sep 17 00:00:00 2001 From: Nour-Cheour10 Date: Fri, 28 Jun 2024 11:03:18 +0200 Subject: [PATCH 07/21] yarn.lock --- yarn.lock | 2797 +---------------------------------------------------- 1 file changed, 42 insertions(+), 2755 deletions(-) diff --git a/yarn.lock b/yarn.lock index d85412e..6d1abd6 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1372,264 +1372,6 @@ __metadata: languageName: node linkType: hard -"@codemirror/autocomplete@npm:^6.0.0, @codemirror/autocomplete@npm:^6.15.0, @codemirror/autocomplete@npm:^6.3.2, @codemirror/autocomplete@npm:^6.7.1": - version: 6.16.3 - resolution: "@codemirror/autocomplete@npm:6.16.3" - dependencies: - "@codemirror/language": ^6.0.0 - "@codemirror/state": ^6.0.0 - "@codemirror/view": ^6.17.0 - "@lezer/common": ^1.0.0 - peerDependencies: - "@codemirror/language": ^6.0.0 - "@codemirror/state": ^6.0.0 - "@codemirror/view": ^6.0.0 - "@lezer/common": ^1.0.0 - checksum: bd38808c9c143c61f2d4a4f8532a376614a511000e31dea1c7ea38240b707bd8b94a95141b592aeb62ee9ed39050af58a218926834c28e6867ab32c482ecd374 - languageName: node - linkType: hard - -"@codemirror/commands@npm:^6.3.3": - version: 6.6.0 - resolution: "@codemirror/commands@npm:6.6.0" - dependencies: - "@codemirror/language": ^6.0.0 - "@codemirror/state": ^6.4.0 - "@codemirror/view": ^6.27.0 - "@lezer/common": ^1.1.0 - checksum: 53bb29f11f4453b7409836c41a9c13c0a8cb300e05ecc4928217330cf6e6735b1e5fb7fb831a2b1b8636593d6f3da42d016196ee1c8bb424f9cb73d55b8cb884 - languageName: node - linkType: hard - -"@codemirror/lang-cpp@npm:^6.0.2": - version: 6.0.2 - resolution: "@codemirror/lang-cpp@npm:6.0.2" - dependencies: - "@codemirror/language": ^6.0.0 - "@lezer/cpp": ^1.0.0 - checksum: bb9eba482cca80037ce30c7b193cf45eff19ccbb773764fddf2071756468ecc25aa53c777c943635054f89095b0247b9b50c339e107e41e68d34d12a7295f9a9 - languageName: node - linkType: hard - -"@codemirror/lang-css@npm:^6.0.0, @codemirror/lang-css@npm:^6.2.1": - version: 6.2.1 - resolution: "@codemirror/lang-css@npm:6.2.1" - dependencies: - "@codemirror/autocomplete": ^6.0.0 - "@codemirror/language": ^6.0.0 - "@codemirror/state": ^6.0.0 - "@lezer/common": ^1.0.2 - "@lezer/css": ^1.0.0 - checksum: 5a8457ee8a4310030a969f2d3128429f549c4dc9b7907ee8888b42119c80b65af99093801432efdf659b8ec36a147d2a947bc1ecbbf69a759395214e3f4834a8 - languageName: node - linkType: hard - -"@codemirror/lang-html@npm:^6.0.0, @codemirror/lang-html@npm:^6.4.8": - version: 6.4.9 - resolution: "@codemirror/lang-html@npm:6.4.9" - dependencies: - "@codemirror/autocomplete": ^6.0.0 - "@codemirror/lang-css": ^6.0.0 - "@codemirror/lang-javascript": ^6.0.0 - "@codemirror/language": ^6.4.0 - "@codemirror/state": ^6.0.0 - "@codemirror/view": ^6.17.0 - "@lezer/common": ^1.0.0 - "@lezer/css": ^1.1.0 - "@lezer/html": ^1.3.0 - checksum: ac8c3ceb0396f2e032752c5079bd950124dca708bc64e96fc147dc5fe7133e5cee0814fe951abdb953ec1d11fa540e4b30a712b5149d9a36016a197a28de45d7 - languageName: node - linkType: hard - -"@codemirror/lang-java@npm:^6.0.1": - version: 6.0.1 - resolution: "@codemirror/lang-java@npm:6.0.1" - dependencies: - "@codemirror/language": ^6.0.0 - "@lezer/java": ^1.0.0 - checksum: 4679104683cbffcd224ac04c7e5d144b787494697b26470b07017259035b7bb3fa62609d9a61bfbc566f1756d9f972f9f26d96a3c1362dd48881c1172f9a914d - languageName: node - linkType: hard - -"@codemirror/lang-javascript@npm:^6.0.0, @codemirror/lang-javascript@npm:^6.2.2": - version: 6.2.2 - resolution: "@codemirror/lang-javascript@npm:6.2.2" - dependencies: - "@codemirror/autocomplete": ^6.0.0 - "@codemirror/language": ^6.6.0 - "@codemirror/lint": ^6.0.0 - "@codemirror/state": ^6.0.0 - "@codemirror/view": ^6.17.0 - "@lezer/common": ^1.0.0 - "@lezer/javascript": ^1.0.0 - checksum: 66379942a8347dff2bd76d10ed7cf313bca83872f8336fdd3e14accfef23e7b690cd913c9d11a3854fba2b32299da07fc3275995327642c9ee43c2a8e538c19d - languageName: node - linkType: hard - -"@codemirror/lang-json@npm:^6.0.1": - version: 6.0.1 - resolution: "@codemirror/lang-json@npm:6.0.1" - dependencies: - "@codemirror/language": ^6.0.0 - "@lezer/json": ^1.0.0 - checksum: e9e87d50ff7b81bd56a6ab50740b1dd54e9a93f1be585e1d59d0642e2148842ea1528ac7b7221eb4ddc7fe84bbc28065144cc3ab86f6e06c6aeb2d4b4e62acf1 - languageName: node - linkType: hard - -"@codemirror/lang-markdown@npm:^6.2.4": - version: 6.2.5 - resolution: "@codemirror/lang-markdown@npm:6.2.5" - dependencies: - "@codemirror/autocomplete": ^6.7.1 - "@codemirror/lang-html": ^6.0.0 - "@codemirror/language": ^6.3.0 - "@codemirror/state": ^6.0.0 - "@codemirror/view": ^6.0.0 - "@lezer/common": ^1.2.1 - "@lezer/markdown": ^1.0.0 - checksum: 3d9e0817f888eddcb6d05ec8f0d8dacbde7b9ef7650303bc4ab8b08a550a986c60c65b1565212e06af389c31590330f1f5ed65e619a9446dc2979ff3dac0e874 - languageName: node - linkType: hard - -"@codemirror/lang-php@npm:^6.0.1": - version: 6.0.1 - resolution: "@codemirror/lang-php@npm:6.0.1" - dependencies: - "@codemirror/lang-html": ^6.0.0 - "@codemirror/language": ^6.0.0 - "@codemirror/state": ^6.0.0 - "@lezer/common": ^1.0.0 - "@lezer/php": ^1.0.0 - checksum: c003a29a426486453fdfddbf7302982fa2aa7f059bf6f1ce4cbf08341b0162eee5e2f50e0d71c418dcd358491631780156d846fe352754d042576172c5d86721 - languageName: node - linkType: hard - -"@codemirror/lang-python@npm:^6.1.4": - version: 6.1.6 - resolution: "@codemirror/lang-python@npm:6.1.6" - dependencies: - "@codemirror/autocomplete": ^6.3.2 - "@codemirror/language": ^6.8.0 - "@codemirror/state": ^6.0.0 - "@lezer/common": ^1.2.1 - "@lezer/python": ^1.1.4 - checksum: eb1faabd332bb95d0f3e227eb19ac5a31140cf238905bbe73e061040999f5680a012f9145fb3688bc2fcbb1908c957511edc8eeb8a9aa88d27d4fa55ad451e95 - languageName: node - linkType: hard - -"@codemirror/lang-rust@npm:^6.0.1": - version: 6.0.1 - resolution: "@codemirror/lang-rust@npm:6.0.1" - dependencies: - "@codemirror/language": ^6.0.0 - "@lezer/rust": ^1.0.0 - checksum: 8a439944cb22159b0b3465ca4fa4294c69843219d5d30e278ae6df8e48f30a7a9256129723c025ec9b5e694d31a3560fb004300b125ffcd81c22d13825845170 - languageName: node - linkType: hard - -"@codemirror/lang-sql@npm:^6.6.1": - version: 6.6.5 - resolution: "@codemirror/lang-sql@npm:6.6.5" - dependencies: - "@codemirror/autocomplete": ^6.0.0 - "@codemirror/language": ^6.0.0 - "@codemirror/state": ^6.0.0 - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - checksum: 543f4010ba86c85be13eaf5baa6236d4446dc1d2045fb451fdd55545fd3349dda650b833d98da0c67123dbd9e18a5137564c026059537b4096f8a3582bcb7dac - languageName: node - linkType: hard - -"@codemirror/lang-wast@npm:^6.0.2": - version: 6.0.2 - resolution: "@codemirror/lang-wast@npm:6.0.2" - dependencies: - "@codemirror/language": ^6.0.0 - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - checksum: 72119d4a7d726c54167aa227c982ae9fa785c8ad97a158d8350ae95eecfbd8028a803eef939f7e6c5c6e626fcecda1dc37e9dffc6d5d6ec105f686aeda6b2c24 - languageName: node - linkType: hard - -"@codemirror/lang-xml@npm:^6.1.0": - version: 6.1.0 - resolution: "@codemirror/lang-xml@npm:6.1.0" - dependencies: - "@codemirror/autocomplete": ^6.0.0 - "@codemirror/language": ^6.4.0 - "@codemirror/state": ^6.0.0 - "@codemirror/view": ^6.0.0 - "@lezer/common": ^1.0.0 - "@lezer/xml": ^1.0.0 - checksum: 3a1b7af07b29ad7e53b77bf584245580b613bc92256059f175f2b1d7c28c4e39b75654fe169b9a8a330a60164b53ff5254bdb5b8ee8c6e6766427ee115c4e229 - languageName: node - linkType: hard - -"@codemirror/language@npm:^6.0.0, @codemirror/language@npm:^6.10.1, @codemirror/language@npm:^6.3.0, @codemirror/language@npm:^6.4.0, @codemirror/language@npm:^6.6.0, @codemirror/language@npm:^6.8.0": - version: 6.10.2 - resolution: "@codemirror/language@npm:6.10.2" - dependencies: - "@codemirror/state": ^6.0.0 - "@codemirror/view": ^6.23.0 - "@lezer/common": ^1.1.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - style-mod: ^4.0.0 - checksum: 4e60afb75fb56519f59d9d85e0aa03f0c8d017e0da0f3f8f321baf35a776801fcec9787f3d0c029eba12aa766fba98b0fe86fc3111b43e0812b554184c0e8d67 - languageName: node - linkType: hard - -"@codemirror/legacy-modes@npm:^6.3.3": - version: 6.4.0 - resolution: "@codemirror/legacy-modes@npm:6.4.0" - dependencies: - "@codemirror/language": ^6.0.0 - checksum: d382aa6f640a67418bd209e1e4b395340f96aac1b0cf185927fc2c7f98b62cfd0c59ef0f7048148ce8771622003ca844c78c2d18548235ecc57d0bcbfbbfe091 - languageName: node - linkType: hard - -"@codemirror/lint@npm:^6.0.0": - version: 6.8.1 - resolution: "@codemirror/lint@npm:6.8.1" - dependencies: - "@codemirror/state": ^6.0.0 - "@codemirror/view": ^6.0.0 - crelt: ^1.0.5 - checksum: faa222b679770baf094ea707251e27d6eef347157006223c22d7726fb5adc9d77257f36c366367ec729cb6286aca3276d30a470e0d0ea9a884ec948e798668e9 - languageName: node - linkType: hard - -"@codemirror/search@npm:^6.5.6": - version: 6.5.6 - resolution: "@codemirror/search@npm:6.5.6" - dependencies: - "@codemirror/state": ^6.0.0 - "@codemirror/view": ^6.0.0 - crelt: ^1.0.5 - checksum: 19dc88d09fc750563347001e83c6194bbb2a25c874bd919d2d81809e1f98d6330222ddbd284aa9758a09eeb41fd153ec7c2cf810b2ee51452c25963d7f5833d5 - languageName: node - linkType: hard - -"@codemirror/state@npm:^6.0.0, @codemirror/state@npm:^6.4.0, @codemirror/state@npm:^6.4.1": - version: 6.4.1 - resolution: "@codemirror/state@npm:6.4.1" - checksum: b81b55574091349eed4d32fc0eadb0c9688f1f7c98b681318f59138ee0f527cb4c4a97831b70547c0640f02f3127647838ae6730782de4a3dd2cc58836125d01 - languageName: node - linkType: hard - -"@codemirror/view@npm:^6.0.0, @codemirror/view@npm:^6.17.0, @codemirror/view@npm:^6.23.0, @codemirror/view@npm:^6.26.0, @codemirror/view@npm:^6.27.0": - version: 6.28.1 - resolution: "@codemirror/view@npm:6.28.1" - dependencies: - "@codemirror/state": ^6.4.0 - style-mod: ^4.1.0 - w3c-keyname: ^2.2.4 - checksum: 8899717af925f9e23beca20e4e095cc974b122a7a41049c6f9cf0027aeb700faa71d012fc78db838747f8a525f3f34aa4e489a7c7042504d45a0097287d89a76 - languageName: node - linkType: hard - "@discoveryjs/json-ext@npm:^0.5.0": version: 0.5.7 resolution: "@discoveryjs/json-ext@npm:0.5.7" @@ -1679,13 +1421,6 @@ __metadata: languageName: node linkType: hard -"@fortawesome/fontawesome-free@npm:^5.12.0": - version: 5.15.4 - resolution: "@fortawesome/fontawesome-free@npm:5.15.4" - checksum: 32281c3df4075290d9a96dfc22f72fadb3da7055d4117e48d34046b8c98032a55fa260ae351b0af5d6f6fb57a2f5d79a4abe52af456da35195f7cb7dda27b4a2 - languageName: node - linkType: hard - "@humanwhocodes/config-array@npm:^0.11.14": version: 0.11.14 resolution: "@humanwhocodes/config-array@npm:0.11.14" @@ -2057,29 +1792,6 @@ __metadata: languageName: node linkType: hard -"@jupyter/react-components@npm:^0.15.3": - version: 0.15.3 - resolution: "@jupyter/react-components@npm:0.15.3" - dependencies: - "@jupyter/web-components": ^0.15.3 - "@microsoft/fast-react-wrapper": ^0.3.22 - react: ">=17.0.0 <19.0.0" - checksum: 1a6b256314259c6465c4b6d958575710536b82234a7bf0fba3e889a07e1f19ff8ab321450be354359876f92c45dbcc9d21a840237ff4a619806d9de696f55496 - languageName: node - linkType: hard - -"@jupyter/web-components@npm:^0.15.3": - version: 0.15.3 - resolution: "@jupyter/web-components@npm:0.15.3" - dependencies: - "@microsoft/fast-colors": ^5.3.1 - "@microsoft/fast-element": ^1.12.0 - "@microsoft/fast-foundation": ^2.49.4 - "@microsoft/fast-web-utilities": ^5.4.1 - checksum: a0980af934157bfdbdb6cc169c0816c1b2e57602d524c56bdcef746a4c25dfeb8f505150d83207c8695ed89b5486cf53d35a3382584d25ef64db666e4e16e45b - languageName: node - linkType: hard - "@jupyter/ydoc@npm:^2.0.1": version: 2.0.1 resolution: "@jupyter/ydoc@npm:2.0.1" @@ -2094,77 +1806,6 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/application@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/application@npm:4.2.2" - dependencies: - "@fortawesome/fontawesome-free": ^5.12.0 - "@jupyterlab/apputils": ^4.3.2 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/docregistry": ^4.2.2 - "@jupyterlab/rendermime": ^4.2.2 - "@jupyterlab/rendermime-interfaces": ^3.10.2 - "@jupyterlab/services": ^7.2.2 - "@jupyterlab/statedb": ^4.2.2 - "@jupyterlab/translation": ^4.2.2 - "@jupyterlab/ui-components": ^4.2.2 - "@lumino/algorithm": ^2.0.1 - "@lumino/application": ^2.3.1 - "@lumino/commands": ^2.3.0 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/polling": ^2.1.2 - "@lumino/properties": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.2 - checksum: 86dbf944df8dbeecce88d5588054bb097f6817ba23c7366002e4a7dcb34bb229371be6d803008a2a8413bf7285db977426a806d9686f135d004f74bf5338b28a - languageName: node - linkType: hard - -"@jupyterlab/apputils@npm:^4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/apputils@npm:4.3.2" - dependencies: - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/observables": ^5.2.2 - "@jupyterlab/rendermime-interfaces": ^3.10.2 - "@jupyterlab/services": ^7.2.2 - "@jupyterlab/settingregistry": ^4.2.2 - "@jupyterlab/statedb": ^4.2.2 - "@jupyterlab/statusbar": ^4.2.2 - "@jupyterlab/translation": ^4.2.2 - "@jupyterlab/ui-components": ^4.2.2 - "@lumino/algorithm": ^2.0.1 - "@lumino/commands": ^2.3.0 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/domutils": ^2.0.1 - "@lumino/messaging": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/virtualdom": ^2.0.1 - "@lumino/widgets": ^2.3.2 - "@types/react": ^18.0.26 - react: ^18.2.0 - sanitize-html: ~2.12.1 - checksum: 4a49f2b56abc80ab1ca144d39901da5250e7394ace3ceb2e14cba9cc638c6ea720a3f8a3a90cd1f878c34d91b1ce8fe63206d2c314d048b3d83ade0e2e787c89 - languageName: node - linkType: hard - -"@jupyterlab/attachments@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/attachments@npm:4.2.2" - dependencies: - "@jupyterlab/nbformat": ^4.2.2 - "@jupyterlab/observables": ^5.2.2 - "@jupyterlab/rendermime": ^4.2.2 - "@jupyterlab/rendermime-interfaces": ^3.10.2 - "@lumino/disposable": ^2.1.2 - "@lumino/signaling": ^2.1.2 - checksum: 36e6b833fd1debe35d19bcd105eb71f1346c7e4d6ea0d710eb9cdef9818e1e9b04fd5763660776aa19332f196a89baaceff17236990afc835d9f5b2971105eda - languageName: node - linkType: hard - "@jupyterlab/builder@npm:^4.0.11": version: 4.2.0 resolution: "@jupyterlab/builder@npm:4.2.0" @@ -2206,133 +1847,6 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/cells@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/cells@npm:4.2.2" - dependencies: - "@codemirror/state": ^6.4.1 - "@codemirror/view": ^6.26.0 - "@jupyter/ydoc": ^2.0.1 - "@jupyterlab/apputils": ^4.3.2 - "@jupyterlab/attachments": ^4.2.2 - "@jupyterlab/codeeditor": ^4.2.2 - "@jupyterlab/codemirror": ^4.2.2 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/documentsearch": ^4.2.2 - "@jupyterlab/filebrowser": ^4.2.2 - "@jupyterlab/nbformat": ^4.2.2 - "@jupyterlab/observables": ^5.2.2 - "@jupyterlab/outputarea": ^4.2.2 - "@jupyterlab/rendermime": ^4.2.2 - "@jupyterlab/services": ^7.2.2 - "@jupyterlab/toc": ^6.2.2 - "@jupyterlab/translation": ^4.2.2 - "@jupyterlab/ui-components": ^4.2.2 - "@lumino/algorithm": ^2.0.1 - "@lumino/coreutils": ^2.1.2 - "@lumino/domutils": ^2.0.1 - "@lumino/dragdrop": ^2.1.4 - "@lumino/messaging": ^2.0.1 - "@lumino/polling": ^2.1.2 - "@lumino/signaling": ^2.1.2 - "@lumino/virtualdom": ^2.0.1 - "@lumino/widgets": ^2.3.2 - react: ^18.2.0 - checksum: 974d81f3917c8c39e9fc603a7f83a06733c21523fa17e4781f8b7d846c9e2b9731fa362c0469dcfbf1370846a34ec652a379408e5e57f78d7aaa271f8180c90e - languageName: node - linkType: hard - -"@jupyterlab/codeeditor@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/codeeditor@npm:4.2.2" - dependencies: - "@codemirror/state": ^6.4.1 - "@jupyter/ydoc": ^2.0.1 - "@jupyterlab/apputils": ^4.3.2 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/nbformat": ^4.2.2 - "@jupyterlab/observables": ^5.2.2 - "@jupyterlab/statusbar": ^4.2.2 - "@jupyterlab/translation": ^4.2.2 - "@jupyterlab/ui-components": ^4.2.2 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/dragdrop": ^2.1.4 - "@lumino/messaging": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.2 - react: ^18.2.0 - checksum: 22a1b7846f4d6c8bd7b472b311d21383031dd98d232f7e83add2acfaa8f277a7a9a48919b8e14bedeb786f53f45adc64387a724337ee91ab52620ea5a9d0a692 - languageName: node - linkType: hard - -"@jupyterlab/codemirror@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/codemirror@npm:4.2.2" - dependencies: - "@codemirror/autocomplete": ^6.15.0 - "@codemirror/commands": ^6.3.3 - "@codemirror/lang-cpp": ^6.0.2 - "@codemirror/lang-css": ^6.2.1 - "@codemirror/lang-html": ^6.4.8 - "@codemirror/lang-java": ^6.0.1 - "@codemirror/lang-javascript": ^6.2.2 - "@codemirror/lang-json": ^6.0.1 - "@codemirror/lang-markdown": ^6.2.4 - "@codemirror/lang-php": ^6.0.1 - "@codemirror/lang-python": ^6.1.4 - "@codemirror/lang-rust": ^6.0.1 - "@codemirror/lang-sql": ^6.6.1 - "@codemirror/lang-wast": ^6.0.2 - "@codemirror/lang-xml": ^6.1.0 - "@codemirror/language": ^6.10.1 - "@codemirror/legacy-modes": ^6.3.3 - "@codemirror/search": ^6.5.6 - "@codemirror/state": ^6.4.1 - "@codemirror/view": ^6.26.0 - "@jupyter/ydoc": ^2.0.1 - "@jupyterlab/codeeditor": ^4.2.2 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/documentsearch": ^4.2.2 - "@jupyterlab/nbformat": ^4.2.2 - "@jupyterlab/translation": ^4.2.2 - "@lezer/common": ^1.2.1 - "@lezer/generator": ^1.7.0 - "@lezer/highlight": ^1.2.0 - "@lezer/markdown": ^1.2.0 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/signaling": ^2.1.2 - yjs: ^13.5.40 - checksum: 60641e41c424407d5584fdde5630b2ada1663b988fd299c628c58d840d3e8b87d7bcdc4bf0da261ad2eaf0b071e868a31e8c458eb0ce989a0b33f3901411d79c - languageName: node - linkType: hard - -"@jupyterlab/console@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/console@npm:4.2.2" - dependencies: - "@jupyter/ydoc": ^2.0.1 - "@jupyterlab/apputils": ^4.3.2 - "@jupyterlab/cells": ^4.2.2 - "@jupyterlab/codeeditor": ^4.2.2 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/nbformat": ^4.2.2 - "@jupyterlab/observables": ^5.2.2 - "@jupyterlab/rendermime": ^4.2.2 - "@jupyterlab/services": ^7.2.2 - "@jupyterlab/translation": ^4.2.2 - "@jupyterlab/ui-components": ^4.2.2 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/dragdrop": ^2.1.4 - "@lumino/messaging": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.2 - checksum: ee10a3c5eb5f6094fcaaacfc95d39b98551c61a6e30bbf6450689bd4195bda1499a539ac1d1b315a682974ecac3e24bc21c2ab7d94b75b9e5490bd773e62f510 - languageName: node - linkType: hard - "@jupyterlab/coreutils@npm:^6.2.0": version: 6.2.0 resolution: "@jupyterlab/coreutils@npm:6.2.0" @@ -2347,232 +1861,6 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/coreutils@npm:^6.2.2": - version: 6.2.2 - resolution: "@jupyterlab/coreutils@npm:6.2.2" - dependencies: - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/signaling": ^2.1.2 - minimist: ~1.2.0 - path-browserify: ^1.0.0 - url-parse: ~1.5.4 - checksum: cea1ec210ce60b32ccd213a75e10d85aed149437817e81ea89230552b33cec4be61472880669035228a156b89dcf99dccac3fe2e19191f8690d8870a732fa30b - languageName: node - linkType: hard - -"@jupyterlab/debugger@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/debugger@npm:4.2.2" - dependencies: - "@codemirror/state": ^6.4.1 - "@codemirror/view": ^6.26.0 - "@jupyter/react-components": ^0.15.3 - "@jupyter/ydoc": ^2.0.1 - "@jupyterlab/application": ^4.2.2 - "@jupyterlab/apputils": ^4.3.2 - "@jupyterlab/cells": ^4.2.2 - "@jupyterlab/codeeditor": ^4.2.2 - "@jupyterlab/codemirror": ^4.2.2 - "@jupyterlab/console": ^4.2.2 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/docregistry": ^4.2.2 - "@jupyterlab/fileeditor": ^4.2.2 - "@jupyterlab/notebook": ^4.2.2 - "@jupyterlab/observables": ^5.2.2 - "@jupyterlab/rendermime": ^4.2.2 - "@jupyterlab/services": ^7.2.2 - "@jupyterlab/translation": ^4.2.2 - "@jupyterlab/ui-components": ^4.2.2 - "@lumino/algorithm": ^2.0.1 - "@lumino/commands": ^2.3.0 - "@lumino/coreutils": ^2.1.2 - "@lumino/datagrid": ^2.3.1 - "@lumino/disposable": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/polling": ^2.1.2 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.2 - "@vscode/debugprotocol": ^1.51.0 - react: ^18.2.0 - checksum: cff0dd6914a3808ce938ca445b532e4751cf0993be67bdd980e9251d621d7f3e474443df7cfab976c81a87d420c6088faae3e519747ef4981e65aa6a06beb520 - languageName: node - linkType: hard - -"@jupyterlab/docmanager@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/docmanager@npm:4.2.2" - dependencies: - "@jupyterlab/apputils": ^4.3.2 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/docregistry": ^4.2.2 - "@jupyterlab/services": ^7.2.2 - "@jupyterlab/statedb": ^4.2.2 - "@jupyterlab/statusbar": ^4.2.2 - "@jupyterlab/translation": ^4.2.2 - "@jupyterlab/ui-components": ^4.2.2 - "@lumino/algorithm": ^2.0.1 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/polling": ^2.1.2 - "@lumino/properties": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.2 - react: ^18.2.0 - checksum: e45a8cbdf82cac4d949ef7177e5ac22530ab03502dea73d21ead1061686ef4c703e1eee749ddd4c33672269922045b4bf2dba6ccfc2b44dc8d696b36f1652fe3 - languageName: node - linkType: hard - -"@jupyterlab/docregistry@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/docregistry@npm:4.2.2" - dependencies: - "@jupyter/ydoc": ^2.0.1 - "@jupyterlab/apputils": ^4.3.2 - "@jupyterlab/codeeditor": ^4.2.2 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/observables": ^5.2.2 - "@jupyterlab/rendermime": ^4.2.2 - "@jupyterlab/rendermime-interfaces": ^3.10.2 - "@jupyterlab/services": ^7.2.2 - "@jupyterlab/translation": ^4.2.2 - "@jupyterlab/ui-components": ^4.2.2 - "@lumino/algorithm": ^2.0.1 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/properties": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.2 - react: ^18.2.0 - checksum: 8cad65f88d827beee8e804683e021da260084243b9e74495093df9bd7e7aff25431c07debc8cfe86c90fa395ab5ebd77ce998ea096a17c5543b5a035f50cd813 - languageName: node - linkType: hard - -"@jupyterlab/documentsearch@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/documentsearch@npm:4.2.2" - dependencies: - "@jupyterlab/apputils": ^4.3.2 - "@jupyterlab/translation": ^4.2.2 - "@jupyterlab/ui-components": ^4.2.2 - "@lumino/commands": ^2.3.0 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/polling": ^2.1.2 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.2 - react: ^18.2.0 - checksum: 2d6806fdf0f85873eb35c7730717a9eb69775760d6fd081cbb274104e04fdf3dcf1e72002271739021552721732fa77bd2d6601c27abca8bf1e6b88a9836a2c8 - languageName: node - linkType: hard - -"@jupyterlab/filebrowser@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/filebrowser@npm:4.2.2" - dependencies: - "@jupyterlab/apputils": ^4.3.2 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/docmanager": ^4.2.2 - "@jupyterlab/docregistry": ^4.2.2 - "@jupyterlab/services": ^7.2.2 - "@jupyterlab/statedb": ^4.2.2 - "@jupyterlab/statusbar": ^4.2.2 - "@jupyterlab/translation": ^4.2.2 - "@jupyterlab/ui-components": ^4.2.2 - "@lumino/algorithm": ^2.0.1 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/domutils": ^2.0.1 - "@lumino/dragdrop": ^2.1.4 - "@lumino/messaging": ^2.0.1 - "@lumino/polling": ^2.1.2 - "@lumino/signaling": ^2.1.2 - "@lumino/virtualdom": ^2.0.1 - "@lumino/widgets": ^2.3.2 - react: ^18.2.0 - checksum: f4354f84060bd100b4530d4816b25b819ce028f92ceb130d79ca90dacf32bb46bcd8e134244b6172bca3bb1cae3402079ffbb8173cc94c5ce75e5b55e77cd67c - languageName: node - linkType: hard - -"@jupyterlab/fileeditor@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/fileeditor@npm:4.2.2" - dependencies: - "@jupyter/ydoc": ^2.0.1 - "@jupyterlab/apputils": ^4.3.2 - "@jupyterlab/codeeditor": ^4.2.2 - "@jupyterlab/codemirror": ^4.2.2 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/docregistry": ^4.2.2 - "@jupyterlab/documentsearch": ^4.2.2 - "@jupyterlab/lsp": ^4.2.2 - "@jupyterlab/statusbar": ^4.2.2 - "@jupyterlab/toc": ^6.2.2 - "@jupyterlab/translation": ^4.2.2 - "@jupyterlab/ui-components": ^4.2.2 - "@lumino/commands": ^2.3.0 - "@lumino/coreutils": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/widgets": ^2.3.2 - react: ^18.2.0 - regexp-match-indices: ^1.0.2 - checksum: 688340fe2ba275a22b6fc240b16b73db96889f128894a5d4f28c4ff5df68ef6f9947316ff9404ec93624eecd60a9834e2b343b04f82fa980f701d5ec30cd349d - languageName: node - linkType: hard - -"@jupyterlab/galata@npm:^5.2.2": - version: 5.2.2 - resolution: "@jupyterlab/galata@npm:5.2.2" - dependencies: - "@jupyterlab/application": ^4.2.2 - "@jupyterlab/apputils": ^4.3.2 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/debugger": ^4.2.2 - "@jupyterlab/docmanager": ^4.2.2 - "@jupyterlab/nbformat": ^4.2.2 - "@jupyterlab/notebook": ^4.2.2 - "@jupyterlab/services": ^7.2.2 - "@jupyterlab/settingregistry": ^4.2.2 - "@lumino/coreutils": ^2.1.2 - "@playwright/test": ^1.43.1 - "@stdlib/stats": ~0.0.13 - fs-extra: ^10.1.0 - json5: ^2.2.3 - path: ~0.12.7 - systeminformation: ^5.8.6 - vega: ^5.20.0 - vega-lite: ^5.6.1 - vega-statistics: ^1.7.9 - checksum: ac841ae68ad55396c8268f373a7b453cf263058af0c847f8f5c5c36307064f0bba85365aeadcfa81ec917d55ac8965787ef5ce4c948ef26b7fcf0d750619f8a5 - languageName: node - linkType: hard - -"@jupyterlab/lsp@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/lsp@npm:4.2.2" - dependencies: - "@jupyterlab/apputils": ^4.3.2 - "@jupyterlab/codeeditor": ^4.2.2 - "@jupyterlab/codemirror": ^4.2.2 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/docregistry": ^4.2.2 - "@jupyterlab/services": ^7.2.2 - "@jupyterlab/translation": ^4.2.2 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.2 - lodash.mergewith: ^4.6.1 - vscode-jsonrpc: ^6.0.0 - vscode-languageserver-protocol: ^3.17.0 - vscode-ws-jsonrpc: ~1.0.2 - checksum: 57853e7cf4010dab80fd1f135bddefb62710c6d379c942306a6913ebf4683853a3d519aee8f1b4f72725a87f9cff4387d1fb3125813b0aa4fae25131ab2bff95 - languageName: node - linkType: hard - "@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@npm:^4.2.0": version: 4.2.0 resolution: "@jupyterlab/nbformat@npm:4.2.0" @@ -2582,118 +1870,6 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/nbformat@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/nbformat@npm:4.2.2" - dependencies: - "@lumino/coreutils": ^2.1.2 - checksum: a60774bcf3e9735bc80dc411b4b79ad2da0dd4df596fef0a74537bfbfb8b168b70b34619638d0abaca6243ac337520275002a27dc13d6951efd681527643d25b - languageName: node - linkType: hard - -"@jupyterlab/notebook@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/notebook@npm:4.2.2" - dependencies: - "@jupyter/ydoc": ^2.0.1 - "@jupyterlab/apputils": ^4.3.2 - "@jupyterlab/cells": ^4.2.2 - "@jupyterlab/codeeditor": ^4.2.2 - "@jupyterlab/codemirror": ^4.2.2 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/docregistry": ^4.2.2 - "@jupyterlab/documentsearch": ^4.2.2 - "@jupyterlab/lsp": ^4.2.2 - "@jupyterlab/nbformat": ^4.2.2 - "@jupyterlab/observables": ^5.2.2 - "@jupyterlab/rendermime": ^4.2.2 - "@jupyterlab/services": ^7.2.2 - "@jupyterlab/settingregistry": ^4.2.2 - "@jupyterlab/statusbar": ^4.2.2 - "@jupyterlab/toc": ^6.2.2 - "@jupyterlab/translation": ^4.2.2 - "@jupyterlab/ui-components": ^4.2.2 - "@lumino/algorithm": ^2.0.1 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/domutils": ^2.0.1 - "@lumino/dragdrop": ^2.1.4 - "@lumino/messaging": ^2.0.1 - "@lumino/polling": ^2.1.2 - "@lumino/properties": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/virtualdom": ^2.0.1 - "@lumino/widgets": ^2.3.2 - react: ^18.2.0 - checksum: 0544a44162ca9de8e1341035037fd3fda263b72769ef49f1bbd241196336d5f71f9f4d3b7f442c8c955ed76f3fa8d6c0177f75db8b66d5e68a76d6aff8e7b037 - languageName: node - linkType: hard - -"@jupyterlab/observables@npm:^5.2.2": - version: 5.2.2 - resolution: "@jupyterlab/observables@npm:5.2.2" - dependencies: - "@lumino/algorithm": ^2.0.1 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/signaling": ^2.1.2 - checksum: 916363cb75bd58f109d81ba84649379a848c23b8ced30f9283108fb4133bd5d4f62ebdf9648f053df744701193d4fadbae4491561dd02d14157bf23a0b813dda - languageName: node - linkType: hard - -"@jupyterlab/outputarea@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/outputarea@npm:4.2.2" - dependencies: - "@jupyterlab/apputils": ^4.3.2 - "@jupyterlab/nbformat": ^4.2.2 - "@jupyterlab/observables": ^5.2.2 - "@jupyterlab/rendermime": ^4.2.2 - "@jupyterlab/rendermime-interfaces": ^3.10.2 - "@jupyterlab/services": ^7.2.2 - "@jupyterlab/translation": ^4.2.2 - "@lumino/algorithm": ^2.0.1 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/properties": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.2 - checksum: b7d085edca968dc280677df0853080b00a3df3f05b67887933375bd28eaf12e056f7c3396b9a1a28075e617f979400a19742312c6964233f8135c5054fa98e20 - languageName: node - linkType: hard - -"@jupyterlab/rendermime-interfaces@npm:^3.10.2": - version: 3.10.2 - resolution: "@jupyterlab/rendermime-interfaces@npm:3.10.2" - dependencies: - "@lumino/coreutils": ^1.11.0 || ^2.1.2 - "@lumino/widgets": ^1.37.2 || ^2.3.2 - checksum: 4ace6cda40bc3cdd59e36afb8dce6f4448f974a8214086d2541860b0e5c0de95fe22969fa4f5537e6e7fa06c00543655feaf77825dbb57da0147c38c51686707 - languageName: node - linkType: hard - -"@jupyterlab/rendermime@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/rendermime@npm:4.2.2" - dependencies: - "@jupyterlab/apputils": ^4.3.2 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/nbformat": ^4.2.2 - "@jupyterlab/observables": ^5.2.2 - "@jupyterlab/rendermime-interfaces": ^3.10.2 - "@jupyterlab/services": ^7.2.2 - "@jupyterlab/translation": ^4.2.2 - "@lumino/coreutils": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.2 - lodash.escape: ^4.0.1 - checksum: cadf8a1d7c001d3863389b7e9561a54c633a85c89713b7d204f9ba86b960b23b592bfb6c68340dac1c02d86d51e4ea1af295672120597c9d8f7c654c8f020182 - languageName: node - linkType: hard - "@jupyterlab/services@npm:^6.0.0 || ^7.0.0": version: 7.2.0 resolution: "@jupyterlab/services@npm:7.2.0" @@ -2713,25 +1889,6 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/services@npm:^7.2.2": - version: 7.2.2 - resolution: "@jupyterlab/services@npm:7.2.2" - dependencies: - "@jupyter/ydoc": ^2.0.1 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/nbformat": ^4.2.2 - "@jupyterlab/settingregistry": ^4.2.2 - "@jupyterlab/statedb": ^4.2.2 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/polling": ^2.1.2 - "@lumino/properties": ^2.0.1 - "@lumino/signaling": ^2.1.2 - ws: ^8.11.0 - checksum: dace4f2838cefb129c63cc2b20b35ce2b593e9da4db51dea2963c1109c7f9867faf0a7f428bfd53889f8560953924bf51b355f555ce4fd756b358cfaf8f145c7 - languageName: node - linkType: hard - "@jupyterlab/settingregistry@npm:^4.2.0": version: 4.2.0 resolution: "@jupyterlab/settingregistry@npm:4.2.0" @@ -2751,25 +1908,6 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/settingregistry@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/settingregistry@npm:4.2.2" - dependencies: - "@jupyterlab/nbformat": ^4.2.2 - "@jupyterlab/statedb": ^4.2.2 - "@lumino/commands": ^2.3.0 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/signaling": ^2.1.2 - "@rjsf/utils": ^5.13.4 - ajv: ^8.12.0 - json5: ^2.2.3 - peerDependencies: - react: ">=16" - checksum: 610a43c2308ea7b35c58bc4fdffa0613cd04bbd56bae3f64ee7d7869ae8e484e26102726f5a31f6ae2ffc6f3e77527473fb1a8a9869fdbdac93d5a12984bd56d - languageName: node - linkType: hard - "@jupyterlab/statedb@npm:^4.2.0": version: 4.2.0 resolution: "@jupyterlab/statedb@npm:4.2.0" @@ -2783,258 +1921,6 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/statedb@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/statedb@npm:4.2.2" - dependencies: - "@lumino/commands": ^2.3.0 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/properties": ^2.0.1 - "@lumino/signaling": ^2.1.2 - checksum: 6fbeed16a659b3f0d9b7a86cca91a0fd082c35b500264d58206f8a79640ea34ac00192c749a96c10f8762c6153ef26d3face6e6ce30b0e84479a0a5896254c38 - languageName: node - linkType: hard - -"@jupyterlab/statusbar@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/statusbar@npm:4.2.2" - dependencies: - "@jupyterlab/ui-components": ^4.2.2 - "@lumino/algorithm": ^2.0.1 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.2 - react: ^18.2.0 - checksum: f687fe87f693036edabaf7273aa3b1da89dac4636daf6632bb8d76bf79693ca713f83105247a90b1b378bfc42f61313d3ebc6177a01d2647b957c3c1b01e25f3 - languageName: node - linkType: hard - -"@jupyterlab/toc@npm:^6.2.2": - version: 6.2.2 - resolution: "@jupyterlab/toc@npm:6.2.2" - dependencies: - "@jupyterlab/apputils": ^4.3.2 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/docregistry": ^4.2.2 - "@jupyterlab/observables": ^5.2.2 - "@jupyterlab/rendermime": ^4.2.2 - "@jupyterlab/rendermime-interfaces": ^3.10.2 - "@jupyterlab/translation": ^4.2.2 - "@jupyterlab/ui-components": ^4.2.2 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.2 - react: ^18.2.0 - checksum: 8b8692da9d0b85e35fe59cc21b026ce25e5f8cb5c21607d304512cab2ef280dd9e2468dedbf6819aedb8f5e17ae7ee757504008dc792886531d09beed98e2f9e - languageName: node - linkType: hard - -"@jupyterlab/translation@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/translation@npm:4.2.2" - dependencies: - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/rendermime-interfaces": ^3.10.2 - "@jupyterlab/services": ^7.2.2 - "@jupyterlab/statedb": ^4.2.2 - "@lumino/coreutils": ^2.1.2 - checksum: faeda0940384b5d204e5f7ca0e50cdf0122d6be8618a10c9c77ba57b675fc7045c65da8c1fc51fb4803361b7d0bbbbd1d6d224d5905677f3782231bdad2f8164 - languageName: node - linkType: hard - -"@jupyterlab/ui-components@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/ui-components@npm:4.2.2" - dependencies: - "@jupyter/react-components": ^0.15.3 - "@jupyter/web-components": ^0.15.3 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/observables": ^5.2.2 - "@jupyterlab/rendermime-interfaces": ^3.10.2 - "@jupyterlab/translation": ^4.2.2 - "@lumino/algorithm": ^2.0.1 - "@lumino/commands": ^2.3.0 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/polling": ^2.1.2 - "@lumino/properties": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/virtualdom": ^2.0.1 - "@lumino/widgets": ^2.3.2 - "@rjsf/core": ^5.13.4 - "@rjsf/utils": ^5.13.4 - react: ^18.2.0 - react-dom: ^18.2.0 - typestyle: ^2.0.4 - peerDependencies: - react: ^18.2.0 - checksum: 5e0f7c835dd64db51332966cb56b5b5f12a22b4b42b229ade772b853dc31aab92ec323125a2e7781e3c7acd41949cd5600b1f1421e64ebafe1c05957e1176501 - languageName: node - linkType: hard - -"@lezer/common@npm:^1.0.0, @lezer/common@npm:^1.0.2, @lezer/common@npm:^1.1.0, @lezer/common@npm:^1.2.0, @lezer/common@npm:^1.2.1": - version: 1.2.1 - resolution: "@lezer/common@npm:1.2.1" - checksum: 0bd092e293a509ce334f4aaf9a4d4a25528f743cd9d7e7948c697e34ac703b805b288b62ad01563488fb206fc34ff05084f7fc5d864be775924b3d0d53ea5dd2 - languageName: node - linkType: hard - -"@lezer/cpp@npm:^1.0.0": - version: 1.1.2 - resolution: "@lezer/cpp@npm:1.1.2" - dependencies: - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - checksum: a319cd46fd32affc07c9432e9b2b9954becf7766be0361176c525d03474bb794cc051aad9932f48c9df33833eee1d6bfdccab12e571f2b137b4ca765c60c75de - languageName: node - linkType: hard - -"@lezer/css@npm:^1.0.0, @lezer/css@npm:^1.1.0": - version: 1.1.8 - resolution: "@lezer/css@npm:1.1.8" - dependencies: - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - checksum: 1f5968360dbac7ba27f0c2a194143769f7b01824715274dd8507dacf13cc790bb8c48ce95de355e9c58be93bb3e271bf98b9fc51213f79e4ce918e7c7ebbef04 - languageName: node - linkType: hard - -"@lezer/generator@npm:^1.7.0": - version: 1.7.1 - resolution: "@lezer/generator@npm:1.7.1" - dependencies: - "@lezer/common": ^1.1.0 - "@lezer/lr": ^1.3.0 - bin: - lezer-generator: src/lezer-generator.cjs - checksum: e46df5a31252fb036ea17fce820acdf47672bb5405b2a38e26a430182b9a50b8513fde37d9a43d8334cde3bb2f2106ce7a5ab1a01e244876ce3217c4db59e627 - languageName: node - linkType: hard - -"@lezer/highlight@npm:^1.0.0, @lezer/highlight@npm:^1.1.3, @lezer/highlight@npm:^1.2.0": - version: 1.2.0 - resolution: "@lezer/highlight@npm:1.2.0" - dependencies: - "@lezer/common": ^1.0.0 - checksum: 5b9dfe741f95db13f6124cb9556a43011cb8041ecf490be98d44a86b04d926a66e912bcd3a766f6a3d79e064410f1a2f60ab240b50b645a12c56987bf4870086 - languageName: node - linkType: hard - -"@lezer/html@npm:^1.3.0": - version: 1.3.10 - resolution: "@lezer/html@npm:1.3.10" - dependencies: - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - checksum: cce391aab9259704ae3079b3209f74b2f248594dd8b851c28aaff26765e00ebb890a5ff1fe600f2d03aaf4ade0e36de8048d9632b12bfbccd47b3e649c3b0ecd - languageName: node - linkType: hard - -"@lezer/java@npm:^1.0.0": - version: 1.1.2 - resolution: "@lezer/java@npm:1.1.2" - dependencies: - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - checksum: 752e8c9b99cccf022669a702016e0c3a793d8326e043b1d053159f5de4d222cd188e8e31e1427cbe6a8ed8e53de3977ab551c64cbd5a76a12eb3a1da5e18b6a5 - languageName: node - linkType: hard - -"@lezer/javascript@npm:^1.0.0": - version: 1.4.17 - resolution: "@lezer/javascript@npm:1.4.17" - dependencies: - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.1.3 - "@lezer/lr": ^1.3.0 - checksum: dfcc4130af0bc681cd1ff6ec655a58e747fd877d8aadad2deba5f84512fa539177ece602c5389f4354c93555d3064737dedbe3384ca48b03c4968126bfd1b9a9 - languageName: node - linkType: hard - -"@lezer/json@npm:^1.0.0": - version: 1.0.2 - resolution: "@lezer/json@npm:1.0.2" - dependencies: - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - checksum: f899d13765d95599c9199fc3404cb57969031dc40ce07de30f4e648979153966581f0bee02e2f8f70463b0a5322206a97c2fe8d5d14f218888c72a6dcedf90ef - languageName: node - linkType: hard - -"@lezer/lr@npm:^1.0.0, @lezer/lr@npm:^1.1.0, @lezer/lr@npm:^1.3.0": - version: 1.4.1 - resolution: "@lezer/lr@npm:1.4.1" - dependencies: - "@lezer/common": ^1.0.0 - checksum: 65ae107a14619b1c514040eec2c48470e921895bb10a80d0b90e7735e121138c50e8207e2e0d9339e7cc42a716cdb367ae08f282c452934c89860093b26c40c2 - languageName: node - linkType: hard - -"@lezer/markdown@npm:^1.0.0, @lezer/markdown@npm:^1.2.0": - version: 1.3.0 - resolution: "@lezer/markdown@npm:1.3.0" - dependencies: - "@lezer/common": ^1.0.0 - "@lezer/highlight": ^1.0.0 - checksum: 13eb2720e4cb84278349bad8af116f748813094f99fad02680010c3a8c5985e0358c344487990f87a31ef0d6c1a2be582301f914c0e4a6e9cfa22647b6cd6545 - languageName: node - linkType: hard - -"@lezer/php@npm:^1.0.0": - version: 1.0.2 - resolution: "@lezer/php@npm:1.0.2" - dependencies: - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.1.0 - checksum: c85ef18571d37826b687dd141a0fe110f5814adaf9d1a391e7e482020d7f81df189ca89ec0dd141c1433d48eff4c6e53648b46f008dea8ad2dc574f35f1d4d79 - languageName: node - linkType: hard - -"@lezer/python@npm:^1.1.4": - version: 1.1.14 - resolution: "@lezer/python@npm:1.1.14" - dependencies: - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - checksum: 1608187f698e972d11b340dfdfd79e15b1359641e386e386befd37d5e5839620b45a5a39c5616792a24da29ef1d99d11ea0dad52b9617f1767e7ea6a11c2fed3 - languageName: node - linkType: hard - -"@lezer/rust@npm:^1.0.0": - version: 1.0.2 - resolution: "@lezer/rust@npm:1.0.2" - dependencies: - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - checksum: fc5e97852b42beeb44a0ebe316dc64e3cc49ff481c22e3e67d6003fc4a5c257fcd94959cfcc76cd154fa172db9b3b4b28de5c09f10550d6e5f14869ddc274e5b - languageName: node - linkType: hard - -"@lezer/xml@npm:^1.0.0": - version: 1.0.5 - resolution: "@lezer/xml@npm:1.0.5" - dependencies: - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - checksum: a0a077b9e455b03593b93a7fdff2a4eab2cb7b230c8e1b878a8bebe80184632b9cc75ca018f1f9e2acb3a26e1386f4777385ab6e87aea70ccf479cde5ca268ee - languageName: node - linkType: hard - "@lumino/algorithm@npm:^1.9.2": version: 1.9.2 resolution: "@lumino/algorithm@npm:1.9.2" @@ -3093,30 +1979,13 @@ __metadata: languageName: node linkType: hard -"@lumino/coreutils@npm:^1.11.0 || ^2.0.0, @lumino/coreutils@npm:^1.11.0 || ^2.1.2, @lumino/coreutils@npm:^1.11.1 || ^2, @lumino/coreutils@npm:^1.11.1 || ^2.1, @lumino/coreutils@npm:^2.1.2": +"@lumino/coreutils@npm:^1.11.0 || ^2.0.0, @lumino/coreutils@npm:^1.11.1 || ^2, @lumino/coreutils@npm:^1.11.1 || ^2.1, @lumino/coreutils@npm:^2.1.2": version: 2.1.2 resolution: "@lumino/coreutils@npm:2.1.2" checksum: 7865317ac0676b448d108eb57ab5d8b2a17c101995c0f7a7106662d9fe6c859570104525f83ee3cda12ae2e326803372206d6f4c1f415a5b59e4158a7b81066f languageName: node linkType: hard -"@lumino/datagrid@npm:^2.3.1": - version: 2.3.1 - resolution: "@lumino/datagrid@npm:2.3.1" - dependencies: - "@lumino/algorithm": ^2.0.1 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/domutils": ^2.0.1 - "@lumino/dragdrop": ^2.1.4 - "@lumino/keyboard": ^2.0.1 - "@lumino/messaging": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.2 - checksum: 5d9fa32f3eb4fac041f75276d5a03118b36257db79a29c5ccabe826d423f15473e60ea337d8148379e8906bf78850a923b149c8d2956089aa940eae419b00e60 - languageName: node - linkType: hard - "@lumino/disposable@npm:^1.10.0 || ^2.0.0, @lumino/disposable@npm:^2.1.2": version: 2.1.2 resolution: "@lumino/disposable@npm:2.1.2" @@ -3207,7 +2076,7 @@ __metadata: languageName: node linkType: hard -"@lumino/widgets@npm:^1.30.0 || ^2.1, @lumino/widgets@npm:^1.37.2 || ^2.3.2, @lumino/widgets@npm:^2.3.1, @lumino/widgets@npm:^2.3.2": +"@lumino/widgets@npm:^1.30.0 || ^2.1, @lumino/widgets@npm:^2.3.1, @lumino/widgets@npm:^2.3.2": version: 2.3.2 resolution: "@lumino/widgets@npm:2.3.2" dependencies: @@ -3226,53 +2095,6 @@ __metadata: languageName: node linkType: hard -"@microsoft/fast-colors@npm:^5.3.1": - version: 5.3.1 - resolution: "@microsoft/fast-colors@npm:5.3.1" - checksum: ff87f402faadb4b5aeee3d27762566c11807f927cd4012b8bbc7f073ca68de0e2197f95330ff5dfd7038f4b4f0e2f51b11feb64c5d570f5c598d37850a5daf60 - languageName: node - linkType: hard - -"@microsoft/fast-element@npm:^1.12.0, @microsoft/fast-element@npm:^1.13.0": - version: 1.13.0 - resolution: "@microsoft/fast-element@npm:1.13.0" - checksum: 1cb7b4cfb7531116a3542d3f59bf1dd35106194f5764205403590250aaff744de79e35a5a1f36b4941c4eda9edc088148d4d629fb80be15fdf25f6be01770f3a - languageName: node - linkType: hard - -"@microsoft/fast-foundation@npm:^2.49.4, @microsoft/fast-foundation@npm:^2.49.6": - version: 2.49.6 - resolution: "@microsoft/fast-foundation@npm:2.49.6" - dependencies: - "@microsoft/fast-element": ^1.13.0 - "@microsoft/fast-web-utilities": ^5.4.1 - tabbable: ^5.2.0 - tslib: ^1.13.0 - checksum: 15fdf9dd0b910a72a9cff140f765d522304df11f8a78d5a97a815e2bbae25027c2b336e94f89ca31e650d6aabe17b590b7453acc0d2cb7340c219eb76350a942 - languageName: node - linkType: hard - -"@microsoft/fast-react-wrapper@npm:^0.3.22": - version: 0.3.24 - resolution: "@microsoft/fast-react-wrapper@npm:0.3.24" - dependencies: - "@microsoft/fast-element": ^1.13.0 - "@microsoft/fast-foundation": ^2.49.6 - peerDependencies: - react: ">=16.9.0" - checksum: 1d7a87509c22872bafc9b5c64f66659e52ba0cfdff484d7204125e503dafdea143f5e1bd2a643e2f3fbba6cc7567d916393369433f19dab9f0adcbe7a88b7d98 - languageName: node - linkType: hard - -"@microsoft/fast-web-utilities@npm:^5.4.1": - version: 5.4.1 - resolution: "@microsoft/fast-web-utilities@npm:5.4.1" - dependencies: - exenv-es6: ^1.1.1 - checksum: 303e87847f962944f474e3716c3eb305668243916ca9e0719e26bb9a32346144bc958d915c103776b3e552cea0f0f6233f839fad66adfdf96a8436b947288ca7 - languageName: node - linkType: hard - "@nodelib/fs.scandir@npm:2.1.5": version: 2.1.5 resolution: "@nodelib/fs.scandir@npm:2.1.5" @@ -3343,474 +2165,43 @@ __metadata: languageName: node linkType: hard -"@playwright/test@npm:^1.43.1": - version: 1.44.1 - resolution: "@playwright/test@npm:1.44.1" - dependencies: - playwright: 1.44.1 - bin: - playwright: cli.js - checksum: 90507b77e388aa984deb92db56f7bb3b305c6be441e1d0087ca046989cfdda068bbc26d75bd29c20ad3dbb2434e69a8ff0d6b30003b88c9234cd3aa6a9f7deb9 - languageName: node - linkType: hard - -"@rjsf/core@npm:^5.13.4": - version: 5.18.4 - resolution: "@rjsf/core@npm:5.18.4" - dependencies: - lodash: ^4.17.21 - lodash-es: ^4.17.21 - markdown-to-jsx: ^7.4.1 - nanoid: ^3.3.7 - prop-types: ^15.8.1 - peerDependencies: - "@rjsf/utils": ^5.18.x - react: ^16.14.0 || >=17 - checksum: 8c3f49914be396595ce67dc4c36ac25c5cb6673917ec82c47f79321f5bb78d02741e8dca39287d0435270e7c9ccb06f7d40e396bdf71a3e9eb1371ef16954817 - languageName: node - linkType: hard - "@rjsf/utils@npm:^5.13.4": version: 5.18.3 resolution: "@rjsf/utils@npm:5.18.3" dependencies: json-schema-merge-allof: "npm:^0.8.1" - jsonpointer: "npm:^5.0.1" - lodash: "npm:^4.17.21" - lodash-es: "npm:^4.17.21" - react-is: "npm:^18.2.0" - peerDependencies: - react: ^16.14.0 || >=17 - checksum: 36f6574836e8ccad27b8215f940cb86b1a02939d325e0223a8d8e70b9ae65245e6649dd4835a40e628153f26d961a5cfbdd6c0bdd7b70a80f7cb1911357f78ff - languageName: node - linkType: hard - -"@sinclair/typebox@npm:^0.27.8": - version: 0.27.8 - resolution: "@sinclair/typebox@npm:0.27.8" - checksum: 00bd7362a3439021aa1ea51b0e0d0a0e8ca1351a3d54c606b115fdcc49b51b16db6e5f43b4fe7a28c38688523e22a94d49dd31168868b655f0d4d50f032d07a1 - languageName: node - linkType: hard - -"@sinonjs/commons@npm:^3.0.0": - version: 3.0.1 - resolution: "@sinonjs/commons@npm:3.0.1" - dependencies: - type-detect: "npm:4.0.8" - checksum: a7c3e7cc612352f4004873747d9d8b2d4d90b13a6d483f685598c945a70e734e255f1ca5dc49702515533c403b32725defff148177453b3f3915bcb60e9d4601 - languageName: node - linkType: hard - -"@sinonjs/fake-timers@npm:^10.0.2": - version: 10.3.0 - resolution: "@sinonjs/fake-timers@npm:10.3.0" - dependencies: - "@sinonjs/commons": "npm:^3.0.0" - checksum: 614d30cb4d5201550c940945d44c9e0b6d64a888ff2cd5b357f95ad6721070d6b8839cd10e15b76bf5e14af0bcc1d8f9ec00d49a46318f1f669a4bec1d7f3148 - languageName: node - linkType: hard - -"@stdlib/array@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/array@npm:0.0.12" - dependencies: - "@stdlib/assert": ^0.0.x - "@stdlib/blas": ^0.0.x - "@stdlib/complex": ^0.0.x - "@stdlib/constants": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/symbol": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 0d95690461f0c4560eabef0796d1170274415cd03de80333c6d39814d0484a6873ef4be04a64941ebf3a600747e84c3a4f23b21c7020e53842c07985331b39f1 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/assert@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/assert@npm:0.0.12" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/cli": ^0.0.x - "@stdlib/complex": ^0.0.x - "@stdlib/constants": ^0.0.x - "@stdlib/fs": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/ndarray": ^0.0.x - "@stdlib/number": ^0.0.x - "@stdlib/os": ^0.0.x - "@stdlib/process": ^0.0.x - "@stdlib/regexp": ^0.0.x - "@stdlib/streams": ^0.0.x - "@stdlib/string": ^0.0.x - "@stdlib/symbol": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: d4dcbeabbfb86ba56cdd972ff785f43e7d25018b2b1800cab8b0deb9e5c54c795d6ead3d142f4dd13c351f636deba4dc1857c85147d6b059fdc78eb2c9510b99 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/bigint@npm:^0.0.x": - version: 0.0.11 - resolution: "@stdlib/bigint@npm:0.0.11" - dependencies: - "@stdlib/utils": ^0.0.x - checksum: 7bf825d116e4b010e214209af239706ac1ef923eecb5c8b0af9229c9975450081355e441ecc7b4765d81a9e653141868e0492b8061d1e65724fa42fb8283aabd - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/blas@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/blas@npm:0.0.12" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/number": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 67ea00a968f7a9c710b37f718b7f756e2830e479a1a1ee44cbf6ec3cc27dd8863078928867707d9d1624007e81de89d040f2326d10f435e2cce913cab121975e - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/buffer@npm:^0.0.x": - version: 0.0.11 - resolution: "@stdlib/buffer@npm:0.0.11" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/process": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 93df02e3bf548e940ff9cef65121566e7bf93b554f0614d62336c9dbccfc07c9f1b1c4e9a7aebbe4819ef16a6d2a33a7010c2fdf908fface8298a3109c3c4ef0 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/cli@npm:^0.0.x": - version: 0.0.10 - resolution: "@stdlib/cli@npm:0.0.10" - dependencies: - "@stdlib/utils": ^0.0.x - minimist: ^1.2.0 - checksum: bbece8d3dbff2835518582a7726c6c4c22743dc408d2303d9e35a3b72151d5d0a8e78d61bc896663d4c3fb702e966abea7a1bd621ed943723a359f57053f121f - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/complex@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/complex@npm:0.0.12" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 8eda35027495417f1b0dd9bbbc2d4983f50ad3cf9e2276ffe0945ccdbe78f0fc66b9fc36ab71926d2a125c8fb7467c8970a222b230b42ff4bb8042c53314ca09 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/constants@npm:^0.0.x": - version: 0.0.11 - resolution: "@stdlib/constants@npm:0.0.11" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/number": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: fc19d055a4e71ae84b6c92e4a3a88371d50693da8f0a813df4063dc549374d19b9cf23f4fdae2fb7b2013e13929f713c3e1b9e4054767e741b75561ed43d15c3 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/fs@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/fs@npm:0.0.12" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/cli": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/process": ^0.0.x - "@stdlib/string": ^0.0.x - "@stdlib/utils": ^0.0.x - debug: ^2.6.9 - checksum: 33ac5ee4844d4599fe3a8a8402f1a3e2cafee31a5c9cf5b85df530a61a2b54ef17dc30a67be98dacdc2958219413edd0e4cdc3c28266f4bc30277ee024f6a49e - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/math@npm:^0.0.x": - version: 0.0.11 - resolution: "@stdlib/math@npm:0.0.11" - dependencies: - "@stdlib/assert": ^0.0.x - "@stdlib/constants": ^0.0.x - "@stdlib/ndarray": ^0.0.x - "@stdlib/number": ^0.0.x - "@stdlib/strided": ^0.0.x - "@stdlib/symbol": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - debug: ^2.6.9 - checksum: 6c4c9dda36fbce50553e1437354c5286aa782c42399534dbed8e696ddeb1b91ef6cff5fe5962f1c9e1eb2ef63c63d9bd58f7ca4b87d59018aaac20099c3fb79a - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/ndarray@npm:^0.0.x": - version: 0.0.13 - resolution: "@stdlib/ndarray@npm:0.0.13" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/bigint": ^0.0.x - "@stdlib/buffer": ^0.0.x - "@stdlib/complex": ^0.0.x - "@stdlib/constants": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/number": ^0.0.x - "@stdlib/string": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 842a94afce5fc74bf8a964b75a302ddb8713eadbc79616e6799f1310c8bce860ed9e9877adc4a39338d9136b8798947ee21cf03368d46408308a313c8075d49a - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/nlp@npm:^0.0.x": - version: 0.0.11 - resolution: "@stdlib/nlp@npm:0.0.11" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/random": ^0.0.x - "@stdlib/string": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 398fe2853fb95404bb6598e3e199ca3e0435b94447d50e14e2e30582cadfb91f43464f23d80a0e1da4d64567a4a108a7299d7440509f1ab26b02aea7bb16e9a8 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/number@npm:^0.0.x": - version: 0.0.10 - resolution: "@stdlib/number@npm:0.0.10" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/constants": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/os": ^0.0.x - "@stdlib/string": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 326190956c787cbf9321c332beedab5ba4b3fa97d52a82aa708a0349b4678c0df7a351424f00a606f4eaca4fb4ba4cc191580c99d7c64ee0f08d37baa3de14f2 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/os@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/os@npm:0.0.12" - dependencies: - "@stdlib/assert": ^0.0.x - "@stdlib/cli": ^0.0.x - "@stdlib/fs": ^0.0.x - "@stdlib/process": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 37156b0c723da70d7740d92d08fc592eae803461c1d546cff6ac044765d6e40722fdad342219277e747c39344b513096ac1d0aa1e733cf3079bd8a9a8578612a - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/process@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/process@npm:0.0.12" - dependencies: - "@stdlib/assert": ^0.0.x - "@stdlib/buffer": ^0.0.x - "@stdlib/cli": ^0.0.x - "@stdlib/fs": ^0.0.x - "@stdlib/streams": ^0.0.x - "@stdlib/string": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 6d5c3d943f9914d1ae39bd36ad7436f783cf64baa2bff67a808035c99258676ae3f704c328a78d62754951cf85fe99d8e9af5f4fa7d5f8cba347bca72767e357 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/random@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/random@npm:0.0.12" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/blas": ^0.0.x - "@stdlib/buffer": ^0.0.x - "@stdlib/cli": ^0.0.x - "@stdlib/constants": ^0.0.x - "@stdlib/fs": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/process": ^0.0.x - "@stdlib/stats": ^0.0.x - "@stdlib/streams": ^0.0.x - "@stdlib/symbol": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - debug: ^2.6.9 - readable-stream: ^2.1.4 - checksum: 67fcb5553274f8596ceae91153e96ae297bacfd55279821cb09f19f2844845aaf892802e4a5962965323dbfded0c7df8a89a6ce77d60d5c8a5899d483055a964 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/regexp@npm:^0.0.x": - version: 0.0.13 - resolution: "@stdlib/regexp@npm:0.0.13" - dependencies: - "@stdlib/assert": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: dd52adb096ff9a02d1c4818be2889ae01bc04a0cdbc0d52473685e0a7a4eaa13e1be603b964f140f7488d11450b644dc5f8c97029d77db1ed4a563554245ff1c - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + jsonpointer: "npm:^5.0.1" + lodash: "npm:^4.17.21" + lodash-es: "npm:^4.17.21" + react-is: "npm:^18.2.0" + peerDependencies: + react: ^16.14.0 || >=17 + checksum: 36f6574836e8ccad27b8215f940cb86b1a02939d325e0223a8d8e70b9ae65245e6649dd4835a40e628153f26d961a5cfbdd6c0bdd7b70a80f7cb1911357f78ff languageName: node linkType: hard -"@stdlib/stats@npm:^0.0.x, @stdlib/stats@npm:~0.0.13": - version: 0.0.13 - resolution: "@stdlib/stats@npm:0.0.13" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/blas": ^0.0.x - "@stdlib/constants": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/ndarray": ^0.0.x - "@stdlib/random": ^0.0.x - "@stdlib/string": ^0.0.x - "@stdlib/symbol": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 5ca12b2e123543f56a59aca828e14afaf525ad4aa40467bee7037a9178e21e55d4ce8ba3de9387cc9a0efe3e0d035d6c58705b12f634f77a2b3f87d334dfb076 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/streams@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/streams@npm:0.0.12" - dependencies: - "@stdlib/assert": ^0.0.x - "@stdlib/buffer": ^0.0.x - "@stdlib/cli": ^0.0.x - "@stdlib/fs": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - debug: ^2.6.9 - readable-stream: ^2.1.4 - checksum: 231b4607d082ea81d9dadbeab08002ec398a29c7eb5d611d8a4183f9db6964428e2f8a9e0f8edd085ca12b5d58258576987a575e9d8f6fcabcb5a62c6b8efe88 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/strided@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/strided@npm:0.0.12" - dependencies: - "@stdlib/assert": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/ndarray": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 55ccc8543596894a2e3ad734b394700c69697b499a54b3bfbcf80cddd8d91509792c23931f5cebf7c89269676ac3f44352582e4f42e2c2c2898363cc3a76403d - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/string@npm:^0.0.x": - version: 0.0.14 - resolution: "@stdlib/string@npm:0.0.14" - dependencies: - "@stdlib/assert": ^0.0.x - "@stdlib/cli": ^0.0.x - "@stdlib/constants": ^0.0.x - "@stdlib/fs": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/nlp": ^0.0.x - "@stdlib/process": ^0.0.x - "@stdlib/regexp": ^0.0.x - "@stdlib/streams": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: aaaaaddf381cccc67f15dbab76f43ce81cb71a4f5595bfa06ef915b6747458deca3c25c60ff3c002c0c36482687d92a150f364069559dfea915f63a040d5f603 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/symbol@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/symbol@npm:0.0.12" - dependencies: - "@stdlib/assert": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 2263341ce0296de2063d26038902bd63bf1d7b820307402fdf38c3b248bd026f17d96bccdc3189fd9fcc9c83a778eaab797dc11805bd66203b8ac9c6934f6588 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) +"@sinclair/typebox@npm:^0.27.8": + version: 0.27.8 + resolution: "@sinclair/typebox@npm:0.27.8" + checksum: 00bd7362a3439021aa1ea51b0e0d0a0e8ca1351a3d54c606b115fdcc49b51b16db6e5f43b4fe7a28c38688523e22a94d49dd31168868b655f0d4d50f032d07a1 languageName: node linkType: hard -"@stdlib/time@npm:^0.0.x": - version: 0.0.14 - resolution: "@stdlib/time@npm:0.0.14" +"@sinonjs/commons@npm:^3.0.0": + version: 3.0.1 + resolution: "@sinonjs/commons@npm:3.0.1" dependencies: - "@stdlib/assert": ^0.0.x - "@stdlib/cli": ^0.0.x - "@stdlib/constants": ^0.0.x - "@stdlib/fs": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/string": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 6e8a1b985a09936ab09c98d44bf1b2c79e08995c3c73401494bc1f6f708747ef136d769af4809a8af92a9ceb3d390db6c4c4e01608cd8d794a86c4b57e343eb1 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + type-detect: "npm:4.0.8" + checksum: a7c3e7cc612352f4004873747d9d8b2d4d90b13a6d483f685598c945a70e734e255f1ca5dc49702515533c403b32725defff148177453b3f3915bcb60e9d4601 languageName: node linkType: hard -"@stdlib/types@npm:^0.0.x": - version: 0.0.14 - resolution: "@stdlib/types@npm:0.0.14" - checksum: 5680a655ddb3ad730f5c7eb2363a43e089f3e6a1b85b12546cab49f7749bb3baf293bd50fbfe55486f233f4227f1020b65eb461b754b94fb4a4bc2799647ec22 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/utils@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/utils@npm:0.0.12" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/blas": ^0.0.x - "@stdlib/buffer": ^0.0.x - "@stdlib/cli": ^0.0.x - "@stdlib/constants": ^0.0.x - "@stdlib/fs": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/os": ^0.0.x - "@stdlib/process": ^0.0.x - "@stdlib/random": ^0.0.x - "@stdlib/regexp": ^0.0.x - "@stdlib/streams": ^0.0.x - "@stdlib/string": ^0.0.x - "@stdlib/symbol": ^0.0.x - "@stdlib/time": ^0.0.x - "@stdlib/types": ^0.0.x - debug: ^2.6.9 - checksum: e0c3671c5f62c11bb3abd721f2958c41641b00a75d449bd25fbb62bcb8689cfe9c1f600c0688e7b6819ae870d6e5974d0fc7b2ec86081c45d9194b316b2a2ec2 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) +"@sinonjs/fake-timers@npm:^10.0.2": + version: 10.3.0 + resolution: "@sinonjs/fake-timers@npm:10.3.0" + dependencies: + "@sinonjs/commons": "npm:^3.0.0" + checksum: 614d30cb4d5201550c940945d44c9e0b6d64a888ff2cd5b357f95ad6721070d6b8839cd10e15b76bf5e14af0bcc1d8f9ec00d49a46318f1f669a4bec1d7f3148 languageName: node linkType: hard @@ -3885,20 +2276,13 @@ __metadata: languageName: node linkType: hard -"@types/estree@npm:*, @types/estree@npm:^1.0.0, @types/estree@npm:^1.0.5": +"@types/estree@npm:*, @types/estree@npm:^1.0.5": version: 1.0.5 resolution: "@types/estree@npm:1.0.5" checksum: dd8b5bed28e6213b7acd0fb665a84e693554d850b0df423ac8076cc3ad5823a6bc26b0251d080bdc545af83179ede51dd3f6fa78cad2c46ed1f29624ddf3e41a languageName: node linkType: hard -"@types/geojson@npm:7946.0.4": - version: 7946.0.4 - resolution: "@types/geojson@npm:7946.0.4" - checksum: 541aea46540c918b9fe21ab73f497fe17b1eaf4d0d3baeb5f5614029b7f488c37f63843b644c024a8178dc2fb66d3d6623c25d9cf61d7b553aa19c8dc7f99047 - languageName: node - linkType: hard - "@types/graceful-fs@npm:^4.1.3": version: 4.1.9 resolution: "@types/graceful-fs@npm:4.1.9" @@ -3975,23 +2359,6 @@ __metadata: languageName: node linkType: hard -"@types/prop-types@npm:*": - version: 15.7.12 - resolution: "@types/prop-types@npm:15.7.12" - checksum: ac16cc3d0a84431ffa5cfdf89579ad1e2269549f32ce0c769321fdd078f84db4fbe1b461ed5a1a496caf09e637c0e367d600c541435716a55b1d9713f5035dfe - languageName: node - linkType: hard - -"@types/react@npm:^18.0.26": - version: 18.3.3 - resolution: "@types/react@npm:18.3.3" - dependencies: - "@types/prop-types": "*" - csstype: ^3.0.2 - checksum: c63d6a78163244e2022b01ef79b0baec4fe4da3475dc4a90bb8accefad35ef0c43560fd0312e5974f92a0f1108aa4d669ac72d73d66396aa060ea03b5d2e3873 - languageName: node - linkType: hard - "@types/semver@npm:^7.5.0": version: 7.5.8 resolution: "@types/semver@npm:7.5.8" @@ -4191,13 +2558,6 @@ __metadata: languageName: node linkType: hard -"@vscode/debugprotocol@npm:^1.51.0": - version: 1.65.0 - resolution: "@vscode/debugprotocol@npm:1.65.0" - checksum: 3ea504d01c67cd6a0c56fa3357f61f2dbaa426445443dba8b860292232e62e5bff7111e68e4cb844cedd564db1617e08847477a19527becd9f2608199eae4118 - languageName: node - linkType: hard - "@webassemblyjs/ast@npm:1.12.1, @webassemblyjs/ast@npm:^1.12.1": version: 1.12.1 resolution: "@webassemblyjs/ast@npm:1.12.1" @@ -5078,20 +3438,6 @@ __metadata: languageName: node linkType: hard -"commander@npm:2, commander@npm:^2.20.0": - version: 2.20.3 - resolution: "commander@npm:2.20.3" - checksum: ab8c07884e42c3a8dbc5dd9592c606176c7eb5c1ca5ff274bcf907039b2c41de3626f684ea75ccf4d361ba004bbaff1f577d5384c155f3871e456bdf27becf9e - languageName: node - linkType: hard - -"commander@npm:7": - version: 7.2.0 - resolution: "commander@npm:7.2.0" - checksum: 53501cbeee61d5157546c0bef0fedb6cdfc763a882136284bed9a07225f09a14b82d2a84e7637edfd1a679fb35ed9502fd58ef1d091e6287f60d790147f68ddc - languageName: node - linkType: hard - "commander@npm:^10.0.1": version: 10.0.1 resolution: "commander@npm:10.0.1" @@ -5099,6 +3445,13 @@ __metadata: languageName: node linkType: hard +"commander@npm:^2.20.0": + version: 2.20.3 + resolution: "commander@npm:2.20.3" + checksum: ab8c07884e42c3a8dbc5dd9592c606176c7eb5c1ca5ff274bcf907039b2c41de3626f684ea75ccf4d361ba004bbaff1f577d5384c155f3871e456bdf27becf9e + languageName: node + linkType: hard + "commander@npm:^9.4.1": version: 9.5.0 resolution: "commander@npm:9.5.0" @@ -5152,13 +3505,6 @@ __metadata: languageName: node linkType: hard -"core-util-is@npm:~1.0.0": - version: 1.0.3 - resolution: "core-util-is@npm:1.0.3" - checksum: 9de8597363a8e9b9952491ebe18167e3b36e7707569eed0ebf14f8bba773611376466ae34575bca8cfe3c767890c859c74056084738f09d4e4a6f902b2ad7d99 - languageName: node - linkType: hard - "create-jest@npm:^29.7.0": version: 29.7.0 resolution: "create-jest@npm:29.7.0" @@ -5176,13 +3522,6 @@ __metadata: languageName: node linkType: hard -"crelt@npm:^1.0.5": - version: 1.0.6 - resolution: "crelt@npm:1.0.6" - checksum: dad842093371ad702afbc0531bfca2b0a8dd920b23a42f26e66dabbed9aad9acd5b9030496359545ef3937c3aced0fd4ac39f7a2d280a23ddf9eb7fdcb94a69f - languageName: node - linkType: hard - "cross-spawn@npm:^6.0.5": version: 6.0.5 resolution: "cross-spawn@npm:6.0.5" @@ -5264,204 +3603,6 @@ __metadata: languageName: node linkType: hard -"csstype@npm:3.0.10": - version: 3.0.10 - resolution: "csstype@npm:3.0.10" - checksum: 20a8fa324f2b33ddf94aa7507d1b6ab3daa6f3cc308888dc50126585d7952f2471de69b2dbe0635d1fdc31223fef8e070842691877e725caf456e2378685a631 - languageName: node - linkType: hard - -"csstype@npm:^3.0.2": - version: 3.1.3 - resolution: "csstype@npm:3.1.3" - checksum: 8db785cc92d259102725b3c694ec0c823f5619a84741b5c7991b8ad135dfaa66093038a1cc63e03361a6cd28d122be48f2106ae72334e067dd619a51f49eddf7 - languageName: node - linkType: hard - -"d3-array@npm:1 - 3, d3-array@npm:2 - 3, d3-array@npm:2.10.0 - 3, d3-array@npm:2.5.0 - 3, d3-array@npm:3.2.4, d3-array@npm:^3.2.2": - version: 3.2.4 - resolution: "d3-array@npm:3.2.4" - dependencies: - internmap: 1 - 2 - checksum: a5976a6d6205f69208478bb44920dd7ce3e788c9dceb86b304dbe401a4bfb42ecc8b04c20facde486e9adcb488b5d1800d49393a3f81a23902b68158e12cddd0 - languageName: node - linkType: hard - -"d3-color@npm:1 - 3, d3-color@npm:^3.1.0": - version: 3.1.0 - resolution: "d3-color@npm:3.1.0" - checksum: 4931fbfda5d7c4b5cfa283a13c91a954f86e3b69d75ce588d06cde6c3628cebfc3af2069ccf225e982e8987c612aa7948b3932163ce15eb3c11cd7c003f3ee3b - languageName: node - linkType: hard - -"d3-delaunay@npm:^6.0.2": - version: 6.0.4 - resolution: "d3-delaunay@npm:6.0.4" - dependencies: - delaunator: 5 - checksum: ce6d267d5ef21a8aeadfe4606329fc80a22ab6e7748d47bc220bcc396ee8be84b77a5473033954c5ac4aa522d265ddc45d4165d30fe4787dd60a15ea66b9bbb4 - languageName: node - linkType: hard - -"d3-dispatch@npm:1 - 3": - version: 3.0.1 - resolution: "d3-dispatch@npm:3.0.1" - checksum: fdfd4a230f46463e28e5b22a45dd76d03be9345b605e1b5dc7d18bd7ebf504e6c00ae123fd6d03e23d9e2711e01f0e14ea89cd0632545b9f0c00b924ba4be223 - languageName: node - linkType: hard - -"d3-dsv@npm:^3.0.1": - version: 3.0.1 - resolution: "d3-dsv@npm:3.0.1" - dependencies: - commander: 7 - iconv-lite: 0.6 - rw: 1 - bin: - csv2json: bin/dsv2json.js - csv2tsv: bin/dsv2dsv.js - dsv2dsv: bin/dsv2dsv.js - dsv2json: bin/dsv2json.js - json2csv: bin/json2dsv.js - json2dsv: bin/json2dsv.js - json2tsv: bin/json2dsv.js - tsv2csv: bin/dsv2dsv.js - tsv2json: bin/dsv2json.js - checksum: 5fc0723647269d5dccd181d74f2265920ab368a2868b0b4f55ffa2fecdfb7814390ea28622cd61ee5d9594ab262879509059544e9f815c54fe76fbfb4ffa4c8a - languageName: node - linkType: hard - -"d3-force@npm:^3.0.0": - version: 3.0.0 - resolution: "d3-force@npm:3.0.0" - dependencies: - d3-dispatch: 1 - 3 - d3-quadtree: 1 - 3 - d3-timer: 1 - 3 - checksum: 6c7e96438cab62fa32aeadb0ade3297b62b51f81b1b38b0a60a5ec9fd627d74090c1189654d92df2250775f31b06812342f089f1d5947de9960a635ee3581def - languageName: node - linkType: hard - -"d3-format@npm:1 - 3, d3-format@npm:^3.1.0": - version: 3.1.0 - resolution: "d3-format@npm:3.1.0" - checksum: f345ec3b8ad3cab19bff5dead395bd9f5590628eb97a389b1dd89f0b204c7c4fc1d9520f13231c2c7cf14b7c9a8cf10f8ef15bde2befbab41454a569bd706ca2 - languageName: node - linkType: hard - -"d3-geo-projection@npm:^4.0.0": - version: 4.0.0 - resolution: "d3-geo-projection@npm:4.0.0" - dependencies: - commander: 7 - d3-array: 1 - 3 - d3-geo: 1.12.0 - 3 - bin: - geo2svg: bin/geo2svg.js - geograticule: bin/geograticule.js - geoproject: bin/geoproject.js - geoquantize: bin/geoquantize.js - geostitch: bin/geostitch.js - checksum: 631422b10dd78d1047ba5a3b073148bea27721060bd7087a5fa6c053ca80445d26432e505e0e3acbd6e0d76cf577c61bf9a5db70dabbc9310c493de1f7ff736d - languageName: node - linkType: hard - -"d3-geo@npm:1.12.0 - 3, d3-geo@npm:^3.1.0": - version: 3.1.1 - resolution: "d3-geo@npm:3.1.1" - dependencies: - d3-array: 2.5.0 - 3 - checksum: 3cc4bb50af5d2d4858d2df1729a1777b7fd361854079d9faab1166186c988d2cba0d11911da0c4598d5e22fae91d79113ed262a9f98cabdbc6dbf7c30e5c0363 - languageName: node - linkType: hard - -"d3-hierarchy@npm:^3.1.2": - version: 3.1.2 - resolution: "d3-hierarchy@npm:3.1.2" - checksum: 0fd946a8c5fd4686d43d3e11bbfc2037a145fda29d2261ccd0e36f70b66af6d7638e2c0c7112124d63fc3d3127197a00a6aecf676bd5bd392a94d7235a214263 - languageName: node - linkType: hard - -"d3-interpolate@npm:1 - 3, d3-interpolate@npm:1.2.0 - 3, d3-interpolate@npm:^3.0.1": - version: 3.0.1 - resolution: "d3-interpolate@npm:3.0.1" - dependencies: - d3-color: 1 - 3 - checksum: a42ba314e295e95e5365eff0f604834e67e4a3b3c7102458781c477bd67e9b24b6bb9d8e41ff5521050a3f2c7c0c4bbbb6e187fd586daa3980943095b267e78b - languageName: node - linkType: hard - -"d3-path@npm:^3.1.0": - version: 3.1.0 - resolution: "d3-path@npm:3.1.0" - checksum: 2306f1bd9191e1eac895ec13e3064f732a85f243d6e627d242a313f9777756838a2215ea11562f0c7630c7c3b16a19ec1fe0948b1c82f3317fac55882f6ee5d8 - languageName: node - linkType: hard - -"d3-quadtree@npm:1 - 3": - version: 3.0.1 - resolution: "d3-quadtree@npm:3.0.1" - checksum: 5469d462763811475f34a7294d984f3eb100515b0585ca5b249656f6b1a6e99b20056a2d2e463cc9944b888896d2b1d07859c50f9c0cf23438df9cd2e3146066 - languageName: node - linkType: hard - -"d3-scale-chromatic@npm:^3.1.0": - version: 3.1.0 - resolution: "d3-scale-chromatic@npm:3.1.0" - dependencies: - d3-color: 1 - 3 - d3-interpolate: 1 - 3 - checksum: ab6324bd8e1f708e731e02ab44e09741efda2b174cea1d8ca21e4a87546295e99856bc44e2fd3890f228849c96bccfbcf922328f95be6a7df117453eb5cf22c9 - languageName: node - linkType: hard - -"d3-scale@npm:^4.0.2": - version: 4.0.2 - resolution: "d3-scale@npm:4.0.2" - dependencies: - d3-array: 2.10.0 - 3 - d3-format: 1 - 3 - d3-interpolate: 1.2.0 - 3 - d3-time: 2.1.1 - 3 - d3-time-format: 2 - 4 - checksum: a9c770d283162c3bd11477c3d9d485d07f8db2071665f1a4ad23eec3e515e2cefbd369059ec677c9ac849877d1a765494e90e92051d4f21111aa56791c98729e - languageName: node - linkType: hard - -"d3-shape@npm:^3.2.0": - version: 3.2.0 - resolution: "d3-shape@npm:3.2.0" - dependencies: - d3-path: ^3.1.0 - checksum: de2af5fc9a93036a7b68581ca0bfc4aca2d5a328aa7ba7064c11aedd44d24f310c20c40157cb654359d4c15c3ef369f95ee53d71221017276e34172c7b719cfa - languageName: node - linkType: hard - -"d3-time-format@npm:2 - 4, d3-time-format@npm:^4.1.0": - version: 4.1.0 - resolution: "d3-time-format@npm:4.1.0" - dependencies: - d3-time: 1 - 3 - checksum: 7342bce28355378152bbd4db4e275405439cabba082d9cd01946d40581140481c8328456d91740b0fe513c51ec4a467f4471ffa390c7e0e30ea30e9ec98fcdf4 - languageName: node - linkType: hard - -"d3-time@npm:1 - 3, d3-time@npm:2.1.1 - 3, d3-time@npm:^3.1.0": - version: 3.1.0 - resolution: "d3-time@npm:3.1.0" - dependencies: - d3-array: 2 - 3 - checksum: 613b435352a78d9f31b7f68540788186d8c331b63feca60ad21c88e9db1989fe888f97f242322ebd6365e45ec3fb206a4324cd4ca0dfffa1d9b5feb856ba00a7 - languageName: node - linkType: hard - -"d3-timer@npm:1 - 3, d3-timer@npm:^3.0.1": - version: 3.0.1 - resolution: "d3-timer@npm:3.0.1" - checksum: 1cfddf86d7bca22f73f2c427f52dfa35c49f50d64e187eb788dcad6e927625c636aa18ae4edd44d084eb9d1f81d8ca4ec305dae7f733c15846a824575b789d73 - languageName: node - linkType: hard - "data-urls@npm:^2.0.0": version: 2.0.0 resolution: "data-urls@npm:2.0.0" @@ -5518,15 +3659,6 @@ __metadata: languageName: node linkType: hard -"debug@npm:^2.6.9": - version: 2.6.9 - resolution: "debug@npm:2.6.9" - dependencies: - ms: 2.0.0 - checksum: d2f51589ca66df60bf36e1fa6e4386b318c3f1e06772280eea5b1ae9fd3d05e9c2b7fd8a7d862457d00853c75b00451aa2d7459b924629ee385287a650f58fe6 - languageName: node - linkType: hard - "dedent@npm:^1.0.0": version: 1.5.3 resolution: "dedent@npm:1.5.3" @@ -5575,15 +3707,6 @@ __metadata: languageName: node linkType: hard -"delaunator@npm:5": - version: 5.0.1 - resolution: "delaunator@npm:5.0.1" - dependencies: - robust-predicates: ^3.0.2 - checksum: 69ee43ec649b4a13b7f33c8a027fb3e8dfcb09266af324286118da757e04d3d39df619b905dca41421405c311317ccf632ecfa93db44519bacec3303c57c5a0b - languageName: node - linkType: hard - "detect-newline@npm:^3.0.0": version: 3.1.0 resolution: "detect-newline@npm:3.1.0" @@ -6099,13 +4222,6 @@ __metadata: languageName: node linkType: hard -"exenv-es6@npm:^1.1.1": - version: 1.1.1 - resolution: "exenv-es6@npm:1.1.1" - checksum: 7f2aa12025e6f06c48dc286f380cf3183bb19c6017b36d91695034a3e5124a7235c4f8ff24ca2eb88ae801322f0f99605cedfcfd996a5fcbba7669320e2a448e - languageName: node - linkType: hard - "exit@npm:^0.1.2": version: 0.1.2 resolution: "exit@npm:0.1.2" @@ -6290,13 +4406,6 @@ __metadata: languageName: node linkType: hard -"free-style@npm:3.1.0": - version: 3.1.0 - resolution: "free-style@npm:3.1.0" - checksum: 949258ae315deda48cac93ecd5f9a80f36e8a027e19ce2103598dc8d5ab60e963bbad5444b2a4990ddb746798dd188896f430285cf484afbf2141f7d75a191d8 - languageName: node - linkType: hard - "fs-extra@npm:^10.1.0": version: 10.1.0 resolution: "fs-extra@npm:10.1.0" @@ -6344,16 +4453,6 @@ __metadata: languageName: node linkType: hard -"fsevents@npm:2.3.2": - version: 2.3.2 - resolution: "fsevents@npm:2.3.2" - dependencies: - node-gyp: latest - checksum: 97ade64e75091afee5265e6956cb72ba34db7819b4c3e94c431d4be2b19b8bb7a2d4116da417950c3425f17c8fe693d25e20212cac583ac1521ad066b77ae31f - conditions: os=darwin - languageName: node - linkType: hard - "fsevents@npm:^2.3.2": version: 2.3.3 resolution: "fsevents@npm:2.3.3" @@ -6364,15 +4463,6 @@ __metadata: languageName: node linkType: hard -"fsevents@patch:fsevents@2.3.2#~builtin": - version: 2.3.2 - resolution: "fsevents@patch:fsevents@npm%3A2.3.2#~builtin::version=2.3.2&hash=df0bf1" - dependencies: - node-gyp: latest - conditions: os=darwin - languageName: node - linkType: hard - "fsevents@patch:fsevents@npm%3A^2.3.2#~builtin": version: 2.3.3 resolution: "fsevents@patch:fsevents@npm%3A2.3.3#~builtin::version=2.3.3&hash=df0bf1" @@ -6736,7 +4826,7 @@ __metadata: languageName: node linkType: hard -"iconv-lite@npm:0.6, iconv-lite@npm:^0.6.2, iconv-lite@npm:^0.6.3": +"iconv-lite@npm:^0.6.2, iconv-lite@npm:^0.6.3": version: 0.6.3 resolution: "iconv-lite@npm:0.6.3" dependencies: @@ -6823,20 +4913,13 @@ __metadata: languageName: node linkType: hard -"inherits@npm:2, inherits@npm:~2.0.3": +"inherits@npm:2": version: 2.0.4 resolution: "inherits@npm:2.0.4" checksum: 4a48a733847879d6cf6691860a6b1e3f0f4754176e4d71494c41f3475553768b10f84b5ce1d40fbd0e34e6bfbb864ee35858ad4dd2cf31e02fc4a154b724d7f1 languageName: node linkType: hard -"inherits@npm:2.0.3": - version: 2.0.3 - resolution: "inherits@npm:2.0.3" - checksum: 78cb8d7d850d20a5e9a7f3620db31483aa00ad5f722ce03a55b110e5a723539b3716a3b463e2b96ce3fe286f33afc7c131fa2f91407528ba80cea98a7545d4c0 - languageName: node - linkType: hard - "internal-slot@npm:^1.0.7": version: 1.0.7 resolution: "internal-slot@npm:1.0.7" @@ -6848,13 +4931,6 @@ __metadata: languageName: node linkType: hard -"internmap@npm:1 - 2": - version: 2.0.3 - resolution: "internmap@npm:2.0.3" - checksum: 7ca41ec6aba8f0072fc32fa8a023450a9f44503e2d8e403583c55714b25efd6390c38a87161ec456bf42d7bc83aab62eb28f5aef34876b1ac4e60693d5e1d241 - languageName: node - linkType: hard - "interpret@npm:^3.1.1": version: 3.1.1 resolution: "interpret@npm:3.1.1" @@ -6881,7 +4957,6 @@ __metadata: "@jupyter-widgets/base": ^1.1.10 || ^2 || ^3 || ^4 || ^5 || ^6 "@jupyter-widgets/base-manager": ^1.0.7 "@jupyterlab/builder": ^4.0.11 - "@jupyterlab/galata": ^5.2.2 "@lumino/application": ^2.3.0 "@lumino/widgets": ^2.3.1 "@types/jest": ^29.5.11 @@ -7133,13 +5208,6 @@ __metadata: languageName: node linkType: hard -"isarray@npm:~1.0.0": - version: 1.0.0 - resolution: "isarray@npm:1.0.0" - checksum: f032df8e02dce8ec565cf2eb605ea939bdccea528dbcf565cdf92bfa2da9110461159d86a537388ef1acef8815a330642d7885b29010e8f7eac967c9993b65ab - languageName: node - linkType: hard - "isexe@npm:^2.0.0": version: 2.0.0 resolution: "isexe@npm:2.0.0" @@ -7703,7 +5771,7 @@ __metadata: languageName: node linkType: hard -"js-tokens@npm:^3.0.0 || ^4.0.0, js-tokens@npm:^4.0.0": +"js-tokens@npm:^4.0.0": version: 4.0.0 resolution: "js-tokens@npm:4.0.0" checksum: 8a95213a5a77deb6cbe94d86340e8d9ace2b93bc367790b260101d2f36a2eaf4e4e22d9fa9cf459b38af3a32fb4190e638024cf82ec95ef708680e405ea7cc78 @@ -7820,13 +5888,6 @@ __metadata: languageName: node linkType: hard -"json-stringify-pretty-compact@npm:~3.0.0": - version: 3.0.0 - resolution: "json-stringify-pretty-compact@npm:3.0.0" - checksum: 01ab5c5c8260299414868d96db97f53aef93c290fe469edd9a1363818e795006e01c952fa2fd7b47cbbab506d5768998eccc25e1da4fa2ccfebd1788c6098791 - languageName: node - linkType: hard - "json5@npm:^2.1.2, json5@npm:^2.2.3": version: 2.2.3 resolution: "json5@npm:2.2.3" @@ -7998,13 +6059,6 @@ __metadata: languageName: node linkType: hard -"lodash.escape@npm:^4.0.1": - version: 4.0.1 - resolution: "lodash.escape@npm:4.0.1" - checksum: fcb54f457497256964d619d5cccbd80a961916fca60df3fe0fa3e7f052715c2944c0ed5aefb4f9e047d127d44aa2d55555f3350cb42c6549e9e293fb30b41e7f - languageName: node - linkType: hard - "lodash.memoize@npm:4.x": version: 4.1.2 resolution: "lodash.memoize@npm:4.1.2" @@ -8019,13 +6073,6 @@ __metadata: languageName: node linkType: hard -"lodash.mergewith@npm:^4.6.1": - version: 4.6.2 - resolution: "lodash.mergewith@npm:4.6.2" - checksum: a6db2a9339752411f21b956908c404ec1e088e783a65c8b29e30ae5b3b6384f82517662d6f425cc97c2070b546cc2c7daaa8d33f78db7b6e9be06cd834abdeb8 - languageName: node - linkType: hard - "lodash@npm:^4.17.20, lodash@npm:^4.17.21, lodash@npm:^4.17.4, lodash@npm:^4.7.0": version: 4.17.21 resolution: "lodash@npm:4.17.21" @@ -8033,17 +6080,6 @@ __metadata: languageName: node linkType: hard -"loose-envify@npm:^1.1.0, loose-envify@npm:^1.4.0": - version: 1.4.0 - resolution: "loose-envify@npm:1.4.0" - dependencies: - js-tokens: ^3.0.0 || ^4.0.0 - bin: - loose-envify: cli.js - checksum: 6517e24e0cad87ec9888f500c5b5947032cdfe6ef65e1c1936a0c48a524b81e65542c9c3edc91c97d5bddc806ee2a985dbc79be89215d613b1de5db6d1cfe6f4 - languageName: node - linkType: hard - "lru-cache@npm:^10.0.1, lru-cache@npm:^10.2.0": version: 10.2.2 resolution: "lru-cache@npm:10.2.2" @@ -8105,15 +6141,6 @@ __metadata: languageName: node linkType: hard -"markdown-to-jsx@npm:^7.4.1": - version: 7.4.7 - resolution: "markdown-to-jsx@npm:7.4.7" - peerDependencies: - react: ">= 0.14.0" - checksum: bb8a696c8a95dd67ac1eb44255f31cf17e60b6c2ff03bfcd51b5e28da17856c57d7a16da59fda7f3a4eedb01d7e92eeef57a10ff3abd5431e5c80059d4565016 - languageName: node - linkType: hard - "memorystream@npm:^0.3.1": version: 0.3.1 resolution: "memorystream@npm:0.3.1" @@ -8216,7 +6243,7 @@ __metadata: languageName: node linkType: hard -"minimist@npm:^1.2.0, minimist@npm:~1.2.0": +"minimist@npm:~1.2.0": version: 1.2.8 resolution: "minimist@npm:1.2.8" checksum: 75a6d645fb122dad29c06a7597bddea977258957ed88d7a6df59b5cd3fe4a527e253e9bbf2e783e4b73657f9098b96a5fe96ab8a113655d4109108577ecf85b0 @@ -8325,13 +6352,6 @@ __metadata: languageName: node linkType: hard -"ms@npm:2.0.0": - version: 2.0.0 - resolution: "ms@npm:2.0.0" - checksum: 0e6a22b8b746d2e0b65a430519934fefd41b6db0682e3477c10f60c76e947c4c0ad06f63ffdf1d78d335f83edee8c0aa928aa66a36c7cd95b69b26f468d527f4 - languageName: node - linkType: hard - "ms@npm:2.1.2": version: 2.1.2 resolution: "ms@npm:2.1.2" @@ -8376,20 +6396,6 @@ __metadata: languageName: node linkType: hard -"node-fetch@npm:^2.6.7": - version: 2.7.0 - resolution: "node-fetch@npm:2.7.0" - dependencies: - whatwg-url: ^5.0.0 - peerDependencies: - encoding: ^0.1.0 - peerDependenciesMeta: - encoding: - optional: true - checksum: d76d2f5edb451a3f05b15115ec89fc6be39de37c6089f1b6368df03b91e1633fd379a7e01b7ab05089a25034b2023d959b47e59759cb38d88341b2459e89d6e5 - languageName: node - linkType: hard - "node-gyp@npm:latest": version: 10.1.0 resolution: "node-gyp@npm:10.1.0" @@ -8484,13 +6490,6 @@ __metadata: languageName: node linkType: hard -"object-assign@npm:^4.1.1": - version: 4.1.1 - resolution: "object-assign@npm:4.1.1" - checksum: fcc6e4ea8c7fe48abfbb552578b1c53e0d194086e2e6bbbf59e0a536381a292f39943c6e9628af05b5528aa5e3318bb30d6b2e53cadaf5b8fe9e12c4b69af23f - languageName: node - linkType: hard - "object-inspect@npm:^1.13.1": version: 1.13.1 resolution: "object-inspect@npm:1.13.1" @@ -8735,16 +6734,6 @@ __metadata: languageName: node linkType: hard -"path@npm:~0.12.7": - version: 0.12.7 - resolution: "path@npm:0.12.7" - dependencies: - process: ^0.11.1 - util: ^0.10.3 - checksum: 5dedb71e78fc008fcba797defc0b4e1cf06c1f18e0a631e03ba5bb505136f587ff017afc14f9a3d481cbe77aeedff7dc0c1d2ce4d820c1ebf3c4281ca49423a1 - languageName: node - linkType: hard - "pbf@npm:3.2.1": version: 3.2.1 resolution: "pbf@npm:3.2.1" @@ -8803,30 +6792,6 @@ __metadata: languageName: node linkType: hard -"playwright-core@npm:1.44.1": - version: 1.44.1 - resolution: "playwright-core@npm:1.44.1" - bin: - playwright-core: cli.js - checksum: ebc6fa0ff77792fe52648fda06cc4474d4e9746db6dc5750d262b7fe2caf9f9e2327a71f1fb365e862213403a9daf95361c5040a9b0fd462928d7eb4fdc760e1 - languageName: node - linkType: hard - -"playwright@npm:1.44.1": - version: 1.44.1 - resolution: "playwright@npm:1.44.1" - dependencies: - fsevents: 2.3.2 - playwright-core: 1.44.1 - dependenciesMeta: - fsevents: - optional: true - bin: - playwright: cli.js - checksum: c2e8ff0a855e4a9e665ae5ffa0ff90423289546157be55e83f78916d17075c5910a7244773739c2a973da884a4ff0b3cf9b6e6b543de112e43b12169a9208e86 - languageName: node - linkType: hard - "possible-typed-array-names@npm:^1.0.0": version: 1.0.0 resolution: "possible-typed-array-names@npm:1.0.0" @@ -8950,20 +6915,13 @@ __metadata: linkType: hard "proc-log@npm:^4.2.0": - version: 4.2.0 - resolution: "proc-log@npm:4.2.0" - checksum: 98f6cd012d54b5334144c5255ecb941ee171744f45fca8b43b58ae5a0c1af07352475f481cadd9848e7f0250376ee584f6aa0951a856ff8f021bdfbff4eb33fc - languageName: node - linkType: hard - -"process-nextick-args@npm:~2.0.0": - version: 2.0.1 - resolution: "process-nextick-args@npm:2.0.1" - checksum: 1d38588e520dab7cea67cbbe2efdd86a10cc7a074c09657635e34f035277b59fbb57d09d8638346bf7090f8e8ebc070c96fa5fd183b777fff4f5edff5e9466cf + version: 4.2.0 + resolution: "proc-log@npm:4.2.0" + checksum: 98f6cd012d54b5334144c5255ecb941ee171744f45fca8b43b58ae5a0c1af07352475f481cadd9848e7f0250376ee584f6aa0951a856ff8f021bdfbff4eb33fc languageName: node linkType: hard -"process@npm:^0.11.1, process@npm:^0.11.10": +"process@npm:^0.11.10": version: 0.11.10 resolution: "process@npm:0.11.10" checksum: bfcce49814f7d172a6e6a14d5fa3ac92cc3d0c3b9feb1279774708a719e19acd673995226351a082a9ae99978254e320ccda4240ddc474ba31a76c79491ca7c3 @@ -8990,17 +6948,6 @@ __metadata: languageName: node linkType: hard -"prop-types@npm:^15.8.1": - version: 15.8.1 - resolution: "prop-types@npm:15.8.1" - dependencies: - loose-envify: ^1.4.0 - object-assign: ^4.1.1 - react-is: ^16.13.1 - checksum: c056d3f1c057cb7ff8344c645450e14f088a915d078dcda795041765047fa080d38e5d626560ccaac94a4e16e3aa15f3557c1a9a8d1174530955e992c675e459 - languageName: node - linkType: hard - "protocol-buffers-schema@npm:^3.3.1": version: 3.6.0 resolution: "protocol-buffers-schema@npm:3.6.0" @@ -9068,25 +7015,6 @@ __metadata: languageName: node linkType: hard -"react-dom@npm:^18.2.0": - version: 18.3.1 - resolution: "react-dom@npm:18.3.1" - dependencies: - loose-envify: ^1.1.0 - scheduler: ^0.23.2 - peerDependencies: - react: ^18.3.1 - checksum: 298954ecd8f78288dcaece05e88b570014d8f6dce5db6f66e6ee91448debeb59dcd31561dddb354eee47e6c1bb234669459060deb238ed0213497146e555a0b9 - languageName: node - linkType: hard - -"react-is@npm:^16.13.1": - version: 16.13.1 - resolution: "react-is@npm:16.13.1" - checksum: f7a19ac3496de32ca9ae12aa030f00f14a3d45374f1ceca0af707c831b2a6098ef0d6bdae51bd437b0a306d7f01d4677fcc8de7c0d331eb47ad0f46130e53c5f - languageName: node - linkType: hard - "react-is@npm:^18.0.0, react-is@npm:^18.2.0": version: 18.3.1 resolution: "react-is@npm:18.3.1" @@ -9094,15 +7022,6 @@ __metadata: languageName: node linkType: hard -"react@npm:>=17.0.0 <19.0.0, react@npm:^18.2.0": - version: 18.3.1 - resolution: "react@npm:18.3.1" - dependencies: - loose-envify: ^1.1.0 - checksum: a27bcfa8ff7c15a1e50244ad0d0c1cb2ad4375eeffefd266a64889beea6f6b64c4966c9b37d14ee32d6c9fcd5aa6ba183b6988167ab4d127d13e7cb5b386a376 - languageName: node - linkType: hard - "read-pkg@npm:^3.0.0": version: 3.0.0 resolution: "read-pkg@npm:3.0.0" @@ -9114,21 +7033,6 @@ __metadata: languageName: node linkType: hard -"readable-stream@npm:^2.1.4": - version: 2.3.8 - resolution: "readable-stream@npm:2.3.8" - dependencies: - core-util-is: ~1.0.0 - inherits: ~2.0.3 - isarray: ~1.0.0 - process-nextick-args: ~2.0.0 - safe-buffer: ~5.1.1 - string_decoder: ~1.1.1 - util-deprecate: ~1.0.1 - checksum: 65645467038704f0c8aaf026a72fbb588a9e2ef7a75cd57a01702ee9db1c4a1e4b03aaad36861a6a0926546a74d174149c8c207527963e0c2d3eee2f37678a42 - languageName: node - linkType: hard - "rechoir@npm:^0.8.0": version: 0.8.0 resolution: "rechoir@npm:0.8.0" @@ -9170,24 +7074,6 @@ __metadata: languageName: node linkType: hard -"regexp-match-indices@npm:^1.0.2": - version: 1.0.2 - resolution: "regexp-match-indices@npm:1.0.2" - dependencies: - regexp-tree: ^0.1.11 - checksum: 8cc779f6cf8f404ead828d09970a7d4bd66bd78d43ab9eb2b5e65f2ef2ba1ed53536f5b5fa839fb90b350365fb44b6a851c7f16289afc3f37789c113ab2a7916 - languageName: node - linkType: hard - -"regexp-tree@npm:^0.1.11": - version: 0.1.27 - resolution: "regexp-tree@npm:0.1.27" - bin: - regexp-tree: bin/regexp-tree - checksum: 129aebb34dae22d6694ab2ac328be3f99105143737528ab072ef624d599afecbcfae1f5c96a166fa9e5f64fa1ecf30b411c4691e7924c3e11bbaf1712c260c54 - languageName: node - linkType: hard - "regexp.prototype.flags@npm:^1.5.2": version: 1.5.2 resolution: "regexp.prototype.flags@npm:1.5.2" @@ -9347,13 +7233,6 @@ __metadata: languageName: node linkType: hard -"robust-predicates@npm:^3.0.2": - version: 3.0.2 - resolution: "robust-predicates@npm:3.0.2" - checksum: 36854c1321548ceca96d36ad9d6e0a5a512986029ec6929ad6ed3ec1612c22cc8b46cc72d2c5674af42e8074a119d793f6f0ea3a5b51373e3ab926c64b172d7a - languageName: node - linkType: hard - "run-parallel@npm:^1.1.9": version: 1.2.0 resolution: "run-parallel@npm:1.2.0" @@ -9363,13 +7242,6 @@ __metadata: languageName: node linkType: hard -"rw@npm:1": - version: 1.3.3 - resolution: "rw@npm:1.3.3" - checksum: c20d82421f5a71c86a13f76121b751553a99cd4a70ea27db86f9b23f33db941f3f06019c30f60d50c356d0bd674c8e74764ac146ea55e217c091bde6fba82aa3 - languageName: node - linkType: hard - "safe-array-concat@npm:^1.1.2": version: 1.1.2 resolution: "safe-array-concat@npm:1.1.2" @@ -9389,13 +7261,6 @@ __metadata: languageName: node linkType: hard -"safe-buffer@npm:~5.1.0, safe-buffer@npm:~5.1.1": - version: 5.1.2 - resolution: "safe-buffer@npm:5.1.2" - checksum: f2f1f7943ca44a594893a852894055cf619c1fbcb611237fc39e461ae751187e7baf4dc391a72125e0ac4fb2d8c5c0b3c71529622e6a58f46b960211e704903c - languageName: node - linkType: hard - "safe-regex-test@npm:^1.0.3": version: 1.0.3 resolution: "safe-regex-test@npm:1.0.3" @@ -9428,29 +7293,6 @@ __metadata: languageName: node linkType: hard -"sanitize-html@npm:~2.12.1": - version: 2.12.1 - resolution: "sanitize-html@npm:2.12.1" - dependencies: - deepmerge: ^4.2.2 - escape-string-regexp: ^4.0.0 - htmlparser2: ^8.0.0 - is-plain-object: ^5.0.0 - parse-srcset: ^1.0.2 - postcss: ^8.3.11 - checksum: fb96ea7170d51b5af2607f5cfd84464c78fc6f47e339407f55783e781c6a0288a8d40bbf97ea6a8758924ba9b2d33dcc4846bb94caacacd90d7f2de10ed8541a - languageName: node - linkType: hard - -"scheduler@npm:^0.23.2": - version: 0.23.2 - resolution: "scheduler@npm:0.23.2" - dependencies: - loose-envify: ^1.1.0 - checksum: 3e82d1f419e240ef6219d794ff29c7ee415fbdc19e038f680a10c067108e06284f1847450a210b29bbaf97b9d8a97ced5f624c31c681248ac84c80d56ad5a2c4 - languageName: node - linkType: hard - "schema-utils@npm:^2.7.0": version: 2.7.1 resolution: "schema-utils@npm:2.7.1" @@ -9882,15 +7724,6 @@ __metadata: languageName: node linkType: hard -"string_decoder@npm:~1.1.1": - version: 1.1.1 - resolution: "string_decoder@npm:1.1.1" - dependencies: - safe-buffer: ~5.1.0 - checksum: 9ab7e56f9d60a28f2be697419917c50cac19f3e8e6c28ef26ed5f4852289fe0de5d6997d29becf59028556f2c62983790c1d9ba1e2a3cc401768ca12d5183a5b - languageName: node - linkType: hard - "strip-ansi-cjs@npm:strip-ansi@^6.0.1, strip-ansi@npm:^6.0.0, strip-ansi@npm:^6.0.1": version: 6.0.1 resolution: "strip-ansi@npm:6.0.1" @@ -9955,13 +7788,6 @@ __metadata: languageName: node linkType: hard -"style-mod@npm:^4.0.0, style-mod@npm:^4.1.0": - version: 4.1.2 - resolution: "style-mod@npm:4.1.2" - checksum: 7c5c3e82747f9bcf5f288d8d07f50848e4630fe5ff7bfe4d94cc87d6b6a2588227cbf21b4c792ac6406e5852293300a75e710714479a5c59a06af677f0825ef8 - languageName: node - linkType: hard - "supports-color@npm:^5.3.0": version: 5.5.0 resolution: "supports-color@npm:5.5.0" @@ -10006,23 +7832,6 @@ __metadata: languageName: node linkType: hard -"systeminformation@npm:^5.8.6": - version: 5.22.11 - resolution: "systeminformation@npm:5.22.11" - bin: - systeminformation: lib/cli.js - checksum: 5e924a87ecd5453225456191c5a9201d763a59e905a45a4e1d4e99b98b69fed25d33e756ad8f9fef1f513259778cbcfd4cbba48b208f7f9c87db9cb97d1eabe7 - conditions: (os=darwin | os=linux | os=win32 | os=freebsd | os=openbsd | os=netbsd | os=sunos | os=android) - languageName: node - linkType: hard - -"tabbable@npm:^5.2.0": - version: 5.3.3 - resolution: "tabbable@npm:5.3.3" - checksum: 1aa56e1bb617cc10616c407f4e756f0607f3e2d30f9803664d70b85db037ca27e75918ed1c71443f3dc902e21dc9f991ce4b52d63a538c9b69b3218d3babcd70 - languageName: node - linkType: hard - "tapable@npm:^2.1.1, tapable@npm:^2.2.0, tapable@npm:^2.2.1": version: 2.2.1 resolution: "tapable@npm:2.2.1" @@ -10121,19 +7930,6 @@ __metadata: languageName: node linkType: hard -"topojson-client@npm:^3.1.0": - version: 3.1.0 - resolution: "topojson-client@npm:3.1.0" - dependencies: - commander: 2 - bin: - topo2geo: bin/topo2geo - topomerge: bin/topomerge - topoquantize: bin/topoquantize - checksum: 8c029a4f18324ace0b8b55dd90edbd40c9e3c6de18bafbb5da37ca20ebf20e26fbd4420891acb3c2c264e214185f7557871f5651a9eee517028663be98d836de - languageName: node - linkType: hard - "tr46@npm:^2.1.0": version: 2.1.0 resolution: "tr46@npm:2.1.0" @@ -10143,13 +7939,6 @@ __metadata: languageName: node linkType: hard -"tr46@npm:~0.0.3": - version: 0.0.3 - resolution: "tr46@npm:0.0.3" - checksum: 726321c5eaf41b5002e17ffbd1fb7245999a073e8979085dacd47c4b4e8068ff5777142fc6726d6ca1fd2ff16921b48788b87225cbc57c72636f6efa8efbffe3 - languageName: node - linkType: hard - "ts-api-utils@npm:^1.0.1": version: 1.3.0 resolution: "ts-api-utils@npm:1.3.0" @@ -10208,13 +7997,6 @@ __metadata: languageName: node linkType: hard -"tslib@npm:^1.13.0": - version: 1.14.1 - resolution: "tslib@npm:1.14.1" - checksum: dbe628ef87f66691d5d2959b3e41b9ca0045c3ee3c7c7b906cc1e328b39f199bb1ad9e671c39025bd56122ac57dfbf7385a94843b1cc07c60a4db74795829acd - languageName: node - linkType: hard - "tslib@npm:^2.6.2": version: 2.6.2 resolution: "tslib@npm:2.6.2" @@ -10222,13 +8004,6 @@ __metadata: languageName: node linkType: hard -"tslib@npm:~2.6.3": - version: 2.6.3 - resolution: "tslib@npm:2.6.3" - checksum: 74fce0e100f1ebd95b8995fbbd0e6c91bdd8f4c35c00d4da62e285a3363aaa534de40a80db30ecfd388ed7c313c42d930ee0eaf108e8114214b180eec3dbe6f5 - languageName: node - linkType: hard - "type-check@npm:^0.4.0, type-check@npm:~0.4.0": version: 0.4.0 resolution: "type-check@npm:0.4.0" @@ -10331,16 +8106,6 @@ __metadata: languageName: node linkType: hard -"typestyle@npm:^2.0.4": - version: 2.4.0 - resolution: "typestyle@npm:2.4.0" - dependencies: - csstype: 3.0.10 - free-style: 3.1.0 - checksum: 8b4f02c24f67b594f98507b15a753dabd4db5eb0af007e1d310527c64030e11e9464b25b5a6bc65fb5eec9a4459a8336050121ecc29063ac87b8b47a6d698893 - languageName: node - linkType: hard - "unbox-primitive@npm:^1.0.2": version: 1.0.2 resolution: "unbox-primitive@npm:1.0.2" @@ -10456,22 +8221,13 @@ __metadata: languageName: node linkType: hard -"util-deprecate@npm:^1.0.2, util-deprecate@npm:~1.0.1": +"util-deprecate@npm:^1.0.2": version: 1.0.2 resolution: "util-deprecate@npm:1.0.2" checksum: 474acf1146cb2701fe3b074892217553dfcf9a031280919ba1b8d651a068c9b15d863b7303cb15bd00a862b498e6cf4ad7b4a08fb134edd5a6f7641681cb54a2 languageName: node linkType: hard -"util@npm:^0.10.3": - version: 0.10.4 - resolution: "util@npm:0.10.4" - dependencies: - inherits: 2.0.3 - checksum: 913f9a90d05a60e91f91af01b8bd37e06bca4cc02d7b49e01089f9d5b78be2fffd61fb1a41b517de7238c5fc7337fa939c62d1fb4eb82e014894c7bee6637aaf - languageName: node - linkType: hard - "v8-to-istanbul@npm:^9.0.1": version: 9.2.0 resolution: "v8-to-istanbul@npm:9.2.0" @@ -10533,458 +8289,6 @@ __metadata: languageName: node linkType: hard -"vega-canvas@npm:^1.2.7": - version: 1.2.7 - resolution: "vega-canvas@npm:1.2.7" - checksum: 6ff92fcdf0c359f2f662909c859a7f4cb4a502436136ab2f4c02373c47a621996ec0eea23e2108f11d62a618be301de86cd8528b5058c2e207a53ddd7ff58d1b - languageName: node - linkType: hard - -"vega-crossfilter@npm:~4.1.2": - version: 4.1.2 - resolution: "vega-crossfilter@npm:4.1.2" - dependencies: - d3-array: ^3.2.2 - vega-dataflow: ^5.7.6 - vega-util: ^1.17.2 - checksum: 1aefd6ad0dd391b28a7fbcdcc5403932fa25b2bd22e37c149b281cd9c89327b8a5cc23f4d4086cee73e2c828ae61e81f192365a3453d4687d0950f0aed3d068e - languageName: node - linkType: hard - -"vega-dataflow@npm:^5.7.6, vega-dataflow@npm:~5.7.6": - version: 5.7.6 - resolution: "vega-dataflow@npm:5.7.6" - dependencies: - vega-format: ^1.1.2 - vega-loader: ^4.5.2 - vega-util: ^1.17.2 - checksum: bea1237a5ddaadaba774b1521ef2419249a0d7c926e8a8bd1dcbbc1b771b5e9fff4a64d515f056d63708c8cb11e0bccd64c302c179af03ecaba2c7fc870422e0 - languageName: node - linkType: hard - -"vega-encode@npm:~4.10.1": - version: 4.10.1 - resolution: "vega-encode@npm:4.10.1" - dependencies: - d3-array: ^3.2.2 - d3-interpolate: ^3.0.1 - vega-dataflow: ^5.7.6 - vega-scale: ^7.4.1 - vega-util: ^1.17.2 - checksum: cfaa3655bd0c22b19bd834e853770d0121a8f189b5697c786e85bdde8d61decbfe04f5c9c94936a260c3684177d61bc10a18a1895df56b70f025b7a4dc9a9fb8 - languageName: node - linkType: hard - -"vega-event-selector@npm:^3.0.1, vega-event-selector@npm:~3.0.1": - version: 3.0.1 - resolution: "vega-event-selector@npm:3.0.1" - checksum: 66d09b5800a19a9b0c75f28811b140a1a2e70e84be6d6f87c568cdbce6e17c8e195f130f4e3de5d6dc737142d1f46f4fe7645177e154582cc8ba27c6845b54e8 - languageName: node - linkType: hard - -"vega-expression@npm:^5.0.1, vega-expression@npm:^5.1.1, vega-expression@npm:~5.1.0, vega-expression@npm:~5.1.1": - version: 5.1.1 - resolution: "vega-expression@npm:5.1.1" - dependencies: - "@types/estree": ^1.0.0 - vega-util: ^1.17.2 - checksum: 5af3732b1757000e7f79f7b923cf6594cf75bdc2350b2d54992d8df0bad5cea04812d6d08b79e6fc7a20c3df944b6c11fc5e6ab39a098e5d51e3edf33df4d29f - languageName: node - linkType: hard - -"vega-force@npm:~4.2.1": - version: 4.2.1 - resolution: "vega-force@npm:4.2.1" - dependencies: - d3-force: ^3.0.0 - vega-dataflow: ^5.7.6 - vega-util: ^1.17.2 - checksum: da7b113943f4369a4217db88e17022966f1e228349eaf368bc487c6f73d488d20de5a5ced901948f96ebe1b6c45efb642e2a1dbc43299da1aea41c62648ab48b - languageName: node - linkType: hard - -"vega-format@npm:^1.1.2, vega-format@npm:~1.1.2": - version: 1.1.2 - resolution: "vega-format@npm:1.1.2" - dependencies: - d3-array: ^3.2.2 - d3-format: ^3.1.0 - d3-time-format: ^4.1.0 - vega-time: ^2.1.2 - vega-util: ^1.17.2 - checksum: 04edc955080a994353a7d8915fd2142b5f055b7d86d7d7ab45f44648a68d8138c958d40a4cc6f4ecdd4f2327866d5ad96aa8fb9b543f2c130c01d8893e2cb365 - languageName: node - linkType: hard - -"vega-functions@npm:^5.15.0, vega-functions@npm:~5.15.0": - version: 5.15.0 - resolution: "vega-functions@npm:5.15.0" - dependencies: - d3-array: ^3.2.2 - d3-color: ^3.1.0 - d3-geo: ^3.1.0 - vega-dataflow: ^5.7.6 - vega-expression: ^5.1.1 - vega-scale: ^7.4.1 - vega-scenegraph: ^4.13.0 - vega-selections: ^5.4.2 - vega-statistics: ^1.9.0 - vega-time: ^2.1.2 - vega-util: ^1.17.2 - checksum: 5aff41436560b18f03059f173d951e13f7d7c6d0cf0552829f951c7d992a69c9374651d472e51ba092e14cf99c3a9d000ebb2918a13354c52827da9cb3f462f0 - languageName: node - linkType: hard - -"vega-geo@npm:~4.4.2": - version: 4.4.2 - resolution: "vega-geo@npm:4.4.2" - dependencies: - d3-array: ^3.2.2 - d3-color: ^3.1.0 - d3-geo: ^3.1.0 - vega-canvas: ^1.2.7 - vega-dataflow: ^5.7.6 - vega-projection: ^1.6.1 - vega-statistics: ^1.9.0 - vega-util: ^1.17.2 - checksum: a7c0df4c0ae8c762136ca6b22047a278c32a848d970cb729f9b7886852856996b48ae0ffc44a357ddecd4fd665f66b33291efd056692864fba9d6d60a30115fa - languageName: node - linkType: hard - -"vega-hierarchy@npm:~4.1.2": - version: 4.1.2 - resolution: "vega-hierarchy@npm:4.1.2" - dependencies: - d3-hierarchy: ^3.1.2 - vega-dataflow: ^5.7.6 - vega-util: ^1.17.2 - checksum: 5c083982cc99f78f34a7ddec2719cd2e016971024d8e11572be35600d10940ab4c14624254d3cef99756345f5601c39f62fb9d2cbeab5a341b3c6dc4c47dc4e9 - languageName: node - linkType: hard - -"vega-label@npm:~1.3.0": - version: 1.3.0 - resolution: "vega-label@npm:1.3.0" - dependencies: - vega-canvas: ^1.2.7 - vega-dataflow: ^5.7.6 - vega-scenegraph: ^4.13.0 - vega-util: ^1.17.2 - checksum: d42049c2c9d1a92f3a2f5531d28ed9250593f0a62399d1397fc597674377a1c91ae1363dc753d0ce1c5c25eecbdda2f9710ad64c5ebfa52f171c5b57ca706490 - languageName: node - linkType: hard - -"vega-lite@npm:^5.6.1": - version: 5.19.0 - resolution: "vega-lite@npm:5.19.0" - dependencies: - json-stringify-pretty-compact: ~3.0.0 - tslib: ~2.6.3 - vega-event-selector: ~3.0.1 - vega-expression: ~5.1.0 - vega-util: ~1.17.2 - yargs: ~17.7.2 - peerDependencies: - vega: ^5.24.0 - bin: - vl2pdf: bin/vl2pdf - vl2png: bin/vl2png - vl2svg: bin/vl2svg - vl2vg: bin/vl2vg - checksum: 78baf896f1638637a3a2103923ceb00395dab658d043f187fe67992aacf6ba70264ce3f3e60012bfcf9e55a7f22183b9c4174c71ee082aa69e4b47bf827fb428 - languageName: node - linkType: hard - -"vega-loader@npm:^4.5.2, vega-loader@npm:~4.5.2": - version: 4.5.2 - resolution: "vega-loader@npm:4.5.2" - dependencies: - d3-dsv: ^3.0.1 - node-fetch: ^2.6.7 - topojson-client: ^3.1.0 - vega-format: ^1.1.2 - vega-util: ^1.17.2 - checksum: e2f77e36dd40d5604b31f7273a0cebc5cc2a83560131bec217fc9c2c1f03faa68fe57c86ff39d3b14d375a9ad91f1d5709abaf666e30ca97041f687756d99de6 - languageName: node - linkType: hard - -"vega-parser@npm:~6.4.0": - version: 6.4.0 - resolution: "vega-parser@npm:6.4.0" - dependencies: - vega-dataflow: ^5.7.6 - vega-event-selector: ^3.0.1 - vega-functions: ^5.15.0 - vega-scale: ^7.4.1 - vega-util: ^1.17.2 - checksum: bc0d0057e65820351513c550b0576e5860f7110e3de05fd682b01c3d6453c3aef8a3510ab039d8b45b4269b233a67f5bd4b09cfd770f21cdf58a1f2d186e03c8 - languageName: node - linkType: hard - -"vega-projection@npm:^1.6.1, vega-projection@npm:~1.6.1": - version: 1.6.1 - resolution: "vega-projection@npm:1.6.1" - dependencies: - d3-geo: ^3.1.0 - d3-geo-projection: ^4.0.0 - vega-scale: ^7.4.1 - checksum: 4ea5c449d4aed427add0777cecf430670c6addaa1c938bc112458e1b2281e5a976b9bcbe1b3aa2ce3e135ae39a6ddecd32c3ac1bd978f879d1bcd8fe0425aab3 - languageName: node - linkType: hard - -"vega-regression@npm:~1.3.0": - version: 1.3.0 - resolution: "vega-regression@npm:1.3.0" - dependencies: - d3-array: ^3.2.2 - vega-dataflow: ^5.7.6 - vega-statistics: ^1.9.0 - vega-util: ^1.17.2 - checksum: 1a442e5a8d17cc07a02b080ac2c75b1de5dd4133df70f482833c9d3fa4794bce2acc10ce9c85d7c96fa47e5566728c84fb6ee1afa309d96b522575e1cade84fd - languageName: node - linkType: hard - -"vega-runtime@npm:^6.2.0, vega-runtime@npm:~6.2.0": - version: 6.2.0 - resolution: "vega-runtime@npm:6.2.0" - dependencies: - vega-dataflow: ^5.7.6 - vega-util: ^1.17.2 - checksum: e818063dd9b1ca336cb27437047c50ed15f70be86413166d84687aca40270f574da82355934c43cedbb40b14639fe171cfae29eb975ede10910747d345f38e15 - languageName: node - linkType: hard - -"vega-scale@npm:^7.4.1, vega-scale@npm:~7.4.1": - version: 7.4.1 - resolution: "vega-scale@npm:7.4.1" - dependencies: - d3-array: ^3.2.2 - d3-interpolate: ^3.0.1 - d3-scale: ^4.0.2 - d3-scale-chromatic: ^3.1.0 - vega-time: ^2.1.2 - vega-util: ^1.17.2 - checksum: 7fe83fdcf09b1e328531d0e4a411ad2eaabbde40b5c0a6de21c75dc341ca208194b1cf48369d76a64718beac438549dad42ff5e7e495a6e39bcff1aeb24118b9 - languageName: node - linkType: hard - -"vega-scenegraph@npm:^4.13.0, vega-scenegraph@npm:~4.13.0": - version: 4.13.0 - resolution: "vega-scenegraph@npm:4.13.0" - dependencies: - d3-path: ^3.1.0 - d3-shape: ^3.2.0 - vega-canvas: ^1.2.7 - vega-loader: ^4.5.2 - vega-scale: ^7.4.1 - vega-util: ^1.17.2 - checksum: 8910511db2bd11237984716e69817d3e91fc83d871263771933f5693b281f9dfe74e93caab913869283fcbbfdb739657d246beed07e43dd5ebfa405bb21fca27 - languageName: node - linkType: hard - -"vega-selections@npm:^5.4.2": - version: 5.4.2 - resolution: "vega-selections@npm:5.4.2" - dependencies: - d3-array: 3.2.4 - vega-expression: ^5.0.1 - vega-util: ^1.17.1 - checksum: 4e78053ab1f8ba4338005ed424043e7d0e91c857b58ab03600a07292e3777a4244d34caa7f8c85e72b2fdd9916882dfdda2fa93c730120ce790ec9883738f2be - languageName: node - linkType: hard - -"vega-statistics@npm:^1.7.9, vega-statistics@npm:^1.9.0, vega-statistics@npm:~1.9.0": - version: 1.9.0 - resolution: "vega-statistics@npm:1.9.0" - dependencies: - d3-array: ^3.2.2 - checksum: bbf2ea088c5a6a662c6aed1bf57996c06a82a98228730ada8a97e57824a6ed391999ea974f16dcde6e73bf88799976d91aff748842848d38ab45dbb9fafba3f9 - languageName: node - linkType: hard - -"vega-time@npm:^2.1.2, vega-time@npm:~2.1.2": - version: 2.1.2 - resolution: "vega-time@npm:2.1.2" - dependencies: - d3-array: ^3.2.2 - d3-time: ^3.1.0 - vega-util: ^1.17.2 - checksum: 35605db00f110f75274ee115716dc9e981da3cecb8c5692865557860058931ecb43d64f0ec2e7f00225a73e00fb7d1424d12b091a43ed11962a2f63177465dd6 - languageName: node - linkType: hard - -"vega-transforms@npm:~4.12.0": - version: 4.12.0 - resolution: "vega-transforms@npm:4.12.0" - dependencies: - d3-array: ^3.2.2 - vega-dataflow: ^5.7.6 - vega-statistics: ^1.9.0 - vega-time: ^2.1.2 - vega-util: ^1.17.2 - checksum: f2dcc0ef9f8fe49df3f421956d689dc0b0eccd7c178575c9a1093729d70dab6780b9a54f3d5725e55b8480bb2eff363d606c8e001e49f9492952354f1ebb8e72 - languageName: node - linkType: hard - -"vega-typings@npm:~1.3.1": - version: 1.3.1 - resolution: "vega-typings@npm:1.3.1" - dependencies: - "@types/geojson": 7946.0.4 - vega-event-selector: ^3.0.1 - vega-expression: ^5.1.1 - vega-util: ^1.17.2 - checksum: 0a7b4ecf3c5858a1216389f94fea8ba725371569c072f1e561d545938efa7ef6982a35377408c5238e11f9ae17c07ee5622ab3d1bcc92935e757d8806966d42c - languageName: node - linkType: hard - -"vega-util@npm:^1.17.1, vega-util@npm:^1.17.2, vega-util@npm:~1.17.2": - version: 1.17.2 - resolution: "vega-util@npm:1.17.2" - checksum: 5d681cb1a6ffda7af1b74df7c1c46a32f1d874daef54f9c9c65c7d7c7bfc4271dc6d9b1c1c7a853b14eb6e4cc8ec811b0132cd3ea25fa85259eac92e1b4f07fa - languageName: node - linkType: hard - -"vega-view-transforms@npm:~4.6.0": - version: 4.6.0 - resolution: "vega-view-transforms@npm:4.6.0" - dependencies: - vega-dataflow: ^5.7.6 - vega-scenegraph: ^4.13.0 - vega-util: ^1.17.2 - checksum: 5fde295a051e41ee644480bb2554b7f39e9a77377a172e96265a0d95bd8049abc2e33e78707e193d28d990ca12072f9957da54a7c595b98b547020726bc07936 - languageName: node - linkType: hard - -"vega-view@npm:~5.13.0": - version: 5.13.0 - resolution: "vega-view@npm:5.13.0" - dependencies: - d3-array: ^3.2.2 - d3-timer: ^3.0.1 - vega-dataflow: ^5.7.6 - vega-format: ^1.1.2 - vega-functions: ^5.15.0 - vega-runtime: ^6.2.0 - vega-scenegraph: ^4.13.0 - vega-util: ^1.17.2 - checksum: 55ce2e108754a18d354070b2b48b9a90ae26d9d98db89871260bcfd6a3abc0882cdc91175d698c0eed88e9a34a49ae7bcd64187954acb7eb437b8e95064e3c8c - languageName: node - linkType: hard - -"vega-voronoi@npm:~4.2.3": - version: 4.2.3 - resolution: "vega-voronoi@npm:4.2.3" - dependencies: - d3-delaunay: ^6.0.2 - vega-dataflow: ^5.7.6 - vega-util: ^1.17.2 - checksum: 2f5146ce081373b1f0cf8cf96eb914224b4bd10e41b6b0fbc661a4de2dbf124ba4a2756b14ff9f19b8584374df0071a0d0c97043fca393aaa3526fb5d8a8bec1 - languageName: node - linkType: hard - -"vega-wordcloud@npm:~4.1.5": - version: 4.1.5 - resolution: "vega-wordcloud@npm:4.1.5" - dependencies: - vega-canvas: ^1.2.7 - vega-dataflow: ^5.7.6 - vega-scale: ^7.4.1 - vega-statistics: ^1.9.0 - vega-util: ^1.17.2 - checksum: 88ac7776a0f7e02b2e50de7fd59d593ff16cad58cd756e219a9c9e6005343eb41c96109aff141b6be344f824e5238bac0d83c8a8d78136e380f9020a14c0e373 - languageName: node - linkType: hard - -"vega@npm:^5.20.0": - version: 5.30.0 - resolution: "vega@npm:5.30.0" - dependencies: - vega-crossfilter: ~4.1.2 - vega-dataflow: ~5.7.6 - vega-encode: ~4.10.1 - vega-event-selector: ~3.0.1 - vega-expression: ~5.1.1 - vega-force: ~4.2.1 - vega-format: ~1.1.2 - vega-functions: ~5.15.0 - vega-geo: ~4.4.2 - vega-hierarchy: ~4.1.2 - vega-label: ~1.3.0 - vega-loader: ~4.5.2 - vega-parser: ~6.4.0 - vega-projection: ~1.6.1 - vega-regression: ~1.3.0 - vega-runtime: ~6.2.0 - vega-scale: ~7.4.1 - vega-scenegraph: ~4.13.0 - vega-statistics: ~1.9.0 - vega-time: ~2.1.2 - vega-transforms: ~4.12.0 - vega-typings: ~1.3.1 - vega-util: ~1.17.2 - vega-view: ~5.13.0 - vega-view-transforms: ~4.6.0 - vega-voronoi: ~4.2.3 - vega-wordcloud: ~4.1.5 - checksum: 4775a990339a5d45bc42b474678b8136134aed7f8df0cfd43be9b440c82b90e5784f642fd69298dc66a930297c3e828fc106d75d0cc2b6fc15ecea30313e6af6 - languageName: node - linkType: hard - -"vscode-jsonrpc@npm:8.2.0": - version: 8.2.0 - resolution: "vscode-jsonrpc@npm:8.2.0" - checksum: f302a01e59272adc1ae6494581fa31c15499f9278df76366e3b97b2236c7c53ebfc71efbace9041cfd2caa7f91675b9e56f2407871a1b3c7f760a2e2ee61484a - languageName: node - linkType: hard - -"vscode-jsonrpc@npm:^6.0.0": - version: 6.0.0 - resolution: "vscode-jsonrpc@npm:6.0.0" - checksum: 3a67a56f287e8c449f2d9752eedf91e704dc7b9a326f47fb56ac07667631deb45ca52192e9bccb2ab108764e48409d70fa64b930d46fc3822f75270b111c5f53 - languageName: node - linkType: hard - -"vscode-jsonrpc@npm:^8.0.2": - version: 8.2.1 - resolution: "vscode-jsonrpc@npm:8.2.1" - checksum: 2af2c333d73f6587896a7077978b8d4b430e55c674d5dbb90597a84a6647057c1655a3bff398a9b08f1f8ba57dbd2deabf05164315829c297b0debba3b8bc19e - languageName: node - linkType: hard - -"vscode-languageserver-protocol@npm:^3.17.0": - version: 3.17.5 - resolution: "vscode-languageserver-protocol@npm:3.17.5" - dependencies: - vscode-jsonrpc: 8.2.0 - vscode-languageserver-types: 3.17.5 - checksum: dfb42d276df5dfea728267885b99872ecff62f6c20448b8539fae71bb196b420f5351c5aca7c1047bf8fb1f89fa94a961dce2bc5bf7e726198f4be0bb86a1e71 - languageName: node - linkType: hard - -"vscode-languageserver-types@npm:3.17.5": - version: 3.17.5 - resolution: "vscode-languageserver-types@npm:3.17.5" - checksum: 79b420e7576398d396579ca3a461c9ed70e78db4403cd28bbdf4d3ed2b66a2b4114031172e51fad49f0baa60a2180132d7cb2ea35aa3157d7af3c325528210ac - languageName: node - linkType: hard - -"vscode-ws-jsonrpc@npm:~1.0.2": - version: 1.0.2 - resolution: "vscode-ws-jsonrpc@npm:1.0.2" - dependencies: - vscode-jsonrpc: ^8.0.2 - checksum: eb2fdb5c96f124326505f06564dfc6584318b748fd6e39b4c0ba16a0d383d13ba0e9433596abdb841428dfc2a5501994c3206723d1cb38c6af5fcac1faf4be26 - languageName: node - linkType: hard - -"w3c-keyname@npm:^2.2.4": - version: 2.2.8 - resolution: "w3c-keyname@npm:2.2.8" - checksum: 95bafa4c04fa2f685a86ca1000069c1ec43ace1f8776c10f226a73296caeddd83f893db885c2c220ebeb6c52d424e3b54d7c0c1e963bbf204038ff1a944fbb07 - languageName: node - linkType: hard - "walker@npm:^1.0.8": version: 1.0.8 resolution: "walker@npm:1.0.8" @@ -11011,13 +8315,6 @@ __metadata: languageName: node linkType: hard -"webidl-conversions@npm:^3.0.0": - version: 3.0.1 - resolution: "webidl-conversions@npm:3.0.1" - checksum: c92a0a6ab95314bde9c32e1d0a6dfac83b578f8fa5f21e675bc2706ed6981bc26b7eb7e6a1fab158e5ce4adf9caa4a0aee49a52505d4d13c7be545f15021b17c - languageName: node - linkType: hard - "webidl-conversions@npm:^6.1.0": version: 6.1.0 resolution: "webidl-conversions@npm:6.1.0" @@ -11129,16 +8426,6 @@ __metadata: languageName: node linkType: hard -"whatwg-url@npm:^5.0.0": - version: 5.0.0 - resolution: "whatwg-url@npm:5.0.0" - dependencies: - tr46: ~0.0.3 - webidl-conversions: ^3.0.0 - checksum: b8daed4ad3356cc4899048a15b2c143a9aed0dfae1f611ebd55073310c7b910f522ad75d727346ad64203d7e6c79ef25eafd465f4d12775ca44b90fa82ed9e2c - languageName: node - linkType: hard - "whatwg-url@npm:^8.0.0": version: 8.7.0 resolution: "whatwg-url@npm:8.7.0" @@ -11335,7 +8622,7 @@ __metadata: languageName: node linkType: hard -"yargs@npm:^17.3.1, yargs@npm:~17.7.2": +"yargs@npm:^17.3.1": version: 17.7.2 resolution: "yargs@npm:17.7.2" dependencies: From 8cc004f910c4bd857c43eda29be2493de8098ed8 Mon Sep 17 00:00:00 2001 From: Nour-Cheour10 Date: Fri, 28 Jun 2024 11:29:59 +0200 Subject: [PATCH 08/21] await layer --- ipyopenlayers/Map.py | 1 + ui-tests/tests/ipyopenlayers.test.ts | 282 ++++++++++++++------------- 2 files changed, 143 insertions(+), 140 deletions(-) diff --git a/ipyopenlayers/Map.py b/ipyopenlayers/Map.py index 3f58f71..f73883d 100644 --- a/ipyopenlayers/Map.py +++ b/ipyopenlayers/Map.py @@ -14,6 +14,7 @@ def_loc = [0.0, 0.0] + class Layer(Widget): _model_name = Unicode('LayerModel').tag(sync=True) diff --git a/ui-tests/tests/ipyopenlayers.test.ts b/ui-tests/tests/ipyopenlayers.test.ts index ce4c859..eb2187c 100644 --- a/ui-tests/tests/ipyopenlayers.test.ts +++ b/ui-tests/tests/ipyopenlayers.test.ts @@ -5,164 +5,166 @@ import { expect, IJupyterLabPageFixture, test } from '@jupyterlab/galata'; import * as path from 'path'; const klaw = require('klaw-sync'); +async function waitForLayerRendering(ms: number) { + return new Promise((resolve) => setTimeout(resolve, ms)); +} + const filterUpdateNotebooks = (item) => { - const basename = path.basename(item.path); - return basename.includes('_update'); + const basename = path.basename(item.path); + return basename.includes('_update'); }; const testCellOutputs = async ( - page: IJupyterLabPageFixture, - tmpPath: string, - theme: 'JupyterLab Light' | 'JupyterLab Dark', + page: IJupyterLabPageFixture, + tmpPath: string, + theme: 'JupyterLab Light' | 'JupyterLab Dark', ) => { - const paths = klaw(path.resolve(__dirname, './notebooks'), { - filter: (item) => !filterUpdateNotebooks(item), - nodir: true, - }); - const notebooks = paths.map((item) => path.basename(item.path)); - - const contextPrefix = theme == 'JupyterLab Dark' ? 'light' : 'dark'; - if (theme == 'JupyterLab Dark') { - page.theme.setTheme(theme); - } - - for (const notebook of notebooks) { - let results = []; - - await page.notebook.openByPath(`${tmpPath}/${notebook}`); - await page.notebook.activate(notebook); - - let numCellImages = 0; - - const getCaptureImageName = ( - contextPrefix: string, - notebook: string, - id: number, - ): string => { - return `${contextPrefix}-${notebook}-cell-${id}.png`; - }; - - await page.notebook.runCellByCell({ - onAfterCellRun: async (cellIndex: number) => { - const cell = await page.notebook.getCellOutput(cellIndex); - if (cell) { - const map = await cell.$("div.ol-container"); - - if (map) { - await new Promise((_) => setTimeout(_, 1000)); - } - results.push(await cell.screenshot()); - numCellImages++; - } - }, + const paths = klaw(path.resolve(__dirname, './notebooks'), { + filter: (item) => !filterUpdateNotebooks(item), + nodir: true, }); + const notebooks = paths.map((item) => path.basename(item.path)); - await page.notebook.save(); - - for (let c = 0; c < numCellImages; ++c) { - expect(results[c]).toMatchSnapshot( - getCaptureImageName(contextPrefix, notebook, c), - { threshold: 0.3 }, - ); + const contextPrefix = theme == 'JupyterLab Dark' ? 'light' : 'dark'; + if (theme == 'JupyterLab Dark') { + page.theme.setTheme(theme); } - await page.notebook.close(true); - } + for (const notebook of notebooks) { + let results = []; + + await page.notebook.openByPath(`${tmpPath}/${notebook}`); + await page.notebook.activate(notebook); + + let numCellImages = 0; + + const getCaptureImageName = ( + contextPrefix: string, + notebook: string, + id: number, + ): string => { + return `${contextPrefix}-${notebook}-cell-${id}.png`; + }; + + await page.notebook.runCellByCell({ + onAfterCellRun: async (cellIndex: number) => { + const cell = await page.notebook.getCellOutput(cellIndex); + if (cell) { + results.push(await cell.screenshot()); + numCellImages++; + } + }, + }); + + await page.notebook.save(); + + for (let c = 0; c < numCellImages; ++c) { + expect(results[c]).toMatchSnapshot( + getCaptureImageName(contextPrefix, notebook, c), + { threshold: 0.3 }, + ); + } + + await page.notebook.close(true); + } }; const testPlotUpdates = async ( - page: IJupyterLabPageFixture, - tmpPath: string, - theme: 'JupyterLab Light' | 'JupyterLab Dark', + page: IJupyterLabPageFixture, + tmpPath: string, + theme: 'JupyterLab Light' | 'JupyterLab Dark', ) => { - const paths = klaw(path.resolve(__dirname, './notebooks'), { - filter: (item) => filterUpdateNotebooks(item), - nodir: true, - }); - const notebooks = paths.map((item) => path.basename(item.path)); - - const contextPrefix = theme == 'JupyterLab Light' ? 'light' : 'dark'; - if (theme == 'JupyterLab Dark') { - page.theme.setTheme(theme); - } - - for (const notebook of notebooks) { - let results = []; - - await page.notebook.openByPath(`${tmpPath}/${notebook}`); - await page.notebook.activate(notebook); - - const getCaptureImageName = ( - contextPrefix: string, - notebook: string, - id: number, - ): string => { - return `${contextPrefix}-${notebook}-cell-${id}.png`; - }; - - let cellCount = 0; - await page.notebook.runCellByCell({ - onAfterCellRun: async (cellIndex: number) => { - - const cell = await page.notebook.getCellOutput(0); - if (cell) { - results.push(await cell.screenshot()); - cellCount++; - } - }, + const paths = klaw(path.resolve(__dirname, './notebooks'), { + filter: (item) => filterUpdateNotebooks(item), + nodir: true, }); - await page.waitForTimeout(1000); - await page.notebook.save(); - - for (let i = 0; i < cellCount; i++) { - expect(results[i]).toMatchSnapshot( - getCaptureImageName(contextPrefix, notebook, i), - { threshold: 0.3 }, - ); + const notebooks = paths.map((item) => path.basename(item.path)); + + const contextPrefix = theme == 'JupyterLab Light' ? 'light' : 'dark'; + if (theme == 'JupyterLab Dark') { + page.theme.setTheme(theme); } - await page.notebook.close(true); - } + for (const notebook of notebooks) { + let results = []; + + await page.notebook.openByPath(`${tmpPath}/${notebook}`); + await page.notebook.activate(notebook); + + const getCaptureImageName = ( + contextPrefix: string, + notebook: string, + id: number, + ): string => { + return `${contextPrefix}-${notebook}-cell-${id}.png`; + }; + + let cellCount = 0; + await page.notebook.runCellByCell({ + onAfterCellRun: async (cellIndex: number) => { + + const cell = await page.notebook.getCellOutput(0); + if (cell) { + results.push(await cell.screenshot()); + cellCount++; + } + }, + }); + + // Adding a delay to wait for layer rendering after actions + await waitForLayerRendering(2000); // Adjust time as needed (2 seconds here) + + await page.notebook.save(); + + for (let i = 0; i < cellCount; i++) { + expect(results[i]).toMatchSnapshot( + getCaptureImageName(contextPrefix, notebook, i), + { threshold: 0.3 }, + ); + } + + await page.notebook.close(true); + } }; test.describe('ipyopenlayers Visual Regression', () => { - test.beforeEach(async ({ page, tmpPath }) => { - page.on('console', (message) => { - console.log('CONSOLE MSG ---', message.text()); + test.beforeEach(async ({ page, tmpPath }) => { + page.on('console', (message) => { + console.log('CONSOLE MSG ---', message.text()); + }); + + await page.contents.uploadDirectory( + path.resolve(__dirname, './notebooks'), + tmpPath, + ); + await page.filebrowser.openDirectory(tmpPath); + }); + + test('Light theme: Check ipyopenlayers first renders', async ({ + page, + tmpPath, + }) => { + await testCellOutputs(page, tmpPath, 'JupyterLab Light'); + }); + + // test('Dark theme: Check ipyopenlayers first renders', async ({ + // page, + // tmpPath, + // }) => { + // await testCellOutputs(page, tmpPath, 'JupyterLab Dark'); + // }); + + test('Light theme: Check ipyopenlayers update plot properties', async ({ + page, + tmpPath, + }) => { + await testPlotUpdates(page, tmpPath, 'JupyterLab Light'); }); - await page.contents.uploadDirectory( - path.resolve(__dirname, './notebooks'), - tmpPath, - ); - await page.filebrowser.openDirectory(tmpPath); - }); - - test('Light theme: Check ipyopenlayers first renders', async ({ - page, - tmpPath, - }) => { - await testCellOutputs(page, tmpPath, 'JupyterLab Light'); - }); - - // test('Dark theme: Check ipyopenlayers first renders', async ({ - // page, - // tmpPath, - // }) => { - // await testCellOutputs(page, tmpPath, 'JupyterLab Dark'); - // }); - - test('Light theme: Check ipyopenlayers update plot properties', async ({ - page, - tmpPath, - }) => { - await testPlotUpdates(page, tmpPath, 'JupyterLab Light'); - }); - - // test('Dark theme: Check ipyopenlayers update plot properties', async ({ - // page, - // tmpPath, - // }) => { - // await testPlotUpdates(page, tmpPath, 'JupyterLab Dark'); - // }); -}); \ No newline at end of file + // test('Dark theme: Check ipyopenlayers update plot properties', async ({ + // page, + // tmpPath, + // }) => { + // await testPlotUpdates(page, tmpPath, 'JupyterLab Dark'); + // }); +}); From 2247871c70f75f9f6aa2bcbf5b429ca393ff5201 Mon Sep 17 00:00:00 2001 From: Nour-Cheour10 Date: Fri, 28 Jun 2024 11:50:01 +0200 Subject: [PATCH 09/21] ui file --- ui-tests/tests/ipyopenlayers.test.ts | 259 ++- yarn.lock | 2799 +++++++++++++++++++++++++- 2 files changed, 2871 insertions(+), 187 deletions(-) diff --git a/ui-tests/tests/ipyopenlayers.test.ts b/ui-tests/tests/ipyopenlayers.test.ts index eb2187c..647a515 100644 --- a/ui-tests/tests/ipyopenlayers.test.ts +++ b/ui-tests/tests/ipyopenlayers.test.ts @@ -5,166 +5,137 @@ import { expect, IJupyterLabPageFixture, test } from '@jupyterlab/galata'; import * as path from 'path'; const klaw = require('klaw-sync'); -async function waitForLayerRendering(ms: number) { - return new Promise((resolve) => setTimeout(resolve, ms)); + +const filterUpdateNotebooks = item => { + const basename = path.basename(item.path); + return basename.includes('_update'); } -const filterUpdateNotebooks = (item) => { - const basename = path.basename(item.path); - return basename.includes('_update'); -}; +const testCellOutputs = async (page: IJupyterLabPageFixture, tmpPath: string, theme: 'JupyterLab Light' | 'JupyterLab Dark') => { + const paths = klaw(path.resolve(__dirname, './notebooks'), {filter: item => !filterUpdateNotebooks(item), nodir: true}); + const notebooks = paths.map(item => path.basename(item.path)); -const testCellOutputs = async ( - page: IJupyterLabPageFixture, - tmpPath: string, - theme: 'JupyterLab Light' | 'JupyterLab Dark', -) => { - const paths = klaw(path.resolve(__dirname, './notebooks'), { - filter: (item) => !filterUpdateNotebooks(item), - nodir: true, - }); - const notebooks = paths.map((item) => path.basename(item.path)); + const contextPrefix = theme == 'JupyterLab Dark' ? 'light' : 'dark'; + if (theme == 'JupyterLab Dark') { + page.theme.setTheme(theme); + } - const contextPrefix = theme == 'JupyterLab Dark' ? 'light' : 'dark'; - if (theme == 'JupyterLab Dark') { - page.theme.setTheme(theme); - } + for (const notebook of notebooks) { + let results = []; - for (const notebook of notebooks) { - let results = []; - - await page.notebook.openByPath(`${tmpPath}/${notebook}`); - await page.notebook.activate(notebook); - - let numCellImages = 0; - - const getCaptureImageName = ( - contextPrefix: string, - notebook: string, - id: number, - ): string => { - return `${contextPrefix}-${notebook}-cell-${id}.png`; - }; - - await page.notebook.runCellByCell({ - onAfterCellRun: async (cellIndex: number) => { - const cell = await page.notebook.getCellOutput(cellIndex); - if (cell) { - results.push(await cell.screenshot()); - numCellImages++; - } - }, - }); - - await page.notebook.save(); - - for (let c = 0; c < numCellImages; ++c) { - expect(results[c]).toMatchSnapshot( - getCaptureImageName(contextPrefix, notebook, c), - { threshold: 0.3 }, - ); - } + await page.notebook.openByPath(`${tmpPath}/${notebook}`); + await page.notebook.activate(notebook); - await page.notebook.close(true); - } -}; + let numCellImages = 0; + + const getCaptureImageName = (contextPrefix: string, notebook: string, id: number): string => { + return `${contextPrefix}-${notebook}-cell-${id}.png`; + }; -const testPlotUpdates = async ( - page: IJupyterLabPageFixture, - tmpPath: string, - theme: 'JupyterLab Light' | 'JupyterLab Dark', -) => { - const paths = klaw(path.resolve(__dirname, './notebooks'), { - filter: (item) => filterUpdateNotebooks(item), - nodir: true, + await page.notebook.runCellByCell({ + onAfterCellRun: async (cellIndex: number) => { + const cell = await page.notebook.getCellOutput(cellIndex); + if (cell) { + const map = await cell.$("div.ol-container"); + + if (map) { + await new Promise((_) => setTimeout(_, 1000)); + } + results.push(await cell.screenshot()); + numCellImages++; + } + } }); - const notebooks = paths.map((item) => path.basename(item.path)); - const contextPrefix = theme == 'JupyterLab Light' ? 'light' : 'dark'; - if (theme == 'JupyterLab Dark') { - page.theme.setTheme(theme); + await page.notebook.save(); + + for (let c = 0; c < numCellImages; ++c) { + expect(results[c]).toMatchSnapshot(getCaptureImageName(contextPrefix, notebook, c), {threshold: 0.3}); } - for (const notebook of notebooks) { - let results = []; - - await page.notebook.openByPath(`${tmpPath}/${notebook}`); - await page.notebook.activate(notebook); - - const getCaptureImageName = ( - contextPrefix: string, - notebook: string, - id: number, - ): string => { - return `${contextPrefix}-${notebook}-cell-${id}.png`; - }; - - let cellCount = 0; - await page.notebook.runCellByCell({ - onAfterCellRun: async (cellIndex: number) => { - - const cell = await page.notebook.getCellOutput(0); - if (cell) { - results.push(await cell.screenshot()); - cellCount++; - } - }, - }); - - // Adding a delay to wait for layer rendering after actions - await waitForLayerRendering(2000); // Adjust time as needed (2 seconds here) - - await page.notebook.save(); - - for (let i = 0; i < cellCount; i++) { - expect(results[i]).toMatchSnapshot( - getCaptureImageName(contextPrefix, notebook, i), - { threshold: 0.3 }, - ); + await page.notebook.close(true); + } +} + +const testPlotUpdates = async (page: IJupyterLabPageFixture, tmpPath: string, theme: 'JupyterLab Light' | 'JupyterLab Dark') => { + const paths = klaw(path.resolve(__dirname, './notebooks'), {filter: item => filterUpdateNotebooks(item), nodir: true}); + const notebooks = paths.map(item => path.basename(item.path)); + + const contextPrefix = theme == 'JupyterLab Light' ? 'light' : 'dark'; + if (theme == 'JupyterLab Dark') { + page.theme.setTheme(theme); + } + + for (const notebook of notebooks) { + let results = []; + + await page.notebook.openByPath(`${tmpPath}/${notebook}`); + await page.notebook.activate(notebook); + + const getCaptureImageName = (contextPrefix: string, notebook: string, id: number): string => { + return `${contextPrefix}-${notebook}-cell-${id}.png`; + }; + + let cellCount = 0; + await page.notebook.runCellByCell({ + onAfterCellRun: async (cellIndex: number) => { + // Always get first cell output which must contain the plot + const cell = await page.notebook.getCellOutput(0); + if (cell) { + results.push(await cell.screenshot()); + cellCount++; } + } + }); + + await page.notebook.save(); - await page.notebook.close(true); + for (let i = 0; i < cellCount; i++) { + expect(results[i]).toMatchSnapshot(getCaptureImageName(contextPrefix, notebook, i), {threshold: 0.3}); } + + await page.notebook.close(true); + } }; test.describe('ipyopenlayers Visual Regression', () => { - test.beforeEach(async ({ page, tmpPath }) => { - page.on('console', (message) => { - console.log('CONSOLE MSG ---', message.text()); - }); - - await page.contents.uploadDirectory( - path.resolve(__dirname, './notebooks'), - tmpPath, - ); - await page.filebrowser.openDirectory(tmpPath); - }); - - test('Light theme: Check ipyopenlayers first renders', async ({ - page, - tmpPath, - }) => { - await testCellOutputs(page, tmpPath, 'JupyterLab Light'); - }); - - // test('Dark theme: Check ipyopenlayers first renders', async ({ - // page, - // tmpPath, - // }) => { - // await testCellOutputs(page, tmpPath, 'JupyterLab Dark'); - // }); - - test('Light theme: Check ipyopenlayers update plot properties', async ({ - page, - tmpPath, - }) => { - await testPlotUpdates(page, tmpPath, 'JupyterLab Light'); + test.beforeEach(async ({ page, tmpPath }) => { + page.on("console", (message) => { + console.log('CONSOLE MSG ---', message.text()); }); - // test('Dark theme: Check ipyopenlayers update plot properties', async ({ - // page, - // tmpPath, - // }) => { - // await testPlotUpdates(page, tmpPath, 'JupyterLab Dark'); - // }); -}); + await page.contents.uploadDirectory( + path.resolve(__dirname, './notebooks'), + tmpPath + ); + await page.filebrowser.openDirectory(tmpPath); + }); + + test('Light theme: Check ipyopenlayers first renders', async ({ + page, + tmpPath, + }) => { + await testCellOutputs(page, tmpPath, 'JupyterLab Light'); + }); + + // test('Dark theme: Check ipyopenlayers first renders', async ({ + // page, + // tmpPath, + // }) => { + // await testCellOutputs(page, tmpPath, 'JupyterLab Dark'); + // }); + + test('Light theme: Check ipyopenlayers update plot properties', async ({ + page, + tmpPath, + }) => { + await testPlotUpdates(page, tmpPath, 'JupyterLab Light'); + }); + + // test('Dark theme: Check ipyopenlayers update plot properties', async ({ + // page, + // tmpPath, + // }) => { + // await testPlotUpdates(page, tmpPath, 'JupyterLab Dark'); + // }); +}); \ No newline at end of file diff --git a/yarn.lock b/yarn.lock index 6d1abd6..d85412e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1372,6 +1372,264 @@ __metadata: languageName: node linkType: hard +"@codemirror/autocomplete@npm:^6.0.0, @codemirror/autocomplete@npm:^6.15.0, @codemirror/autocomplete@npm:^6.3.2, @codemirror/autocomplete@npm:^6.7.1": + version: 6.16.3 + resolution: "@codemirror/autocomplete@npm:6.16.3" + dependencies: + "@codemirror/language": ^6.0.0 + "@codemirror/state": ^6.0.0 + "@codemirror/view": ^6.17.0 + "@lezer/common": ^1.0.0 + peerDependencies: + "@codemirror/language": ^6.0.0 + "@codemirror/state": ^6.0.0 + "@codemirror/view": ^6.0.0 + "@lezer/common": ^1.0.0 + checksum: bd38808c9c143c61f2d4a4f8532a376614a511000e31dea1c7ea38240b707bd8b94a95141b592aeb62ee9ed39050af58a218926834c28e6867ab32c482ecd374 + languageName: node + linkType: hard + +"@codemirror/commands@npm:^6.3.3": + version: 6.6.0 + resolution: "@codemirror/commands@npm:6.6.0" + dependencies: + "@codemirror/language": ^6.0.0 + "@codemirror/state": ^6.4.0 + "@codemirror/view": ^6.27.0 + "@lezer/common": ^1.1.0 + checksum: 53bb29f11f4453b7409836c41a9c13c0a8cb300e05ecc4928217330cf6e6735b1e5fb7fb831a2b1b8636593d6f3da42d016196ee1c8bb424f9cb73d55b8cb884 + languageName: node + linkType: hard + +"@codemirror/lang-cpp@npm:^6.0.2": + version: 6.0.2 + resolution: "@codemirror/lang-cpp@npm:6.0.2" + dependencies: + "@codemirror/language": ^6.0.0 + "@lezer/cpp": ^1.0.0 + checksum: bb9eba482cca80037ce30c7b193cf45eff19ccbb773764fddf2071756468ecc25aa53c777c943635054f89095b0247b9b50c339e107e41e68d34d12a7295f9a9 + languageName: node + linkType: hard + +"@codemirror/lang-css@npm:^6.0.0, @codemirror/lang-css@npm:^6.2.1": + version: 6.2.1 + resolution: "@codemirror/lang-css@npm:6.2.1" + dependencies: + "@codemirror/autocomplete": ^6.0.0 + "@codemirror/language": ^6.0.0 + "@codemirror/state": ^6.0.0 + "@lezer/common": ^1.0.2 + "@lezer/css": ^1.0.0 + checksum: 5a8457ee8a4310030a969f2d3128429f549c4dc9b7907ee8888b42119c80b65af99093801432efdf659b8ec36a147d2a947bc1ecbbf69a759395214e3f4834a8 + languageName: node + linkType: hard + +"@codemirror/lang-html@npm:^6.0.0, @codemirror/lang-html@npm:^6.4.8": + version: 6.4.9 + resolution: "@codemirror/lang-html@npm:6.4.9" + dependencies: + "@codemirror/autocomplete": ^6.0.0 + "@codemirror/lang-css": ^6.0.0 + "@codemirror/lang-javascript": ^6.0.0 + "@codemirror/language": ^6.4.0 + "@codemirror/state": ^6.0.0 + "@codemirror/view": ^6.17.0 + "@lezer/common": ^1.0.0 + "@lezer/css": ^1.1.0 + "@lezer/html": ^1.3.0 + checksum: ac8c3ceb0396f2e032752c5079bd950124dca708bc64e96fc147dc5fe7133e5cee0814fe951abdb953ec1d11fa540e4b30a712b5149d9a36016a197a28de45d7 + languageName: node + linkType: hard + +"@codemirror/lang-java@npm:^6.0.1": + version: 6.0.1 + resolution: "@codemirror/lang-java@npm:6.0.1" + dependencies: + "@codemirror/language": ^6.0.0 + "@lezer/java": ^1.0.0 + checksum: 4679104683cbffcd224ac04c7e5d144b787494697b26470b07017259035b7bb3fa62609d9a61bfbc566f1756d9f972f9f26d96a3c1362dd48881c1172f9a914d + languageName: node + linkType: hard + +"@codemirror/lang-javascript@npm:^6.0.0, @codemirror/lang-javascript@npm:^6.2.2": + version: 6.2.2 + resolution: "@codemirror/lang-javascript@npm:6.2.2" + dependencies: + "@codemirror/autocomplete": ^6.0.0 + "@codemirror/language": ^6.6.0 + "@codemirror/lint": ^6.0.0 + "@codemirror/state": ^6.0.0 + "@codemirror/view": ^6.17.0 + "@lezer/common": ^1.0.0 + "@lezer/javascript": ^1.0.0 + checksum: 66379942a8347dff2bd76d10ed7cf313bca83872f8336fdd3e14accfef23e7b690cd913c9d11a3854fba2b32299da07fc3275995327642c9ee43c2a8e538c19d + languageName: node + linkType: hard + +"@codemirror/lang-json@npm:^6.0.1": + version: 6.0.1 + resolution: "@codemirror/lang-json@npm:6.0.1" + dependencies: + "@codemirror/language": ^6.0.0 + "@lezer/json": ^1.0.0 + checksum: e9e87d50ff7b81bd56a6ab50740b1dd54e9a93f1be585e1d59d0642e2148842ea1528ac7b7221eb4ddc7fe84bbc28065144cc3ab86f6e06c6aeb2d4b4e62acf1 + languageName: node + linkType: hard + +"@codemirror/lang-markdown@npm:^6.2.4": + version: 6.2.5 + resolution: "@codemirror/lang-markdown@npm:6.2.5" + dependencies: + "@codemirror/autocomplete": ^6.7.1 + "@codemirror/lang-html": ^6.0.0 + "@codemirror/language": ^6.3.0 + "@codemirror/state": ^6.0.0 + "@codemirror/view": ^6.0.0 + "@lezer/common": ^1.2.1 + "@lezer/markdown": ^1.0.0 + checksum: 3d9e0817f888eddcb6d05ec8f0d8dacbde7b9ef7650303bc4ab8b08a550a986c60c65b1565212e06af389c31590330f1f5ed65e619a9446dc2979ff3dac0e874 + languageName: node + linkType: hard + +"@codemirror/lang-php@npm:^6.0.1": + version: 6.0.1 + resolution: "@codemirror/lang-php@npm:6.0.1" + dependencies: + "@codemirror/lang-html": ^6.0.0 + "@codemirror/language": ^6.0.0 + "@codemirror/state": ^6.0.0 + "@lezer/common": ^1.0.0 + "@lezer/php": ^1.0.0 + checksum: c003a29a426486453fdfddbf7302982fa2aa7f059bf6f1ce4cbf08341b0162eee5e2f50e0d71c418dcd358491631780156d846fe352754d042576172c5d86721 + languageName: node + linkType: hard + +"@codemirror/lang-python@npm:^6.1.4": + version: 6.1.6 + resolution: "@codemirror/lang-python@npm:6.1.6" + dependencies: + "@codemirror/autocomplete": ^6.3.2 + "@codemirror/language": ^6.8.0 + "@codemirror/state": ^6.0.0 + "@lezer/common": ^1.2.1 + "@lezer/python": ^1.1.4 + checksum: eb1faabd332bb95d0f3e227eb19ac5a31140cf238905bbe73e061040999f5680a012f9145fb3688bc2fcbb1908c957511edc8eeb8a9aa88d27d4fa55ad451e95 + languageName: node + linkType: hard + +"@codemirror/lang-rust@npm:^6.0.1": + version: 6.0.1 + resolution: "@codemirror/lang-rust@npm:6.0.1" + dependencies: + "@codemirror/language": ^6.0.0 + "@lezer/rust": ^1.0.0 + checksum: 8a439944cb22159b0b3465ca4fa4294c69843219d5d30e278ae6df8e48f30a7a9256129723c025ec9b5e694d31a3560fb004300b125ffcd81c22d13825845170 + languageName: node + linkType: hard + +"@codemirror/lang-sql@npm:^6.6.1": + version: 6.6.5 + resolution: "@codemirror/lang-sql@npm:6.6.5" + dependencies: + "@codemirror/autocomplete": ^6.0.0 + "@codemirror/language": ^6.0.0 + "@codemirror/state": ^6.0.0 + "@lezer/common": ^1.2.0 + "@lezer/highlight": ^1.0.0 + "@lezer/lr": ^1.0.0 + checksum: 543f4010ba86c85be13eaf5baa6236d4446dc1d2045fb451fdd55545fd3349dda650b833d98da0c67123dbd9e18a5137564c026059537b4096f8a3582bcb7dac + languageName: node + linkType: hard + +"@codemirror/lang-wast@npm:^6.0.2": + version: 6.0.2 + resolution: "@codemirror/lang-wast@npm:6.0.2" + dependencies: + "@codemirror/language": ^6.0.0 + "@lezer/common": ^1.2.0 + "@lezer/highlight": ^1.0.0 + "@lezer/lr": ^1.0.0 + checksum: 72119d4a7d726c54167aa227c982ae9fa785c8ad97a158d8350ae95eecfbd8028a803eef939f7e6c5c6e626fcecda1dc37e9dffc6d5d6ec105f686aeda6b2c24 + languageName: node + linkType: hard + +"@codemirror/lang-xml@npm:^6.1.0": + version: 6.1.0 + resolution: "@codemirror/lang-xml@npm:6.1.0" + dependencies: + "@codemirror/autocomplete": ^6.0.0 + "@codemirror/language": ^6.4.0 + "@codemirror/state": ^6.0.0 + "@codemirror/view": ^6.0.0 + "@lezer/common": ^1.0.0 + "@lezer/xml": ^1.0.0 + checksum: 3a1b7af07b29ad7e53b77bf584245580b613bc92256059f175f2b1d7c28c4e39b75654fe169b9a8a330a60164b53ff5254bdb5b8ee8c6e6766427ee115c4e229 + languageName: node + linkType: hard + +"@codemirror/language@npm:^6.0.0, @codemirror/language@npm:^6.10.1, @codemirror/language@npm:^6.3.0, @codemirror/language@npm:^6.4.0, @codemirror/language@npm:^6.6.0, @codemirror/language@npm:^6.8.0": + version: 6.10.2 + resolution: "@codemirror/language@npm:6.10.2" + dependencies: + "@codemirror/state": ^6.0.0 + "@codemirror/view": ^6.23.0 + "@lezer/common": ^1.1.0 + "@lezer/highlight": ^1.0.0 + "@lezer/lr": ^1.0.0 + style-mod: ^4.0.0 + checksum: 4e60afb75fb56519f59d9d85e0aa03f0c8d017e0da0f3f8f321baf35a776801fcec9787f3d0c029eba12aa766fba98b0fe86fc3111b43e0812b554184c0e8d67 + languageName: node + linkType: hard + +"@codemirror/legacy-modes@npm:^6.3.3": + version: 6.4.0 + resolution: "@codemirror/legacy-modes@npm:6.4.0" + dependencies: + "@codemirror/language": ^6.0.0 + checksum: d382aa6f640a67418bd209e1e4b395340f96aac1b0cf185927fc2c7f98b62cfd0c59ef0f7048148ce8771622003ca844c78c2d18548235ecc57d0bcbfbbfe091 + languageName: node + linkType: hard + +"@codemirror/lint@npm:^6.0.0": + version: 6.8.1 + resolution: "@codemirror/lint@npm:6.8.1" + dependencies: + "@codemirror/state": ^6.0.0 + "@codemirror/view": ^6.0.0 + crelt: ^1.0.5 + checksum: faa222b679770baf094ea707251e27d6eef347157006223c22d7726fb5adc9d77257f36c366367ec729cb6286aca3276d30a470e0d0ea9a884ec948e798668e9 + languageName: node + linkType: hard + +"@codemirror/search@npm:^6.5.6": + version: 6.5.6 + resolution: "@codemirror/search@npm:6.5.6" + dependencies: + "@codemirror/state": ^6.0.0 + "@codemirror/view": ^6.0.0 + crelt: ^1.0.5 + checksum: 19dc88d09fc750563347001e83c6194bbb2a25c874bd919d2d81809e1f98d6330222ddbd284aa9758a09eeb41fd153ec7c2cf810b2ee51452c25963d7f5833d5 + languageName: node + linkType: hard + +"@codemirror/state@npm:^6.0.0, @codemirror/state@npm:^6.4.0, @codemirror/state@npm:^6.4.1": + version: 6.4.1 + resolution: "@codemirror/state@npm:6.4.1" + checksum: b81b55574091349eed4d32fc0eadb0c9688f1f7c98b681318f59138ee0f527cb4c4a97831b70547c0640f02f3127647838ae6730782de4a3dd2cc58836125d01 + languageName: node + linkType: hard + +"@codemirror/view@npm:^6.0.0, @codemirror/view@npm:^6.17.0, @codemirror/view@npm:^6.23.0, @codemirror/view@npm:^6.26.0, @codemirror/view@npm:^6.27.0": + version: 6.28.1 + resolution: "@codemirror/view@npm:6.28.1" + dependencies: + "@codemirror/state": ^6.4.0 + style-mod: ^4.1.0 + w3c-keyname: ^2.2.4 + checksum: 8899717af925f9e23beca20e4e095cc974b122a7a41049c6f9cf0027aeb700faa71d012fc78db838747f8a525f3f34aa4e489a7c7042504d45a0097287d89a76 + languageName: node + linkType: hard + "@discoveryjs/json-ext@npm:^0.5.0": version: 0.5.7 resolution: "@discoveryjs/json-ext@npm:0.5.7" @@ -1421,6 +1679,13 @@ __metadata: languageName: node linkType: hard +"@fortawesome/fontawesome-free@npm:^5.12.0": + version: 5.15.4 + resolution: "@fortawesome/fontawesome-free@npm:5.15.4" + checksum: 32281c3df4075290d9a96dfc22f72fadb3da7055d4117e48d34046b8c98032a55fa260ae351b0af5d6f6fb57a2f5d79a4abe52af456da35195f7cb7dda27b4a2 + languageName: node + linkType: hard + "@humanwhocodes/config-array@npm:^0.11.14": version: 0.11.14 resolution: "@humanwhocodes/config-array@npm:0.11.14" @@ -1792,6 +2057,29 @@ __metadata: languageName: node linkType: hard +"@jupyter/react-components@npm:^0.15.3": + version: 0.15.3 + resolution: "@jupyter/react-components@npm:0.15.3" + dependencies: + "@jupyter/web-components": ^0.15.3 + "@microsoft/fast-react-wrapper": ^0.3.22 + react: ">=17.0.0 <19.0.0" + checksum: 1a6b256314259c6465c4b6d958575710536b82234a7bf0fba3e889a07e1f19ff8ab321450be354359876f92c45dbcc9d21a840237ff4a619806d9de696f55496 + languageName: node + linkType: hard + +"@jupyter/web-components@npm:^0.15.3": + version: 0.15.3 + resolution: "@jupyter/web-components@npm:0.15.3" + dependencies: + "@microsoft/fast-colors": ^5.3.1 + "@microsoft/fast-element": ^1.12.0 + "@microsoft/fast-foundation": ^2.49.4 + "@microsoft/fast-web-utilities": ^5.4.1 + checksum: a0980af934157bfdbdb6cc169c0816c1b2e57602d524c56bdcef746a4c25dfeb8f505150d83207c8695ed89b5486cf53d35a3382584d25ef64db666e4e16e45b + languageName: node + linkType: hard + "@jupyter/ydoc@npm:^2.0.1": version: 2.0.1 resolution: "@jupyter/ydoc@npm:2.0.1" @@ -1806,6 +2094,77 @@ __metadata: languageName: node linkType: hard +"@jupyterlab/application@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/application@npm:4.2.2" + dependencies: + "@fortawesome/fontawesome-free": ^5.12.0 + "@jupyterlab/apputils": ^4.3.2 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/docregistry": ^4.2.2 + "@jupyterlab/rendermime": ^4.2.2 + "@jupyterlab/rendermime-interfaces": ^3.10.2 + "@jupyterlab/services": ^7.2.2 + "@jupyterlab/statedb": ^4.2.2 + "@jupyterlab/translation": ^4.2.2 + "@jupyterlab/ui-components": ^4.2.2 + "@lumino/algorithm": ^2.0.1 + "@lumino/application": ^2.3.1 + "@lumino/commands": ^2.3.0 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/messaging": ^2.0.1 + "@lumino/polling": ^2.1.2 + "@lumino/properties": ^2.0.1 + "@lumino/signaling": ^2.1.2 + "@lumino/widgets": ^2.3.2 + checksum: 86dbf944df8dbeecce88d5588054bb097f6817ba23c7366002e4a7dcb34bb229371be6d803008a2a8413bf7285db977426a806d9686f135d004f74bf5338b28a + languageName: node + linkType: hard + +"@jupyterlab/apputils@npm:^4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/apputils@npm:4.3.2" + dependencies: + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/observables": ^5.2.2 + "@jupyterlab/rendermime-interfaces": ^3.10.2 + "@jupyterlab/services": ^7.2.2 + "@jupyterlab/settingregistry": ^4.2.2 + "@jupyterlab/statedb": ^4.2.2 + "@jupyterlab/statusbar": ^4.2.2 + "@jupyterlab/translation": ^4.2.2 + "@jupyterlab/ui-components": ^4.2.2 + "@lumino/algorithm": ^2.0.1 + "@lumino/commands": ^2.3.0 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/domutils": ^2.0.1 + "@lumino/messaging": ^2.0.1 + "@lumino/signaling": ^2.1.2 + "@lumino/virtualdom": ^2.0.1 + "@lumino/widgets": ^2.3.2 + "@types/react": ^18.0.26 + react: ^18.2.0 + sanitize-html: ~2.12.1 + checksum: 4a49f2b56abc80ab1ca144d39901da5250e7394ace3ceb2e14cba9cc638c6ea720a3f8a3a90cd1f878c34d91b1ce8fe63206d2c314d048b3d83ade0e2e787c89 + languageName: node + linkType: hard + +"@jupyterlab/attachments@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/attachments@npm:4.2.2" + dependencies: + "@jupyterlab/nbformat": ^4.2.2 + "@jupyterlab/observables": ^5.2.2 + "@jupyterlab/rendermime": ^4.2.2 + "@jupyterlab/rendermime-interfaces": ^3.10.2 + "@lumino/disposable": ^2.1.2 + "@lumino/signaling": ^2.1.2 + checksum: 36e6b833fd1debe35d19bcd105eb71f1346c7e4d6ea0d710eb9cdef9818e1e9b04fd5763660776aa19332f196a89baaceff17236990afc835d9f5b2971105eda + languageName: node + linkType: hard + "@jupyterlab/builder@npm:^4.0.11": version: 4.2.0 resolution: "@jupyterlab/builder@npm:4.2.0" @@ -1847,6 +2206,133 @@ __metadata: languageName: node linkType: hard +"@jupyterlab/cells@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/cells@npm:4.2.2" + dependencies: + "@codemirror/state": ^6.4.1 + "@codemirror/view": ^6.26.0 + "@jupyter/ydoc": ^2.0.1 + "@jupyterlab/apputils": ^4.3.2 + "@jupyterlab/attachments": ^4.2.2 + "@jupyterlab/codeeditor": ^4.2.2 + "@jupyterlab/codemirror": ^4.2.2 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/documentsearch": ^4.2.2 + "@jupyterlab/filebrowser": ^4.2.2 + "@jupyterlab/nbformat": ^4.2.2 + "@jupyterlab/observables": ^5.2.2 + "@jupyterlab/outputarea": ^4.2.2 + "@jupyterlab/rendermime": ^4.2.2 + "@jupyterlab/services": ^7.2.2 + "@jupyterlab/toc": ^6.2.2 + "@jupyterlab/translation": ^4.2.2 + "@jupyterlab/ui-components": ^4.2.2 + "@lumino/algorithm": ^2.0.1 + "@lumino/coreutils": ^2.1.2 + "@lumino/domutils": ^2.0.1 + "@lumino/dragdrop": ^2.1.4 + "@lumino/messaging": ^2.0.1 + "@lumino/polling": ^2.1.2 + "@lumino/signaling": ^2.1.2 + "@lumino/virtualdom": ^2.0.1 + "@lumino/widgets": ^2.3.2 + react: ^18.2.0 + checksum: 974d81f3917c8c39e9fc603a7f83a06733c21523fa17e4781f8b7d846c9e2b9731fa362c0469dcfbf1370846a34ec652a379408e5e57f78d7aaa271f8180c90e + languageName: node + linkType: hard + +"@jupyterlab/codeeditor@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/codeeditor@npm:4.2.2" + dependencies: + "@codemirror/state": ^6.4.1 + "@jupyter/ydoc": ^2.0.1 + "@jupyterlab/apputils": ^4.3.2 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/nbformat": ^4.2.2 + "@jupyterlab/observables": ^5.2.2 + "@jupyterlab/statusbar": ^4.2.2 + "@jupyterlab/translation": ^4.2.2 + "@jupyterlab/ui-components": ^4.2.2 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/dragdrop": ^2.1.4 + "@lumino/messaging": ^2.0.1 + "@lumino/signaling": ^2.1.2 + "@lumino/widgets": ^2.3.2 + react: ^18.2.0 + checksum: 22a1b7846f4d6c8bd7b472b311d21383031dd98d232f7e83add2acfaa8f277a7a9a48919b8e14bedeb786f53f45adc64387a724337ee91ab52620ea5a9d0a692 + languageName: node + linkType: hard + +"@jupyterlab/codemirror@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/codemirror@npm:4.2.2" + dependencies: + "@codemirror/autocomplete": ^6.15.0 + "@codemirror/commands": ^6.3.3 + "@codemirror/lang-cpp": ^6.0.2 + "@codemirror/lang-css": ^6.2.1 + "@codemirror/lang-html": ^6.4.8 + "@codemirror/lang-java": ^6.0.1 + "@codemirror/lang-javascript": ^6.2.2 + "@codemirror/lang-json": ^6.0.1 + "@codemirror/lang-markdown": ^6.2.4 + "@codemirror/lang-php": ^6.0.1 + "@codemirror/lang-python": ^6.1.4 + "@codemirror/lang-rust": ^6.0.1 + "@codemirror/lang-sql": ^6.6.1 + "@codemirror/lang-wast": ^6.0.2 + "@codemirror/lang-xml": ^6.1.0 + "@codemirror/language": ^6.10.1 + "@codemirror/legacy-modes": ^6.3.3 + "@codemirror/search": ^6.5.6 + "@codemirror/state": ^6.4.1 + "@codemirror/view": ^6.26.0 + "@jupyter/ydoc": ^2.0.1 + "@jupyterlab/codeeditor": ^4.2.2 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/documentsearch": ^4.2.2 + "@jupyterlab/nbformat": ^4.2.2 + "@jupyterlab/translation": ^4.2.2 + "@lezer/common": ^1.2.1 + "@lezer/generator": ^1.7.0 + "@lezer/highlight": ^1.2.0 + "@lezer/markdown": ^1.2.0 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/signaling": ^2.1.2 + yjs: ^13.5.40 + checksum: 60641e41c424407d5584fdde5630b2ada1663b988fd299c628c58d840d3e8b87d7bcdc4bf0da261ad2eaf0b071e868a31e8c458eb0ce989a0b33f3901411d79c + languageName: node + linkType: hard + +"@jupyterlab/console@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/console@npm:4.2.2" + dependencies: + "@jupyter/ydoc": ^2.0.1 + "@jupyterlab/apputils": ^4.3.2 + "@jupyterlab/cells": ^4.2.2 + "@jupyterlab/codeeditor": ^4.2.2 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/nbformat": ^4.2.2 + "@jupyterlab/observables": ^5.2.2 + "@jupyterlab/rendermime": ^4.2.2 + "@jupyterlab/services": ^7.2.2 + "@jupyterlab/translation": ^4.2.2 + "@jupyterlab/ui-components": ^4.2.2 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/dragdrop": ^2.1.4 + "@lumino/messaging": ^2.0.1 + "@lumino/signaling": ^2.1.2 + "@lumino/widgets": ^2.3.2 + checksum: ee10a3c5eb5f6094fcaaacfc95d39b98551c61a6e30bbf6450689bd4195bda1499a539ac1d1b315a682974ecac3e24bc21c2ab7d94b75b9e5490bd773e62f510 + languageName: node + linkType: hard + "@jupyterlab/coreutils@npm:^6.2.0": version: 6.2.0 resolution: "@jupyterlab/coreutils@npm:6.2.0" @@ -1861,6 +2347,232 @@ __metadata: languageName: node linkType: hard +"@jupyterlab/coreutils@npm:^6.2.2": + version: 6.2.2 + resolution: "@jupyterlab/coreutils@npm:6.2.2" + dependencies: + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/signaling": ^2.1.2 + minimist: ~1.2.0 + path-browserify: ^1.0.0 + url-parse: ~1.5.4 + checksum: cea1ec210ce60b32ccd213a75e10d85aed149437817e81ea89230552b33cec4be61472880669035228a156b89dcf99dccac3fe2e19191f8690d8870a732fa30b + languageName: node + linkType: hard + +"@jupyterlab/debugger@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/debugger@npm:4.2.2" + dependencies: + "@codemirror/state": ^6.4.1 + "@codemirror/view": ^6.26.0 + "@jupyter/react-components": ^0.15.3 + "@jupyter/ydoc": ^2.0.1 + "@jupyterlab/application": ^4.2.2 + "@jupyterlab/apputils": ^4.3.2 + "@jupyterlab/cells": ^4.2.2 + "@jupyterlab/codeeditor": ^4.2.2 + "@jupyterlab/codemirror": ^4.2.2 + "@jupyterlab/console": ^4.2.2 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/docregistry": ^4.2.2 + "@jupyterlab/fileeditor": ^4.2.2 + "@jupyterlab/notebook": ^4.2.2 + "@jupyterlab/observables": ^5.2.2 + "@jupyterlab/rendermime": ^4.2.2 + "@jupyterlab/services": ^7.2.2 + "@jupyterlab/translation": ^4.2.2 + "@jupyterlab/ui-components": ^4.2.2 + "@lumino/algorithm": ^2.0.1 + "@lumino/commands": ^2.3.0 + "@lumino/coreutils": ^2.1.2 + "@lumino/datagrid": ^2.3.1 + "@lumino/disposable": ^2.1.2 + "@lumino/messaging": ^2.0.1 + "@lumino/polling": ^2.1.2 + "@lumino/signaling": ^2.1.2 + "@lumino/widgets": ^2.3.2 + "@vscode/debugprotocol": ^1.51.0 + react: ^18.2.0 + checksum: cff0dd6914a3808ce938ca445b532e4751cf0993be67bdd980e9251d621d7f3e474443df7cfab976c81a87d420c6088faae3e519747ef4981e65aa6a06beb520 + languageName: node + linkType: hard + +"@jupyterlab/docmanager@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/docmanager@npm:4.2.2" + dependencies: + "@jupyterlab/apputils": ^4.3.2 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/docregistry": ^4.2.2 + "@jupyterlab/services": ^7.2.2 + "@jupyterlab/statedb": ^4.2.2 + "@jupyterlab/statusbar": ^4.2.2 + "@jupyterlab/translation": ^4.2.2 + "@jupyterlab/ui-components": ^4.2.2 + "@lumino/algorithm": ^2.0.1 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/messaging": ^2.0.1 + "@lumino/polling": ^2.1.2 + "@lumino/properties": ^2.0.1 + "@lumino/signaling": ^2.1.2 + "@lumino/widgets": ^2.3.2 + react: ^18.2.0 + checksum: e45a8cbdf82cac4d949ef7177e5ac22530ab03502dea73d21ead1061686ef4c703e1eee749ddd4c33672269922045b4bf2dba6ccfc2b44dc8d696b36f1652fe3 + languageName: node + linkType: hard + +"@jupyterlab/docregistry@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/docregistry@npm:4.2.2" + dependencies: + "@jupyter/ydoc": ^2.0.1 + "@jupyterlab/apputils": ^4.3.2 + "@jupyterlab/codeeditor": ^4.2.2 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/observables": ^5.2.2 + "@jupyterlab/rendermime": ^4.2.2 + "@jupyterlab/rendermime-interfaces": ^3.10.2 + "@jupyterlab/services": ^7.2.2 + "@jupyterlab/translation": ^4.2.2 + "@jupyterlab/ui-components": ^4.2.2 + "@lumino/algorithm": ^2.0.1 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/messaging": ^2.0.1 + "@lumino/properties": ^2.0.1 + "@lumino/signaling": ^2.1.2 + "@lumino/widgets": ^2.3.2 + react: ^18.2.0 + checksum: 8cad65f88d827beee8e804683e021da260084243b9e74495093df9bd7e7aff25431c07debc8cfe86c90fa395ab5ebd77ce998ea096a17c5543b5a035f50cd813 + languageName: node + linkType: hard + +"@jupyterlab/documentsearch@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/documentsearch@npm:4.2.2" + dependencies: + "@jupyterlab/apputils": ^4.3.2 + "@jupyterlab/translation": ^4.2.2 + "@jupyterlab/ui-components": ^4.2.2 + "@lumino/commands": ^2.3.0 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/messaging": ^2.0.1 + "@lumino/polling": ^2.1.2 + "@lumino/signaling": ^2.1.2 + "@lumino/widgets": ^2.3.2 + react: ^18.2.0 + checksum: 2d6806fdf0f85873eb35c7730717a9eb69775760d6fd081cbb274104e04fdf3dcf1e72002271739021552721732fa77bd2d6601c27abca8bf1e6b88a9836a2c8 + languageName: node + linkType: hard + +"@jupyterlab/filebrowser@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/filebrowser@npm:4.2.2" + dependencies: + "@jupyterlab/apputils": ^4.3.2 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/docmanager": ^4.2.2 + "@jupyterlab/docregistry": ^4.2.2 + "@jupyterlab/services": ^7.2.2 + "@jupyterlab/statedb": ^4.2.2 + "@jupyterlab/statusbar": ^4.2.2 + "@jupyterlab/translation": ^4.2.2 + "@jupyterlab/ui-components": ^4.2.2 + "@lumino/algorithm": ^2.0.1 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/domutils": ^2.0.1 + "@lumino/dragdrop": ^2.1.4 + "@lumino/messaging": ^2.0.1 + "@lumino/polling": ^2.1.2 + "@lumino/signaling": ^2.1.2 + "@lumino/virtualdom": ^2.0.1 + "@lumino/widgets": ^2.3.2 + react: ^18.2.0 + checksum: f4354f84060bd100b4530d4816b25b819ce028f92ceb130d79ca90dacf32bb46bcd8e134244b6172bca3bb1cae3402079ffbb8173cc94c5ce75e5b55e77cd67c + languageName: node + linkType: hard + +"@jupyterlab/fileeditor@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/fileeditor@npm:4.2.2" + dependencies: + "@jupyter/ydoc": ^2.0.1 + "@jupyterlab/apputils": ^4.3.2 + "@jupyterlab/codeeditor": ^4.2.2 + "@jupyterlab/codemirror": ^4.2.2 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/docregistry": ^4.2.2 + "@jupyterlab/documentsearch": ^4.2.2 + "@jupyterlab/lsp": ^4.2.2 + "@jupyterlab/statusbar": ^4.2.2 + "@jupyterlab/toc": ^6.2.2 + "@jupyterlab/translation": ^4.2.2 + "@jupyterlab/ui-components": ^4.2.2 + "@lumino/commands": ^2.3.0 + "@lumino/coreutils": ^2.1.2 + "@lumino/messaging": ^2.0.1 + "@lumino/widgets": ^2.3.2 + react: ^18.2.0 + regexp-match-indices: ^1.0.2 + checksum: 688340fe2ba275a22b6fc240b16b73db96889f128894a5d4f28c4ff5df68ef6f9947316ff9404ec93624eecd60a9834e2b343b04f82fa980f701d5ec30cd349d + languageName: node + linkType: hard + +"@jupyterlab/galata@npm:^5.2.2": + version: 5.2.2 + resolution: "@jupyterlab/galata@npm:5.2.2" + dependencies: + "@jupyterlab/application": ^4.2.2 + "@jupyterlab/apputils": ^4.3.2 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/debugger": ^4.2.2 + "@jupyterlab/docmanager": ^4.2.2 + "@jupyterlab/nbformat": ^4.2.2 + "@jupyterlab/notebook": ^4.2.2 + "@jupyterlab/services": ^7.2.2 + "@jupyterlab/settingregistry": ^4.2.2 + "@lumino/coreutils": ^2.1.2 + "@playwright/test": ^1.43.1 + "@stdlib/stats": ~0.0.13 + fs-extra: ^10.1.0 + json5: ^2.2.3 + path: ~0.12.7 + systeminformation: ^5.8.6 + vega: ^5.20.0 + vega-lite: ^5.6.1 + vega-statistics: ^1.7.9 + checksum: ac841ae68ad55396c8268f373a7b453cf263058af0c847f8f5c5c36307064f0bba85365aeadcfa81ec917d55ac8965787ef5ce4c948ef26b7fcf0d750619f8a5 + languageName: node + linkType: hard + +"@jupyterlab/lsp@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/lsp@npm:4.2.2" + dependencies: + "@jupyterlab/apputils": ^4.3.2 + "@jupyterlab/codeeditor": ^4.2.2 + "@jupyterlab/codemirror": ^4.2.2 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/docregistry": ^4.2.2 + "@jupyterlab/services": ^7.2.2 + "@jupyterlab/translation": ^4.2.2 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/signaling": ^2.1.2 + "@lumino/widgets": ^2.3.2 + lodash.mergewith: ^4.6.1 + vscode-jsonrpc: ^6.0.0 + vscode-languageserver-protocol: ^3.17.0 + vscode-ws-jsonrpc: ~1.0.2 + checksum: 57853e7cf4010dab80fd1f135bddefb62710c6d379c942306a6913ebf4683853a3d519aee8f1b4f72725a87f9cff4387d1fb3125813b0aa4fae25131ab2bff95 + languageName: node + linkType: hard + "@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@npm:^4.2.0": version: 4.2.0 resolution: "@jupyterlab/nbformat@npm:4.2.0" @@ -1870,6 +2582,118 @@ __metadata: languageName: node linkType: hard +"@jupyterlab/nbformat@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/nbformat@npm:4.2.2" + dependencies: + "@lumino/coreutils": ^2.1.2 + checksum: a60774bcf3e9735bc80dc411b4b79ad2da0dd4df596fef0a74537bfbfb8b168b70b34619638d0abaca6243ac337520275002a27dc13d6951efd681527643d25b + languageName: node + linkType: hard + +"@jupyterlab/notebook@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/notebook@npm:4.2.2" + dependencies: + "@jupyter/ydoc": ^2.0.1 + "@jupyterlab/apputils": ^4.3.2 + "@jupyterlab/cells": ^4.2.2 + "@jupyterlab/codeeditor": ^4.2.2 + "@jupyterlab/codemirror": ^4.2.2 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/docregistry": ^4.2.2 + "@jupyterlab/documentsearch": ^4.2.2 + "@jupyterlab/lsp": ^4.2.2 + "@jupyterlab/nbformat": ^4.2.2 + "@jupyterlab/observables": ^5.2.2 + "@jupyterlab/rendermime": ^4.2.2 + "@jupyterlab/services": ^7.2.2 + "@jupyterlab/settingregistry": ^4.2.2 + "@jupyterlab/statusbar": ^4.2.2 + "@jupyterlab/toc": ^6.2.2 + "@jupyterlab/translation": ^4.2.2 + "@jupyterlab/ui-components": ^4.2.2 + "@lumino/algorithm": ^2.0.1 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/domutils": ^2.0.1 + "@lumino/dragdrop": ^2.1.4 + "@lumino/messaging": ^2.0.1 + "@lumino/polling": ^2.1.2 + "@lumino/properties": ^2.0.1 + "@lumino/signaling": ^2.1.2 + "@lumino/virtualdom": ^2.0.1 + "@lumino/widgets": ^2.3.2 + react: ^18.2.0 + checksum: 0544a44162ca9de8e1341035037fd3fda263b72769ef49f1bbd241196336d5f71f9f4d3b7f442c8c955ed76f3fa8d6c0177f75db8b66d5e68a76d6aff8e7b037 + languageName: node + linkType: hard + +"@jupyterlab/observables@npm:^5.2.2": + version: 5.2.2 + resolution: "@jupyterlab/observables@npm:5.2.2" + dependencies: + "@lumino/algorithm": ^2.0.1 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/messaging": ^2.0.1 + "@lumino/signaling": ^2.1.2 + checksum: 916363cb75bd58f109d81ba84649379a848c23b8ced30f9283108fb4133bd5d4f62ebdf9648f053df744701193d4fadbae4491561dd02d14157bf23a0b813dda + languageName: node + linkType: hard + +"@jupyterlab/outputarea@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/outputarea@npm:4.2.2" + dependencies: + "@jupyterlab/apputils": ^4.3.2 + "@jupyterlab/nbformat": ^4.2.2 + "@jupyterlab/observables": ^5.2.2 + "@jupyterlab/rendermime": ^4.2.2 + "@jupyterlab/rendermime-interfaces": ^3.10.2 + "@jupyterlab/services": ^7.2.2 + "@jupyterlab/translation": ^4.2.2 + "@lumino/algorithm": ^2.0.1 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/messaging": ^2.0.1 + "@lumino/properties": ^2.0.1 + "@lumino/signaling": ^2.1.2 + "@lumino/widgets": ^2.3.2 + checksum: b7d085edca968dc280677df0853080b00a3df3f05b67887933375bd28eaf12e056f7c3396b9a1a28075e617f979400a19742312c6964233f8135c5054fa98e20 + languageName: node + linkType: hard + +"@jupyterlab/rendermime-interfaces@npm:^3.10.2": + version: 3.10.2 + resolution: "@jupyterlab/rendermime-interfaces@npm:3.10.2" + dependencies: + "@lumino/coreutils": ^1.11.0 || ^2.1.2 + "@lumino/widgets": ^1.37.2 || ^2.3.2 + checksum: 4ace6cda40bc3cdd59e36afb8dce6f4448f974a8214086d2541860b0e5c0de95fe22969fa4f5537e6e7fa06c00543655feaf77825dbb57da0147c38c51686707 + languageName: node + linkType: hard + +"@jupyterlab/rendermime@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/rendermime@npm:4.2.2" + dependencies: + "@jupyterlab/apputils": ^4.3.2 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/nbformat": ^4.2.2 + "@jupyterlab/observables": ^5.2.2 + "@jupyterlab/rendermime-interfaces": ^3.10.2 + "@jupyterlab/services": ^7.2.2 + "@jupyterlab/translation": ^4.2.2 + "@lumino/coreutils": ^2.1.2 + "@lumino/messaging": ^2.0.1 + "@lumino/signaling": ^2.1.2 + "@lumino/widgets": ^2.3.2 + lodash.escape: ^4.0.1 + checksum: cadf8a1d7c001d3863389b7e9561a54c633a85c89713b7d204f9ba86b960b23b592bfb6c68340dac1c02d86d51e4ea1af295672120597c9d8f7c654c8f020182 + languageName: node + linkType: hard + "@jupyterlab/services@npm:^6.0.0 || ^7.0.0": version: 7.2.0 resolution: "@jupyterlab/services@npm:7.2.0" @@ -1889,6 +2713,25 @@ __metadata: languageName: node linkType: hard +"@jupyterlab/services@npm:^7.2.2": + version: 7.2.2 + resolution: "@jupyterlab/services@npm:7.2.2" + dependencies: + "@jupyter/ydoc": ^2.0.1 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/nbformat": ^4.2.2 + "@jupyterlab/settingregistry": ^4.2.2 + "@jupyterlab/statedb": ^4.2.2 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/polling": ^2.1.2 + "@lumino/properties": ^2.0.1 + "@lumino/signaling": ^2.1.2 + ws: ^8.11.0 + checksum: dace4f2838cefb129c63cc2b20b35ce2b593e9da4db51dea2963c1109c7f9867faf0a7f428bfd53889f8560953924bf51b355f555ce4fd756b358cfaf8f145c7 + languageName: node + linkType: hard + "@jupyterlab/settingregistry@npm:^4.2.0": version: 4.2.0 resolution: "@jupyterlab/settingregistry@npm:4.2.0" @@ -1908,6 +2751,25 @@ __metadata: languageName: node linkType: hard +"@jupyterlab/settingregistry@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/settingregistry@npm:4.2.2" + dependencies: + "@jupyterlab/nbformat": ^4.2.2 + "@jupyterlab/statedb": ^4.2.2 + "@lumino/commands": ^2.3.0 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/signaling": ^2.1.2 + "@rjsf/utils": ^5.13.4 + ajv: ^8.12.0 + json5: ^2.2.3 + peerDependencies: + react: ">=16" + checksum: 610a43c2308ea7b35c58bc4fdffa0613cd04bbd56bae3f64ee7d7869ae8e484e26102726f5a31f6ae2ffc6f3e77527473fb1a8a9869fdbdac93d5a12984bd56d + languageName: node + linkType: hard + "@jupyterlab/statedb@npm:^4.2.0": version: 4.2.0 resolution: "@jupyterlab/statedb@npm:4.2.0" @@ -1921,6 +2783,258 @@ __metadata: languageName: node linkType: hard +"@jupyterlab/statedb@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/statedb@npm:4.2.2" + dependencies: + "@lumino/commands": ^2.3.0 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/properties": ^2.0.1 + "@lumino/signaling": ^2.1.2 + checksum: 6fbeed16a659b3f0d9b7a86cca91a0fd082c35b500264d58206f8a79640ea34ac00192c749a96c10f8762c6153ef26d3face6e6ce30b0e84479a0a5896254c38 + languageName: node + linkType: hard + +"@jupyterlab/statusbar@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/statusbar@npm:4.2.2" + dependencies: + "@jupyterlab/ui-components": ^4.2.2 + "@lumino/algorithm": ^2.0.1 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/messaging": ^2.0.1 + "@lumino/signaling": ^2.1.2 + "@lumino/widgets": ^2.3.2 + react: ^18.2.0 + checksum: f687fe87f693036edabaf7273aa3b1da89dac4636daf6632bb8d76bf79693ca713f83105247a90b1b378bfc42f61313d3ebc6177a01d2647b957c3c1b01e25f3 + languageName: node + linkType: hard + +"@jupyterlab/toc@npm:^6.2.2": + version: 6.2.2 + resolution: "@jupyterlab/toc@npm:6.2.2" + dependencies: + "@jupyterlab/apputils": ^4.3.2 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/docregistry": ^4.2.2 + "@jupyterlab/observables": ^5.2.2 + "@jupyterlab/rendermime": ^4.2.2 + "@jupyterlab/rendermime-interfaces": ^3.10.2 + "@jupyterlab/translation": ^4.2.2 + "@jupyterlab/ui-components": ^4.2.2 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/messaging": ^2.0.1 + "@lumino/signaling": ^2.1.2 + "@lumino/widgets": ^2.3.2 + react: ^18.2.0 + checksum: 8b8692da9d0b85e35fe59cc21b026ce25e5f8cb5c21607d304512cab2ef280dd9e2468dedbf6819aedb8f5e17ae7ee757504008dc792886531d09beed98e2f9e + languageName: node + linkType: hard + +"@jupyterlab/translation@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/translation@npm:4.2.2" + dependencies: + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/rendermime-interfaces": ^3.10.2 + "@jupyterlab/services": ^7.2.2 + "@jupyterlab/statedb": ^4.2.2 + "@lumino/coreutils": ^2.1.2 + checksum: faeda0940384b5d204e5f7ca0e50cdf0122d6be8618a10c9c77ba57b675fc7045c65da8c1fc51fb4803361b7d0bbbbd1d6d224d5905677f3782231bdad2f8164 + languageName: node + linkType: hard + +"@jupyterlab/ui-components@npm:^4.2.2": + version: 4.2.2 + resolution: "@jupyterlab/ui-components@npm:4.2.2" + dependencies: + "@jupyter/react-components": ^0.15.3 + "@jupyter/web-components": ^0.15.3 + "@jupyterlab/coreutils": ^6.2.2 + "@jupyterlab/observables": ^5.2.2 + "@jupyterlab/rendermime-interfaces": ^3.10.2 + "@jupyterlab/translation": ^4.2.2 + "@lumino/algorithm": ^2.0.1 + "@lumino/commands": ^2.3.0 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/messaging": ^2.0.1 + "@lumino/polling": ^2.1.2 + "@lumino/properties": ^2.0.1 + "@lumino/signaling": ^2.1.2 + "@lumino/virtualdom": ^2.0.1 + "@lumino/widgets": ^2.3.2 + "@rjsf/core": ^5.13.4 + "@rjsf/utils": ^5.13.4 + react: ^18.2.0 + react-dom: ^18.2.0 + typestyle: ^2.0.4 + peerDependencies: + react: ^18.2.0 + checksum: 5e0f7c835dd64db51332966cb56b5b5f12a22b4b42b229ade772b853dc31aab92ec323125a2e7781e3c7acd41949cd5600b1f1421e64ebafe1c05957e1176501 + languageName: node + linkType: hard + +"@lezer/common@npm:^1.0.0, @lezer/common@npm:^1.0.2, @lezer/common@npm:^1.1.0, @lezer/common@npm:^1.2.0, @lezer/common@npm:^1.2.1": + version: 1.2.1 + resolution: "@lezer/common@npm:1.2.1" + checksum: 0bd092e293a509ce334f4aaf9a4d4a25528f743cd9d7e7948c697e34ac703b805b288b62ad01563488fb206fc34ff05084f7fc5d864be775924b3d0d53ea5dd2 + languageName: node + linkType: hard + +"@lezer/cpp@npm:^1.0.0": + version: 1.1.2 + resolution: "@lezer/cpp@npm:1.1.2" + dependencies: + "@lezer/common": ^1.2.0 + "@lezer/highlight": ^1.0.0 + "@lezer/lr": ^1.0.0 + checksum: a319cd46fd32affc07c9432e9b2b9954becf7766be0361176c525d03474bb794cc051aad9932f48c9df33833eee1d6bfdccab12e571f2b137b4ca765c60c75de + languageName: node + linkType: hard + +"@lezer/css@npm:^1.0.0, @lezer/css@npm:^1.1.0": + version: 1.1.8 + resolution: "@lezer/css@npm:1.1.8" + dependencies: + "@lezer/common": ^1.2.0 + "@lezer/highlight": ^1.0.0 + "@lezer/lr": ^1.0.0 + checksum: 1f5968360dbac7ba27f0c2a194143769f7b01824715274dd8507dacf13cc790bb8c48ce95de355e9c58be93bb3e271bf98b9fc51213f79e4ce918e7c7ebbef04 + languageName: node + linkType: hard + +"@lezer/generator@npm:^1.7.0": + version: 1.7.1 + resolution: "@lezer/generator@npm:1.7.1" + dependencies: + "@lezer/common": ^1.1.0 + "@lezer/lr": ^1.3.0 + bin: + lezer-generator: src/lezer-generator.cjs + checksum: e46df5a31252fb036ea17fce820acdf47672bb5405b2a38e26a430182b9a50b8513fde37d9a43d8334cde3bb2f2106ce7a5ab1a01e244876ce3217c4db59e627 + languageName: node + linkType: hard + +"@lezer/highlight@npm:^1.0.0, @lezer/highlight@npm:^1.1.3, @lezer/highlight@npm:^1.2.0": + version: 1.2.0 + resolution: "@lezer/highlight@npm:1.2.0" + dependencies: + "@lezer/common": ^1.0.0 + checksum: 5b9dfe741f95db13f6124cb9556a43011cb8041ecf490be98d44a86b04d926a66e912bcd3a766f6a3d79e064410f1a2f60ab240b50b645a12c56987bf4870086 + languageName: node + linkType: hard + +"@lezer/html@npm:^1.3.0": + version: 1.3.10 + resolution: "@lezer/html@npm:1.3.10" + dependencies: + "@lezer/common": ^1.2.0 + "@lezer/highlight": ^1.0.0 + "@lezer/lr": ^1.0.0 + checksum: cce391aab9259704ae3079b3209f74b2f248594dd8b851c28aaff26765e00ebb890a5ff1fe600f2d03aaf4ade0e36de8048d9632b12bfbccd47b3e649c3b0ecd + languageName: node + linkType: hard + +"@lezer/java@npm:^1.0.0": + version: 1.1.2 + resolution: "@lezer/java@npm:1.1.2" + dependencies: + "@lezer/common": ^1.2.0 + "@lezer/highlight": ^1.0.0 + "@lezer/lr": ^1.0.0 + checksum: 752e8c9b99cccf022669a702016e0c3a793d8326e043b1d053159f5de4d222cd188e8e31e1427cbe6a8ed8e53de3977ab551c64cbd5a76a12eb3a1da5e18b6a5 + languageName: node + linkType: hard + +"@lezer/javascript@npm:^1.0.0": + version: 1.4.17 + resolution: "@lezer/javascript@npm:1.4.17" + dependencies: + "@lezer/common": ^1.2.0 + "@lezer/highlight": ^1.1.3 + "@lezer/lr": ^1.3.0 + checksum: dfcc4130af0bc681cd1ff6ec655a58e747fd877d8aadad2deba5f84512fa539177ece602c5389f4354c93555d3064737dedbe3384ca48b03c4968126bfd1b9a9 + languageName: node + linkType: hard + +"@lezer/json@npm:^1.0.0": + version: 1.0.2 + resolution: "@lezer/json@npm:1.0.2" + dependencies: + "@lezer/common": ^1.2.0 + "@lezer/highlight": ^1.0.0 + "@lezer/lr": ^1.0.0 + checksum: f899d13765d95599c9199fc3404cb57969031dc40ce07de30f4e648979153966581f0bee02e2f8f70463b0a5322206a97c2fe8d5d14f218888c72a6dcedf90ef + languageName: node + linkType: hard + +"@lezer/lr@npm:^1.0.0, @lezer/lr@npm:^1.1.0, @lezer/lr@npm:^1.3.0": + version: 1.4.1 + resolution: "@lezer/lr@npm:1.4.1" + dependencies: + "@lezer/common": ^1.0.0 + checksum: 65ae107a14619b1c514040eec2c48470e921895bb10a80d0b90e7735e121138c50e8207e2e0d9339e7cc42a716cdb367ae08f282c452934c89860093b26c40c2 + languageName: node + linkType: hard + +"@lezer/markdown@npm:^1.0.0, @lezer/markdown@npm:^1.2.0": + version: 1.3.0 + resolution: "@lezer/markdown@npm:1.3.0" + dependencies: + "@lezer/common": ^1.0.0 + "@lezer/highlight": ^1.0.0 + checksum: 13eb2720e4cb84278349bad8af116f748813094f99fad02680010c3a8c5985e0358c344487990f87a31ef0d6c1a2be582301f914c0e4a6e9cfa22647b6cd6545 + languageName: node + linkType: hard + +"@lezer/php@npm:^1.0.0": + version: 1.0.2 + resolution: "@lezer/php@npm:1.0.2" + dependencies: + "@lezer/common": ^1.2.0 + "@lezer/highlight": ^1.0.0 + "@lezer/lr": ^1.1.0 + checksum: c85ef18571d37826b687dd141a0fe110f5814adaf9d1a391e7e482020d7f81df189ca89ec0dd141c1433d48eff4c6e53648b46f008dea8ad2dc574f35f1d4d79 + languageName: node + linkType: hard + +"@lezer/python@npm:^1.1.4": + version: 1.1.14 + resolution: "@lezer/python@npm:1.1.14" + dependencies: + "@lezer/common": ^1.2.0 + "@lezer/highlight": ^1.0.0 + "@lezer/lr": ^1.0.0 + checksum: 1608187f698e972d11b340dfdfd79e15b1359641e386e386befd37d5e5839620b45a5a39c5616792a24da29ef1d99d11ea0dad52b9617f1767e7ea6a11c2fed3 + languageName: node + linkType: hard + +"@lezer/rust@npm:^1.0.0": + version: 1.0.2 + resolution: "@lezer/rust@npm:1.0.2" + dependencies: + "@lezer/common": ^1.2.0 + "@lezer/highlight": ^1.0.0 + "@lezer/lr": ^1.0.0 + checksum: fc5e97852b42beeb44a0ebe316dc64e3cc49ff481c22e3e67d6003fc4a5c257fcd94959cfcc76cd154fa172db9b3b4b28de5c09f10550d6e5f14869ddc274e5b + languageName: node + linkType: hard + +"@lezer/xml@npm:^1.0.0": + version: 1.0.5 + resolution: "@lezer/xml@npm:1.0.5" + dependencies: + "@lezer/common": ^1.2.0 + "@lezer/highlight": ^1.0.0 + "@lezer/lr": ^1.0.0 + checksum: a0a077b9e455b03593b93a7fdff2a4eab2cb7b230c8e1b878a8bebe80184632b9cc75ca018f1f9e2acb3a26e1386f4777385ab6e87aea70ccf479cde5ca268ee + languageName: node + linkType: hard + "@lumino/algorithm@npm:^1.9.2": version: 1.9.2 resolution: "@lumino/algorithm@npm:1.9.2" @@ -1979,13 +3093,30 @@ __metadata: languageName: node linkType: hard -"@lumino/coreutils@npm:^1.11.0 || ^2.0.0, @lumino/coreutils@npm:^1.11.1 || ^2, @lumino/coreutils@npm:^1.11.1 || ^2.1, @lumino/coreutils@npm:^2.1.2": +"@lumino/coreutils@npm:^1.11.0 || ^2.0.0, @lumino/coreutils@npm:^1.11.0 || ^2.1.2, @lumino/coreutils@npm:^1.11.1 || ^2, @lumino/coreutils@npm:^1.11.1 || ^2.1, @lumino/coreutils@npm:^2.1.2": version: 2.1.2 resolution: "@lumino/coreutils@npm:2.1.2" checksum: 7865317ac0676b448d108eb57ab5d8b2a17c101995c0f7a7106662d9fe6c859570104525f83ee3cda12ae2e326803372206d6f4c1f415a5b59e4158a7b81066f languageName: node linkType: hard +"@lumino/datagrid@npm:^2.3.1": + version: 2.3.1 + resolution: "@lumino/datagrid@npm:2.3.1" + dependencies: + "@lumino/algorithm": ^2.0.1 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/domutils": ^2.0.1 + "@lumino/dragdrop": ^2.1.4 + "@lumino/keyboard": ^2.0.1 + "@lumino/messaging": ^2.0.1 + "@lumino/signaling": ^2.1.2 + "@lumino/widgets": ^2.3.2 + checksum: 5d9fa32f3eb4fac041f75276d5a03118b36257db79a29c5ccabe826d423f15473e60ea337d8148379e8906bf78850a923b149c8d2956089aa940eae419b00e60 + languageName: node + linkType: hard + "@lumino/disposable@npm:^1.10.0 || ^2.0.0, @lumino/disposable@npm:^2.1.2": version: 2.1.2 resolution: "@lumino/disposable@npm:2.1.2" @@ -2076,7 +3207,7 @@ __metadata: languageName: node linkType: hard -"@lumino/widgets@npm:^1.30.0 || ^2.1, @lumino/widgets@npm:^2.3.1, @lumino/widgets@npm:^2.3.2": +"@lumino/widgets@npm:^1.30.0 || ^2.1, @lumino/widgets@npm:^1.37.2 || ^2.3.2, @lumino/widgets@npm:^2.3.1, @lumino/widgets@npm:^2.3.2": version: 2.3.2 resolution: "@lumino/widgets@npm:2.3.2" dependencies: @@ -2095,6 +3226,53 @@ __metadata: languageName: node linkType: hard +"@microsoft/fast-colors@npm:^5.3.1": + version: 5.3.1 + resolution: "@microsoft/fast-colors@npm:5.3.1" + checksum: ff87f402faadb4b5aeee3d27762566c11807f927cd4012b8bbc7f073ca68de0e2197f95330ff5dfd7038f4b4f0e2f51b11feb64c5d570f5c598d37850a5daf60 + languageName: node + linkType: hard + +"@microsoft/fast-element@npm:^1.12.0, @microsoft/fast-element@npm:^1.13.0": + version: 1.13.0 + resolution: "@microsoft/fast-element@npm:1.13.0" + checksum: 1cb7b4cfb7531116a3542d3f59bf1dd35106194f5764205403590250aaff744de79e35a5a1f36b4941c4eda9edc088148d4d629fb80be15fdf25f6be01770f3a + languageName: node + linkType: hard + +"@microsoft/fast-foundation@npm:^2.49.4, @microsoft/fast-foundation@npm:^2.49.6": + version: 2.49.6 + resolution: "@microsoft/fast-foundation@npm:2.49.6" + dependencies: + "@microsoft/fast-element": ^1.13.0 + "@microsoft/fast-web-utilities": ^5.4.1 + tabbable: ^5.2.0 + tslib: ^1.13.0 + checksum: 15fdf9dd0b910a72a9cff140f765d522304df11f8a78d5a97a815e2bbae25027c2b336e94f89ca31e650d6aabe17b590b7453acc0d2cb7340c219eb76350a942 + languageName: node + linkType: hard + +"@microsoft/fast-react-wrapper@npm:^0.3.22": + version: 0.3.24 + resolution: "@microsoft/fast-react-wrapper@npm:0.3.24" + dependencies: + "@microsoft/fast-element": ^1.13.0 + "@microsoft/fast-foundation": ^2.49.6 + peerDependencies: + react: ">=16.9.0" + checksum: 1d7a87509c22872bafc9b5c64f66659e52ba0cfdff484d7204125e503dafdea143f5e1bd2a643e2f3fbba6cc7567d916393369433f19dab9f0adcbe7a88b7d98 + languageName: node + linkType: hard + +"@microsoft/fast-web-utilities@npm:^5.4.1": + version: 5.4.1 + resolution: "@microsoft/fast-web-utilities@npm:5.4.1" + dependencies: + exenv-es6: ^1.1.1 + checksum: 303e87847f962944f474e3716c3eb305668243916ca9e0719e26bb9a32346144bc958d915c103776b3e552cea0f0f6233f839fad66adfdf96a8436b947288ca7 + languageName: node + linkType: hard + "@nodelib/fs.scandir@npm:2.1.5": version: 2.1.5 resolution: "@nodelib/fs.scandir@npm:2.1.5" @@ -2165,43 +3343,474 @@ __metadata: languageName: node linkType: hard -"@rjsf/utils@npm:^5.13.4": - version: 5.18.3 - resolution: "@rjsf/utils@npm:5.18.3" +"@playwright/test@npm:^1.43.1": + version: 1.44.1 + resolution: "@playwright/test@npm:1.44.1" + dependencies: + playwright: 1.44.1 + bin: + playwright: cli.js + checksum: 90507b77e388aa984deb92db56f7bb3b305c6be441e1d0087ca046989cfdda068bbc26d75bd29c20ad3dbb2434e69a8ff0d6b30003b88c9234cd3aa6a9f7deb9 + languageName: node + linkType: hard + +"@rjsf/core@npm:^5.13.4": + version: 5.18.4 + resolution: "@rjsf/core@npm:5.18.4" + dependencies: + lodash: ^4.17.21 + lodash-es: ^4.17.21 + markdown-to-jsx: ^7.4.1 + nanoid: ^3.3.7 + prop-types: ^15.8.1 + peerDependencies: + "@rjsf/utils": ^5.18.x + react: ^16.14.0 || >=17 + checksum: 8c3f49914be396595ce67dc4c36ac25c5cb6673917ec82c47f79321f5bb78d02741e8dca39287d0435270e7c9ccb06f7d40e396bdf71a3e9eb1371ef16954817 + languageName: node + linkType: hard + +"@rjsf/utils@npm:^5.13.4": + version: 5.18.3 + resolution: "@rjsf/utils@npm:5.18.3" + dependencies: + json-schema-merge-allof: "npm:^0.8.1" + jsonpointer: "npm:^5.0.1" + lodash: "npm:^4.17.21" + lodash-es: "npm:^4.17.21" + react-is: "npm:^18.2.0" + peerDependencies: + react: ^16.14.0 || >=17 + checksum: 36f6574836e8ccad27b8215f940cb86b1a02939d325e0223a8d8e70b9ae65245e6649dd4835a40e628153f26d961a5cfbdd6c0bdd7b70a80f7cb1911357f78ff + languageName: node + linkType: hard + +"@sinclair/typebox@npm:^0.27.8": + version: 0.27.8 + resolution: "@sinclair/typebox@npm:0.27.8" + checksum: 00bd7362a3439021aa1ea51b0e0d0a0e8ca1351a3d54c606b115fdcc49b51b16db6e5f43b4fe7a28c38688523e22a94d49dd31168868b655f0d4d50f032d07a1 + languageName: node + linkType: hard + +"@sinonjs/commons@npm:^3.0.0": + version: 3.0.1 + resolution: "@sinonjs/commons@npm:3.0.1" + dependencies: + type-detect: "npm:4.0.8" + checksum: a7c3e7cc612352f4004873747d9d8b2d4d90b13a6d483f685598c945a70e734e255f1ca5dc49702515533c403b32725defff148177453b3f3915bcb60e9d4601 + languageName: node + linkType: hard + +"@sinonjs/fake-timers@npm:^10.0.2": + version: 10.3.0 + resolution: "@sinonjs/fake-timers@npm:10.3.0" + dependencies: + "@sinonjs/commons": "npm:^3.0.0" + checksum: 614d30cb4d5201550c940945d44c9e0b6d64a888ff2cd5b357f95ad6721070d6b8839cd10e15b76bf5e14af0bcc1d8f9ec00d49a46318f1f669a4bec1d7f3148 + languageName: node + linkType: hard + +"@stdlib/array@npm:^0.0.x": + version: 0.0.12 + resolution: "@stdlib/array@npm:0.0.12" + dependencies: + "@stdlib/assert": ^0.0.x + "@stdlib/blas": ^0.0.x + "@stdlib/complex": ^0.0.x + "@stdlib/constants": ^0.0.x + "@stdlib/math": ^0.0.x + "@stdlib/symbol": ^0.0.x + "@stdlib/types": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: 0d95690461f0c4560eabef0796d1170274415cd03de80333c6d39814d0484a6873ef4be04a64941ebf3a600747e84c3a4f23b21c7020e53842c07985331b39f1 + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/assert@npm:^0.0.x": + version: 0.0.12 + resolution: "@stdlib/assert@npm:0.0.12" + dependencies: + "@stdlib/array": ^0.0.x + "@stdlib/cli": ^0.0.x + "@stdlib/complex": ^0.0.x + "@stdlib/constants": ^0.0.x + "@stdlib/fs": ^0.0.x + "@stdlib/math": ^0.0.x + "@stdlib/ndarray": ^0.0.x + "@stdlib/number": ^0.0.x + "@stdlib/os": ^0.0.x + "@stdlib/process": ^0.0.x + "@stdlib/regexp": ^0.0.x + "@stdlib/streams": ^0.0.x + "@stdlib/string": ^0.0.x + "@stdlib/symbol": ^0.0.x + "@stdlib/types": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: d4dcbeabbfb86ba56cdd972ff785f43e7d25018b2b1800cab8b0deb9e5c54c795d6ead3d142f4dd13c351f636deba4dc1857c85147d6b059fdc78eb2c9510b99 + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/bigint@npm:^0.0.x": + version: 0.0.11 + resolution: "@stdlib/bigint@npm:0.0.11" + dependencies: + "@stdlib/utils": ^0.0.x + checksum: 7bf825d116e4b010e214209af239706ac1ef923eecb5c8b0af9229c9975450081355e441ecc7b4765d81a9e653141868e0492b8061d1e65724fa42fb8283aabd + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/blas@npm:^0.0.x": + version: 0.0.12 + resolution: "@stdlib/blas@npm:0.0.12" + dependencies: + "@stdlib/array": ^0.0.x + "@stdlib/assert": ^0.0.x + "@stdlib/math": ^0.0.x + "@stdlib/number": ^0.0.x + "@stdlib/types": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: 67ea00a968f7a9c710b37f718b7f756e2830e479a1a1ee44cbf6ec3cc27dd8863078928867707d9d1624007e81de89d040f2326d10f435e2cce913cab121975e + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/buffer@npm:^0.0.x": + version: 0.0.11 + resolution: "@stdlib/buffer@npm:0.0.11" + dependencies: + "@stdlib/array": ^0.0.x + "@stdlib/assert": ^0.0.x + "@stdlib/process": ^0.0.x + "@stdlib/types": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: 93df02e3bf548e940ff9cef65121566e7bf93b554f0614d62336c9dbccfc07c9f1b1c4e9a7aebbe4819ef16a6d2a33a7010c2fdf908fface8298a3109c3c4ef0 + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/cli@npm:^0.0.x": + version: 0.0.10 + resolution: "@stdlib/cli@npm:0.0.10" + dependencies: + "@stdlib/utils": ^0.0.x + minimist: ^1.2.0 + checksum: bbece8d3dbff2835518582a7726c6c4c22743dc408d2303d9e35a3b72151d5d0a8e78d61bc896663d4c3fb702e966abea7a1bd621ed943723a359f57053f121f + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/complex@npm:^0.0.x": + version: 0.0.12 + resolution: "@stdlib/complex@npm:0.0.12" + dependencies: + "@stdlib/array": ^0.0.x + "@stdlib/assert": ^0.0.x + "@stdlib/types": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: 8eda35027495417f1b0dd9bbbc2d4983f50ad3cf9e2276ffe0945ccdbe78f0fc66b9fc36ab71926d2a125c8fb7467c8970a222b230b42ff4bb8042c53314ca09 + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/constants@npm:^0.0.x": + version: 0.0.11 + resolution: "@stdlib/constants@npm:0.0.11" + dependencies: + "@stdlib/array": ^0.0.x + "@stdlib/assert": ^0.0.x + "@stdlib/number": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: fc19d055a4e71ae84b6c92e4a3a88371d50693da8f0a813df4063dc549374d19b9cf23f4fdae2fb7b2013e13929f713c3e1b9e4054767e741b75561ed43d15c3 + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/fs@npm:^0.0.x": + version: 0.0.12 + resolution: "@stdlib/fs@npm:0.0.12" + dependencies: + "@stdlib/array": ^0.0.x + "@stdlib/assert": ^0.0.x + "@stdlib/cli": ^0.0.x + "@stdlib/math": ^0.0.x + "@stdlib/process": ^0.0.x + "@stdlib/string": ^0.0.x + "@stdlib/utils": ^0.0.x + debug: ^2.6.9 + checksum: 33ac5ee4844d4599fe3a8a8402f1a3e2cafee31a5c9cf5b85df530a61a2b54ef17dc30a67be98dacdc2958219413edd0e4cdc3c28266f4bc30277ee024f6a49e + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/math@npm:^0.0.x": + version: 0.0.11 + resolution: "@stdlib/math@npm:0.0.11" + dependencies: + "@stdlib/assert": ^0.0.x + "@stdlib/constants": ^0.0.x + "@stdlib/ndarray": ^0.0.x + "@stdlib/number": ^0.0.x + "@stdlib/strided": ^0.0.x + "@stdlib/symbol": ^0.0.x + "@stdlib/types": ^0.0.x + "@stdlib/utils": ^0.0.x + debug: ^2.6.9 + checksum: 6c4c9dda36fbce50553e1437354c5286aa782c42399534dbed8e696ddeb1b91ef6cff5fe5962f1c9e1eb2ef63c63d9bd58f7ca4b87d59018aaac20099c3fb79a + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/ndarray@npm:^0.0.x": + version: 0.0.13 + resolution: "@stdlib/ndarray@npm:0.0.13" + dependencies: + "@stdlib/array": ^0.0.x + "@stdlib/assert": ^0.0.x + "@stdlib/bigint": ^0.0.x + "@stdlib/buffer": ^0.0.x + "@stdlib/complex": ^0.0.x + "@stdlib/constants": ^0.0.x + "@stdlib/math": ^0.0.x + "@stdlib/number": ^0.0.x + "@stdlib/string": ^0.0.x + "@stdlib/types": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: 842a94afce5fc74bf8a964b75a302ddb8713eadbc79616e6799f1310c8bce860ed9e9877adc4a39338d9136b8798947ee21cf03368d46408308a313c8075d49a + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/nlp@npm:^0.0.x": + version: 0.0.11 + resolution: "@stdlib/nlp@npm:0.0.11" dependencies: - json-schema-merge-allof: "npm:^0.8.1" - jsonpointer: "npm:^5.0.1" - lodash: "npm:^4.17.21" - lodash-es: "npm:^4.17.21" - react-is: "npm:^18.2.0" - peerDependencies: - react: ^16.14.0 || >=17 - checksum: 36f6574836e8ccad27b8215f940cb86b1a02939d325e0223a8d8e70b9ae65245e6649dd4835a40e628153f26d961a5cfbdd6c0bdd7b70a80f7cb1911357f78ff + "@stdlib/array": ^0.0.x + "@stdlib/assert": ^0.0.x + "@stdlib/math": ^0.0.x + "@stdlib/random": ^0.0.x + "@stdlib/string": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: 398fe2853fb95404bb6598e3e199ca3e0435b94447d50e14e2e30582cadfb91f43464f23d80a0e1da4d64567a4a108a7299d7440509f1ab26b02aea7bb16e9a8 + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/number@npm:^0.0.x": + version: 0.0.10 + resolution: "@stdlib/number@npm:0.0.10" + dependencies: + "@stdlib/array": ^0.0.x + "@stdlib/assert": ^0.0.x + "@stdlib/constants": ^0.0.x + "@stdlib/math": ^0.0.x + "@stdlib/os": ^0.0.x + "@stdlib/string": ^0.0.x + "@stdlib/types": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: 326190956c787cbf9321c332beedab5ba4b3fa97d52a82aa708a0349b4678c0df7a351424f00a606f4eaca4fb4ba4cc191580c99d7c64ee0f08d37baa3de14f2 + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/os@npm:^0.0.x": + version: 0.0.12 + resolution: "@stdlib/os@npm:0.0.12" + dependencies: + "@stdlib/assert": ^0.0.x + "@stdlib/cli": ^0.0.x + "@stdlib/fs": ^0.0.x + "@stdlib/process": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: 37156b0c723da70d7740d92d08fc592eae803461c1d546cff6ac044765d6e40722fdad342219277e747c39344b513096ac1d0aa1e733cf3079bd8a9a8578612a + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/process@npm:^0.0.x": + version: 0.0.12 + resolution: "@stdlib/process@npm:0.0.12" + dependencies: + "@stdlib/assert": ^0.0.x + "@stdlib/buffer": ^0.0.x + "@stdlib/cli": ^0.0.x + "@stdlib/fs": ^0.0.x + "@stdlib/streams": ^0.0.x + "@stdlib/string": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: 6d5c3d943f9914d1ae39bd36ad7436f783cf64baa2bff67a808035c99258676ae3f704c328a78d62754951cf85fe99d8e9af5f4fa7d5f8cba347bca72767e357 + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/random@npm:^0.0.x": + version: 0.0.12 + resolution: "@stdlib/random@npm:0.0.12" + dependencies: + "@stdlib/array": ^0.0.x + "@stdlib/assert": ^0.0.x + "@stdlib/blas": ^0.0.x + "@stdlib/buffer": ^0.0.x + "@stdlib/cli": ^0.0.x + "@stdlib/constants": ^0.0.x + "@stdlib/fs": ^0.0.x + "@stdlib/math": ^0.0.x + "@stdlib/process": ^0.0.x + "@stdlib/stats": ^0.0.x + "@stdlib/streams": ^0.0.x + "@stdlib/symbol": ^0.0.x + "@stdlib/types": ^0.0.x + "@stdlib/utils": ^0.0.x + debug: ^2.6.9 + readable-stream: ^2.1.4 + checksum: 67fcb5553274f8596ceae91153e96ae297bacfd55279821cb09f19f2844845aaf892802e4a5962965323dbfded0c7df8a89a6ce77d60d5c8a5899d483055a964 + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/regexp@npm:^0.0.x": + version: 0.0.13 + resolution: "@stdlib/regexp@npm:0.0.13" + dependencies: + "@stdlib/assert": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: dd52adb096ff9a02d1c4818be2889ae01bc04a0cdbc0d52473685e0a7a4eaa13e1be603b964f140f7488d11450b644dc5f8c97029d77db1ed4a563554245ff1c + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard -"@sinclair/typebox@npm:^0.27.8": - version: 0.27.8 - resolution: "@sinclair/typebox@npm:0.27.8" - checksum: 00bd7362a3439021aa1ea51b0e0d0a0e8ca1351a3d54c606b115fdcc49b51b16db6e5f43b4fe7a28c38688523e22a94d49dd31168868b655f0d4d50f032d07a1 +"@stdlib/stats@npm:^0.0.x, @stdlib/stats@npm:~0.0.13": + version: 0.0.13 + resolution: "@stdlib/stats@npm:0.0.13" + dependencies: + "@stdlib/array": ^0.0.x + "@stdlib/assert": ^0.0.x + "@stdlib/blas": ^0.0.x + "@stdlib/constants": ^0.0.x + "@stdlib/math": ^0.0.x + "@stdlib/ndarray": ^0.0.x + "@stdlib/random": ^0.0.x + "@stdlib/string": ^0.0.x + "@stdlib/symbol": ^0.0.x + "@stdlib/types": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: 5ca12b2e123543f56a59aca828e14afaf525ad4aa40467bee7037a9178e21e55d4ce8ba3de9387cc9a0efe3e0d035d6c58705b12f634f77a2b3f87d334dfb076 + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/streams@npm:^0.0.x": + version: 0.0.12 + resolution: "@stdlib/streams@npm:0.0.12" + dependencies: + "@stdlib/assert": ^0.0.x + "@stdlib/buffer": ^0.0.x + "@stdlib/cli": ^0.0.x + "@stdlib/fs": ^0.0.x + "@stdlib/types": ^0.0.x + "@stdlib/utils": ^0.0.x + debug: ^2.6.9 + readable-stream: ^2.1.4 + checksum: 231b4607d082ea81d9dadbeab08002ec398a29c7eb5d611d8a4183f9db6964428e2f8a9e0f8edd085ca12b5d58258576987a575e9d8f6fcabcb5a62c6b8efe88 + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/strided@npm:^0.0.x": + version: 0.0.12 + resolution: "@stdlib/strided@npm:0.0.12" + dependencies: + "@stdlib/assert": ^0.0.x + "@stdlib/math": ^0.0.x + "@stdlib/ndarray": ^0.0.x + "@stdlib/types": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: 55ccc8543596894a2e3ad734b394700c69697b499a54b3bfbcf80cddd8d91509792c23931f5cebf7c89269676ac3f44352582e4f42e2c2c2898363cc3a76403d + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/string@npm:^0.0.x": + version: 0.0.14 + resolution: "@stdlib/string@npm:0.0.14" + dependencies: + "@stdlib/assert": ^0.0.x + "@stdlib/cli": ^0.0.x + "@stdlib/constants": ^0.0.x + "@stdlib/fs": ^0.0.x + "@stdlib/math": ^0.0.x + "@stdlib/nlp": ^0.0.x + "@stdlib/process": ^0.0.x + "@stdlib/regexp": ^0.0.x + "@stdlib/streams": ^0.0.x + "@stdlib/types": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: aaaaaddf381cccc67f15dbab76f43ce81cb71a4f5595bfa06ef915b6747458deca3c25c60ff3c002c0c36482687d92a150f364069559dfea915f63a040d5f603 + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/symbol@npm:^0.0.x": + version: 0.0.12 + resolution: "@stdlib/symbol@npm:0.0.12" + dependencies: + "@stdlib/assert": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: 2263341ce0296de2063d26038902bd63bf1d7b820307402fdf38c3b248bd026f17d96bccdc3189fd9fcc9c83a778eaab797dc11805bd66203b8ac9c6934f6588 + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard -"@sinonjs/commons@npm:^3.0.0": - version: 3.0.1 - resolution: "@sinonjs/commons@npm:3.0.1" +"@stdlib/time@npm:^0.0.x": + version: 0.0.14 + resolution: "@stdlib/time@npm:0.0.14" dependencies: - type-detect: "npm:4.0.8" - checksum: a7c3e7cc612352f4004873747d9d8b2d4d90b13a6d483f685598c945a70e734e255f1ca5dc49702515533c403b32725defff148177453b3f3915bcb60e9d4601 + "@stdlib/assert": ^0.0.x + "@stdlib/cli": ^0.0.x + "@stdlib/constants": ^0.0.x + "@stdlib/fs": ^0.0.x + "@stdlib/math": ^0.0.x + "@stdlib/string": ^0.0.x + "@stdlib/utils": ^0.0.x + checksum: 6e8a1b985a09936ab09c98d44bf1b2c79e08995c3c73401494bc1f6f708747ef136d769af4809a8af92a9ceb3d390db6c4c4e01608cd8d794a86c4b57e343eb1 + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard -"@sinonjs/fake-timers@npm:^10.0.2": - version: 10.3.0 - resolution: "@sinonjs/fake-timers@npm:10.3.0" - dependencies: - "@sinonjs/commons": "npm:^3.0.0" - checksum: 614d30cb4d5201550c940945d44c9e0b6d64a888ff2cd5b357f95ad6721070d6b8839cd10e15b76bf5e14af0bcc1d8f9ec00d49a46318f1f669a4bec1d7f3148 +"@stdlib/types@npm:^0.0.x": + version: 0.0.14 + resolution: "@stdlib/types@npm:0.0.14" + checksum: 5680a655ddb3ad730f5c7eb2363a43e089f3e6a1b85b12546cab49f7749bb3baf293bd50fbfe55486f233f4227f1020b65eb461b754b94fb4a4bc2799647ec22 + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + languageName: node + linkType: hard + +"@stdlib/utils@npm:^0.0.x": + version: 0.0.12 + resolution: "@stdlib/utils@npm:0.0.12" + dependencies: + "@stdlib/array": ^0.0.x + "@stdlib/assert": ^0.0.x + "@stdlib/blas": ^0.0.x + "@stdlib/buffer": ^0.0.x + "@stdlib/cli": ^0.0.x + "@stdlib/constants": ^0.0.x + "@stdlib/fs": ^0.0.x + "@stdlib/math": ^0.0.x + "@stdlib/os": ^0.0.x + "@stdlib/process": ^0.0.x + "@stdlib/random": ^0.0.x + "@stdlib/regexp": ^0.0.x + "@stdlib/streams": ^0.0.x + "@stdlib/string": ^0.0.x + "@stdlib/symbol": ^0.0.x + "@stdlib/time": ^0.0.x + "@stdlib/types": ^0.0.x + debug: ^2.6.9 + checksum: e0c3671c5f62c11bb3abd721f2958c41641b00a75d449bd25fbb62bcb8689cfe9c1f600c0688e7b6819ae870d6e5974d0fc7b2ec86081c45d9194b316b2a2ec2 + conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard @@ -2276,13 +3885,20 @@ __metadata: languageName: node linkType: hard -"@types/estree@npm:*, @types/estree@npm:^1.0.5": +"@types/estree@npm:*, @types/estree@npm:^1.0.0, @types/estree@npm:^1.0.5": version: 1.0.5 resolution: "@types/estree@npm:1.0.5" checksum: dd8b5bed28e6213b7acd0fb665a84e693554d850b0df423ac8076cc3ad5823a6bc26b0251d080bdc545af83179ede51dd3f6fa78cad2c46ed1f29624ddf3e41a languageName: node linkType: hard +"@types/geojson@npm:7946.0.4": + version: 7946.0.4 + resolution: "@types/geojson@npm:7946.0.4" + checksum: 541aea46540c918b9fe21ab73f497fe17b1eaf4d0d3baeb5f5614029b7f488c37f63843b644c024a8178dc2fb66d3d6623c25d9cf61d7b553aa19c8dc7f99047 + languageName: node + linkType: hard + "@types/graceful-fs@npm:^4.1.3": version: 4.1.9 resolution: "@types/graceful-fs@npm:4.1.9" @@ -2359,6 +3975,23 @@ __metadata: languageName: node linkType: hard +"@types/prop-types@npm:*": + version: 15.7.12 + resolution: "@types/prop-types@npm:15.7.12" + checksum: ac16cc3d0a84431ffa5cfdf89579ad1e2269549f32ce0c769321fdd078f84db4fbe1b461ed5a1a496caf09e637c0e367d600c541435716a55b1d9713f5035dfe + languageName: node + linkType: hard + +"@types/react@npm:^18.0.26": + version: 18.3.3 + resolution: "@types/react@npm:18.3.3" + dependencies: + "@types/prop-types": "*" + csstype: ^3.0.2 + checksum: c63d6a78163244e2022b01ef79b0baec4fe4da3475dc4a90bb8accefad35ef0c43560fd0312e5974f92a0f1108aa4d669ac72d73d66396aa060ea03b5d2e3873 + languageName: node + linkType: hard + "@types/semver@npm:^7.5.0": version: 7.5.8 resolution: "@types/semver@npm:7.5.8" @@ -2558,6 +4191,13 @@ __metadata: languageName: node linkType: hard +"@vscode/debugprotocol@npm:^1.51.0": + version: 1.65.0 + resolution: "@vscode/debugprotocol@npm:1.65.0" + checksum: 3ea504d01c67cd6a0c56fa3357f61f2dbaa426445443dba8b860292232e62e5bff7111e68e4cb844cedd564db1617e08847477a19527becd9f2608199eae4118 + languageName: node + linkType: hard + "@webassemblyjs/ast@npm:1.12.1, @webassemblyjs/ast@npm:^1.12.1": version: 1.12.1 resolution: "@webassemblyjs/ast@npm:1.12.1" @@ -3438,6 +5078,20 @@ __metadata: languageName: node linkType: hard +"commander@npm:2, commander@npm:^2.20.0": + version: 2.20.3 + resolution: "commander@npm:2.20.3" + checksum: ab8c07884e42c3a8dbc5dd9592c606176c7eb5c1ca5ff274bcf907039b2c41de3626f684ea75ccf4d361ba004bbaff1f577d5384c155f3871e456bdf27becf9e + languageName: node + linkType: hard + +"commander@npm:7": + version: 7.2.0 + resolution: "commander@npm:7.2.0" + checksum: 53501cbeee61d5157546c0bef0fedb6cdfc763a882136284bed9a07225f09a14b82d2a84e7637edfd1a679fb35ed9502fd58ef1d091e6287f60d790147f68ddc + languageName: node + linkType: hard + "commander@npm:^10.0.1": version: 10.0.1 resolution: "commander@npm:10.0.1" @@ -3445,13 +5099,6 @@ __metadata: languageName: node linkType: hard -"commander@npm:^2.20.0": - version: 2.20.3 - resolution: "commander@npm:2.20.3" - checksum: ab8c07884e42c3a8dbc5dd9592c606176c7eb5c1ca5ff274bcf907039b2c41de3626f684ea75ccf4d361ba004bbaff1f577d5384c155f3871e456bdf27becf9e - languageName: node - linkType: hard - "commander@npm:^9.4.1": version: 9.5.0 resolution: "commander@npm:9.5.0" @@ -3505,6 +5152,13 @@ __metadata: languageName: node linkType: hard +"core-util-is@npm:~1.0.0": + version: 1.0.3 + resolution: "core-util-is@npm:1.0.3" + checksum: 9de8597363a8e9b9952491ebe18167e3b36e7707569eed0ebf14f8bba773611376466ae34575bca8cfe3c767890c859c74056084738f09d4e4a6f902b2ad7d99 + languageName: node + linkType: hard + "create-jest@npm:^29.7.0": version: 29.7.0 resolution: "create-jest@npm:29.7.0" @@ -3522,6 +5176,13 @@ __metadata: languageName: node linkType: hard +"crelt@npm:^1.0.5": + version: 1.0.6 + resolution: "crelt@npm:1.0.6" + checksum: dad842093371ad702afbc0531bfca2b0a8dd920b23a42f26e66dabbed9aad9acd5b9030496359545ef3937c3aced0fd4ac39f7a2d280a23ddf9eb7fdcb94a69f + languageName: node + linkType: hard + "cross-spawn@npm:^6.0.5": version: 6.0.5 resolution: "cross-spawn@npm:6.0.5" @@ -3603,6 +5264,204 @@ __metadata: languageName: node linkType: hard +"csstype@npm:3.0.10": + version: 3.0.10 + resolution: "csstype@npm:3.0.10" + checksum: 20a8fa324f2b33ddf94aa7507d1b6ab3daa6f3cc308888dc50126585d7952f2471de69b2dbe0635d1fdc31223fef8e070842691877e725caf456e2378685a631 + languageName: node + linkType: hard + +"csstype@npm:^3.0.2": + version: 3.1.3 + resolution: "csstype@npm:3.1.3" + checksum: 8db785cc92d259102725b3c694ec0c823f5619a84741b5c7991b8ad135dfaa66093038a1cc63e03361a6cd28d122be48f2106ae72334e067dd619a51f49eddf7 + languageName: node + linkType: hard + +"d3-array@npm:1 - 3, d3-array@npm:2 - 3, d3-array@npm:2.10.0 - 3, d3-array@npm:2.5.0 - 3, d3-array@npm:3.2.4, d3-array@npm:^3.2.2": + version: 3.2.4 + resolution: "d3-array@npm:3.2.4" + dependencies: + internmap: 1 - 2 + checksum: a5976a6d6205f69208478bb44920dd7ce3e788c9dceb86b304dbe401a4bfb42ecc8b04c20facde486e9adcb488b5d1800d49393a3f81a23902b68158e12cddd0 + languageName: node + linkType: hard + +"d3-color@npm:1 - 3, d3-color@npm:^3.1.0": + version: 3.1.0 + resolution: "d3-color@npm:3.1.0" + checksum: 4931fbfda5d7c4b5cfa283a13c91a954f86e3b69d75ce588d06cde6c3628cebfc3af2069ccf225e982e8987c612aa7948b3932163ce15eb3c11cd7c003f3ee3b + languageName: node + linkType: hard + +"d3-delaunay@npm:^6.0.2": + version: 6.0.4 + resolution: "d3-delaunay@npm:6.0.4" + dependencies: + delaunator: 5 + checksum: ce6d267d5ef21a8aeadfe4606329fc80a22ab6e7748d47bc220bcc396ee8be84b77a5473033954c5ac4aa522d265ddc45d4165d30fe4787dd60a15ea66b9bbb4 + languageName: node + linkType: hard + +"d3-dispatch@npm:1 - 3": + version: 3.0.1 + resolution: "d3-dispatch@npm:3.0.1" + checksum: fdfd4a230f46463e28e5b22a45dd76d03be9345b605e1b5dc7d18bd7ebf504e6c00ae123fd6d03e23d9e2711e01f0e14ea89cd0632545b9f0c00b924ba4be223 + languageName: node + linkType: hard + +"d3-dsv@npm:^3.0.1": + version: 3.0.1 + resolution: "d3-dsv@npm:3.0.1" + dependencies: + commander: 7 + iconv-lite: 0.6 + rw: 1 + bin: + csv2json: bin/dsv2json.js + csv2tsv: bin/dsv2dsv.js + dsv2dsv: bin/dsv2dsv.js + dsv2json: bin/dsv2json.js + json2csv: bin/json2dsv.js + json2dsv: bin/json2dsv.js + json2tsv: bin/json2dsv.js + tsv2csv: bin/dsv2dsv.js + tsv2json: bin/dsv2json.js + checksum: 5fc0723647269d5dccd181d74f2265920ab368a2868b0b4f55ffa2fecdfb7814390ea28622cd61ee5d9594ab262879509059544e9f815c54fe76fbfb4ffa4c8a + languageName: node + linkType: hard + +"d3-force@npm:^3.0.0": + version: 3.0.0 + resolution: "d3-force@npm:3.0.0" + dependencies: + d3-dispatch: 1 - 3 + d3-quadtree: 1 - 3 + d3-timer: 1 - 3 + checksum: 6c7e96438cab62fa32aeadb0ade3297b62b51f81b1b38b0a60a5ec9fd627d74090c1189654d92df2250775f31b06812342f089f1d5947de9960a635ee3581def + languageName: node + linkType: hard + +"d3-format@npm:1 - 3, d3-format@npm:^3.1.0": + version: 3.1.0 + resolution: "d3-format@npm:3.1.0" + checksum: f345ec3b8ad3cab19bff5dead395bd9f5590628eb97a389b1dd89f0b204c7c4fc1d9520f13231c2c7cf14b7c9a8cf10f8ef15bde2befbab41454a569bd706ca2 + languageName: node + linkType: hard + +"d3-geo-projection@npm:^4.0.0": + version: 4.0.0 + resolution: "d3-geo-projection@npm:4.0.0" + dependencies: + commander: 7 + d3-array: 1 - 3 + d3-geo: 1.12.0 - 3 + bin: + geo2svg: bin/geo2svg.js + geograticule: bin/geograticule.js + geoproject: bin/geoproject.js + geoquantize: bin/geoquantize.js + geostitch: bin/geostitch.js + checksum: 631422b10dd78d1047ba5a3b073148bea27721060bd7087a5fa6c053ca80445d26432e505e0e3acbd6e0d76cf577c61bf9a5db70dabbc9310c493de1f7ff736d + languageName: node + linkType: hard + +"d3-geo@npm:1.12.0 - 3, d3-geo@npm:^3.1.0": + version: 3.1.1 + resolution: "d3-geo@npm:3.1.1" + dependencies: + d3-array: 2.5.0 - 3 + checksum: 3cc4bb50af5d2d4858d2df1729a1777b7fd361854079d9faab1166186c988d2cba0d11911da0c4598d5e22fae91d79113ed262a9f98cabdbc6dbf7c30e5c0363 + languageName: node + linkType: hard + +"d3-hierarchy@npm:^3.1.2": + version: 3.1.2 + resolution: "d3-hierarchy@npm:3.1.2" + checksum: 0fd946a8c5fd4686d43d3e11bbfc2037a145fda29d2261ccd0e36f70b66af6d7638e2c0c7112124d63fc3d3127197a00a6aecf676bd5bd392a94d7235a214263 + languageName: node + linkType: hard + +"d3-interpolate@npm:1 - 3, d3-interpolate@npm:1.2.0 - 3, d3-interpolate@npm:^3.0.1": + version: 3.0.1 + resolution: "d3-interpolate@npm:3.0.1" + dependencies: + d3-color: 1 - 3 + checksum: a42ba314e295e95e5365eff0f604834e67e4a3b3c7102458781c477bd67e9b24b6bb9d8e41ff5521050a3f2c7c0c4bbbb6e187fd586daa3980943095b267e78b + languageName: node + linkType: hard + +"d3-path@npm:^3.1.0": + version: 3.1.0 + resolution: "d3-path@npm:3.1.0" + checksum: 2306f1bd9191e1eac895ec13e3064f732a85f243d6e627d242a313f9777756838a2215ea11562f0c7630c7c3b16a19ec1fe0948b1c82f3317fac55882f6ee5d8 + languageName: node + linkType: hard + +"d3-quadtree@npm:1 - 3": + version: 3.0.1 + resolution: "d3-quadtree@npm:3.0.1" + checksum: 5469d462763811475f34a7294d984f3eb100515b0585ca5b249656f6b1a6e99b20056a2d2e463cc9944b888896d2b1d07859c50f9c0cf23438df9cd2e3146066 + languageName: node + linkType: hard + +"d3-scale-chromatic@npm:^3.1.0": + version: 3.1.0 + resolution: "d3-scale-chromatic@npm:3.1.0" + dependencies: + d3-color: 1 - 3 + d3-interpolate: 1 - 3 + checksum: ab6324bd8e1f708e731e02ab44e09741efda2b174cea1d8ca21e4a87546295e99856bc44e2fd3890f228849c96bccfbcf922328f95be6a7df117453eb5cf22c9 + languageName: node + linkType: hard + +"d3-scale@npm:^4.0.2": + version: 4.0.2 + resolution: "d3-scale@npm:4.0.2" + dependencies: + d3-array: 2.10.0 - 3 + d3-format: 1 - 3 + d3-interpolate: 1.2.0 - 3 + d3-time: 2.1.1 - 3 + d3-time-format: 2 - 4 + checksum: a9c770d283162c3bd11477c3d9d485d07f8db2071665f1a4ad23eec3e515e2cefbd369059ec677c9ac849877d1a765494e90e92051d4f21111aa56791c98729e + languageName: node + linkType: hard + +"d3-shape@npm:^3.2.0": + version: 3.2.0 + resolution: "d3-shape@npm:3.2.0" + dependencies: + d3-path: ^3.1.0 + checksum: de2af5fc9a93036a7b68581ca0bfc4aca2d5a328aa7ba7064c11aedd44d24f310c20c40157cb654359d4c15c3ef369f95ee53d71221017276e34172c7b719cfa + languageName: node + linkType: hard + +"d3-time-format@npm:2 - 4, d3-time-format@npm:^4.1.0": + version: 4.1.0 + resolution: "d3-time-format@npm:4.1.0" + dependencies: + d3-time: 1 - 3 + checksum: 7342bce28355378152bbd4db4e275405439cabba082d9cd01946d40581140481c8328456d91740b0fe513c51ec4a467f4471ffa390c7e0e30ea30e9ec98fcdf4 + languageName: node + linkType: hard + +"d3-time@npm:1 - 3, d3-time@npm:2.1.1 - 3, d3-time@npm:^3.1.0": + version: 3.1.0 + resolution: "d3-time@npm:3.1.0" + dependencies: + d3-array: 2 - 3 + checksum: 613b435352a78d9f31b7f68540788186d8c331b63feca60ad21c88e9db1989fe888f97f242322ebd6365e45ec3fb206a4324cd4ca0dfffa1d9b5feb856ba00a7 + languageName: node + linkType: hard + +"d3-timer@npm:1 - 3, d3-timer@npm:^3.0.1": + version: 3.0.1 + resolution: "d3-timer@npm:3.0.1" + checksum: 1cfddf86d7bca22f73f2c427f52dfa35c49f50d64e187eb788dcad6e927625c636aa18ae4edd44d084eb9d1f81d8ca4ec305dae7f733c15846a824575b789d73 + languageName: node + linkType: hard + "data-urls@npm:^2.0.0": version: 2.0.0 resolution: "data-urls@npm:2.0.0" @@ -3659,6 +5518,15 @@ __metadata: languageName: node linkType: hard +"debug@npm:^2.6.9": + version: 2.6.9 + resolution: "debug@npm:2.6.9" + dependencies: + ms: 2.0.0 + checksum: d2f51589ca66df60bf36e1fa6e4386b318c3f1e06772280eea5b1ae9fd3d05e9c2b7fd8a7d862457d00853c75b00451aa2d7459b924629ee385287a650f58fe6 + languageName: node + linkType: hard + "dedent@npm:^1.0.0": version: 1.5.3 resolution: "dedent@npm:1.5.3" @@ -3707,6 +5575,15 @@ __metadata: languageName: node linkType: hard +"delaunator@npm:5": + version: 5.0.1 + resolution: "delaunator@npm:5.0.1" + dependencies: + robust-predicates: ^3.0.2 + checksum: 69ee43ec649b4a13b7f33c8a027fb3e8dfcb09266af324286118da757e04d3d39df619b905dca41421405c311317ccf632ecfa93db44519bacec3303c57c5a0b + languageName: node + linkType: hard + "detect-newline@npm:^3.0.0": version: 3.1.0 resolution: "detect-newline@npm:3.1.0" @@ -4222,6 +6099,13 @@ __metadata: languageName: node linkType: hard +"exenv-es6@npm:^1.1.1": + version: 1.1.1 + resolution: "exenv-es6@npm:1.1.1" + checksum: 7f2aa12025e6f06c48dc286f380cf3183bb19c6017b36d91695034a3e5124a7235c4f8ff24ca2eb88ae801322f0f99605cedfcfd996a5fcbba7669320e2a448e + languageName: node + linkType: hard + "exit@npm:^0.1.2": version: 0.1.2 resolution: "exit@npm:0.1.2" @@ -4406,6 +6290,13 @@ __metadata: languageName: node linkType: hard +"free-style@npm:3.1.0": + version: 3.1.0 + resolution: "free-style@npm:3.1.0" + checksum: 949258ae315deda48cac93ecd5f9a80f36e8a027e19ce2103598dc8d5ab60e963bbad5444b2a4990ddb746798dd188896f430285cf484afbf2141f7d75a191d8 + languageName: node + linkType: hard + "fs-extra@npm:^10.1.0": version: 10.1.0 resolution: "fs-extra@npm:10.1.0" @@ -4453,6 +6344,16 @@ __metadata: languageName: node linkType: hard +"fsevents@npm:2.3.2": + version: 2.3.2 + resolution: "fsevents@npm:2.3.2" + dependencies: + node-gyp: latest + checksum: 97ade64e75091afee5265e6956cb72ba34db7819b4c3e94c431d4be2b19b8bb7a2d4116da417950c3425f17c8fe693d25e20212cac583ac1521ad066b77ae31f + conditions: os=darwin + languageName: node + linkType: hard + "fsevents@npm:^2.3.2": version: 2.3.3 resolution: "fsevents@npm:2.3.3" @@ -4463,6 +6364,15 @@ __metadata: languageName: node linkType: hard +"fsevents@patch:fsevents@2.3.2#~builtin": + version: 2.3.2 + resolution: "fsevents@patch:fsevents@npm%3A2.3.2#~builtin::version=2.3.2&hash=df0bf1" + dependencies: + node-gyp: latest + conditions: os=darwin + languageName: node + linkType: hard + "fsevents@patch:fsevents@npm%3A^2.3.2#~builtin": version: 2.3.3 resolution: "fsevents@patch:fsevents@npm%3A2.3.3#~builtin::version=2.3.3&hash=df0bf1" @@ -4826,7 +6736,7 @@ __metadata: languageName: node linkType: hard -"iconv-lite@npm:^0.6.2, iconv-lite@npm:^0.6.3": +"iconv-lite@npm:0.6, iconv-lite@npm:^0.6.2, iconv-lite@npm:^0.6.3": version: 0.6.3 resolution: "iconv-lite@npm:0.6.3" dependencies: @@ -4913,13 +6823,20 @@ __metadata: languageName: node linkType: hard -"inherits@npm:2": +"inherits@npm:2, inherits@npm:~2.0.3": version: 2.0.4 resolution: "inherits@npm:2.0.4" checksum: 4a48a733847879d6cf6691860a6b1e3f0f4754176e4d71494c41f3475553768b10f84b5ce1d40fbd0e34e6bfbb864ee35858ad4dd2cf31e02fc4a154b724d7f1 languageName: node linkType: hard +"inherits@npm:2.0.3": + version: 2.0.3 + resolution: "inherits@npm:2.0.3" + checksum: 78cb8d7d850d20a5e9a7f3620db31483aa00ad5f722ce03a55b110e5a723539b3716a3b463e2b96ce3fe286f33afc7c131fa2f91407528ba80cea98a7545d4c0 + languageName: node + linkType: hard + "internal-slot@npm:^1.0.7": version: 1.0.7 resolution: "internal-slot@npm:1.0.7" @@ -4931,6 +6848,13 @@ __metadata: languageName: node linkType: hard +"internmap@npm:1 - 2": + version: 2.0.3 + resolution: "internmap@npm:2.0.3" + checksum: 7ca41ec6aba8f0072fc32fa8a023450a9f44503e2d8e403583c55714b25efd6390c38a87161ec456bf42d7bc83aab62eb28f5aef34876b1ac4e60693d5e1d241 + languageName: node + linkType: hard + "interpret@npm:^3.1.1": version: 3.1.1 resolution: "interpret@npm:3.1.1" @@ -4957,6 +6881,7 @@ __metadata: "@jupyter-widgets/base": ^1.1.10 || ^2 || ^3 || ^4 || ^5 || ^6 "@jupyter-widgets/base-manager": ^1.0.7 "@jupyterlab/builder": ^4.0.11 + "@jupyterlab/galata": ^5.2.2 "@lumino/application": ^2.3.0 "@lumino/widgets": ^2.3.1 "@types/jest": ^29.5.11 @@ -5208,6 +7133,13 @@ __metadata: languageName: node linkType: hard +"isarray@npm:~1.0.0": + version: 1.0.0 + resolution: "isarray@npm:1.0.0" + checksum: f032df8e02dce8ec565cf2eb605ea939bdccea528dbcf565cdf92bfa2da9110461159d86a537388ef1acef8815a330642d7885b29010e8f7eac967c9993b65ab + languageName: node + linkType: hard + "isexe@npm:^2.0.0": version: 2.0.0 resolution: "isexe@npm:2.0.0" @@ -5771,7 +7703,7 @@ __metadata: languageName: node linkType: hard -"js-tokens@npm:^4.0.0": +"js-tokens@npm:^3.0.0 || ^4.0.0, js-tokens@npm:^4.0.0": version: 4.0.0 resolution: "js-tokens@npm:4.0.0" checksum: 8a95213a5a77deb6cbe94d86340e8d9ace2b93bc367790b260101d2f36a2eaf4e4e22d9fa9cf459b38af3a32fb4190e638024cf82ec95ef708680e405ea7cc78 @@ -5888,6 +7820,13 @@ __metadata: languageName: node linkType: hard +"json-stringify-pretty-compact@npm:~3.0.0": + version: 3.0.0 + resolution: "json-stringify-pretty-compact@npm:3.0.0" + checksum: 01ab5c5c8260299414868d96db97f53aef93c290fe469edd9a1363818e795006e01c952fa2fd7b47cbbab506d5768998eccc25e1da4fa2ccfebd1788c6098791 + languageName: node + linkType: hard + "json5@npm:^2.1.2, json5@npm:^2.2.3": version: 2.2.3 resolution: "json5@npm:2.2.3" @@ -6059,6 +7998,13 @@ __metadata: languageName: node linkType: hard +"lodash.escape@npm:^4.0.1": + version: 4.0.1 + resolution: "lodash.escape@npm:4.0.1" + checksum: fcb54f457497256964d619d5cccbd80a961916fca60df3fe0fa3e7f052715c2944c0ed5aefb4f9e047d127d44aa2d55555f3350cb42c6549e9e293fb30b41e7f + languageName: node + linkType: hard + "lodash.memoize@npm:4.x": version: 4.1.2 resolution: "lodash.memoize@npm:4.1.2" @@ -6073,6 +8019,13 @@ __metadata: languageName: node linkType: hard +"lodash.mergewith@npm:^4.6.1": + version: 4.6.2 + resolution: "lodash.mergewith@npm:4.6.2" + checksum: a6db2a9339752411f21b956908c404ec1e088e783a65c8b29e30ae5b3b6384f82517662d6f425cc97c2070b546cc2c7daaa8d33f78db7b6e9be06cd834abdeb8 + languageName: node + linkType: hard + "lodash@npm:^4.17.20, lodash@npm:^4.17.21, lodash@npm:^4.17.4, lodash@npm:^4.7.0": version: 4.17.21 resolution: "lodash@npm:4.17.21" @@ -6080,6 +8033,17 @@ __metadata: languageName: node linkType: hard +"loose-envify@npm:^1.1.0, loose-envify@npm:^1.4.0": + version: 1.4.0 + resolution: "loose-envify@npm:1.4.0" + dependencies: + js-tokens: ^3.0.0 || ^4.0.0 + bin: + loose-envify: cli.js + checksum: 6517e24e0cad87ec9888f500c5b5947032cdfe6ef65e1c1936a0c48a524b81e65542c9c3edc91c97d5bddc806ee2a985dbc79be89215d613b1de5db6d1cfe6f4 + languageName: node + linkType: hard + "lru-cache@npm:^10.0.1, lru-cache@npm:^10.2.0": version: 10.2.2 resolution: "lru-cache@npm:10.2.2" @@ -6141,6 +8105,15 @@ __metadata: languageName: node linkType: hard +"markdown-to-jsx@npm:^7.4.1": + version: 7.4.7 + resolution: "markdown-to-jsx@npm:7.4.7" + peerDependencies: + react: ">= 0.14.0" + checksum: bb8a696c8a95dd67ac1eb44255f31cf17e60b6c2ff03bfcd51b5e28da17856c57d7a16da59fda7f3a4eedb01d7e92eeef57a10ff3abd5431e5c80059d4565016 + languageName: node + linkType: hard + "memorystream@npm:^0.3.1": version: 0.3.1 resolution: "memorystream@npm:0.3.1" @@ -6243,7 +8216,7 @@ __metadata: languageName: node linkType: hard -"minimist@npm:~1.2.0": +"minimist@npm:^1.2.0, minimist@npm:~1.2.0": version: 1.2.8 resolution: "minimist@npm:1.2.8" checksum: 75a6d645fb122dad29c06a7597bddea977258957ed88d7a6df59b5cd3fe4a527e253e9bbf2e783e4b73657f9098b96a5fe96ab8a113655d4109108577ecf85b0 @@ -6352,6 +8325,13 @@ __metadata: languageName: node linkType: hard +"ms@npm:2.0.0": + version: 2.0.0 + resolution: "ms@npm:2.0.0" + checksum: 0e6a22b8b746d2e0b65a430519934fefd41b6db0682e3477c10f60c76e947c4c0ad06f63ffdf1d78d335f83edee8c0aa928aa66a36c7cd95b69b26f468d527f4 + languageName: node + linkType: hard + "ms@npm:2.1.2": version: 2.1.2 resolution: "ms@npm:2.1.2" @@ -6396,6 +8376,20 @@ __metadata: languageName: node linkType: hard +"node-fetch@npm:^2.6.7": + version: 2.7.0 + resolution: "node-fetch@npm:2.7.0" + dependencies: + whatwg-url: ^5.0.0 + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + checksum: d76d2f5edb451a3f05b15115ec89fc6be39de37c6089f1b6368df03b91e1633fd379a7e01b7ab05089a25034b2023d959b47e59759cb38d88341b2459e89d6e5 + languageName: node + linkType: hard + "node-gyp@npm:latest": version: 10.1.0 resolution: "node-gyp@npm:10.1.0" @@ -6490,6 +8484,13 @@ __metadata: languageName: node linkType: hard +"object-assign@npm:^4.1.1": + version: 4.1.1 + resolution: "object-assign@npm:4.1.1" + checksum: fcc6e4ea8c7fe48abfbb552578b1c53e0d194086e2e6bbbf59e0a536381a292f39943c6e9628af05b5528aa5e3318bb30d6b2e53cadaf5b8fe9e12c4b69af23f + languageName: node + linkType: hard + "object-inspect@npm:^1.13.1": version: 1.13.1 resolution: "object-inspect@npm:1.13.1" @@ -6734,6 +8735,16 @@ __metadata: languageName: node linkType: hard +"path@npm:~0.12.7": + version: 0.12.7 + resolution: "path@npm:0.12.7" + dependencies: + process: ^0.11.1 + util: ^0.10.3 + checksum: 5dedb71e78fc008fcba797defc0b4e1cf06c1f18e0a631e03ba5bb505136f587ff017afc14f9a3d481cbe77aeedff7dc0c1d2ce4d820c1ebf3c4281ca49423a1 + languageName: node + linkType: hard + "pbf@npm:3.2.1": version: 3.2.1 resolution: "pbf@npm:3.2.1" @@ -6792,6 +8803,30 @@ __metadata: languageName: node linkType: hard +"playwright-core@npm:1.44.1": + version: 1.44.1 + resolution: "playwright-core@npm:1.44.1" + bin: + playwright-core: cli.js + checksum: ebc6fa0ff77792fe52648fda06cc4474d4e9746db6dc5750d262b7fe2caf9f9e2327a71f1fb365e862213403a9daf95361c5040a9b0fd462928d7eb4fdc760e1 + languageName: node + linkType: hard + +"playwright@npm:1.44.1": + version: 1.44.1 + resolution: "playwright@npm:1.44.1" + dependencies: + fsevents: 2.3.2 + playwright-core: 1.44.1 + dependenciesMeta: + fsevents: + optional: true + bin: + playwright: cli.js + checksum: c2e8ff0a855e4a9e665ae5ffa0ff90423289546157be55e83f78916d17075c5910a7244773739c2a973da884a4ff0b3cf9b6e6b543de112e43b12169a9208e86 + languageName: node + linkType: hard + "possible-typed-array-names@npm:^1.0.0": version: 1.0.0 resolution: "possible-typed-array-names@npm:1.0.0" @@ -6921,7 +8956,14 @@ __metadata: languageName: node linkType: hard -"process@npm:^0.11.10": +"process-nextick-args@npm:~2.0.0": + version: 2.0.1 + resolution: "process-nextick-args@npm:2.0.1" + checksum: 1d38588e520dab7cea67cbbe2efdd86a10cc7a074c09657635e34f035277b59fbb57d09d8638346bf7090f8e8ebc070c96fa5fd183b777fff4f5edff5e9466cf + languageName: node + linkType: hard + +"process@npm:^0.11.1, process@npm:^0.11.10": version: 0.11.10 resolution: "process@npm:0.11.10" checksum: bfcce49814f7d172a6e6a14d5fa3ac92cc3d0c3b9feb1279774708a719e19acd673995226351a082a9ae99978254e320ccda4240ddc474ba31a76c79491ca7c3 @@ -6948,6 +8990,17 @@ __metadata: languageName: node linkType: hard +"prop-types@npm:^15.8.1": + version: 15.8.1 + resolution: "prop-types@npm:15.8.1" + dependencies: + loose-envify: ^1.4.0 + object-assign: ^4.1.1 + react-is: ^16.13.1 + checksum: c056d3f1c057cb7ff8344c645450e14f088a915d078dcda795041765047fa080d38e5d626560ccaac94a4e16e3aa15f3557c1a9a8d1174530955e992c675e459 + languageName: node + linkType: hard + "protocol-buffers-schema@npm:^3.3.1": version: 3.6.0 resolution: "protocol-buffers-schema@npm:3.6.0" @@ -7015,6 +9068,25 @@ __metadata: languageName: node linkType: hard +"react-dom@npm:^18.2.0": + version: 18.3.1 + resolution: "react-dom@npm:18.3.1" + dependencies: + loose-envify: ^1.1.0 + scheduler: ^0.23.2 + peerDependencies: + react: ^18.3.1 + checksum: 298954ecd8f78288dcaece05e88b570014d8f6dce5db6f66e6ee91448debeb59dcd31561dddb354eee47e6c1bb234669459060deb238ed0213497146e555a0b9 + languageName: node + linkType: hard + +"react-is@npm:^16.13.1": + version: 16.13.1 + resolution: "react-is@npm:16.13.1" + checksum: f7a19ac3496de32ca9ae12aa030f00f14a3d45374f1ceca0af707c831b2a6098ef0d6bdae51bd437b0a306d7f01d4677fcc8de7c0d331eb47ad0f46130e53c5f + languageName: node + linkType: hard + "react-is@npm:^18.0.0, react-is@npm:^18.2.0": version: 18.3.1 resolution: "react-is@npm:18.3.1" @@ -7022,6 +9094,15 @@ __metadata: languageName: node linkType: hard +"react@npm:>=17.0.0 <19.0.0, react@npm:^18.2.0": + version: 18.3.1 + resolution: "react@npm:18.3.1" + dependencies: + loose-envify: ^1.1.0 + checksum: a27bcfa8ff7c15a1e50244ad0d0c1cb2ad4375eeffefd266a64889beea6f6b64c4966c9b37d14ee32d6c9fcd5aa6ba183b6988167ab4d127d13e7cb5b386a376 + languageName: node + linkType: hard + "read-pkg@npm:^3.0.0": version: 3.0.0 resolution: "read-pkg@npm:3.0.0" @@ -7033,6 +9114,21 @@ __metadata: languageName: node linkType: hard +"readable-stream@npm:^2.1.4": + version: 2.3.8 + resolution: "readable-stream@npm:2.3.8" + dependencies: + core-util-is: ~1.0.0 + inherits: ~2.0.3 + isarray: ~1.0.0 + process-nextick-args: ~2.0.0 + safe-buffer: ~5.1.1 + string_decoder: ~1.1.1 + util-deprecate: ~1.0.1 + checksum: 65645467038704f0c8aaf026a72fbb588a9e2ef7a75cd57a01702ee9db1c4a1e4b03aaad36861a6a0926546a74d174149c8c207527963e0c2d3eee2f37678a42 + languageName: node + linkType: hard + "rechoir@npm:^0.8.0": version: 0.8.0 resolution: "rechoir@npm:0.8.0" @@ -7074,6 +9170,24 @@ __metadata: languageName: node linkType: hard +"regexp-match-indices@npm:^1.0.2": + version: 1.0.2 + resolution: "regexp-match-indices@npm:1.0.2" + dependencies: + regexp-tree: ^0.1.11 + checksum: 8cc779f6cf8f404ead828d09970a7d4bd66bd78d43ab9eb2b5e65f2ef2ba1ed53536f5b5fa839fb90b350365fb44b6a851c7f16289afc3f37789c113ab2a7916 + languageName: node + linkType: hard + +"regexp-tree@npm:^0.1.11": + version: 0.1.27 + resolution: "regexp-tree@npm:0.1.27" + bin: + regexp-tree: bin/regexp-tree + checksum: 129aebb34dae22d6694ab2ac328be3f99105143737528ab072ef624d599afecbcfae1f5c96a166fa9e5f64fa1ecf30b411c4691e7924c3e11bbaf1712c260c54 + languageName: node + linkType: hard + "regexp.prototype.flags@npm:^1.5.2": version: 1.5.2 resolution: "regexp.prototype.flags@npm:1.5.2" @@ -7233,6 +9347,13 @@ __metadata: languageName: node linkType: hard +"robust-predicates@npm:^3.0.2": + version: 3.0.2 + resolution: "robust-predicates@npm:3.0.2" + checksum: 36854c1321548ceca96d36ad9d6e0a5a512986029ec6929ad6ed3ec1612c22cc8b46cc72d2c5674af42e8074a119d793f6f0ea3a5b51373e3ab926c64b172d7a + languageName: node + linkType: hard + "run-parallel@npm:^1.1.9": version: 1.2.0 resolution: "run-parallel@npm:1.2.0" @@ -7242,6 +9363,13 @@ __metadata: languageName: node linkType: hard +"rw@npm:1": + version: 1.3.3 + resolution: "rw@npm:1.3.3" + checksum: c20d82421f5a71c86a13f76121b751553a99cd4a70ea27db86f9b23f33db941f3f06019c30f60d50c356d0bd674c8e74764ac146ea55e217c091bde6fba82aa3 + languageName: node + linkType: hard + "safe-array-concat@npm:^1.1.2": version: 1.1.2 resolution: "safe-array-concat@npm:1.1.2" @@ -7261,6 +9389,13 @@ __metadata: languageName: node linkType: hard +"safe-buffer@npm:~5.1.0, safe-buffer@npm:~5.1.1": + version: 5.1.2 + resolution: "safe-buffer@npm:5.1.2" + checksum: f2f1f7943ca44a594893a852894055cf619c1fbcb611237fc39e461ae751187e7baf4dc391a72125e0ac4fb2d8c5c0b3c71529622e6a58f46b960211e704903c + languageName: node + linkType: hard + "safe-regex-test@npm:^1.0.3": version: 1.0.3 resolution: "safe-regex-test@npm:1.0.3" @@ -7293,6 +9428,29 @@ __metadata: languageName: node linkType: hard +"sanitize-html@npm:~2.12.1": + version: 2.12.1 + resolution: "sanitize-html@npm:2.12.1" + dependencies: + deepmerge: ^4.2.2 + escape-string-regexp: ^4.0.0 + htmlparser2: ^8.0.0 + is-plain-object: ^5.0.0 + parse-srcset: ^1.0.2 + postcss: ^8.3.11 + checksum: fb96ea7170d51b5af2607f5cfd84464c78fc6f47e339407f55783e781c6a0288a8d40bbf97ea6a8758924ba9b2d33dcc4846bb94caacacd90d7f2de10ed8541a + languageName: node + linkType: hard + +"scheduler@npm:^0.23.2": + version: 0.23.2 + resolution: "scheduler@npm:0.23.2" + dependencies: + loose-envify: ^1.1.0 + checksum: 3e82d1f419e240ef6219d794ff29c7ee415fbdc19e038f680a10c067108e06284f1847450a210b29bbaf97b9d8a97ced5f624c31c681248ac84c80d56ad5a2c4 + languageName: node + linkType: hard + "schema-utils@npm:^2.7.0": version: 2.7.1 resolution: "schema-utils@npm:2.7.1" @@ -7724,6 +9882,15 @@ __metadata: languageName: node linkType: hard +"string_decoder@npm:~1.1.1": + version: 1.1.1 + resolution: "string_decoder@npm:1.1.1" + dependencies: + safe-buffer: ~5.1.0 + checksum: 9ab7e56f9d60a28f2be697419917c50cac19f3e8e6c28ef26ed5f4852289fe0de5d6997d29becf59028556f2c62983790c1d9ba1e2a3cc401768ca12d5183a5b + languageName: node + linkType: hard + "strip-ansi-cjs@npm:strip-ansi@^6.0.1, strip-ansi@npm:^6.0.0, strip-ansi@npm:^6.0.1": version: 6.0.1 resolution: "strip-ansi@npm:6.0.1" @@ -7788,6 +9955,13 @@ __metadata: languageName: node linkType: hard +"style-mod@npm:^4.0.0, style-mod@npm:^4.1.0": + version: 4.1.2 + resolution: "style-mod@npm:4.1.2" + checksum: 7c5c3e82747f9bcf5f288d8d07f50848e4630fe5ff7bfe4d94cc87d6b6a2588227cbf21b4c792ac6406e5852293300a75e710714479a5c59a06af677f0825ef8 + languageName: node + linkType: hard + "supports-color@npm:^5.3.0": version: 5.5.0 resolution: "supports-color@npm:5.5.0" @@ -7832,6 +10006,23 @@ __metadata: languageName: node linkType: hard +"systeminformation@npm:^5.8.6": + version: 5.22.11 + resolution: "systeminformation@npm:5.22.11" + bin: + systeminformation: lib/cli.js + checksum: 5e924a87ecd5453225456191c5a9201d763a59e905a45a4e1d4e99b98b69fed25d33e756ad8f9fef1f513259778cbcfd4cbba48b208f7f9c87db9cb97d1eabe7 + conditions: (os=darwin | os=linux | os=win32 | os=freebsd | os=openbsd | os=netbsd | os=sunos | os=android) + languageName: node + linkType: hard + +"tabbable@npm:^5.2.0": + version: 5.3.3 + resolution: "tabbable@npm:5.3.3" + checksum: 1aa56e1bb617cc10616c407f4e756f0607f3e2d30f9803664d70b85db037ca27e75918ed1c71443f3dc902e21dc9f991ce4b52d63a538c9b69b3218d3babcd70 + languageName: node + linkType: hard + "tapable@npm:^2.1.1, tapable@npm:^2.2.0, tapable@npm:^2.2.1": version: 2.2.1 resolution: "tapable@npm:2.2.1" @@ -7930,6 +10121,19 @@ __metadata: languageName: node linkType: hard +"topojson-client@npm:^3.1.0": + version: 3.1.0 + resolution: "topojson-client@npm:3.1.0" + dependencies: + commander: 2 + bin: + topo2geo: bin/topo2geo + topomerge: bin/topomerge + topoquantize: bin/topoquantize + checksum: 8c029a4f18324ace0b8b55dd90edbd40c9e3c6de18bafbb5da37ca20ebf20e26fbd4420891acb3c2c264e214185f7557871f5651a9eee517028663be98d836de + languageName: node + linkType: hard + "tr46@npm:^2.1.0": version: 2.1.0 resolution: "tr46@npm:2.1.0" @@ -7939,6 +10143,13 @@ __metadata: languageName: node linkType: hard +"tr46@npm:~0.0.3": + version: 0.0.3 + resolution: "tr46@npm:0.0.3" + checksum: 726321c5eaf41b5002e17ffbd1fb7245999a073e8979085dacd47c4b4e8068ff5777142fc6726d6ca1fd2ff16921b48788b87225cbc57c72636f6efa8efbffe3 + languageName: node + linkType: hard + "ts-api-utils@npm:^1.0.1": version: 1.3.0 resolution: "ts-api-utils@npm:1.3.0" @@ -7997,6 +10208,13 @@ __metadata: languageName: node linkType: hard +"tslib@npm:^1.13.0": + version: 1.14.1 + resolution: "tslib@npm:1.14.1" + checksum: dbe628ef87f66691d5d2959b3e41b9ca0045c3ee3c7c7b906cc1e328b39f199bb1ad9e671c39025bd56122ac57dfbf7385a94843b1cc07c60a4db74795829acd + languageName: node + linkType: hard + "tslib@npm:^2.6.2": version: 2.6.2 resolution: "tslib@npm:2.6.2" @@ -8004,6 +10222,13 @@ __metadata: languageName: node linkType: hard +"tslib@npm:~2.6.3": + version: 2.6.3 + resolution: "tslib@npm:2.6.3" + checksum: 74fce0e100f1ebd95b8995fbbd0e6c91bdd8f4c35c00d4da62e285a3363aaa534de40a80db30ecfd388ed7c313c42d930ee0eaf108e8114214b180eec3dbe6f5 + languageName: node + linkType: hard + "type-check@npm:^0.4.0, type-check@npm:~0.4.0": version: 0.4.0 resolution: "type-check@npm:0.4.0" @@ -8106,6 +10331,16 @@ __metadata: languageName: node linkType: hard +"typestyle@npm:^2.0.4": + version: 2.4.0 + resolution: "typestyle@npm:2.4.0" + dependencies: + csstype: 3.0.10 + free-style: 3.1.0 + checksum: 8b4f02c24f67b594f98507b15a753dabd4db5eb0af007e1d310527c64030e11e9464b25b5a6bc65fb5eec9a4459a8336050121ecc29063ac87b8b47a6d698893 + languageName: node + linkType: hard + "unbox-primitive@npm:^1.0.2": version: 1.0.2 resolution: "unbox-primitive@npm:1.0.2" @@ -8221,13 +10456,22 @@ __metadata: languageName: node linkType: hard -"util-deprecate@npm:^1.0.2": +"util-deprecate@npm:^1.0.2, util-deprecate@npm:~1.0.1": version: 1.0.2 resolution: "util-deprecate@npm:1.0.2" checksum: 474acf1146cb2701fe3b074892217553dfcf9a031280919ba1b8d651a068c9b15d863b7303cb15bd00a862b498e6cf4ad7b4a08fb134edd5a6f7641681cb54a2 languageName: node linkType: hard +"util@npm:^0.10.3": + version: 0.10.4 + resolution: "util@npm:0.10.4" + dependencies: + inherits: 2.0.3 + checksum: 913f9a90d05a60e91f91af01b8bd37e06bca4cc02d7b49e01089f9d5b78be2fffd61fb1a41b517de7238c5fc7337fa939c62d1fb4eb82e014894c7bee6637aaf + languageName: node + linkType: hard + "v8-to-istanbul@npm:^9.0.1": version: 9.2.0 resolution: "v8-to-istanbul@npm:9.2.0" @@ -8289,6 +10533,458 @@ __metadata: languageName: node linkType: hard +"vega-canvas@npm:^1.2.7": + version: 1.2.7 + resolution: "vega-canvas@npm:1.2.7" + checksum: 6ff92fcdf0c359f2f662909c859a7f4cb4a502436136ab2f4c02373c47a621996ec0eea23e2108f11d62a618be301de86cd8528b5058c2e207a53ddd7ff58d1b + languageName: node + linkType: hard + +"vega-crossfilter@npm:~4.1.2": + version: 4.1.2 + resolution: "vega-crossfilter@npm:4.1.2" + dependencies: + d3-array: ^3.2.2 + vega-dataflow: ^5.7.6 + vega-util: ^1.17.2 + checksum: 1aefd6ad0dd391b28a7fbcdcc5403932fa25b2bd22e37c149b281cd9c89327b8a5cc23f4d4086cee73e2c828ae61e81f192365a3453d4687d0950f0aed3d068e + languageName: node + linkType: hard + +"vega-dataflow@npm:^5.7.6, vega-dataflow@npm:~5.7.6": + version: 5.7.6 + resolution: "vega-dataflow@npm:5.7.6" + dependencies: + vega-format: ^1.1.2 + vega-loader: ^4.5.2 + vega-util: ^1.17.2 + checksum: bea1237a5ddaadaba774b1521ef2419249a0d7c926e8a8bd1dcbbc1b771b5e9fff4a64d515f056d63708c8cb11e0bccd64c302c179af03ecaba2c7fc870422e0 + languageName: node + linkType: hard + +"vega-encode@npm:~4.10.1": + version: 4.10.1 + resolution: "vega-encode@npm:4.10.1" + dependencies: + d3-array: ^3.2.2 + d3-interpolate: ^3.0.1 + vega-dataflow: ^5.7.6 + vega-scale: ^7.4.1 + vega-util: ^1.17.2 + checksum: cfaa3655bd0c22b19bd834e853770d0121a8f189b5697c786e85bdde8d61decbfe04f5c9c94936a260c3684177d61bc10a18a1895df56b70f025b7a4dc9a9fb8 + languageName: node + linkType: hard + +"vega-event-selector@npm:^3.0.1, vega-event-selector@npm:~3.0.1": + version: 3.0.1 + resolution: "vega-event-selector@npm:3.0.1" + checksum: 66d09b5800a19a9b0c75f28811b140a1a2e70e84be6d6f87c568cdbce6e17c8e195f130f4e3de5d6dc737142d1f46f4fe7645177e154582cc8ba27c6845b54e8 + languageName: node + linkType: hard + +"vega-expression@npm:^5.0.1, vega-expression@npm:^5.1.1, vega-expression@npm:~5.1.0, vega-expression@npm:~5.1.1": + version: 5.1.1 + resolution: "vega-expression@npm:5.1.1" + dependencies: + "@types/estree": ^1.0.0 + vega-util: ^1.17.2 + checksum: 5af3732b1757000e7f79f7b923cf6594cf75bdc2350b2d54992d8df0bad5cea04812d6d08b79e6fc7a20c3df944b6c11fc5e6ab39a098e5d51e3edf33df4d29f + languageName: node + linkType: hard + +"vega-force@npm:~4.2.1": + version: 4.2.1 + resolution: "vega-force@npm:4.2.1" + dependencies: + d3-force: ^3.0.0 + vega-dataflow: ^5.7.6 + vega-util: ^1.17.2 + checksum: da7b113943f4369a4217db88e17022966f1e228349eaf368bc487c6f73d488d20de5a5ced901948f96ebe1b6c45efb642e2a1dbc43299da1aea41c62648ab48b + languageName: node + linkType: hard + +"vega-format@npm:^1.1.2, vega-format@npm:~1.1.2": + version: 1.1.2 + resolution: "vega-format@npm:1.1.2" + dependencies: + d3-array: ^3.2.2 + d3-format: ^3.1.0 + d3-time-format: ^4.1.0 + vega-time: ^2.1.2 + vega-util: ^1.17.2 + checksum: 04edc955080a994353a7d8915fd2142b5f055b7d86d7d7ab45f44648a68d8138c958d40a4cc6f4ecdd4f2327866d5ad96aa8fb9b543f2c130c01d8893e2cb365 + languageName: node + linkType: hard + +"vega-functions@npm:^5.15.0, vega-functions@npm:~5.15.0": + version: 5.15.0 + resolution: "vega-functions@npm:5.15.0" + dependencies: + d3-array: ^3.2.2 + d3-color: ^3.1.0 + d3-geo: ^3.1.0 + vega-dataflow: ^5.7.6 + vega-expression: ^5.1.1 + vega-scale: ^7.4.1 + vega-scenegraph: ^4.13.0 + vega-selections: ^5.4.2 + vega-statistics: ^1.9.0 + vega-time: ^2.1.2 + vega-util: ^1.17.2 + checksum: 5aff41436560b18f03059f173d951e13f7d7c6d0cf0552829f951c7d992a69c9374651d472e51ba092e14cf99c3a9d000ebb2918a13354c52827da9cb3f462f0 + languageName: node + linkType: hard + +"vega-geo@npm:~4.4.2": + version: 4.4.2 + resolution: "vega-geo@npm:4.4.2" + dependencies: + d3-array: ^3.2.2 + d3-color: ^3.1.0 + d3-geo: ^3.1.0 + vega-canvas: ^1.2.7 + vega-dataflow: ^5.7.6 + vega-projection: ^1.6.1 + vega-statistics: ^1.9.0 + vega-util: ^1.17.2 + checksum: a7c0df4c0ae8c762136ca6b22047a278c32a848d970cb729f9b7886852856996b48ae0ffc44a357ddecd4fd665f66b33291efd056692864fba9d6d60a30115fa + languageName: node + linkType: hard + +"vega-hierarchy@npm:~4.1.2": + version: 4.1.2 + resolution: "vega-hierarchy@npm:4.1.2" + dependencies: + d3-hierarchy: ^3.1.2 + vega-dataflow: ^5.7.6 + vega-util: ^1.17.2 + checksum: 5c083982cc99f78f34a7ddec2719cd2e016971024d8e11572be35600d10940ab4c14624254d3cef99756345f5601c39f62fb9d2cbeab5a341b3c6dc4c47dc4e9 + languageName: node + linkType: hard + +"vega-label@npm:~1.3.0": + version: 1.3.0 + resolution: "vega-label@npm:1.3.0" + dependencies: + vega-canvas: ^1.2.7 + vega-dataflow: ^5.7.6 + vega-scenegraph: ^4.13.0 + vega-util: ^1.17.2 + checksum: d42049c2c9d1a92f3a2f5531d28ed9250593f0a62399d1397fc597674377a1c91ae1363dc753d0ce1c5c25eecbdda2f9710ad64c5ebfa52f171c5b57ca706490 + languageName: node + linkType: hard + +"vega-lite@npm:^5.6.1": + version: 5.19.0 + resolution: "vega-lite@npm:5.19.0" + dependencies: + json-stringify-pretty-compact: ~3.0.0 + tslib: ~2.6.3 + vega-event-selector: ~3.0.1 + vega-expression: ~5.1.0 + vega-util: ~1.17.2 + yargs: ~17.7.2 + peerDependencies: + vega: ^5.24.0 + bin: + vl2pdf: bin/vl2pdf + vl2png: bin/vl2png + vl2svg: bin/vl2svg + vl2vg: bin/vl2vg + checksum: 78baf896f1638637a3a2103923ceb00395dab658d043f187fe67992aacf6ba70264ce3f3e60012bfcf9e55a7f22183b9c4174c71ee082aa69e4b47bf827fb428 + languageName: node + linkType: hard + +"vega-loader@npm:^4.5.2, vega-loader@npm:~4.5.2": + version: 4.5.2 + resolution: "vega-loader@npm:4.5.2" + dependencies: + d3-dsv: ^3.0.1 + node-fetch: ^2.6.7 + topojson-client: ^3.1.0 + vega-format: ^1.1.2 + vega-util: ^1.17.2 + checksum: e2f77e36dd40d5604b31f7273a0cebc5cc2a83560131bec217fc9c2c1f03faa68fe57c86ff39d3b14d375a9ad91f1d5709abaf666e30ca97041f687756d99de6 + languageName: node + linkType: hard + +"vega-parser@npm:~6.4.0": + version: 6.4.0 + resolution: "vega-parser@npm:6.4.0" + dependencies: + vega-dataflow: ^5.7.6 + vega-event-selector: ^3.0.1 + vega-functions: ^5.15.0 + vega-scale: ^7.4.1 + vega-util: ^1.17.2 + checksum: bc0d0057e65820351513c550b0576e5860f7110e3de05fd682b01c3d6453c3aef8a3510ab039d8b45b4269b233a67f5bd4b09cfd770f21cdf58a1f2d186e03c8 + languageName: node + linkType: hard + +"vega-projection@npm:^1.6.1, vega-projection@npm:~1.6.1": + version: 1.6.1 + resolution: "vega-projection@npm:1.6.1" + dependencies: + d3-geo: ^3.1.0 + d3-geo-projection: ^4.0.0 + vega-scale: ^7.4.1 + checksum: 4ea5c449d4aed427add0777cecf430670c6addaa1c938bc112458e1b2281e5a976b9bcbe1b3aa2ce3e135ae39a6ddecd32c3ac1bd978f879d1bcd8fe0425aab3 + languageName: node + linkType: hard + +"vega-regression@npm:~1.3.0": + version: 1.3.0 + resolution: "vega-regression@npm:1.3.0" + dependencies: + d3-array: ^3.2.2 + vega-dataflow: ^5.7.6 + vega-statistics: ^1.9.0 + vega-util: ^1.17.2 + checksum: 1a442e5a8d17cc07a02b080ac2c75b1de5dd4133df70f482833c9d3fa4794bce2acc10ce9c85d7c96fa47e5566728c84fb6ee1afa309d96b522575e1cade84fd + languageName: node + linkType: hard + +"vega-runtime@npm:^6.2.0, vega-runtime@npm:~6.2.0": + version: 6.2.0 + resolution: "vega-runtime@npm:6.2.0" + dependencies: + vega-dataflow: ^5.7.6 + vega-util: ^1.17.2 + checksum: e818063dd9b1ca336cb27437047c50ed15f70be86413166d84687aca40270f574da82355934c43cedbb40b14639fe171cfae29eb975ede10910747d345f38e15 + languageName: node + linkType: hard + +"vega-scale@npm:^7.4.1, vega-scale@npm:~7.4.1": + version: 7.4.1 + resolution: "vega-scale@npm:7.4.1" + dependencies: + d3-array: ^3.2.2 + d3-interpolate: ^3.0.1 + d3-scale: ^4.0.2 + d3-scale-chromatic: ^3.1.0 + vega-time: ^2.1.2 + vega-util: ^1.17.2 + checksum: 7fe83fdcf09b1e328531d0e4a411ad2eaabbde40b5c0a6de21c75dc341ca208194b1cf48369d76a64718beac438549dad42ff5e7e495a6e39bcff1aeb24118b9 + languageName: node + linkType: hard + +"vega-scenegraph@npm:^4.13.0, vega-scenegraph@npm:~4.13.0": + version: 4.13.0 + resolution: "vega-scenegraph@npm:4.13.0" + dependencies: + d3-path: ^3.1.0 + d3-shape: ^3.2.0 + vega-canvas: ^1.2.7 + vega-loader: ^4.5.2 + vega-scale: ^7.4.1 + vega-util: ^1.17.2 + checksum: 8910511db2bd11237984716e69817d3e91fc83d871263771933f5693b281f9dfe74e93caab913869283fcbbfdb739657d246beed07e43dd5ebfa405bb21fca27 + languageName: node + linkType: hard + +"vega-selections@npm:^5.4.2": + version: 5.4.2 + resolution: "vega-selections@npm:5.4.2" + dependencies: + d3-array: 3.2.4 + vega-expression: ^5.0.1 + vega-util: ^1.17.1 + checksum: 4e78053ab1f8ba4338005ed424043e7d0e91c857b58ab03600a07292e3777a4244d34caa7f8c85e72b2fdd9916882dfdda2fa93c730120ce790ec9883738f2be + languageName: node + linkType: hard + +"vega-statistics@npm:^1.7.9, vega-statistics@npm:^1.9.0, vega-statistics@npm:~1.9.0": + version: 1.9.0 + resolution: "vega-statistics@npm:1.9.0" + dependencies: + d3-array: ^3.2.2 + checksum: bbf2ea088c5a6a662c6aed1bf57996c06a82a98228730ada8a97e57824a6ed391999ea974f16dcde6e73bf88799976d91aff748842848d38ab45dbb9fafba3f9 + languageName: node + linkType: hard + +"vega-time@npm:^2.1.2, vega-time@npm:~2.1.2": + version: 2.1.2 + resolution: "vega-time@npm:2.1.2" + dependencies: + d3-array: ^3.2.2 + d3-time: ^3.1.0 + vega-util: ^1.17.2 + checksum: 35605db00f110f75274ee115716dc9e981da3cecb8c5692865557860058931ecb43d64f0ec2e7f00225a73e00fb7d1424d12b091a43ed11962a2f63177465dd6 + languageName: node + linkType: hard + +"vega-transforms@npm:~4.12.0": + version: 4.12.0 + resolution: "vega-transforms@npm:4.12.0" + dependencies: + d3-array: ^3.2.2 + vega-dataflow: ^5.7.6 + vega-statistics: ^1.9.0 + vega-time: ^2.1.2 + vega-util: ^1.17.2 + checksum: f2dcc0ef9f8fe49df3f421956d689dc0b0eccd7c178575c9a1093729d70dab6780b9a54f3d5725e55b8480bb2eff363d606c8e001e49f9492952354f1ebb8e72 + languageName: node + linkType: hard + +"vega-typings@npm:~1.3.1": + version: 1.3.1 + resolution: "vega-typings@npm:1.3.1" + dependencies: + "@types/geojson": 7946.0.4 + vega-event-selector: ^3.0.1 + vega-expression: ^5.1.1 + vega-util: ^1.17.2 + checksum: 0a7b4ecf3c5858a1216389f94fea8ba725371569c072f1e561d545938efa7ef6982a35377408c5238e11f9ae17c07ee5622ab3d1bcc92935e757d8806966d42c + languageName: node + linkType: hard + +"vega-util@npm:^1.17.1, vega-util@npm:^1.17.2, vega-util@npm:~1.17.2": + version: 1.17.2 + resolution: "vega-util@npm:1.17.2" + checksum: 5d681cb1a6ffda7af1b74df7c1c46a32f1d874daef54f9c9c65c7d7c7bfc4271dc6d9b1c1c7a853b14eb6e4cc8ec811b0132cd3ea25fa85259eac92e1b4f07fa + languageName: node + linkType: hard + +"vega-view-transforms@npm:~4.6.0": + version: 4.6.0 + resolution: "vega-view-transforms@npm:4.6.0" + dependencies: + vega-dataflow: ^5.7.6 + vega-scenegraph: ^4.13.0 + vega-util: ^1.17.2 + checksum: 5fde295a051e41ee644480bb2554b7f39e9a77377a172e96265a0d95bd8049abc2e33e78707e193d28d990ca12072f9957da54a7c595b98b547020726bc07936 + languageName: node + linkType: hard + +"vega-view@npm:~5.13.0": + version: 5.13.0 + resolution: "vega-view@npm:5.13.0" + dependencies: + d3-array: ^3.2.2 + d3-timer: ^3.0.1 + vega-dataflow: ^5.7.6 + vega-format: ^1.1.2 + vega-functions: ^5.15.0 + vega-runtime: ^6.2.0 + vega-scenegraph: ^4.13.0 + vega-util: ^1.17.2 + checksum: 55ce2e108754a18d354070b2b48b9a90ae26d9d98db89871260bcfd6a3abc0882cdc91175d698c0eed88e9a34a49ae7bcd64187954acb7eb437b8e95064e3c8c + languageName: node + linkType: hard + +"vega-voronoi@npm:~4.2.3": + version: 4.2.3 + resolution: "vega-voronoi@npm:4.2.3" + dependencies: + d3-delaunay: ^6.0.2 + vega-dataflow: ^5.7.6 + vega-util: ^1.17.2 + checksum: 2f5146ce081373b1f0cf8cf96eb914224b4bd10e41b6b0fbc661a4de2dbf124ba4a2756b14ff9f19b8584374df0071a0d0c97043fca393aaa3526fb5d8a8bec1 + languageName: node + linkType: hard + +"vega-wordcloud@npm:~4.1.5": + version: 4.1.5 + resolution: "vega-wordcloud@npm:4.1.5" + dependencies: + vega-canvas: ^1.2.7 + vega-dataflow: ^5.7.6 + vega-scale: ^7.4.1 + vega-statistics: ^1.9.0 + vega-util: ^1.17.2 + checksum: 88ac7776a0f7e02b2e50de7fd59d593ff16cad58cd756e219a9c9e6005343eb41c96109aff141b6be344f824e5238bac0d83c8a8d78136e380f9020a14c0e373 + languageName: node + linkType: hard + +"vega@npm:^5.20.0": + version: 5.30.0 + resolution: "vega@npm:5.30.0" + dependencies: + vega-crossfilter: ~4.1.2 + vega-dataflow: ~5.7.6 + vega-encode: ~4.10.1 + vega-event-selector: ~3.0.1 + vega-expression: ~5.1.1 + vega-force: ~4.2.1 + vega-format: ~1.1.2 + vega-functions: ~5.15.0 + vega-geo: ~4.4.2 + vega-hierarchy: ~4.1.2 + vega-label: ~1.3.0 + vega-loader: ~4.5.2 + vega-parser: ~6.4.0 + vega-projection: ~1.6.1 + vega-regression: ~1.3.0 + vega-runtime: ~6.2.0 + vega-scale: ~7.4.1 + vega-scenegraph: ~4.13.0 + vega-statistics: ~1.9.0 + vega-time: ~2.1.2 + vega-transforms: ~4.12.0 + vega-typings: ~1.3.1 + vega-util: ~1.17.2 + vega-view: ~5.13.0 + vega-view-transforms: ~4.6.0 + vega-voronoi: ~4.2.3 + vega-wordcloud: ~4.1.5 + checksum: 4775a990339a5d45bc42b474678b8136134aed7f8df0cfd43be9b440c82b90e5784f642fd69298dc66a930297c3e828fc106d75d0cc2b6fc15ecea30313e6af6 + languageName: node + linkType: hard + +"vscode-jsonrpc@npm:8.2.0": + version: 8.2.0 + resolution: "vscode-jsonrpc@npm:8.2.0" + checksum: f302a01e59272adc1ae6494581fa31c15499f9278df76366e3b97b2236c7c53ebfc71efbace9041cfd2caa7f91675b9e56f2407871a1b3c7f760a2e2ee61484a + languageName: node + linkType: hard + +"vscode-jsonrpc@npm:^6.0.0": + version: 6.0.0 + resolution: "vscode-jsonrpc@npm:6.0.0" + checksum: 3a67a56f287e8c449f2d9752eedf91e704dc7b9a326f47fb56ac07667631deb45ca52192e9bccb2ab108764e48409d70fa64b930d46fc3822f75270b111c5f53 + languageName: node + linkType: hard + +"vscode-jsonrpc@npm:^8.0.2": + version: 8.2.1 + resolution: "vscode-jsonrpc@npm:8.2.1" + checksum: 2af2c333d73f6587896a7077978b8d4b430e55c674d5dbb90597a84a6647057c1655a3bff398a9b08f1f8ba57dbd2deabf05164315829c297b0debba3b8bc19e + languageName: node + linkType: hard + +"vscode-languageserver-protocol@npm:^3.17.0": + version: 3.17.5 + resolution: "vscode-languageserver-protocol@npm:3.17.5" + dependencies: + vscode-jsonrpc: 8.2.0 + vscode-languageserver-types: 3.17.5 + checksum: dfb42d276df5dfea728267885b99872ecff62f6c20448b8539fae71bb196b420f5351c5aca7c1047bf8fb1f89fa94a961dce2bc5bf7e726198f4be0bb86a1e71 + languageName: node + linkType: hard + +"vscode-languageserver-types@npm:3.17.5": + version: 3.17.5 + resolution: "vscode-languageserver-types@npm:3.17.5" + checksum: 79b420e7576398d396579ca3a461c9ed70e78db4403cd28bbdf4d3ed2b66a2b4114031172e51fad49f0baa60a2180132d7cb2ea35aa3157d7af3c325528210ac + languageName: node + linkType: hard + +"vscode-ws-jsonrpc@npm:~1.0.2": + version: 1.0.2 + resolution: "vscode-ws-jsonrpc@npm:1.0.2" + dependencies: + vscode-jsonrpc: ^8.0.2 + checksum: eb2fdb5c96f124326505f06564dfc6584318b748fd6e39b4c0ba16a0d383d13ba0e9433596abdb841428dfc2a5501994c3206723d1cb38c6af5fcac1faf4be26 + languageName: node + linkType: hard + +"w3c-keyname@npm:^2.2.4": + version: 2.2.8 + resolution: "w3c-keyname@npm:2.2.8" + checksum: 95bafa4c04fa2f685a86ca1000069c1ec43ace1f8776c10f226a73296caeddd83f893db885c2c220ebeb6c52d424e3b54d7c0c1e963bbf204038ff1a944fbb07 + languageName: node + linkType: hard + "walker@npm:^1.0.8": version: 1.0.8 resolution: "walker@npm:1.0.8" @@ -8315,6 +11011,13 @@ __metadata: languageName: node linkType: hard +"webidl-conversions@npm:^3.0.0": + version: 3.0.1 + resolution: "webidl-conversions@npm:3.0.1" + checksum: c92a0a6ab95314bde9c32e1d0a6dfac83b578f8fa5f21e675bc2706ed6981bc26b7eb7e6a1fab158e5ce4adf9caa4a0aee49a52505d4d13c7be545f15021b17c + languageName: node + linkType: hard + "webidl-conversions@npm:^6.1.0": version: 6.1.0 resolution: "webidl-conversions@npm:6.1.0" @@ -8426,6 +11129,16 @@ __metadata: languageName: node linkType: hard +"whatwg-url@npm:^5.0.0": + version: 5.0.0 + resolution: "whatwg-url@npm:5.0.0" + dependencies: + tr46: ~0.0.3 + webidl-conversions: ^3.0.0 + checksum: b8daed4ad3356cc4899048a15b2c143a9aed0dfae1f611ebd55073310c7b910f522ad75d727346ad64203d7e6c79ef25eafd465f4d12775ca44b90fa82ed9e2c + languageName: node + linkType: hard + "whatwg-url@npm:^8.0.0": version: 8.7.0 resolution: "whatwg-url@npm:8.7.0" @@ -8622,7 +11335,7 @@ __metadata: languageName: node linkType: hard -"yargs@npm:^17.3.1": +"yargs@npm:^17.3.1, yargs@npm:~17.7.2": version: 17.7.2 resolution: "yargs@npm:17.7.2" dependencies: From 25de405c6995bf94fa2ab2a1b8d913de8e36d5b0 Mon Sep 17 00:00:00 2001 From: Nour-Cheour10 Date: Fri, 28 Jun 2024 16:29:47 +0200 Subject: [PATCH 10/21] Restore yarn.lock to previous state --- yarn.lock | 2797 +---------------------------------------------------- 1 file changed, 42 insertions(+), 2755 deletions(-) diff --git a/yarn.lock b/yarn.lock index d85412e..6d1abd6 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1372,264 +1372,6 @@ __metadata: languageName: node linkType: hard -"@codemirror/autocomplete@npm:^6.0.0, @codemirror/autocomplete@npm:^6.15.0, @codemirror/autocomplete@npm:^6.3.2, @codemirror/autocomplete@npm:^6.7.1": - version: 6.16.3 - resolution: "@codemirror/autocomplete@npm:6.16.3" - dependencies: - "@codemirror/language": ^6.0.0 - "@codemirror/state": ^6.0.0 - "@codemirror/view": ^6.17.0 - "@lezer/common": ^1.0.0 - peerDependencies: - "@codemirror/language": ^6.0.0 - "@codemirror/state": ^6.0.0 - "@codemirror/view": ^6.0.0 - "@lezer/common": ^1.0.0 - checksum: bd38808c9c143c61f2d4a4f8532a376614a511000e31dea1c7ea38240b707bd8b94a95141b592aeb62ee9ed39050af58a218926834c28e6867ab32c482ecd374 - languageName: node - linkType: hard - -"@codemirror/commands@npm:^6.3.3": - version: 6.6.0 - resolution: "@codemirror/commands@npm:6.6.0" - dependencies: - "@codemirror/language": ^6.0.0 - "@codemirror/state": ^6.4.0 - "@codemirror/view": ^6.27.0 - "@lezer/common": ^1.1.0 - checksum: 53bb29f11f4453b7409836c41a9c13c0a8cb300e05ecc4928217330cf6e6735b1e5fb7fb831a2b1b8636593d6f3da42d016196ee1c8bb424f9cb73d55b8cb884 - languageName: node - linkType: hard - -"@codemirror/lang-cpp@npm:^6.0.2": - version: 6.0.2 - resolution: "@codemirror/lang-cpp@npm:6.0.2" - dependencies: - "@codemirror/language": ^6.0.0 - "@lezer/cpp": ^1.0.0 - checksum: bb9eba482cca80037ce30c7b193cf45eff19ccbb773764fddf2071756468ecc25aa53c777c943635054f89095b0247b9b50c339e107e41e68d34d12a7295f9a9 - languageName: node - linkType: hard - -"@codemirror/lang-css@npm:^6.0.0, @codemirror/lang-css@npm:^6.2.1": - version: 6.2.1 - resolution: "@codemirror/lang-css@npm:6.2.1" - dependencies: - "@codemirror/autocomplete": ^6.0.0 - "@codemirror/language": ^6.0.0 - "@codemirror/state": ^6.0.0 - "@lezer/common": ^1.0.2 - "@lezer/css": ^1.0.0 - checksum: 5a8457ee8a4310030a969f2d3128429f549c4dc9b7907ee8888b42119c80b65af99093801432efdf659b8ec36a147d2a947bc1ecbbf69a759395214e3f4834a8 - languageName: node - linkType: hard - -"@codemirror/lang-html@npm:^6.0.0, @codemirror/lang-html@npm:^6.4.8": - version: 6.4.9 - resolution: "@codemirror/lang-html@npm:6.4.9" - dependencies: - "@codemirror/autocomplete": ^6.0.0 - "@codemirror/lang-css": ^6.0.0 - "@codemirror/lang-javascript": ^6.0.0 - "@codemirror/language": ^6.4.0 - "@codemirror/state": ^6.0.0 - "@codemirror/view": ^6.17.0 - "@lezer/common": ^1.0.0 - "@lezer/css": ^1.1.0 - "@lezer/html": ^1.3.0 - checksum: ac8c3ceb0396f2e032752c5079bd950124dca708bc64e96fc147dc5fe7133e5cee0814fe951abdb953ec1d11fa540e4b30a712b5149d9a36016a197a28de45d7 - languageName: node - linkType: hard - -"@codemirror/lang-java@npm:^6.0.1": - version: 6.0.1 - resolution: "@codemirror/lang-java@npm:6.0.1" - dependencies: - "@codemirror/language": ^6.0.0 - "@lezer/java": ^1.0.0 - checksum: 4679104683cbffcd224ac04c7e5d144b787494697b26470b07017259035b7bb3fa62609d9a61bfbc566f1756d9f972f9f26d96a3c1362dd48881c1172f9a914d - languageName: node - linkType: hard - -"@codemirror/lang-javascript@npm:^6.0.0, @codemirror/lang-javascript@npm:^6.2.2": - version: 6.2.2 - resolution: "@codemirror/lang-javascript@npm:6.2.2" - dependencies: - "@codemirror/autocomplete": ^6.0.0 - "@codemirror/language": ^6.6.0 - "@codemirror/lint": ^6.0.0 - "@codemirror/state": ^6.0.0 - "@codemirror/view": ^6.17.0 - "@lezer/common": ^1.0.0 - "@lezer/javascript": ^1.0.0 - checksum: 66379942a8347dff2bd76d10ed7cf313bca83872f8336fdd3e14accfef23e7b690cd913c9d11a3854fba2b32299da07fc3275995327642c9ee43c2a8e538c19d - languageName: node - linkType: hard - -"@codemirror/lang-json@npm:^6.0.1": - version: 6.0.1 - resolution: "@codemirror/lang-json@npm:6.0.1" - dependencies: - "@codemirror/language": ^6.0.0 - "@lezer/json": ^1.0.0 - checksum: e9e87d50ff7b81bd56a6ab50740b1dd54e9a93f1be585e1d59d0642e2148842ea1528ac7b7221eb4ddc7fe84bbc28065144cc3ab86f6e06c6aeb2d4b4e62acf1 - languageName: node - linkType: hard - -"@codemirror/lang-markdown@npm:^6.2.4": - version: 6.2.5 - resolution: "@codemirror/lang-markdown@npm:6.2.5" - dependencies: - "@codemirror/autocomplete": ^6.7.1 - "@codemirror/lang-html": ^6.0.0 - "@codemirror/language": ^6.3.0 - "@codemirror/state": ^6.0.0 - "@codemirror/view": ^6.0.0 - "@lezer/common": ^1.2.1 - "@lezer/markdown": ^1.0.0 - checksum: 3d9e0817f888eddcb6d05ec8f0d8dacbde7b9ef7650303bc4ab8b08a550a986c60c65b1565212e06af389c31590330f1f5ed65e619a9446dc2979ff3dac0e874 - languageName: node - linkType: hard - -"@codemirror/lang-php@npm:^6.0.1": - version: 6.0.1 - resolution: "@codemirror/lang-php@npm:6.0.1" - dependencies: - "@codemirror/lang-html": ^6.0.0 - "@codemirror/language": ^6.0.0 - "@codemirror/state": ^6.0.0 - "@lezer/common": ^1.0.0 - "@lezer/php": ^1.0.0 - checksum: c003a29a426486453fdfddbf7302982fa2aa7f059bf6f1ce4cbf08341b0162eee5e2f50e0d71c418dcd358491631780156d846fe352754d042576172c5d86721 - languageName: node - linkType: hard - -"@codemirror/lang-python@npm:^6.1.4": - version: 6.1.6 - resolution: "@codemirror/lang-python@npm:6.1.6" - dependencies: - "@codemirror/autocomplete": ^6.3.2 - "@codemirror/language": ^6.8.0 - "@codemirror/state": ^6.0.0 - "@lezer/common": ^1.2.1 - "@lezer/python": ^1.1.4 - checksum: eb1faabd332bb95d0f3e227eb19ac5a31140cf238905bbe73e061040999f5680a012f9145fb3688bc2fcbb1908c957511edc8eeb8a9aa88d27d4fa55ad451e95 - languageName: node - linkType: hard - -"@codemirror/lang-rust@npm:^6.0.1": - version: 6.0.1 - resolution: "@codemirror/lang-rust@npm:6.0.1" - dependencies: - "@codemirror/language": ^6.0.0 - "@lezer/rust": ^1.0.0 - checksum: 8a439944cb22159b0b3465ca4fa4294c69843219d5d30e278ae6df8e48f30a7a9256129723c025ec9b5e694d31a3560fb004300b125ffcd81c22d13825845170 - languageName: node - linkType: hard - -"@codemirror/lang-sql@npm:^6.6.1": - version: 6.6.5 - resolution: "@codemirror/lang-sql@npm:6.6.5" - dependencies: - "@codemirror/autocomplete": ^6.0.0 - "@codemirror/language": ^6.0.0 - "@codemirror/state": ^6.0.0 - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - checksum: 543f4010ba86c85be13eaf5baa6236d4446dc1d2045fb451fdd55545fd3349dda650b833d98da0c67123dbd9e18a5137564c026059537b4096f8a3582bcb7dac - languageName: node - linkType: hard - -"@codemirror/lang-wast@npm:^6.0.2": - version: 6.0.2 - resolution: "@codemirror/lang-wast@npm:6.0.2" - dependencies: - "@codemirror/language": ^6.0.0 - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - checksum: 72119d4a7d726c54167aa227c982ae9fa785c8ad97a158d8350ae95eecfbd8028a803eef939f7e6c5c6e626fcecda1dc37e9dffc6d5d6ec105f686aeda6b2c24 - languageName: node - linkType: hard - -"@codemirror/lang-xml@npm:^6.1.0": - version: 6.1.0 - resolution: "@codemirror/lang-xml@npm:6.1.0" - dependencies: - "@codemirror/autocomplete": ^6.0.0 - "@codemirror/language": ^6.4.0 - "@codemirror/state": ^6.0.0 - "@codemirror/view": ^6.0.0 - "@lezer/common": ^1.0.0 - "@lezer/xml": ^1.0.0 - checksum: 3a1b7af07b29ad7e53b77bf584245580b613bc92256059f175f2b1d7c28c4e39b75654fe169b9a8a330a60164b53ff5254bdb5b8ee8c6e6766427ee115c4e229 - languageName: node - linkType: hard - -"@codemirror/language@npm:^6.0.0, @codemirror/language@npm:^6.10.1, @codemirror/language@npm:^6.3.0, @codemirror/language@npm:^6.4.0, @codemirror/language@npm:^6.6.0, @codemirror/language@npm:^6.8.0": - version: 6.10.2 - resolution: "@codemirror/language@npm:6.10.2" - dependencies: - "@codemirror/state": ^6.0.0 - "@codemirror/view": ^6.23.0 - "@lezer/common": ^1.1.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - style-mod: ^4.0.0 - checksum: 4e60afb75fb56519f59d9d85e0aa03f0c8d017e0da0f3f8f321baf35a776801fcec9787f3d0c029eba12aa766fba98b0fe86fc3111b43e0812b554184c0e8d67 - languageName: node - linkType: hard - -"@codemirror/legacy-modes@npm:^6.3.3": - version: 6.4.0 - resolution: "@codemirror/legacy-modes@npm:6.4.0" - dependencies: - "@codemirror/language": ^6.0.0 - checksum: d382aa6f640a67418bd209e1e4b395340f96aac1b0cf185927fc2c7f98b62cfd0c59ef0f7048148ce8771622003ca844c78c2d18548235ecc57d0bcbfbbfe091 - languageName: node - linkType: hard - -"@codemirror/lint@npm:^6.0.0": - version: 6.8.1 - resolution: "@codemirror/lint@npm:6.8.1" - dependencies: - "@codemirror/state": ^6.0.0 - "@codemirror/view": ^6.0.0 - crelt: ^1.0.5 - checksum: faa222b679770baf094ea707251e27d6eef347157006223c22d7726fb5adc9d77257f36c366367ec729cb6286aca3276d30a470e0d0ea9a884ec948e798668e9 - languageName: node - linkType: hard - -"@codemirror/search@npm:^6.5.6": - version: 6.5.6 - resolution: "@codemirror/search@npm:6.5.6" - dependencies: - "@codemirror/state": ^6.0.0 - "@codemirror/view": ^6.0.0 - crelt: ^1.0.5 - checksum: 19dc88d09fc750563347001e83c6194bbb2a25c874bd919d2d81809e1f98d6330222ddbd284aa9758a09eeb41fd153ec7c2cf810b2ee51452c25963d7f5833d5 - languageName: node - linkType: hard - -"@codemirror/state@npm:^6.0.0, @codemirror/state@npm:^6.4.0, @codemirror/state@npm:^6.4.1": - version: 6.4.1 - resolution: "@codemirror/state@npm:6.4.1" - checksum: b81b55574091349eed4d32fc0eadb0c9688f1f7c98b681318f59138ee0f527cb4c4a97831b70547c0640f02f3127647838ae6730782de4a3dd2cc58836125d01 - languageName: node - linkType: hard - -"@codemirror/view@npm:^6.0.0, @codemirror/view@npm:^6.17.0, @codemirror/view@npm:^6.23.0, @codemirror/view@npm:^6.26.0, @codemirror/view@npm:^6.27.0": - version: 6.28.1 - resolution: "@codemirror/view@npm:6.28.1" - dependencies: - "@codemirror/state": ^6.4.0 - style-mod: ^4.1.0 - w3c-keyname: ^2.2.4 - checksum: 8899717af925f9e23beca20e4e095cc974b122a7a41049c6f9cf0027aeb700faa71d012fc78db838747f8a525f3f34aa4e489a7c7042504d45a0097287d89a76 - languageName: node - linkType: hard - "@discoveryjs/json-ext@npm:^0.5.0": version: 0.5.7 resolution: "@discoveryjs/json-ext@npm:0.5.7" @@ -1679,13 +1421,6 @@ __metadata: languageName: node linkType: hard -"@fortawesome/fontawesome-free@npm:^5.12.0": - version: 5.15.4 - resolution: "@fortawesome/fontawesome-free@npm:5.15.4" - checksum: 32281c3df4075290d9a96dfc22f72fadb3da7055d4117e48d34046b8c98032a55fa260ae351b0af5d6f6fb57a2f5d79a4abe52af456da35195f7cb7dda27b4a2 - languageName: node - linkType: hard - "@humanwhocodes/config-array@npm:^0.11.14": version: 0.11.14 resolution: "@humanwhocodes/config-array@npm:0.11.14" @@ -2057,29 +1792,6 @@ __metadata: languageName: node linkType: hard -"@jupyter/react-components@npm:^0.15.3": - version: 0.15.3 - resolution: "@jupyter/react-components@npm:0.15.3" - dependencies: - "@jupyter/web-components": ^0.15.3 - "@microsoft/fast-react-wrapper": ^0.3.22 - react: ">=17.0.0 <19.0.0" - checksum: 1a6b256314259c6465c4b6d958575710536b82234a7bf0fba3e889a07e1f19ff8ab321450be354359876f92c45dbcc9d21a840237ff4a619806d9de696f55496 - languageName: node - linkType: hard - -"@jupyter/web-components@npm:^0.15.3": - version: 0.15.3 - resolution: "@jupyter/web-components@npm:0.15.3" - dependencies: - "@microsoft/fast-colors": ^5.3.1 - "@microsoft/fast-element": ^1.12.0 - "@microsoft/fast-foundation": ^2.49.4 - "@microsoft/fast-web-utilities": ^5.4.1 - checksum: a0980af934157bfdbdb6cc169c0816c1b2e57602d524c56bdcef746a4c25dfeb8f505150d83207c8695ed89b5486cf53d35a3382584d25ef64db666e4e16e45b - languageName: node - linkType: hard - "@jupyter/ydoc@npm:^2.0.1": version: 2.0.1 resolution: "@jupyter/ydoc@npm:2.0.1" @@ -2094,77 +1806,6 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/application@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/application@npm:4.2.2" - dependencies: - "@fortawesome/fontawesome-free": ^5.12.0 - "@jupyterlab/apputils": ^4.3.2 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/docregistry": ^4.2.2 - "@jupyterlab/rendermime": ^4.2.2 - "@jupyterlab/rendermime-interfaces": ^3.10.2 - "@jupyterlab/services": ^7.2.2 - "@jupyterlab/statedb": ^4.2.2 - "@jupyterlab/translation": ^4.2.2 - "@jupyterlab/ui-components": ^4.2.2 - "@lumino/algorithm": ^2.0.1 - "@lumino/application": ^2.3.1 - "@lumino/commands": ^2.3.0 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/polling": ^2.1.2 - "@lumino/properties": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.2 - checksum: 86dbf944df8dbeecce88d5588054bb097f6817ba23c7366002e4a7dcb34bb229371be6d803008a2a8413bf7285db977426a806d9686f135d004f74bf5338b28a - languageName: node - linkType: hard - -"@jupyterlab/apputils@npm:^4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/apputils@npm:4.3.2" - dependencies: - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/observables": ^5.2.2 - "@jupyterlab/rendermime-interfaces": ^3.10.2 - "@jupyterlab/services": ^7.2.2 - "@jupyterlab/settingregistry": ^4.2.2 - "@jupyterlab/statedb": ^4.2.2 - "@jupyterlab/statusbar": ^4.2.2 - "@jupyterlab/translation": ^4.2.2 - "@jupyterlab/ui-components": ^4.2.2 - "@lumino/algorithm": ^2.0.1 - "@lumino/commands": ^2.3.0 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/domutils": ^2.0.1 - "@lumino/messaging": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/virtualdom": ^2.0.1 - "@lumino/widgets": ^2.3.2 - "@types/react": ^18.0.26 - react: ^18.2.0 - sanitize-html: ~2.12.1 - checksum: 4a49f2b56abc80ab1ca144d39901da5250e7394ace3ceb2e14cba9cc638c6ea720a3f8a3a90cd1f878c34d91b1ce8fe63206d2c314d048b3d83ade0e2e787c89 - languageName: node - linkType: hard - -"@jupyterlab/attachments@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/attachments@npm:4.2.2" - dependencies: - "@jupyterlab/nbformat": ^4.2.2 - "@jupyterlab/observables": ^5.2.2 - "@jupyterlab/rendermime": ^4.2.2 - "@jupyterlab/rendermime-interfaces": ^3.10.2 - "@lumino/disposable": ^2.1.2 - "@lumino/signaling": ^2.1.2 - checksum: 36e6b833fd1debe35d19bcd105eb71f1346c7e4d6ea0d710eb9cdef9818e1e9b04fd5763660776aa19332f196a89baaceff17236990afc835d9f5b2971105eda - languageName: node - linkType: hard - "@jupyterlab/builder@npm:^4.0.11": version: 4.2.0 resolution: "@jupyterlab/builder@npm:4.2.0" @@ -2206,133 +1847,6 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/cells@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/cells@npm:4.2.2" - dependencies: - "@codemirror/state": ^6.4.1 - "@codemirror/view": ^6.26.0 - "@jupyter/ydoc": ^2.0.1 - "@jupyterlab/apputils": ^4.3.2 - "@jupyterlab/attachments": ^4.2.2 - "@jupyterlab/codeeditor": ^4.2.2 - "@jupyterlab/codemirror": ^4.2.2 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/documentsearch": ^4.2.2 - "@jupyterlab/filebrowser": ^4.2.2 - "@jupyterlab/nbformat": ^4.2.2 - "@jupyterlab/observables": ^5.2.2 - "@jupyterlab/outputarea": ^4.2.2 - "@jupyterlab/rendermime": ^4.2.2 - "@jupyterlab/services": ^7.2.2 - "@jupyterlab/toc": ^6.2.2 - "@jupyterlab/translation": ^4.2.2 - "@jupyterlab/ui-components": ^4.2.2 - "@lumino/algorithm": ^2.0.1 - "@lumino/coreutils": ^2.1.2 - "@lumino/domutils": ^2.0.1 - "@lumino/dragdrop": ^2.1.4 - "@lumino/messaging": ^2.0.1 - "@lumino/polling": ^2.1.2 - "@lumino/signaling": ^2.1.2 - "@lumino/virtualdom": ^2.0.1 - "@lumino/widgets": ^2.3.2 - react: ^18.2.0 - checksum: 974d81f3917c8c39e9fc603a7f83a06733c21523fa17e4781f8b7d846c9e2b9731fa362c0469dcfbf1370846a34ec652a379408e5e57f78d7aaa271f8180c90e - languageName: node - linkType: hard - -"@jupyterlab/codeeditor@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/codeeditor@npm:4.2.2" - dependencies: - "@codemirror/state": ^6.4.1 - "@jupyter/ydoc": ^2.0.1 - "@jupyterlab/apputils": ^4.3.2 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/nbformat": ^4.2.2 - "@jupyterlab/observables": ^5.2.2 - "@jupyterlab/statusbar": ^4.2.2 - "@jupyterlab/translation": ^4.2.2 - "@jupyterlab/ui-components": ^4.2.2 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/dragdrop": ^2.1.4 - "@lumino/messaging": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.2 - react: ^18.2.0 - checksum: 22a1b7846f4d6c8bd7b472b311d21383031dd98d232f7e83add2acfaa8f277a7a9a48919b8e14bedeb786f53f45adc64387a724337ee91ab52620ea5a9d0a692 - languageName: node - linkType: hard - -"@jupyterlab/codemirror@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/codemirror@npm:4.2.2" - dependencies: - "@codemirror/autocomplete": ^6.15.0 - "@codemirror/commands": ^6.3.3 - "@codemirror/lang-cpp": ^6.0.2 - "@codemirror/lang-css": ^6.2.1 - "@codemirror/lang-html": ^6.4.8 - "@codemirror/lang-java": ^6.0.1 - "@codemirror/lang-javascript": ^6.2.2 - "@codemirror/lang-json": ^6.0.1 - "@codemirror/lang-markdown": ^6.2.4 - "@codemirror/lang-php": ^6.0.1 - "@codemirror/lang-python": ^6.1.4 - "@codemirror/lang-rust": ^6.0.1 - "@codemirror/lang-sql": ^6.6.1 - "@codemirror/lang-wast": ^6.0.2 - "@codemirror/lang-xml": ^6.1.0 - "@codemirror/language": ^6.10.1 - "@codemirror/legacy-modes": ^6.3.3 - "@codemirror/search": ^6.5.6 - "@codemirror/state": ^6.4.1 - "@codemirror/view": ^6.26.0 - "@jupyter/ydoc": ^2.0.1 - "@jupyterlab/codeeditor": ^4.2.2 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/documentsearch": ^4.2.2 - "@jupyterlab/nbformat": ^4.2.2 - "@jupyterlab/translation": ^4.2.2 - "@lezer/common": ^1.2.1 - "@lezer/generator": ^1.7.0 - "@lezer/highlight": ^1.2.0 - "@lezer/markdown": ^1.2.0 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/signaling": ^2.1.2 - yjs: ^13.5.40 - checksum: 60641e41c424407d5584fdde5630b2ada1663b988fd299c628c58d840d3e8b87d7bcdc4bf0da261ad2eaf0b071e868a31e8c458eb0ce989a0b33f3901411d79c - languageName: node - linkType: hard - -"@jupyterlab/console@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/console@npm:4.2.2" - dependencies: - "@jupyter/ydoc": ^2.0.1 - "@jupyterlab/apputils": ^4.3.2 - "@jupyterlab/cells": ^4.2.2 - "@jupyterlab/codeeditor": ^4.2.2 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/nbformat": ^4.2.2 - "@jupyterlab/observables": ^5.2.2 - "@jupyterlab/rendermime": ^4.2.2 - "@jupyterlab/services": ^7.2.2 - "@jupyterlab/translation": ^4.2.2 - "@jupyterlab/ui-components": ^4.2.2 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/dragdrop": ^2.1.4 - "@lumino/messaging": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.2 - checksum: ee10a3c5eb5f6094fcaaacfc95d39b98551c61a6e30bbf6450689bd4195bda1499a539ac1d1b315a682974ecac3e24bc21c2ab7d94b75b9e5490bd773e62f510 - languageName: node - linkType: hard - "@jupyterlab/coreutils@npm:^6.2.0": version: 6.2.0 resolution: "@jupyterlab/coreutils@npm:6.2.0" @@ -2347,232 +1861,6 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/coreutils@npm:^6.2.2": - version: 6.2.2 - resolution: "@jupyterlab/coreutils@npm:6.2.2" - dependencies: - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/signaling": ^2.1.2 - minimist: ~1.2.0 - path-browserify: ^1.0.0 - url-parse: ~1.5.4 - checksum: cea1ec210ce60b32ccd213a75e10d85aed149437817e81ea89230552b33cec4be61472880669035228a156b89dcf99dccac3fe2e19191f8690d8870a732fa30b - languageName: node - linkType: hard - -"@jupyterlab/debugger@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/debugger@npm:4.2.2" - dependencies: - "@codemirror/state": ^6.4.1 - "@codemirror/view": ^6.26.0 - "@jupyter/react-components": ^0.15.3 - "@jupyter/ydoc": ^2.0.1 - "@jupyterlab/application": ^4.2.2 - "@jupyterlab/apputils": ^4.3.2 - "@jupyterlab/cells": ^4.2.2 - "@jupyterlab/codeeditor": ^4.2.2 - "@jupyterlab/codemirror": ^4.2.2 - "@jupyterlab/console": ^4.2.2 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/docregistry": ^4.2.2 - "@jupyterlab/fileeditor": ^4.2.2 - "@jupyterlab/notebook": ^4.2.2 - "@jupyterlab/observables": ^5.2.2 - "@jupyterlab/rendermime": ^4.2.2 - "@jupyterlab/services": ^7.2.2 - "@jupyterlab/translation": ^4.2.2 - "@jupyterlab/ui-components": ^4.2.2 - "@lumino/algorithm": ^2.0.1 - "@lumino/commands": ^2.3.0 - "@lumino/coreutils": ^2.1.2 - "@lumino/datagrid": ^2.3.1 - "@lumino/disposable": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/polling": ^2.1.2 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.2 - "@vscode/debugprotocol": ^1.51.0 - react: ^18.2.0 - checksum: cff0dd6914a3808ce938ca445b532e4751cf0993be67bdd980e9251d621d7f3e474443df7cfab976c81a87d420c6088faae3e519747ef4981e65aa6a06beb520 - languageName: node - linkType: hard - -"@jupyterlab/docmanager@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/docmanager@npm:4.2.2" - dependencies: - "@jupyterlab/apputils": ^4.3.2 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/docregistry": ^4.2.2 - "@jupyterlab/services": ^7.2.2 - "@jupyterlab/statedb": ^4.2.2 - "@jupyterlab/statusbar": ^4.2.2 - "@jupyterlab/translation": ^4.2.2 - "@jupyterlab/ui-components": ^4.2.2 - "@lumino/algorithm": ^2.0.1 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/polling": ^2.1.2 - "@lumino/properties": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.2 - react: ^18.2.0 - checksum: e45a8cbdf82cac4d949ef7177e5ac22530ab03502dea73d21ead1061686ef4c703e1eee749ddd4c33672269922045b4bf2dba6ccfc2b44dc8d696b36f1652fe3 - languageName: node - linkType: hard - -"@jupyterlab/docregistry@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/docregistry@npm:4.2.2" - dependencies: - "@jupyter/ydoc": ^2.0.1 - "@jupyterlab/apputils": ^4.3.2 - "@jupyterlab/codeeditor": ^4.2.2 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/observables": ^5.2.2 - "@jupyterlab/rendermime": ^4.2.2 - "@jupyterlab/rendermime-interfaces": ^3.10.2 - "@jupyterlab/services": ^7.2.2 - "@jupyterlab/translation": ^4.2.2 - "@jupyterlab/ui-components": ^4.2.2 - "@lumino/algorithm": ^2.0.1 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/properties": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.2 - react: ^18.2.0 - checksum: 8cad65f88d827beee8e804683e021da260084243b9e74495093df9bd7e7aff25431c07debc8cfe86c90fa395ab5ebd77ce998ea096a17c5543b5a035f50cd813 - languageName: node - linkType: hard - -"@jupyterlab/documentsearch@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/documentsearch@npm:4.2.2" - dependencies: - "@jupyterlab/apputils": ^4.3.2 - "@jupyterlab/translation": ^4.2.2 - "@jupyterlab/ui-components": ^4.2.2 - "@lumino/commands": ^2.3.0 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/polling": ^2.1.2 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.2 - react: ^18.2.0 - checksum: 2d6806fdf0f85873eb35c7730717a9eb69775760d6fd081cbb274104e04fdf3dcf1e72002271739021552721732fa77bd2d6601c27abca8bf1e6b88a9836a2c8 - languageName: node - linkType: hard - -"@jupyterlab/filebrowser@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/filebrowser@npm:4.2.2" - dependencies: - "@jupyterlab/apputils": ^4.3.2 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/docmanager": ^4.2.2 - "@jupyterlab/docregistry": ^4.2.2 - "@jupyterlab/services": ^7.2.2 - "@jupyterlab/statedb": ^4.2.2 - "@jupyterlab/statusbar": ^4.2.2 - "@jupyterlab/translation": ^4.2.2 - "@jupyterlab/ui-components": ^4.2.2 - "@lumino/algorithm": ^2.0.1 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/domutils": ^2.0.1 - "@lumino/dragdrop": ^2.1.4 - "@lumino/messaging": ^2.0.1 - "@lumino/polling": ^2.1.2 - "@lumino/signaling": ^2.1.2 - "@lumino/virtualdom": ^2.0.1 - "@lumino/widgets": ^2.3.2 - react: ^18.2.0 - checksum: f4354f84060bd100b4530d4816b25b819ce028f92ceb130d79ca90dacf32bb46bcd8e134244b6172bca3bb1cae3402079ffbb8173cc94c5ce75e5b55e77cd67c - languageName: node - linkType: hard - -"@jupyterlab/fileeditor@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/fileeditor@npm:4.2.2" - dependencies: - "@jupyter/ydoc": ^2.0.1 - "@jupyterlab/apputils": ^4.3.2 - "@jupyterlab/codeeditor": ^4.2.2 - "@jupyterlab/codemirror": ^4.2.2 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/docregistry": ^4.2.2 - "@jupyterlab/documentsearch": ^4.2.2 - "@jupyterlab/lsp": ^4.2.2 - "@jupyterlab/statusbar": ^4.2.2 - "@jupyterlab/toc": ^6.2.2 - "@jupyterlab/translation": ^4.2.2 - "@jupyterlab/ui-components": ^4.2.2 - "@lumino/commands": ^2.3.0 - "@lumino/coreutils": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/widgets": ^2.3.2 - react: ^18.2.0 - regexp-match-indices: ^1.0.2 - checksum: 688340fe2ba275a22b6fc240b16b73db96889f128894a5d4f28c4ff5df68ef6f9947316ff9404ec93624eecd60a9834e2b343b04f82fa980f701d5ec30cd349d - languageName: node - linkType: hard - -"@jupyterlab/galata@npm:^5.2.2": - version: 5.2.2 - resolution: "@jupyterlab/galata@npm:5.2.2" - dependencies: - "@jupyterlab/application": ^4.2.2 - "@jupyterlab/apputils": ^4.3.2 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/debugger": ^4.2.2 - "@jupyterlab/docmanager": ^4.2.2 - "@jupyterlab/nbformat": ^4.2.2 - "@jupyterlab/notebook": ^4.2.2 - "@jupyterlab/services": ^7.2.2 - "@jupyterlab/settingregistry": ^4.2.2 - "@lumino/coreutils": ^2.1.2 - "@playwright/test": ^1.43.1 - "@stdlib/stats": ~0.0.13 - fs-extra: ^10.1.0 - json5: ^2.2.3 - path: ~0.12.7 - systeminformation: ^5.8.6 - vega: ^5.20.0 - vega-lite: ^5.6.1 - vega-statistics: ^1.7.9 - checksum: ac841ae68ad55396c8268f373a7b453cf263058af0c847f8f5c5c36307064f0bba85365aeadcfa81ec917d55ac8965787ef5ce4c948ef26b7fcf0d750619f8a5 - languageName: node - linkType: hard - -"@jupyterlab/lsp@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/lsp@npm:4.2.2" - dependencies: - "@jupyterlab/apputils": ^4.3.2 - "@jupyterlab/codeeditor": ^4.2.2 - "@jupyterlab/codemirror": ^4.2.2 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/docregistry": ^4.2.2 - "@jupyterlab/services": ^7.2.2 - "@jupyterlab/translation": ^4.2.2 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.2 - lodash.mergewith: ^4.6.1 - vscode-jsonrpc: ^6.0.0 - vscode-languageserver-protocol: ^3.17.0 - vscode-ws-jsonrpc: ~1.0.2 - checksum: 57853e7cf4010dab80fd1f135bddefb62710c6d379c942306a6913ebf4683853a3d519aee8f1b4f72725a87f9cff4387d1fb3125813b0aa4fae25131ab2bff95 - languageName: node - linkType: hard - "@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@npm:^4.2.0": version: 4.2.0 resolution: "@jupyterlab/nbformat@npm:4.2.0" @@ -2582,118 +1870,6 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/nbformat@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/nbformat@npm:4.2.2" - dependencies: - "@lumino/coreutils": ^2.1.2 - checksum: a60774bcf3e9735bc80dc411b4b79ad2da0dd4df596fef0a74537bfbfb8b168b70b34619638d0abaca6243ac337520275002a27dc13d6951efd681527643d25b - languageName: node - linkType: hard - -"@jupyterlab/notebook@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/notebook@npm:4.2.2" - dependencies: - "@jupyter/ydoc": ^2.0.1 - "@jupyterlab/apputils": ^4.3.2 - "@jupyterlab/cells": ^4.2.2 - "@jupyterlab/codeeditor": ^4.2.2 - "@jupyterlab/codemirror": ^4.2.2 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/docregistry": ^4.2.2 - "@jupyterlab/documentsearch": ^4.2.2 - "@jupyterlab/lsp": ^4.2.2 - "@jupyterlab/nbformat": ^4.2.2 - "@jupyterlab/observables": ^5.2.2 - "@jupyterlab/rendermime": ^4.2.2 - "@jupyterlab/services": ^7.2.2 - "@jupyterlab/settingregistry": ^4.2.2 - "@jupyterlab/statusbar": ^4.2.2 - "@jupyterlab/toc": ^6.2.2 - "@jupyterlab/translation": ^4.2.2 - "@jupyterlab/ui-components": ^4.2.2 - "@lumino/algorithm": ^2.0.1 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/domutils": ^2.0.1 - "@lumino/dragdrop": ^2.1.4 - "@lumino/messaging": ^2.0.1 - "@lumino/polling": ^2.1.2 - "@lumino/properties": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/virtualdom": ^2.0.1 - "@lumino/widgets": ^2.3.2 - react: ^18.2.0 - checksum: 0544a44162ca9de8e1341035037fd3fda263b72769ef49f1bbd241196336d5f71f9f4d3b7f442c8c955ed76f3fa8d6c0177f75db8b66d5e68a76d6aff8e7b037 - languageName: node - linkType: hard - -"@jupyterlab/observables@npm:^5.2.2": - version: 5.2.2 - resolution: "@jupyterlab/observables@npm:5.2.2" - dependencies: - "@lumino/algorithm": ^2.0.1 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/signaling": ^2.1.2 - checksum: 916363cb75bd58f109d81ba84649379a848c23b8ced30f9283108fb4133bd5d4f62ebdf9648f053df744701193d4fadbae4491561dd02d14157bf23a0b813dda - languageName: node - linkType: hard - -"@jupyterlab/outputarea@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/outputarea@npm:4.2.2" - dependencies: - "@jupyterlab/apputils": ^4.3.2 - "@jupyterlab/nbformat": ^4.2.2 - "@jupyterlab/observables": ^5.2.2 - "@jupyterlab/rendermime": ^4.2.2 - "@jupyterlab/rendermime-interfaces": ^3.10.2 - "@jupyterlab/services": ^7.2.2 - "@jupyterlab/translation": ^4.2.2 - "@lumino/algorithm": ^2.0.1 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/properties": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.2 - checksum: b7d085edca968dc280677df0853080b00a3df3f05b67887933375bd28eaf12e056f7c3396b9a1a28075e617f979400a19742312c6964233f8135c5054fa98e20 - languageName: node - linkType: hard - -"@jupyterlab/rendermime-interfaces@npm:^3.10.2": - version: 3.10.2 - resolution: "@jupyterlab/rendermime-interfaces@npm:3.10.2" - dependencies: - "@lumino/coreutils": ^1.11.0 || ^2.1.2 - "@lumino/widgets": ^1.37.2 || ^2.3.2 - checksum: 4ace6cda40bc3cdd59e36afb8dce6f4448f974a8214086d2541860b0e5c0de95fe22969fa4f5537e6e7fa06c00543655feaf77825dbb57da0147c38c51686707 - languageName: node - linkType: hard - -"@jupyterlab/rendermime@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/rendermime@npm:4.2.2" - dependencies: - "@jupyterlab/apputils": ^4.3.2 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/nbformat": ^4.2.2 - "@jupyterlab/observables": ^5.2.2 - "@jupyterlab/rendermime-interfaces": ^3.10.2 - "@jupyterlab/services": ^7.2.2 - "@jupyterlab/translation": ^4.2.2 - "@lumino/coreutils": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.2 - lodash.escape: ^4.0.1 - checksum: cadf8a1d7c001d3863389b7e9561a54c633a85c89713b7d204f9ba86b960b23b592bfb6c68340dac1c02d86d51e4ea1af295672120597c9d8f7c654c8f020182 - languageName: node - linkType: hard - "@jupyterlab/services@npm:^6.0.0 || ^7.0.0": version: 7.2.0 resolution: "@jupyterlab/services@npm:7.2.0" @@ -2713,25 +1889,6 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/services@npm:^7.2.2": - version: 7.2.2 - resolution: "@jupyterlab/services@npm:7.2.2" - dependencies: - "@jupyter/ydoc": ^2.0.1 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/nbformat": ^4.2.2 - "@jupyterlab/settingregistry": ^4.2.2 - "@jupyterlab/statedb": ^4.2.2 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/polling": ^2.1.2 - "@lumino/properties": ^2.0.1 - "@lumino/signaling": ^2.1.2 - ws: ^8.11.0 - checksum: dace4f2838cefb129c63cc2b20b35ce2b593e9da4db51dea2963c1109c7f9867faf0a7f428bfd53889f8560953924bf51b355f555ce4fd756b358cfaf8f145c7 - languageName: node - linkType: hard - "@jupyterlab/settingregistry@npm:^4.2.0": version: 4.2.0 resolution: "@jupyterlab/settingregistry@npm:4.2.0" @@ -2751,25 +1908,6 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/settingregistry@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/settingregistry@npm:4.2.2" - dependencies: - "@jupyterlab/nbformat": ^4.2.2 - "@jupyterlab/statedb": ^4.2.2 - "@lumino/commands": ^2.3.0 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/signaling": ^2.1.2 - "@rjsf/utils": ^5.13.4 - ajv: ^8.12.0 - json5: ^2.2.3 - peerDependencies: - react: ">=16" - checksum: 610a43c2308ea7b35c58bc4fdffa0613cd04bbd56bae3f64ee7d7869ae8e484e26102726f5a31f6ae2ffc6f3e77527473fb1a8a9869fdbdac93d5a12984bd56d - languageName: node - linkType: hard - "@jupyterlab/statedb@npm:^4.2.0": version: 4.2.0 resolution: "@jupyterlab/statedb@npm:4.2.0" @@ -2783,258 +1921,6 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/statedb@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/statedb@npm:4.2.2" - dependencies: - "@lumino/commands": ^2.3.0 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/properties": ^2.0.1 - "@lumino/signaling": ^2.1.2 - checksum: 6fbeed16a659b3f0d9b7a86cca91a0fd082c35b500264d58206f8a79640ea34ac00192c749a96c10f8762c6153ef26d3face6e6ce30b0e84479a0a5896254c38 - languageName: node - linkType: hard - -"@jupyterlab/statusbar@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/statusbar@npm:4.2.2" - dependencies: - "@jupyterlab/ui-components": ^4.2.2 - "@lumino/algorithm": ^2.0.1 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.2 - react: ^18.2.0 - checksum: f687fe87f693036edabaf7273aa3b1da89dac4636daf6632bb8d76bf79693ca713f83105247a90b1b378bfc42f61313d3ebc6177a01d2647b957c3c1b01e25f3 - languageName: node - linkType: hard - -"@jupyterlab/toc@npm:^6.2.2": - version: 6.2.2 - resolution: "@jupyterlab/toc@npm:6.2.2" - dependencies: - "@jupyterlab/apputils": ^4.3.2 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/docregistry": ^4.2.2 - "@jupyterlab/observables": ^5.2.2 - "@jupyterlab/rendermime": ^4.2.2 - "@jupyterlab/rendermime-interfaces": ^3.10.2 - "@jupyterlab/translation": ^4.2.2 - "@jupyterlab/ui-components": ^4.2.2 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.2 - react: ^18.2.0 - checksum: 8b8692da9d0b85e35fe59cc21b026ce25e5f8cb5c21607d304512cab2ef280dd9e2468dedbf6819aedb8f5e17ae7ee757504008dc792886531d09beed98e2f9e - languageName: node - linkType: hard - -"@jupyterlab/translation@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/translation@npm:4.2.2" - dependencies: - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/rendermime-interfaces": ^3.10.2 - "@jupyterlab/services": ^7.2.2 - "@jupyterlab/statedb": ^4.2.2 - "@lumino/coreutils": ^2.1.2 - checksum: faeda0940384b5d204e5f7ca0e50cdf0122d6be8618a10c9c77ba57b675fc7045c65da8c1fc51fb4803361b7d0bbbbd1d6d224d5905677f3782231bdad2f8164 - languageName: node - linkType: hard - -"@jupyterlab/ui-components@npm:^4.2.2": - version: 4.2.2 - resolution: "@jupyterlab/ui-components@npm:4.2.2" - dependencies: - "@jupyter/react-components": ^0.15.3 - "@jupyter/web-components": ^0.15.3 - "@jupyterlab/coreutils": ^6.2.2 - "@jupyterlab/observables": ^5.2.2 - "@jupyterlab/rendermime-interfaces": ^3.10.2 - "@jupyterlab/translation": ^4.2.2 - "@lumino/algorithm": ^2.0.1 - "@lumino/commands": ^2.3.0 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/polling": ^2.1.2 - "@lumino/properties": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/virtualdom": ^2.0.1 - "@lumino/widgets": ^2.3.2 - "@rjsf/core": ^5.13.4 - "@rjsf/utils": ^5.13.4 - react: ^18.2.0 - react-dom: ^18.2.0 - typestyle: ^2.0.4 - peerDependencies: - react: ^18.2.0 - checksum: 5e0f7c835dd64db51332966cb56b5b5f12a22b4b42b229ade772b853dc31aab92ec323125a2e7781e3c7acd41949cd5600b1f1421e64ebafe1c05957e1176501 - languageName: node - linkType: hard - -"@lezer/common@npm:^1.0.0, @lezer/common@npm:^1.0.2, @lezer/common@npm:^1.1.0, @lezer/common@npm:^1.2.0, @lezer/common@npm:^1.2.1": - version: 1.2.1 - resolution: "@lezer/common@npm:1.2.1" - checksum: 0bd092e293a509ce334f4aaf9a4d4a25528f743cd9d7e7948c697e34ac703b805b288b62ad01563488fb206fc34ff05084f7fc5d864be775924b3d0d53ea5dd2 - languageName: node - linkType: hard - -"@lezer/cpp@npm:^1.0.0": - version: 1.1.2 - resolution: "@lezer/cpp@npm:1.1.2" - dependencies: - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - checksum: a319cd46fd32affc07c9432e9b2b9954becf7766be0361176c525d03474bb794cc051aad9932f48c9df33833eee1d6bfdccab12e571f2b137b4ca765c60c75de - languageName: node - linkType: hard - -"@lezer/css@npm:^1.0.0, @lezer/css@npm:^1.1.0": - version: 1.1.8 - resolution: "@lezer/css@npm:1.1.8" - dependencies: - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - checksum: 1f5968360dbac7ba27f0c2a194143769f7b01824715274dd8507dacf13cc790bb8c48ce95de355e9c58be93bb3e271bf98b9fc51213f79e4ce918e7c7ebbef04 - languageName: node - linkType: hard - -"@lezer/generator@npm:^1.7.0": - version: 1.7.1 - resolution: "@lezer/generator@npm:1.7.1" - dependencies: - "@lezer/common": ^1.1.0 - "@lezer/lr": ^1.3.0 - bin: - lezer-generator: src/lezer-generator.cjs - checksum: e46df5a31252fb036ea17fce820acdf47672bb5405b2a38e26a430182b9a50b8513fde37d9a43d8334cde3bb2f2106ce7a5ab1a01e244876ce3217c4db59e627 - languageName: node - linkType: hard - -"@lezer/highlight@npm:^1.0.0, @lezer/highlight@npm:^1.1.3, @lezer/highlight@npm:^1.2.0": - version: 1.2.0 - resolution: "@lezer/highlight@npm:1.2.0" - dependencies: - "@lezer/common": ^1.0.0 - checksum: 5b9dfe741f95db13f6124cb9556a43011cb8041ecf490be98d44a86b04d926a66e912bcd3a766f6a3d79e064410f1a2f60ab240b50b645a12c56987bf4870086 - languageName: node - linkType: hard - -"@lezer/html@npm:^1.3.0": - version: 1.3.10 - resolution: "@lezer/html@npm:1.3.10" - dependencies: - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - checksum: cce391aab9259704ae3079b3209f74b2f248594dd8b851c28aaff26765e00ebb890a5ff1fe600f2d03aaf4ade0e36de8048d9632b12bfbccd47b3e649c3b0ecd - languageName: node - linkType: hard - -"@lezer/java@npm:^1.0.0": - version: 1.1.2 - resolution: "@lezer/java@npm:1.1.2" - dependencies: - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - checksum: 752e8c9b99cccf022669a702016e0c3a793d8326e043b1d053159f5de4d222cd188e8e31e1427cbe6a8ed8e53de3977ab551c64cbd5a76a12eb3a1da5e18b6a5 - languageName: node - linkType: hard - -"@lezer/javascript@npm:^1.0.0": - version: 1.4.17 - resolution: "@lezer/javascript@npm:1.4.17" - dependencies: - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.1.3 - "@lezer/lr": ^1.3.0 - checksum: dfcc4130af0bc681cd1ff6ec655a58e747fd877d8aadad2deba5f84512fa539177ece602c5389f4354c93555d3064737dedbe3384ca48b03c4968126bfd1b9a9 - languageName: node - linkType: hard - -"@lezer/json@npm:^1.0.0": - version: 1.0.2 - resolution: "@lezer/json@npm:1.0.2" - dependencies: - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - checksum: f899d13765d95599c9199fc3404cb57969031dc40ce07de30f4e648979153966581f0bee02e2f8f70463b0a5322206a97c2fe8d5d14f218888c72a6dcedf90ef - languageName: node - linkType: hard - -"@lezer/lr@npm:^1.0.0, @lezer/lr@npm:^1.1.0, @lezer/lr@npm:^1.3.0": - version: 1.4.1 - resolution: "@lezer/lr@npm:1.4.1" - dependencies: - "@lezer/common": ^1.0.0 - checksum: 65ae107a14619b1c514040eec2c48470e921895bb10a80d0b90e7735e121138c50e8207e2e0d9339e7cc42a716cdb367ae08f282c452934c89860093b26c40c2 - languageName: node - linkType: hard - -"@lezer/markdown@npm:^1.0.0, @lezer/markdown@npm:^1.2.0": - version: 1.3.0 - resolution: "@lezer/markdown@npm:1.3.0" - dependencies: - "@lezer/common": ^1.0.0 - "@lezer/highlight": ^1.0.0 - checksum: 13eb2720e4cb84278349bad8af116f748813094f99fad02680010c3a8c5985e0358c344487990f87a31ef0d6c1a2be582301f914c0e4a6e9cfa22647b6cd6545 - languageName: node - linkType: hard - -"@lezer/php@npm:^1.0.0": - version: 1.0.2 - resolution: "@lezer/php@npm:1.0.2" - dependencies: - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.1.0 - checksum: c85ef18571d37826b687dd141a0fe110f5814adaf9d1a391e7e482020d7f81df189ca89ec0dd141c1433d48eff4c6e53648b46f008dea8ad2dc574f35f1d4d79 - languageName: node - linkType: hard - -"@lezer/python@npm:^1.1.4": - version: 1.1.14 - resolution: "@lezer/python@npm:1.1.14" - dependencies: - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - checksum: 1608187f698e972d11b340dfdfd79e15b1359641e386e386befd37d5e5839620b45a5a39c5616792a24da29ef1d99d11ea0dad52b9617f1767e7ea6a11c2fed3 - languageName: node - linkType: hard - -"@lezer/rust@npm:^1.0.0": - version: 1.0.2 - resolution: "@lezer/rust@npm:1.0.2" - dependencies: - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - checksum: fc5e97852b42beeb44a0ebe316dc64e3cc49ff481c22e3e67d6003fc4a5c257fcd94959cfcc76cd154fa172db9b3b4b28de5c09f10550d6e5f14869ddc274e5b - languageName: node - linkType: hard - -"@lezer/xml@npm:^1.0.0": - version: 1.0.5 - resolution: "@lezer/xml@npm:1.0.5" - dependencies: - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - checksum: a0a077b9e455b03593b93a7fdff2a4eab2cb7b230c8e1b878a8bebe80184632b9cc75ca018f1f9e2acb3a26e1386f4777385ab6e87aea70ccf479cde5ca268ee - languageName: node - linkType: hard - "@lumino/algorithm@npm:^1.9.2": version: 1.9.2 resolution: "@lumino/algorithm@npm:1.9.2" @@ -3093,30 +1979,13 @@ __metadata: languageName: node linkType: hard -"@lumino/coreutils@npm:^1.11.0 || ^2.0.0, @lumino/coreutils@npm:^1.11.0 || ^2.1.2, @lumino/coreutils@npm:^1.11.1 || ^2, @lumino/coreutils@npm:^1.11.1 || ^2.1, @lumino/coreutils@npm:^2.1.2": +"@lumino/coreutils@npm:^1.11.0 || ^2.0.0, @lumino/coreutils@npm:^1.11.1 || ^2, @lumino/coreutils@npm:^1.11.1 || ^2.1, @lumino/coreutils@npm:^2.1.2": version: 2.1.2 resolution: "@lumino/coreutils@npm:2.1.2" checksum: 7865317ac0676b448d108eb57ab5d8b2a17c101995c0f7a7106662d9fe6c859570104525f83ee3cda12ae2e326803372206d6f4c1f415a5b59e4158a7b81066f languageName: node linkType: hard -"@lumino/datagrid@npm:^2.3.1": - version: 2.3.1 - resolution: "@lumino/datagrid@npm:2.3.1" - dependencies: - "@lumino/algorithm": ^2.0.1 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/domutils": ^2.0.1 - "@lumino/dragdrop": ^2.1.4 - "@lumino/keyboard": ^2.0.1 - "@lumino/messaging": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.2 - checksum: 5d9fa32f3eb4fac041f75276d5a03118b36257db79a29c5ccabe826d423f15473e60ea337d8148379e8906bf78850a923b149c8d2956089aa940eae419b00e60 - languageName: node - linkType: hard - "@lumino/disposable@npm:^1.10.0 || ^2.0.0, @lumino/disposable@npm:^2.1.2": version: 2.1.2 resolution: "@lumino/disposable@npm:2.1.2" @@ -3207,7 +2076,7 @@ __metadata: languageName: node linkType: hard -"@lumino/widgets@npm:^1.30.0 || ^2.1, @lumino/widgets@npm:^1.37.2 || ^2.3.2, @lumino/widgets@npm:^2.3.1, @lumino/widgets@npm:^2.3.2": +"@lumino/widgets@npm:^1.30.0 || ^2.1, @lumino/widgets@npm:^2.3.1, @lumino/widgets@npm:^2.3.2": version: 2.3.2 resolution: "@lumino/widgets@npm:2.3.2" dependencies: @@ -3226,53 +2095,6 @@ __metadata: languageName: node linkType: hard -"@microsoft/fast-colors@npm:^5.3.1": - version: 5.3.1 - resolution: "@microsoft/fast-colors@npm:5.3.1" - checksum: ff87f402faadb4b5aeee3d27762566c11807f927cd4012b8bbc7f073ca68de0e2197f95330ff5dfd7038f4b4f0e2f51b11feb64c5d570f5c598d37850a5daf60 - languageName: node - linkType: hard - -"@microsoft/fast-element@npm:^1.12.0, @microsoft/fast-element@npm:^1.13.0": - version: 1.13.0 - resolution: "@microsoft/fast-element@npm:1.13.0" - checksum: 1cb7b4cfb7531116a3542d3f59bf1dd35106194f5764205403590250aaff744de79e35a5a1f36b4941c4eda9edc088148d4d629fb80be15fdf25f6be01770f3a - languageName: node - linkType: hard - -"@microsoft/fast-foundation@npm:^2.49.4, @microsoft/fast-foundation@npm:^2.49.6": - version: 2.49.6 - resolution: "@microsoft/fast-foundation@npm:2.49.6" - dependencies: - "@microsoft/fast-element": ^1.13.0 - "@microsoft/fast-web-utilities": ^5.4.1 - tabbable: ^5.2.0 - tslib: ^1.13.0 - checksum: 15fdf9dd0b910a72a9cff140f765d522304df11f8a78d5a97a815e2bbae25027c2b336e94f89ca31e650d6aabe17b590b7453acc0d2cb7340c219eb76350a942 - languageName: node - linkType: hard - -"@microsoft/fast-react-wrapper@npm:^0.3.22": - version: 0.3.24 - resolution: "@microsoft/fast-react-wrapper@npm:0.3.24" - dependencies: - "@microsoft/fast-element": ^1.13.0 - "@microsoft/fast-foundation": ^2.49.6 - peerDependencies: - react: ">=16.9.0" - checksum: 1d7a87509c22872bafc9b5c64f66659e52ba0cfdff484d7204125e503dafdea143f5e1bd2a643e2f3fbba6cc7567d916393369433f19dab9f0adcbe7a88b7d98 - languageName: node - linkType: hard - -"@microsoft/fast-web-utilities@npm:^5.4.1": - version: 5.4.1 - resolution: "@microsoft/fast-web-utilities@npm:5.4.1" - dependencies: - exenv-es6: ^1.1.1 - checksum: 303e87847f962944f474e3716c3eb305668243916ca9e0719e26bb9a32346144bc958d915c103776b3e552cea0f0f6233f839fad66adfdf96a8436b947288ca7 - languageName: node - linkType: hard - "@nodelib/fs.scandir@npm:2.1.5": version: 2.1.5 resolution: "@nodelib/fs.scandir@npm:2.1.5" @@ -3343,474 +2165,43 @@ __metadata: languageName: node linkType: hard -"@playwright/test@npm:^1.43.1": - version: 1.44.1 - resolution: "@playwright/test@npm:1.44.1" - dependencies: - playwright: 1.44.1 - bin: - playwright: cli.js - checksum: 90507b77e388aa984deb92db56f7bb3b305c6be441e1d0087ca046989cfdda068bbc26d75bd29c20ad3dbb2434e69a8ff0d6b30003b88c9234cd3aa6a9f7deb9 - languageName: node - linkType: hard - -"@rjsf/core@npm:^5.13.4": - version: 5.18.4 - resolution: "@rjsf/core@npm:5.18.4" - dependencies: - lodash: ^4.17.21 - lodash-es: ^4.17.21 - markdown-to-jsx: ^7.4.1 - nanoid: ^3.3.7 - prop-types: ^15.8.1 - peerDependencies: - "@rjsf/utils": ^5.18.x - react: ^16.14.0 || >=17 - checksum: 8c3f49914be396595ce67dc4c36ac25c5cb6673917ec82c47f79321f5bb78d02741e8dca39287d0435270e7c9ccb06f7d40e396bdf71a3e9eb1371ef16954817 - languageName: node - linkType: hard - "@rjsf/utils@npm:^5.13.4": version: 5.18.3 resolution: "@rjsf/utils@npm:5.18.3" dependencies: json-schema-merge-allof: "npm:^0.8.1" - jsonpointer: "npm:^5.0.1" - lodash: "npm:^4.17.21" - lodash-es: "npm:^4.17.21" - react-is: "npm:^18.2.0" - peerDependencies: - react: ^16.14.0 || >=17 - checksum: 36f6574836e8ccad27b8215f940cb86b1a02939d325e0223a8d8e70b9ae65245e6649dd4835a40e628153f26d961a5cfbdd6c0bdd7b70a80f7cb1911357f78ff - languageName: node - linkType: hard - -"@sinclair/typebox@npm:^0.27.8": - version: 0.27.8 - resolution: "@sinclair/typebox@npm:0.27.8" - checksum: 00bd7362a3439021aa1ea51b0e0d0a0e8ca1351a3d54c606b115fdcc49b51b16db6e5f43b4fe7a28c38688523e22a94d49dd31168868b655f0d4d50f032d07a1 - languageName: node - linkType: hard - -"@sinonjs/commons@npm:^3.0.0": - version: 3.0.1 - resolution: "@sinonjs/commons@npm:3.0.1" - dependencies: - type-detect: "npm:4.0.8" - checksum: a7c3e7cc612352f4004873747d9d8b2d4d90b13a6d483f685598c945a70e734e255f1ca5dc49702515533c403b32725defff148177453b3f3915bcb60e9d4601 - languageName: node - linkType: hard - -"@sinonjs/fake-timers@npm:^10.0.2": - version: 10.3.0 - resolution: "@sinonjs/fake-timers@npm:10.3.0" - dependencies: - "@sinonjs/commons": "npm:^3.0.0" - checksum: 614d30cb4d5201550c940945d44c9e0b6d64a888ff2cd5b357f95ad6721070d6b8839cd10e15b76bf5e14af0bcc1d8f9ec00d49a46318f1f669a4bec1d7f3148 - languageName: node - linkType: hard - -"@stdlib/array@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/array@npm:0.0.12" - dependencies: - "@stdlib/assert": ^0.0.x - "@stdlib/blas": ^0.0.x - "@stdlib/complex": ^0.0.x - "@stdlib/constants": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/symbol": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 0d95690461f0c4560eabef0796d1170274415cd03de80333c6d39814d0484a6873ef4be04a64941ebf3a600747e84c3a4f23b21c7020e53842c07985331b39f1 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/assert@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/assert@npm:0.0.12" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/cli": ^0.0.x - "@stdlib/complex": ^0.0.x - "@stdlib/constants": ^0.0.x - "@stdlib/fs": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/ndarray": ^0.0.x - "@stdlib/number": ^0.0.x - "@stdlib/os": ^0.0.x - "@stdlib/process": ^0.0.x - "@stdlib/regexp": ^0.0.x - "@stdlib/streams": ^0.0.x - "@stdlib/string": ^0.0.x - "@stdlib/symbol": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: d4dcbeabbfb86ba56cdd972ff785f43e7d25018b2b1800cab8b0deb9e5c54c795d6ead3d142f4dd13c351f636deba4dc1857c85147d6b059fdc78eb2c9510b99 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/bigint@npm:^0.0.x": - version: 0.0.11 - resolution: "@stdlib/bigint@npm:0.0.11" - dependencies: - "@stdlib/utils": ^0.0.x - checksum: 7bf825d116e4b010e214209af239706ac1ef923eecb5c8b0af9229c9975450081355e441ecc7b4765d81a9e653141868e0492b8061d1e65724fa42fb8283aabd - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/blas@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/blas@npm:0.0.12" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/number": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 67ea00a968f7a9c710b37f718b7f756e2830e479a1a1ee44cbf6ec3cc27dd8863078928867707d9d1624007e81de89d040f2326d10f435e2cce913cab121975e - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/buffer@npm:^0.0.x": - version: 0.0.11 - resolution: "@stdlib/buffer@npm:0.0.11" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/process": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 93df02e3bf548e940ff9cef65121566e7bf93b554f0614d62336c9dbccfc07c9f1b1c4e9a7aebbe4819ef16a6d2a33a7010c2fdf908fface8298a3109c3c4ef0 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/cli@npm:^0.0.x": - version: 0.0.10 - resolution: "@stdlib/cli@npm:0.0.10" - dependencies: - "@stdlib/utils": ^0.0.x - minimist: ^1.2.0 - checksum: bbece8d3dbff2835518582a7726c6c4c22743dc408d2303d9e35a3b72151d5d0a8e78d61bc896663d4c3fb702e966abea7a1bd621ed943723a359f57053f121f - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/complex@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/complex@npm:0.0.12" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 8eda35027495417f1b0dd9bbbc2d4983f50ad3cf9e2276ffe0945ccdbe78f0fc66b9fc36ab71926d2a125c8fb7467c8970a222b230b42ff4bb8042c53314ca09 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/constants@npm:^0.0.x": - version: 0.0.11 - resolution: "@stdlib/constants@npm:0.0.11" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/number": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: fc19d055a4e71ae84b6c92e4a3a88371d50693da8f0a813df4063dc549374d19b9cf23f4fdae2fb7b2013e13929f713c3e1b9e4054767e741b75561ed43d15c3 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/fs@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/fs@npm:0.0.12" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/cli": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/process": ^0.0.x - "@stdlib/string": ^0.0.x - "@stdlib/utils": ^0.0.x - debug: ^2.6.9 - checksum: 33ac5ee4844d4599fe3a8a8402f1a3e2cafee31a5c9cf5b85df530a61a2b54ef17dc30a67be98dacdc2958219413edd0e4cdc3c28266f4bc30277ee024f6a49e - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/math@npm:^0.0.x": - version: 0.0.11 - resolution: "@stdlib/math@npm:0.0.11" - dependencies: - "@stdlib/assert": ^0.0.x - "@stdlib/constants": ^0.0.x - "@stdlib/ndarray": ^0.0.x - "@stdlib/number": ^0.0.x - "@stdlib/strided": ^0.0.x - "@stdlib/symbol": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - debug: ^2.6.9 - checksum: 6c4c9dda36fbce50553e1437354c5286aa782c42399534dbed8e696ddeb1b91ef6cff5fe5962f1c9e1eb2ef63c63d9bd58f7ca4b87d59018aaac20099c3fb79a - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/ndarray@npm:^0.0.x": - version: 0.0.13 - resolution: "@stdlib/ndarray@npm:0.0.13" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/bigint": ^0.0.x - "@stdlib/buffer": ^0.0.x - "@stdlib/complex": ^0.0.x - "@stdlib/constants": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/number": ^0.0.x - "@stdlib/string": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 842a94afce5fc74bf8a964b75a302ddb8713eadbc79616e6799f1310c8bce860ed9e9877adc4a39338d9136b8798947ee21cf03368d46408308a313c8075d49a - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/nlp@npm:^0.0.x": - version: 0.0.11 - resolution: "@stdlib/nlp@npm:0.0.11" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/random": ^0.0.x - "@stdlib/string": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 398fe2853fb95404bb6598e3e199ca3e0435b94447d50e14e2e30582cadfb91f43464f23d80a0e1da4d64567a4a108a7299d7440509f1ab26b02aea7bb16e9a8 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/number@npm:^0.0.x": - version: 0.0.10 - resolution: "@stdlib/number@npm:0.0.10" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/constants": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/os": ^0.0.x - "@stdlib/string": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 326190956c787cbf9321c332beedab5ba4b3fa97d52a82aa708a0349b4678c0df7a351424f00a606f4eaca4fb4ba4cc191580c99d7c64ee0f08d37baa3de14f2 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/os@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/os@npm:0.0.12" - dependencies: - "@stdlib/assert": ^0.0.x - "@stdlib/cli": ^0.0.x - "@stdlib/fs": ^0.0.x - "@stdlib/process": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 37156b0c723da70d7740d92d08fc592eae803461c1d546cff6ac044765d6e40722fdad342219277e747c39344b513096ac1d0aa1e733cf3079bd8a9a8578612a - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/process@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/process@npm:0.0.12" - dependencies: - "@stdlib/assert": ^0.0.x - "@stdlib/buffer": ^0.0.x - "@stdlib/cli": ^0.0.x - "@stdlib/fs": ^0.0.x - "@stdlib/streams": ^0.0.x - "@stdlib/string": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 6d5c3d943f9914d1ae39bd36ad7436f783cf64baa2bff67a808035c99258676ae3f704c328a78d62754951cf85fe99d8e9af5f4fa7d5f8cba347bca72767e357 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/random@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/random@npm:0.0.12" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/blas": ^0.0.x - "@stdlib/buffer": ^0.0.x - "@stdlib/cli": ^0.0.x - "@stdlib/constants": ^0.0.x - "@stdlib/fs": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/process": ^0.0.x - "@stdlib/stats": ^0.0.x - "@stdlib/streams": ^0.0.x - "@stdlib/symbol": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - debug: ^2.6.9 - readable-stream: ^2.1.4 - checksum: 67fcb5553274f8596ceae91153e96ae297bacfd55279821cb09f19f2844845aaf892802e4a5962965323dbfded0c7df8a89a6ce77d60d5c8a5899d483055a964 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/regexp@npm:^0.0.x": - version: 0.0.13 - resolution: "@stdlib/regexp@npm:0.0.13" - dependencies: - "@stdlib/assert": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: dd52adb096ff9a02d1c4818be2889ae01bc04a0cdbc0d52473685e0a7a4eaa13e1be603b964f140f7488d11450b644dc5f8c97029d77db1ed4a563554245ff1c - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + jsonpointer: "npm:^5.0.1" + lodash: "npm:^4.17.21" + lodash-es: "npm:^4.17.21" + react-is: "npm:^18.2.0" + peerDependencies: + react: ^16.14.0 || >=17 + checksum: 36f6574836e8ccad27b8215f940cb86b1a02939d325e0223a8d8e70b9ae65245e6649dd4835a40e628153f26d961a5cfbdd6c0bdd7b70a80f7cb1911357f78ff languageName: node linkType: hard -"@stdlib/stats@npm:^0.0.x, @stdlib/stats@npm:~0.0.13": - version: 0.0.13 - resolution: "@stdlib/stats@npm:0.0.13" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/blas": ^0.0.x - "@stdlib/constants": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/ndarray": ^0.0.x - "@stdlib/random": ^0.0.x - "@stdlib/string": ^0.0.x - "@stdlib/symbol": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 5ca12b2e123543f56a59aca828e14afaf525ad4aa40467bee7037a9178e21e55d4ce8ba3de9387cc9a0efe3e0d035d6c58705b12f634f77a2b3f87d334dfb076 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/streams@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/streams@npm:0.0.12" - dependencies: - "@stdlib/assert": ^0.0.x - "@stdlib/buffer": ^0.0.x - "@stdlib/cli": ^0.0.x - "@stdlib/fs": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - debug: ^2.6.9 - readable-stream: ^2.1.4 - checksum: 231b4607d082ea81d9dadbeab08002ec398a29c7eb5d611d8a4183f9db6964428e2f8a9e0f8edd085ca12b5d58258576987a575e9d8f6fcabcb5a62c6b8efe88 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/strided@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/strided@npm:0.0.12" - dependencies: - "@stdlib/assert": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/ndarray": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 55ccc8543596894a2e3ad734b394700c69697b499a54b3bfbcf80cddd8d91509792c23931f5cebf7c89269676ac3f44352582e4f42e2c2c2898363cc3a76403d - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/string@npm:^0.0.x": - version: 0.0.14 - resolution: "@stdlib/string@npm:0.0.14" - dependencies: - "@stdlib/assert": ^0.0.x - "@stdlib/cli": ^0.0.x - "@stdlib/constants": ^0.0.x - "@stdlib/fs": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/nlp": ^0.0.x - "@stdlib/process": ^0.0.x - "@stdlib/regexp": ^0.0.x - "@stdlib/streams": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: aaaaaddf381cccc67f15dbab76f43ce81cb71a4f5595bfa06ef915b6747458deca3c25c60ff3c002c0c36482687d92a150f364069559dfea915f63a040d5f603 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/symbol@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/symbol@npm:0.0.12" - dependencies: - "@stdlib/assert": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 2263341ce0296de2063d26038902bd63bf1d7b820307402fdf38c3b248bd026f17d96bccdc3189fd9fcc9c83a778eaab797dc11805bd66203b8ac9c6934f6588 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) +"@sinclair/typebox@npm:^0.27.8": + version: 0.27.8 + resolution: "@sinclair/typebox@npm:0.27.8" + checksum: 00bd7362a3439021aa1ea51b0e0d0a0e8ca1351a3d54c606b115fdcc49b51b16db6e5f43b4fe7a28c38688523e22a94d49dd31168868b655f0d4d50f032d07a1 languageName: node linkType: hard -"@stdlib/time@npm:^0.0.x": - version: 0.0.14 - resolution: "@stdlib/time@npm:0.0.14" +"@sinonjs/commons@npm:^3.0.0": + version: 3.0.1 + resolution: "@sinonjs/commons@npm:3.0.1" dependencies: - "@stdlib/assert": ^0.0.x - "@stdlib/cli": ^0.0.x - "@stdlib/constants": ^0.0.x - "@stdlib/fs": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/string": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 6e8a1b985a09936ab09c98d44bf1b2c79e08995c3c73401494bc1f6f708747ef136d769af4809a8af92a9ceb3d390db6c4c4e01608cd8d794a86c4b57e343eb1 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) + type-detect: "npm:4.0.8" + checksum: a7c3e7cc612352f4004873747d9d8b2d4d90b13a6d483f685598c945a70e734e255f1ca5dc49702515533c403b32725defff148177453b3f3915bcb60e9d4601 languageName: node linkType: hard -"@stdlib/types@npm:^0.0.x": - version: 0.0.14 - resolution: "@stdlib/types@npm:0.0.14" - checksum: 5680a655ddb3ad730f5c7eb2363a43e089f3e6a1b85b12546cab49f7749bb3baf293bd50fbfe55486f233f4227f1020b65eb461b754b94fb4a4bc2799647ec22 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/utils@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/utils@npm:0.0.12" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/blas": ^0.0.x - "@stdlib/buffer": ^0.0.x - "@stdlib/cli": ^0.0.x - "@stdlib/constants": ^0.0.x - "@stdlib/fs": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/os": ^0.0.x - "@stdlib/process": ^0.0.x - "@stdlib/random": ^0.0.x - "@stdlib/regexp": ^0.0.x - "@stdlib/streams": ^0.0.x - "@stdlib/string": ^0.0.x - "@stdlib/symbol": ^0.0.x - "@stdlib/time": ^0.0.x - "@stdlib/types": ^0.0.x - debug: ^2.6.9 - checksum: e0c3671c5f62c11bb3abd721f2958c41641b00a75d449bd25fbb62bcb8689cfe9c1f600c0688e7b6819ae870d6e5974d0fc7b2ec86081c45d9194b316b2a2ec2 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) +"@sinonjs/fake-timers@npm:^10.0.2": + version: 10.3.0 + resolution: "@sinonjs/fake-timers@npm:10.3.0" + dependencies: + "@sinonjs/commons": "npm:^3.0.0" + checksum: 614d30cb4d5201550c940945d44c9e0b6d64a888ff2cd5b357f95ad6721070d6b8839cd10e15b76bf5e14af0bcc1d8f9ec00d49a46318f1f669a4bec1d7f3148 languageName: node linkType: hard @@ -3885,20 +2276,13 @@ __metadata: languageName: node linkType: hard -"@types/estree@npm:*, @types/estree@npm:^1.0.0, @types/estree@npm:^1.0.5": +"@types/estree@npm:*, @types/estree@npm:^1.0.5": version: 1.0.5 resolution: "@types/estree@npm:1.0.5" checksum: dd8b5bed28e6213b7acd0fb665a84e693554d850b0df423ac8076cc3ad5823a6bc26b0251d080bdc545af83179ede51dd3f6fa78cad2c46ed1f29624ddf3e41a languageName: node linkType: hard -"@types/geojson@npm:7946.0.4": - version: 7946.0.4 - resolution: "@types/geojson@npm:7946.0.4" - checksum: 541aea46540c918b9fe21ab73f497fe17b1eaf4d0d3baeb5f5614029b7f488c37f63843b644c024a8178dc2fb66d3d6623c25d9cf61d7b553aa19c8dc7f99047 - languageName: node - linkType: hard - "@types/graceful-fs@npm:^4.1.3": version: 4.1.9 resolution: "@types/graceful-fs@npm:4.1.9" @@ -3975,23 +2359,6 @@ __metadata: languageName: node linkType: hard -"@types/prop-types@npm:*": - version: 15.7.12 - resolution: "@types/prop-types@npm:15.7.12" - checksum: ac16cc3d0a84431ffa5cfdf89579ad1e2269549f32ce0c769321fdd078f84db4fbe1b461ed5a1a496caf09e637c0e367d600c541435716a55b1d9713f5035dfe - languageName: node - linkType: hard - -"@types/react@npm:^18.0.26": - version: 18.3.3 - resolution: "@types/react@npm:18.3.3" - dependencies: - "@types/prop-types": "*" - csstype: ^3.0.2 - checksum: c63d6a78163244e2022b01ef79b0baec4fe4da3475dc4a90bb8accefad35ef0c43560fd0312e5974f92a0f1108aa4d669ac72d73d66396aa060ea03b5d2e3873 - languageName: node - linkType: hard - "@types/semver@npm:^7.5.0": version: 7.5.8 resolution: "@types/semver@npm:7.5.8" @@ -4191,13 +2558,6 @@ __metadata: languageName: node linkType: hard -"@vscode/debugprotocol@npm:^1.51.0": - version: 1.65.0 - resolution: "@vscode/debugprotocol@npm:1.65.0" - checksum: 3ea504d01c67cd6a0c56fa3357f61f2dbaa426445443dba8b860292232e62e5bff7111e68e4cb844cedd564db1617e08847477a19527becd9f2608199eae4118 - languageName: node - linkType: hard - "@webassemblyjs/ast@npm:1.12.1, @webassemblyjs/ast@npm:^1.12.1": version: 1.12.1 resolution: "@webassemblyjs/ast@npm:1.12.1" @@ -5078,20 +3438,6 @@ __metadata: languageName: node linkType: hard -"commander@npm:2, commander@npm:^2.20.0": - version: 2.20.3 - resolution: "commander@npm:2.20.3" - checksum: ab8c07884e42c3a8dbc5dd9592c606176c7eb5c1ca5ff274bcf907039b2c41de3626f684ea75ccf4d361ba004bbaff1f577d5384c155f3871e456bdf27becf9e - languageName: node - linkType: hard - -"commander@npm:7": - version: 7.2.0 - resolution: "commander@npm:7.2.0" - checksum: 53501cbeee61d5157546c0bef0fedb6cdfc763a882136284bed9a07225f09a14b82d2a84e7637edfd1a679fb35ed9502fd58ef1d091e6287f60d790147f68ddc - languageName: node - linkType: hard - "commander@npm:^10.0.1": version: 10.0.1 resolution: "commander@npm:10.0.1" @@ -5099,6 +3445,13 @@ __metadata: languageName: node linkType: hard +"commander@npm:^2.20.0": + version: 2.20.3 + resolution: "commander@npm:2.20.3" + checksum: ab8c07884e42c3a8dbc5dd9592c606176c7eb5c1ca5ff274bcf907039b2c41de3626f684ea75ccf4d361ba004bbaff1f577d5384c155f3871e456bdf27becf9e + languageName: node + linkType: hard + "commander@npm:^9.4.1": version: 9.5.0 resolution: "commander@npm:9.5.0" @@ -5152,13 +3505,6 @@ __metadata: languageName: node linkType: hard -"core-util-is@npm:~1.0.0": - version: 1.0.3 - resolution: "core-util-is@npm:1.0.3" - checksum: 9de8597363a8e9b9952491ebe18167e3b36e7707569eed0ebf14f8bba773611376466ae34575bca8cfe3c767890c859c74056084738f09d4e4a6f902b2ad7d99 - languageName: node - linkType: hard - "create-jest@npm:^29.7.0": version: 29.7.0 resolution: "create-jest@npm:29.7.0" @@ -5176,13 +3522,6 @@ __metadata: languageName: node linkType: hard -"crelt@npm:^1.0.5": - version: 1.0.6 - resolution: "crelt@npm:1.0.6" - checksum: dad842093371ad702afbc0531bfca2b0a8dd920b23a42f26e66dabbed9aad9acd5b9030496359545ef3937c3aced0fd4ac39f7a2d280a23ddf9eb7fdcb94a69f - languageName: node - linkType: hard - "cross-spawn@npm:^6.0.5": version: 6.0.5 resolution: "cross-spawn@npm:6.0.5" @@ -5264,204 +3603,6 @@ __metadata: languageName: node linkType: hard -"csstype@npm:3.0.10": - version: 3.0.10 - resolution: "csstype@npm:3.0.10" - checksum: 20a8fa324f2b33ddf94aa7507d1b6ab3daa6f3cc308888dc50126585d7952f2471de69b2dbe0635d1fdc31223fef8e070842691877e725caf456e2378685a631 - languageName: node - linkType: hard - -"csstype@npm:^3.0.2": - version: 3.1.3 - resolution: "csstype@npm:3.1.3" - checksum: 8db785cc92d259102725b3c694ec0c823f5619a84741b5c7991b8ad135dfaa66093038a1cc63e03361a6cd28d122be48f2106ae72334e067dd619a51f49eddf7 - languageName: node - linkType: hard - -"d3-array@npm:1 - 3, d3-array@npm:2 - 3, d3-array@npm:2.10.0 - 3, d3-array@npm:2.5.0 - 3, d3-array@npm:3.2.4, d3-array@npm:^3.2.2": - version: 3.2.4 - resolution: "d3-array@npm:3.2.4" - dependencies: - internmap: 1 - 2 - checksum: a5976a6d6205f69208478bb44920dd7ce3e788c9dceb86b304dbe401a4bfb42ecc8b04c20facde486e9adcb488b5d1800d49393a3f81a23902b68158e12cddd0 - languageName: node - linkType: hard - -"d3-color@npm:1 - 3, d3-color@npm:^3.1.0": - version: 3.1.0 - resolution: "d3-color@npm:3.1.0" - checksum: 4931fbfda5d7c4b5cfa283a13c91a954f86e3b69d75ce588d06cde6c3628cebfc3af2069ccf225e982e8987c612aa7948b3932163ce15eb3c11cd7c003f3ee3b - languageName: node - linkType: hard - -"d3-delaunay@npm:^6.0.2": - version: 6.0.4 - resolution: "d3-delaunay@npm:6.0.4" - dependencies: - delaunator: 5 - checksum: ce6d267d5ef21a8aeadfe4606329fc80a22ab6e7748d47bc220bcc396ee8be84b77a5473033954c5ac4aa522d265ddc45d4165d30fe4787dd60a15ea66b9bbb4 - languageName: node - linkType: hard - -"d3-dispatch@npm:1 - 3": - version: 3.0.1 - resolution: "d3-dispatch@npm:3.0.1" - checksum: fdfd4a230f46463e28e5b22a45dd76d03be9345b605e1b5dc7d18bd7ebf504e6c00ae123fd6d03e23d9e2711e01f0e14ea89cd0632545b9f0c00b924ba4be223 - languageName: node - linkType: hard - -"d3-dsv@npm:^3.0.1": - version: 3.0.1 - resolution: "d3-dsv@npm:3.0.1" - dependencies: - commander: 7 - iconv-lite: 0.6 - rw: 1 - bin: - csv2json: bin/dsv2json.js - csv2tsv: bin/dsv2dsv.js - dsv2dsv: bin/dsv2dsv.js - dsv2json: bin/dsv2json.js - json2csv: bin/json2dsv.js - json2dsv: bin/json2dsv.js - json2tsv: bin/json2dsv.js - tsv2csv: bin/dsv2dsv.js - tsv2json: bin/dsv2json.js - checksum: 5fc0723647269d5dccd181d74f2265920ab368a2868b0b4f55ffa2fecdfb7814390ea28622cd61ee5d9594ab262879509059544e9f815c54fe76fbfb4ffa4c8a - languageName: node - linkType: hard - -"d3-force@npm:^3.0.0": - version: 3.0.0 - resolution: "d3-force@npm:3.0.0" - dependencies: - d3-dispatch: 1 - 3 - d3-quadtree: 1 - 3 - d3-timer: 1 - 3 - checksum: 6c7e96438cab62fa32aeadb0ade3297b62b51f81b1b38b0a60a5ec9fd627d74090c1189654d92df2250775f31b06812342f089f1d5947de9960a635ee3581def - languageName: node - linkType: hard - -"d3-format@npm:1 - 3, d3-format@npm:^3.1.0": - version: 3.1.0 - resolution: "d3-format@npm:3.1.0" - checksum: f345ec3b8ad3cab19bff5dead395bd9f5590628eb97a389b1dd89f0b204c7c4fc1d9520f13231c2c7cf14b7c9a8cf10f8ef15bde2befbab41454a569bd706ca2 - languageName: node - linkType: hard - -"d3-geo-projection@npm:^4.0.0": - version: 4.0.0 - resolution: "d3-geo-projection@npm:4.0.0" - dependencies: - commander: 7 - d3-array: 1 - 3 - d3-geo: 1.12.0 - 3 - bin: - geo2svg: bin/geo2svg.js - geograticule: bin/geograticule.js - geoproject: bin/geoproject.js - geoquantize: bin/geoquantize.js - geostitch: bin/geostitch.js - checksum: 631422b10dd78d1047ba5a3b073148bea27721060bd7087a5fa6c053ca80445d26432e505e0e3acbd6e0d76cf577c61bf9a5db70dabbc9310c493de1f7ff736d - languageName: node - linkType: hard - -"d3-geo@npm:1.12.0 - 3, d3-geo@npm:^3.1.0": - version: 3.1.1 - resolution: "d3-geo@npm:3.1.1" - dependencies: - d3-array: 2.5.0 - 3 - checksum: 3cc4bb50af5d2d4858d2df1729a1777b7fd361854079d9faab1166186c988d2cba0d11911da0c4598d5e22fae91d79113ed262a9f98cabdbc6dbf7c30e5c0363 - languageName: node - linkType: hard - -"d3-hierarchy@npm:^3.1.2": - version: 3.1.2 - resolution: "d3-hierarchy@npm:3.1.2" - checksum: 0fd946a8c5fd4686d43d3e11bbfc2037a145fda29d2261ccd0e36f70b66af6d7638e2c0c7112124d63fc3d3127197a00a6aecf676bd5bd392a94d7235a214263 - languageName: node - linkType: hard - -"d3-interpolate@npm:1 - 3, d3-interpolate@npm:1.2.0 - 3, d3-interpolate@npm:^3.0.1": - version: 3.0.1 - resolution: "d3-interpolate@npm:3.0.1" - dependencies: - d3-color: 1 - 3 - checksum: a42ba314e295e95e5365eff0f604834e67e4a3b3c7102458781c477bd67e9b24b6bb9d8e41ff5521050a3f2c7c0c4bbbb6e187fd586daa3980943095b267e78b - languageName: node - linkType: hard - -"d3-path@npm:^3.1.0": - version: 3.1.0 - resolution: "d3-path@npm:3.1.0" - checksum: 2306f1bd9191e1eac895ec13e3064f732a85f243d6e627d242a313f9777756838a2215ea11562f0c7630c7c3b16a19ec1fe0948b1c82f3317fac55882f6ee5d8 - languageName: node - linkType: hard - -"d3-quadtree@npm:1 - 3": - version: 3.0.1 - resolution: "d3-quadtree@npm:3.0.1" - checksum: 5469d462763811475f34a7294d984f3eb100515b0585ca5b249656f6b1a6e99b20056a2d2e463cc9944b888896d2b1d07859c50f9c0cf23438df9cd2e3146066 - languageName: node - linkType: hard - -"d3-scale-chromatic@npm:^3.1.0": - version: 3.1.0 - resolution: "d3-scale-chromatic@npm:3.1.0" - dependencies: - d3-color: 1 - 3 - d3-interpolate: 1 - 3 - checksum: ab6324bd8e1f708e731e02ab44e09741efda2b174cea1d8ca21e4a87546295e99856bc44e2fd3890f228849c96bccfbcf922328f95be6a7df117453eb5cf22c9 - languageName: node - linkType: hard - -"d3-scale@npm:^4.0.2": - version: 4.0.2 - resolution: "d3-scale@npm:4.0.2" - dependencies: - d3-array: 2.10.0 - 3 - d3-format: 1 - 3 - d3-interpolate: 1.2.0 - 3 - d3-time: 2.1.1 - 3 - d3-time-format: 2 - 4 - checksum: a9c770d283162c3bd11477c3d9d485d07f8db2071665f1a4ad23eec3e515e2cefbd369059ec677c9ac849877d1a765494e90e92051d4f21111aa56791c98729e - languageName: node - linkType: hard - -"d3-shape@npm:^3.2.0": - version: 3.2.0 - resolution: "d3-shape@npm:3.2.0" - dependencies: - d3-path: ^3.1.0 - checksum: de2af5fc9a93036a7b68581ca0bfc4aca2d5a328aa7ba7064c11aedd44d24f310c20c40157cb654359d4c15c3ef369f95ee53d71221017276e34172c7b719cfa - languageName: node - linkType: hard - -"d3-time-format@npm:2 - 4, d3-time-format@npm:^4.1.0": - version: 4.1.0 - resolution: "d3-time-format@npm:4.1.0" - dependencies: - d3-time: 1 - 3 - checksum: 7342bce28355378152bbd4db4e275405439cabba082d9cd01946d40581140481c8328456d91740b0fe513c51ec4a467f4471ffa390c7e0e30ea30e9ec98fcdf4 - languageName: node - linkType: hard - -"d3-time@npm:1 - 3, d3-time@npm:2.1.1 - 3, d3-time@npm:^3.1.0": - version: 3.1.0 - resolution: "d3-time@npm:3.1.0" - dependencies: - d3-array: 2 - 3 - checksum: 613b435352a78d9f31b7f68540788186d8c331b63feca60ad21c88e9db1989fe888f97f242322ebd6365e45ec3fb206a4324cd4ca0dfffa1d9b5feb856ba00a7 - languageName: node - linkType: hard - -"d3-timer@npm:1 - 3, d3-timer@npm:^3.0.1": - version: 3.0.1 - resolution: "d3-timer@npm:3.0.1" - checksum: 1cfddf86d7bca22f73f2c427f52dfa35c49f50d64e187eb788dcad6e927625c636aa18ae4edd44d084eb9d1f81d8ca4ec305dae7f733c15846a824575b789d73 - languageName: node - linkType: hard - "data-urls@npm:^2.0.0": version: 2.0.0 resolution: "data-urls@npm:2.0.0" @@ -5518,15 +3659,6 @@ __metadata: languageName: node linkType: hard -"debug@npm:^2.6.9": - version: 2.6.9 - resolution: "debug@npm:2.6.9" - dependencies: - ms: 2.0.0 - checksum: d2f51589ca66df60bf36e1fa6e4386b318c3f1e06772280eea5b1ae9fd3d05e9c2b7fd8a7d862457d00853c75b00451aa2d7459b924629ee385287a650f58fe6 - languageName: node - linkType: hard - "dedent@npm:^1.0.0": version: 1.5.3 resolution: "dedent@npm:1.5.3" @@ -5575,15 +3707,6 @@ __metadata: languageName: node linkType: hard -"delaunator@npm:5": - version: 5.0.1 - resolution: "delaunator@npm:5.0.1" - dependencies: - robust-predicates: ^3.0.2 - checksum: 69ee43ec649b4a13b7f33c8a027fb3e8dfcb09266af324286118da757e04d3d39df619b905dca41421405c311317ccf632ecfa93db44519bacec3303c57c5a0b - languageName: node - linkType: hard - "detect-newline@npm:^3.0.0": version: 3.1.0 resolution: "detect-newline@npm:3.1.0" @@ -6099,13 +4222,6 @@ __metadata: languageName: node linkType: hard -"exenv-es6@npm:^1.1.1": - version: 1.1.1 - resolution: "exenv-es6@npm:1.1.1" - checksum: 7f2aa12025e6f06c48dc286f380cf3183bb19c6017b36d91695034a3e5124a7235c4f8ff24ca2eb88ae801322f0f99605cedfcfd996a5fcbba7669320e2a448e - languageName: node - linkType: hard - "exit@npm:^0.1.2": version: 0.1.2 resolution: "exit@npm:0.1.2" @@ -6290,13 +4406,6 @@ __metadata: languageName: node linkType: hard -"free-style@npm:3.1.0": - version: 3.1.0 - resolution: "free-style@npm:3.1.0" - checksum: 949258ae315deda48cac93ecd5f9a80f36e8a027e19ce2103598dc8d5ab60e963bbad5444b2a4990ddb746798dd188896f430285cf484afbf2141f7d75a191d8 - languageName: node - linkType: hard - "fs-extra@npm:^10.1.0": version: 10.1.0 resolution: "fs-extra@npm:10.1.0" @@ -6344,16 +4453,6 @@ __metadata: languageName: node linkType: hard -"fsevents@npm:2.3.2": - version: 2.3.2 - resolution: "fsevents@npm:2.3.2" - dependencies: - node-gyp: latest - checksum: 97ade64e75091afee5265e6956cb72ba34db7819b4c3e94c431d4be2b19b8bb7a2d4116da417950c3425f17c8fe693d25e20212cac583ac1521ad066b77ae31f - conditions: os=darwin - languageName: node - linkType: hard - "fsevents@npm:^2.3.2": version: 2.3.3 resolution: "fsevents@npm:2.3.3" @@ -6364,15 +4463,6 @@ __metadata: languageName: node linkType: hard -"fsevents@patch:fsevents@2.3.2#~builtin": - version: 2.3.2 - resolution: "fsevents@patch:fsevents@npm%3A2.3.2#~builtin::version=2.3.2&hash=df0bf1" - dependencies: - node-gyp: latest - conditions: os=darwin - languageName: node - linkType: hard - "fsevents@patch:fsevents@npm%3A^2.3.2#~builtin": version: 2.3.3 resolution: "fsevents@patch:fsevents@npm%3A2.3.3#~builtin::version=2.3.3&hash=df0bf1" @@ -6736,7 +4826,7 @@ __metadata: languageName: node linkType: hard -"iconv-lite@npm:0.6, iconv-lite@npm:^0.6.2, iconv-lite@npm:^0.6.3": +"iconv-lite@npm:^0.6.2, iconv-lite@npm:^0.6.3": version: 0.6.3 resolution: "iconv-lite@npm:0.6.3" dependencies: @@ -6823,20 +4913,13 @@ __metadata: languageName: node linkType: hard -"inherits@npm:2, inherits@npm:~2.0.3": +"inherits@npm:2": version: 2.0.4 resolution: "inherits@npm:2.0.4" checksum: 4a48a733847879d6cf6691860a6b1e3f0f4754176e4d71494c41f3475553768b10f84b5ce1d40fbd0e34e6bfbb864ee35858ad4dd2cf31e02fc4a154b724d7f1 languageName: node linkType: hard -"inherits@npm:2.0.3": - version: 2.0.3 - resolution: "inherits@npm:2.0.3" - checksum: 78cb8d7d850d20a5e9a7f3620db31483aa00ad5f722ce03a55b110e5a723539b3716a3b463e2b96ce3fe286f33afc7c131fa2f91407528ba80cea98a7545d4c0 - languageName: node - linkType: hard - "internal-slot@npm:^1.0.7": version: 1.0.7 resolution: "internal-slot@npm:1.0.7" @@ -6848,13 +4931,6 @@ __metadata: languageName: node linkType: hard -"internmap@npm:1 - 2": - version: 2.0.3 - resolution: "internmap@npm:2.0.3" - checksum: 7ca41ec6aba8f0072fc32fa8a023450a9f44503e2d8e403583c55714b25efd6390c38a87161ec456bf42d7bc83aab62eb28f5aef34876b1ac4e60693d5e1d241 - languageName: node - linkType: hard - "interpret@npm:^3.1.1": version: 3.1.1 resolution: "interpret@npm:3.1.1" @@ -6881,7 +4957,6 @@ __metadata: "@jupyter-widgets/base": ^1.1.10 || ^2 || ^3 || ^4 || ^5 || ^6 "@jupyter-widgets/base-manager": ^1.0.7 "@jupyterlab/builder": ^4.0.11 - "@jupyterlab/galata": ^5.2.2 "@lumino/application": ^2.3.0 "@lumino/widgets": ^2.3.1 "@types/jest": ^29.5.11 @@ -7133,13 +5208,6 @@ __metadata: languageName: node linkType: hard -"isarray@npm:~1.0.0": - version: 1.0.0 - resolution: "isarray@npm:1.0.0" - checksum: f032df8e02dce8ec565cf2eb605ea939bdccea528dbcf565cdf92bfa2da9110461159d86a537388ef1acef8815a330642d7885b29010e8f7eac967c9993b65ab - languageName: node - linkType: hard - "isexe@npm:^2.0.0": version: 2.0.0 resolution: "isexe@npm:2.0.0" @@ -7703,7 +5771,7 @@ __metadata: languageName: node linkType: hard -"js-tokens@npm:^3.0.0 || ^4.0.0, js-tokens@npm:^4.0.0": +"js-tokens@npm:^4.0.0": version: 4.0.0 resolution: "js-tokens@npm:4.0.0" checksum: 8a95213a5a77deb6cbe94d86340e8d9ace2b93bc367790b260101d2f36a2eaf4e4e22d9fa9cf459b38af3a32fb4190e638024cf82ec95ef708680e405ea7cc78 @@ -7820,13 +5888,6 @@ __metadata: languageName: node linkType: hard -"json-stringify-pretty-compact@npm:~3.0.0": - version: 3.0.0 - resolution: "json-stringify-pretty-compact@npm:3.0.0" - checksum: 01ab5c5c8260299414868d96db97f53aef93c290fe469edd9a1363818e795006e01c952fa2fd7b47cbbab506d5768998eccc25e1da4fa2ccfebd1788c6098791 - languageName: node - linkType: hard - "json5@npm:^2.1.2, json5@npm:^2.2.3": version: 2.2.3 resolution: "json5@npm:2.2.3" @@ -7998,13 +6059,6 @@ __metadata: languageName: node linkType: hard -"lodash.escape@npm:^4.0.1": - version: 4.0.1 - resolution: "lodash.escape@npm:4.0.1" - checksum: fcb54f457497256964d619d5cccbd80a961916fca60df3fe0fa3e7f052715c2944c0ed5aefb4f9e047d127d44aa2d55555f3350cb42c6549e9e293fb30b41e7f - languageName: node - linkType: hard - "lodash.memoize@npm:4.x": version: 4.1.2 resolution: "lodash.memoize@npm:4.1.2" @@ -8019,13 +6073,6 @@ __metadata: languageName: node linkType: hard -"lodash.mergewith@npm:^4.6.1": - version: 4.6.2 - resolution: "lodash.mergewith@npm:4.6.2" - checksum: a6db2a9339752411f21b956908c404ec1e088e783a65c8b29e30ae5b3b6384f82517662d6f425cc97c2070b546cc2c7daaa8d33f78db7b6e9be06cd834abdeb8 - languageName: node - linkType: hard - "lodash@npm:^4.17.20, lodash@npm:^4.17.21, lodash@npm:^4.17.4, lodash@npm:^4.7.0": version: 4.17.21 resolution: "lodash@npm:4.17.21" @@ -8033,17 +6080,6 @@ __metadata: languageName: node linkType: hard -"loose-envify@npm:^1.1.0, loose-envify@npm:^1.4.0": - version: 1.4.0 - resolution: "loose-envify@npm:1.4.0" - dependencies: - js-tokens: ^3.0.0 || ^4.0.0 - bin: - loose-envify: cli.js - checksum: 6517e24e0cad87ec9888f500c5b5947032cdfe6ef65e1c1936a0c48a524b81e65542c9c3edc91c97d5bddc806ee2a985dbc79be89215d613b1de5db6d1cfe6f4 - languageName: node - linkType: hard - "lru-cache@npm:^10.0.1, lru-cache@npm:^10.2.0": version: 10.2.2 resolution: "lru-cache@npm:10.2.2" @@ -8105,15 +6141,6 @@ __metadata: languageName: node linkType: hard -"markdown-to-jsx@npm:^7.4.1": - version: 7.4.7 - resolution: "markdown-to-jsx@npm:7.4.7" - peerDependencies: - react: ">= 0.14.0" - checksum: bb8a696c8a95dd67ac1eb44255f31cf17e60b6c2ff03bfcd51b5e28da17856c57d7a16da59fda7f3a4eedb01d7e92eeef57a10ff3abd5431e5c80059d4565016 - languageName: node - linkType: hard - "memorystream@npm:^0.3.1": version: 0.3.1 resolution: "memorystream@npm:0.3.1" @@ -8216,7 +6243,7 @@ __metadata: languageName: node linkType: hard -"minimist@npm:^1.2.0, minimist@npm:~1.2.0": +"minimist@npm:~1.2.0": version: 1.2.8 resolution: "minimist@npm:1.2.8" checksum: 75a6d645fb122dad29c06a7597bddea977258957ed88d7a6df59b5cd3fe4a527e253e9bbf2e783e4b73657f9098b96a5fe96ab8a113655d4109108577ecf85b0 @@ -8325,13 +6352,6 @@ __metadata: languageName: node linkType: hard -"ms@npm:2.0.0": - version: 2.0.0 - resolution: "ms@npm:2.0.0" - checksum: 0e6a22b8b746d2e0b65a430519934fefd41b6db0682e3477c10f60c76e947c4c0ad06f63ffdf1d78d335f83edee8c0aa928aa66a36c7cd95b69b26f468d527f4 - languageName: node - linkType: hard - "ms@npm:2.1.2": version: 2.1.2 resolution: "ms@npm:2.1.2" @@ -8376,20 +6396,6 @@ __metadata: languageName: node linkType: hard -"node-fetch@npm:^2.6.7": - version: 2.7.0 - resolution: "node-fetch@npm:2.7.0" - dependencies: - whatwg-url: ^5.0.0 - peerDependencies: - encoding: ^0.1.0 - peerDependenciesMeta: - encoding: - optional: true - checksum: d76d2f5edb451a3f05b15115ec89fc6be39de37c6089f1b6368df03b91e1633fd379a7e01b7ab05089a25034b2023d959b47e59759cb38d88341b2459e89d6e5 - languageName: node - linkType: hard - "node-gyp@npm:latest": version: 10.1.0 resolution: "node-gyp@npm:10.1.0" @@ -8484,13 +6490,6 @@ __metadata: languageName: node linkType: hard -"object-assign@npm:^4.1.1": - version: 4.1.1 - resolution: "object-assign@npm:4.1.1" - checksum: fcc6e4ea8c7fe48abfbb552578b1c53e0d194086e2e6bbbf59e0a536381a292f39943c6e9628af05b5528aa5e3318bb30d6b2e53cadaf5b8fe9e12c4b69af23f - languageName: node - linkType: hard - "object-inspect@npm:^1.13.1": version: 1.13.1 resolution: "object-inspect@npm:1.13.1" @@ -8735,16 +6734,6 @@ __metadata: languageName: node linkType: hard -"path@npm:~0.12.7": - version: 0.12.7 - resolution: "path@npm:0.12.7" - dependencies: - process: ^0.11.1 - util: ^0.10.3 - checksum: 5dedb71e78fc008fcba797defc0b4e1cf06c1f18e0a631e03ba5bb505136f587ff017afc14f9a3d481cbe77aeedff7dc0c1d2ce4d820c1ebf3c4281ca49423a1 - languageName: node - linkType: hard - "pbf@npm:3.2.1": version: 3.2.1 resolution: "pbf@npm:3.2.1" @@ -8803,30 +6792,6 @@ __metadata: languageName: node linkType: hard -"playwright-core@npm:1.44.1": - version: 1.44.1 - resolution: "playwright-core@npm:1.44.1" - bin: - playwright-core: cli.js - checksum: ebc6fa0ff77792fe52648fda06cc4474d4e9746db6dc5750d262b7fe2caf9f9e2327a71f1fb365e862213403a9daf95361c5040a9b0fd462928d7eb4fdc760e1 - languageName: node - linkType: hard - -"playwright@npm:1.44.1": - version: 1.44.1 - resolution: "playwright@npm:1.44.1" - dependencies: - fsevents: 2.3.2 - playwright-core: 1.44.1 - dependenciesMeta: - fsevents: - optional: true - bin: - playwright: cli.js - checksum: c2e8ff0a855e4a9e665ae5ffa0ff90423289546157be55e83f78916d17075c5910a7244773739c2a973da884a4ff0b3cf9b6e6b543de112e43b12169a9208e86 - languageName: node - linkType: hard - "possible-typed-array-names@npm:^1.0.0": version: 1.0.0 resolution: "possible-typed-array-names@npm:1.0.0" @@ -8950,20 +6915,13 @@ __metadata: linkType: hard "proc-log@npm:^4.2.0": - version: 4.2.0 - resolution: "proc-log@npm:4.2.0" - checksum: 98f6cd012d54b5334144c5255ecb941ee171744f45fca8b43b58ae5a0c1af07352475f481cadd9848e7f0250376ee584f6aa0951a856ff8f021bdfbff4eb33fc - languageName: node - linkType: hard - -"process-nextick-args@npm:~2.0.0": - version: 2.0.1 - resolution: "process-nextick-args@npm:2.0.1" - checksum: 1d38588e520dab7cea67cbbe2efdd86a10cc7a074c09657635e34f035277b59fbb57d09d8638346bf7090f8e8ebc070c96fa5fd183b777fff4f5edff5e9466cf + version: 4.2.0 + resolution: "proc-log@npm:4.2.0" + checksum: 98f6cd012d54b5334144c5255ecb941ee171744f45fca8b43b58ae5a0c1af07352475f481cadd9848e7f0250376ee584f6aa0951a856ff8f021bdfbff4eb33fc languageName: node linkType: hard -"process@npm:^0.11.1, process@npm:^0.11.10": +"process@npm:^0.11.10": version: 0.11.10 resolution: "process@npm:0.11.10" checksum: bfcce49814f7d172a6e6a14d5fa3ac92cc3d0c3b9feb1279774708a719e19acd673995226351a082a9ae99978254e320ccda4240ddc474ba31a76c79491ca7c3 @@ -8990,17 +6948,6 @@ __metadata: languageName: node linkType: hard -"prop-types@npm:^15.8.1": - version: 15.8.1 - resolution: "prop-types@npm:15.8.1" - dependencies: - loose-envify: ^1.4.0 - object-assign: ^4.1.1 - react-is: ^16.13.1 - checksum: c056d3f1c057cb7ff8344c645450e14f088a915d078dcda795041765047fa080d38e5d626560ccaac94a4e16e3aa15f3557c1a9a8d1174530955e992c675e459 - languageName: node - linkType: hard - "protocol-buffers-schema@npm:^3.3.1": version: 3.6.0 resolution: "protocol-buffers-schema@npm:3.6.0" @@ -9068,25 +7015,6 @@ __metadata: languageName: node linkType: hard -"react-dom@npm:^18.2.0": - version: 18.3.1 - resolution: "react-dom@npm:18.3.1" - dependencies: - loose-envify: ^1.1.0 - scheduler: ^0.23.2 - peerDependencies: - react: ^18.3.1 - checksum: 298954ecd8f78288dcaece05e88b570014d8f6dce5db6f66e6ee91448debeb59dcd31561dddb354eee47e6c1bb234669459060deb238ed0213497146e555a0b9 - languageName: node - linkType: hard - -"react-is@npm:^16.13.1": - version: 16.13.1 - resolution: "react-is@npm:16.13.1" - checksum: f7a19ac3496de32ca9ae12aa030f00f14a3d45374f1ceca0af707c831b2a6098ef0d6bdae51bd437b0a306d7f01d4677fcc8de7c0d331eb47ad0f46130e53c5f - languageName: node - linkType: hard - "react-is@npm:^18.0.0, react-is@npm:^18.2.0": version: 18.3.1 resolution: "react-is@npm:18.3.1" @@ -9094,15 +7022,6 @@ __metadata: languageName: node linkType: hard -"react@npm:>=17.0.0 <19.0.0, react@npm:^18.2.0": - version: 18.3.1 - resolution: "react@npm:18.3.1" - dependencies: - loose-envify: ^1.1.0 - checksum: a27bcfa8ff7c15a1e50244ad0d0c1cb2ad4375eeffefd266a64889beea6f6b64c4966c9b37d14ee32d6c9fcd5aa6ba183b6988167ab4d127d13e7cb5b386a376 - languageName: node - linkType: hard - "read-pkg@npm:^3.0.0": version: 3.0.0 resolution: "read-pkg@npm:3.0.0" @@ -9114,21 +7033,6 @@ __metadata: languageName: node linkType: hard -"readable-stream@npm:^2.1.4": - version: 2.3.8 - resolution: "readable-stream@npm:2.3.8" - dependencies: - core-util-is: ~1.0.0 - inherits: ~2.0.3 - isarray: ~1.0.0 - process-nextick-args: ~2.0.0 - safe-buffer: ~5.1.1 - string_decoder: ~1.1.1 - util-deprecate: ~1.0.1 - checksum: 65645467038704f0c8aaf026a72fbb588a9e2ef7a75cd57a01702ee9db1c4a1e4b03aaad36861a6a0926546a74d174149c8c207527963e0c2d3eee2f37678a42 - languageName: node - linkType: hard - "rechoir@npm:^0.8.0": version: 0.8.0 resolution: "rechoir@npm:0.8.0" @@ -9170,24 +7074,6 @@ __metadata: languageName: node linkType: hard -"regexp-match-indices@npm:^1.0.2": - version: 1.0.2 - resolution: "regexp-match-indices@npm:1.0.2" - dependencies: - regexp-tree: ^0.1.11 - checksum: 8cc779f6cf8f404ead828d09970a7d4bd66bd78d43ab9eb2b5e65f2ef2ba1ed53536f5b5fa839fb90b350365fb44b6a851c7f16289afc3f37789c113ab2a7916 - languageName: node - linkType: hard - -"regexp-tree@npm:^0.1.11": - version: 0.1.27 - resolution: "regexp-tree@npm:0.1.27" - bin: - regexp-tree: bin/regexp-tree - checksum: 129aebb34dae22d6694ab2ac328be3f99105143737528ab072ef624d599afecbcfae1f5c96a166fa9e5f64fa1ecf30b411c4691e7924c3e11bbaf1712c260c54 - languageName: node - linkType: hard - "regexp.prototype.flags@npm:^1.5.2": version: 1.5.2 resolution: "regexp.prototype.flags@npm:1.5.2" @@ -9347,13 +7233,6 @@ __metadata: languageName: node linkType: hard -"robust-predicates@npm:^3.0.2": - version: 3.0.2 - resolution: "robust-predicates@npm:3.0.2" - checksum: 36854c1321548ceca96d36ad9d6e0a5a512986029ec6929ad6ed3ec1612c22cc8b46cc72d2c5674af42e8074a119d793f6f0ea3a5b51373e3ab926c64b172d7a - languageName: node - linkType: hard - "run-parallel@npm:^1.1.9": version: 1.2.0 resolution: "run-parallel@npm:1.2.0" @@ -9363,13 +7242,6 @@ __metadata: languageName: node linkType: hard -"rw@npm:1": - version: 1.3.3 - resolution: "rw@npm:1.3.3" - checksum: c20d82421f5a71c86a13f76121b751553a99cd4a70ea27db86f9b23f33db941f3f06019c30f60d50c356d0bd674c8e74764ac146ea55e217c091bde6fba82aa3 - languageName: node - linkType: hard - "safe-array-concat@npm:^1.1.2": version: 1.1.2 resolution: "safe-array-concat@npm:1.1.2" @@ -9389,13 +7261,6 @@ __metadata: languageName: node linkType: hard -"safe-buffer@npm:~5.1.0, safe-buffer@npm:~5.1.1": - version: 5.1.2 - resolution: "safe-buffer@npm:5.1.2" - checksum: f2f1f7943ca44a594893a852894055cf619c1fbcb611237fc39e461ae751187e7baf4dc391a72125e0ac4fb2d8c5c0b3c71529622e6a58f46b960211e704903c - languageName: node - linkType: hard - "safe-regex-test@npm:^1.0.3": version: 1.0.3 resolution: "safe-regex-test@npm:1.0.3" @@ -9428,29 +7293,6 @@ __metadata: languageName: node linkType: hard -"sanitize-html@npm:~2.12.1": - version: 2.12.1 - resolution: "sanitize-html@npm:2.12.1" - dependencies: - deepmerge: ^4.2.2 - escape-string-regexp: ^4.0.0 - htmlparser2: ^8.0.0 - is-plain-object: ^5.0.0 - parse-srcset: ^1.0.2 - postcss: ^8.3.11 - checksum: fb96ea7170d51b5af2607f5cfd84464c78fc6f47e339407f55783e781c6a0288a8d40bbf97ea6a8758924ba9b2d33dcc4846bb94caacacd90d7f2de10ed8541a - languageName: node - linkType: hard - -"scheduler@npm:^0.23.2": - version: 0.23.2 - resolution: "scheduler@npm:0.23.2" - dependencies: - loose-envify: ^1.1.0 - checksum: 3e82d1f419e240ef6219d794ff29c7ee415fbdc19e038f680a10c067108e06284f1847450a210b29bbaf97b9d8a97ced5f624c31c681248ac84c80d56ad5a2c4 - languageName: node - linkType: hard - "schema-utils@npm:^2.7.0": version: 2.7.1 resolution: "schema-utils@npm:2.7.1" @@ -9882,15 +7724,6 @@ __metadata: languageName: node linkType: hard -"string_decoder@npm:~1.1.1": - version: 1.1.1 - resolution: "string_decoder@npm:1.1.1" - dependencies: - safe-buffer: ~5.1.0 - checksum: 9ab7e56f9d60a28f2be697419917c50cac19f3e8e6c28ef26ed5f4852289fe0de5d6997d29becf59028556f2c62983790c1d9ba1e2a3cc401768ca12d5183a5b - languageName: node - linkType: hard - "strip-ansi-cjs@npm:strip-ansi@^6.0.1, strip-ansi@npm:^6.0.0, strip-ansi@npm:^6.0.1": version: 6.0.1 resolution: "strip-ansi@npm:6.0.1" @@ -9955,13 +7788,6 @@ __metadata: languageName: node linkType: hard -"style-mod@npm:^4.0.0, style-mod@npm:^4.1.0": - version: 4.1.2 - resolution: "style-mod@npm:4.1.2" - checksum: 7c5c3e82747f9bcf5f288d8d07f50848e4630fe5ff7bfe4d94cc87d6b6a2588227cbf21b4c792ac6406e5852293300a75e710714479a5c59a06af677f0825ef8 - languageName: node - linkType: hard - "supports-color@npm:^5.3.0": version: 5.5.0 resolution: "supports-color@npm:5.5.0" @@ -10006,23 +7832,6 @@ __metadata: languageName: node linkType: hard -"systeminformation@npm:^5.8.6": - version: 5.22.11 - resolution: "systeminformation@npm:5.22.11" - bin: - systeminformation: lib/cli.js - checksum: 5e924a87ecd5453225456191c5a9201d763a59e905a45a4e1d4e99b98b69fed25d33e756ad8f9fef1f513259778cbcfd4cbba48b208f7f9c87db9cb97d1eabe7 - conditions: (os=darwin | os=linux | os=win32 | os=freebsd | os=openbsd | os=netbsd | os=sunos | os=android) - languageName: node - linkType: hard - -"tabbable@npm:^5.2.0": - version: 5.3.3 - resolution: "tabbable@npm:5.3.3" - checksum: 1aa56e1bb617cc10616c407f4e756f0607f3e2d30f9803664d70b85db037ca27e75918ed1c71443f3dc902e21dc9f991ce4b52d63a538c9b69b3218d3babcd70 - languageName: node - linkType: hard - "tapable@npm:^2.1.1, tapable@npm:^2.2.0, tapable@npm:^2.2.1": version: 2.2.1 resolution: "tapable@npm:2.2.1" @@ -10121,19 +7930,6 @@ __metadata: languageName: node linkType: hard -"topojson-client@npm:^3.1.0": - version: 3.1.0 - resolution: "topojson-client@npm:3.1.0" - dependencies: - commander: 2 - bin: - topo2geo: bin/topo2geo - topomerge: bin/topomerge - topoquantize: bin/topoquantize - checksum: 8c029a4f18324ace0b8b55dd90edbd40c9e3c6de18bafbb5da37ca20ebf20e26fbd4420891acb3c2c264e214185f7557871f5651a9eee517028663be98d836de - languageName: node - linkType: hard - "tr46@npm:^2.1.0": version: 2.1.0 resolution: "tr46@npm:2.1.0" @@ -10143,13 +7939,6 @@ __metadata: languageName: node linkType: hard -"tr46@npm:~0.0.3": - version: 0.0.3 - resolution: "tr46@npm:0.0.3" - checksum: 726321c5eaf41b5002e17ffbd1fb7245999a073e8979085dacd47c4b4e8068ff5777142fc6726d6ca1fd2ff16921b48788b87225cbc57c72636f6efa8efbffe3 - languageName: node - linkType: hard - "ts-api-utils@npm:^1.0.1": version: 1.3.0 resolution: "ts-api-utils@npm:1.3.0" @@ -10208,13 +7997,6 @@ __metadata: languageName: node linkType: hard -"tslib@npm:^1.13.0": - version: 1.14.1 - resolution: "tslib@npm:1.14.1" - checksum: dbe628ef87f66691d5d2959b3e41b9ca0045c3ee3c7c7b906cc1e328b39f199bb1ad9e671c39025bd56122ac57dfbf7385a94843b1cc07c60a4db74795829acd - languageName: node - linkType: hard - "tslib@npm:^2.6.2": version: 2.6.2 resolution: "tslib@npm:2.6.2" @@ -10222,13 +8004,6 @@ __metadata: languageName: node linkType: hard -"tslib@npm:~2.6.3": - version: 2.6.3 - resolution: "tslib@npm:2.6.3" - checksum: 74fce0e100f1ebd95b8995fbbd0e6c91bdd8f4c35c00d4da62e285a3363aaa534de40a80db30ecfd388ed7c313c42d930ee0eaf108e8114214b180eec3dbe6f5 - languageName: node - linkType: hard - "type-check@npm:^0.4.0, type-check@npm:~0.4.0": version: 0.4.0 resolution: "type-check@npm:0.4.0" @@ -10331,16 +8106,6 @@ __metadata: languageName: node linkType: hard -"typestyle@npm:^2.0.4": - version: 2.4.0 - resolution: "typestyle@npm:2.4.0" - dependencies: - csstype: 3.0.10 - free-style: 3.1.0 - checksum: 8b4f02c24f67b594f98507b15a753dabd4db5eb0af007e1d310527c64030e11e9464b25b5a6bc65fb5eec9a4459a8336050121ecc29063ac87b8b47a6d698893 - languageName: node - linkType: hard - "unbox-primitive@npm:^1.0.2": version: 1.0.2 resolution: "unbox-primitive@npm:1.0.2" @@ -10456,22 +8221,13 @@ __metadata: languageName: node linkType: hard -"util-deprecate@npm:^1.0.2, util-deprecate@npm:~1.0.1": +"util-deprecate@npm:^1.0.2": version: 1.0.2 resolution: "util-deprecate@npm:1.0.2" checksum: 474acf1146cb2701fe3b074892217553dfcf9a031280919ba1b8d651a068c9b15d863b7303cb15bd00a862b498e6cf4ad7b4a08fb134edd5a6f7641681cb54a2 languageName: node linkType: hard -"util@npm:^0.10.3": - version: 0.10.4 - resolution: "util@npm:0.10.4" - dependencies: - inherits: 2.0.3 - checksum: 913f9a90d05a60e91f91af01b8bd37e06bca4cc02d7b49e01089f9d5b78be2fffd61fb1a41b517de7238c5fc7337fa939c62d1fb4eb82e014894c7bee6637aaf - languageName: node - linkType: hard - "v8-to-istanbul@npm:^9.0.1": version: 9.2.0 resolution: "v8-to-istanbul@npm:9.2.0" @@ -10533,458 +8289,6 @@ __metadata: languageName: node linkType: hard -"vega-canvas@npm:^1.2.7": - version: 1.2.7 - resolution: "vega-canvas@npm:1.2.7" - checksum: 6ff92fcdf0c359f2f662909c859a7f4cb4a502436136ab2f4c02373c47a621996ec0eea23e2108f11d62a618be301de86cd8528b5058c2e207a53ddd7ff58d1b - languageName: node - linkType: hard - -"vega-crossfilter@npm:~4.1.2": - version: 4.1.2 - resolution: "vega-crossfilter@npm:4.1.2" - dependencies: - d3-array: ^3.2.2 - vega-dataflow: ^5.7.6 - vega-util: ^1.17.2 - checksum: 1aefd6ad0dd391b28a7fbcdcc5403932fa25b2bd22e37c149b281cd9c89327b8a5cc23f4d4086cee73e2c828ae61e81f192365a3453d4687d0950f0aed3d068e - languageName: node - linkType: hard - -"vega-dataflow@npm:^5.7.6, vega-dataflow@npm:~5.7.6": - version: 5.7.6 - resolution: "vega-dataflow@npm:5.7.6" - dependencies: - vega-format: ^1.1.2 - vega-loader: ^4.5.2 - vega-util: ^1.17.2 - checksum: bea1237a5ddaadaba774b1521ef2419249a0d7c926e8a8bd1dcbbc1b771b5e9fff4a64d515f056d63708c8cb11e0bccd64c302c179af03ecaba2c7fc870422e0 - languageName: node - linkType: hard - -"vega-encode@npm:~4.10.1": - version: 4.10.1 - resolution: "vega-encode@npm:4.10.1" - dependencies: - d3-array: ^3.2.2 - d3-interpolate: ^3.0.1 - vega-dataflow: ^5.7.6 - vega-scale: ^7.4.1 - vega-util: ^1.17.2 - checksum: cfaa3655bd0c22b19bd834e853770d0121a8f189b5697c786e85bdde8d61decbfe04f5c9c94936a260c3684177d61bc10a18a1895df56b70f025b7a4dc9a9fb8 - languageName: node - linkType: hard - -"vega-event-selector@npm:^3.0.1, vega-event-selector@npm:~3.0.1": - version: 3.0.1 - resolution: "vega-event-selector@npm:3.0.1" - checksum: 66d09b5800a19a9b0c75f28811b140a1a2e70e84be6d6f87c568cdbce6e17c8e195f130f4e3de5d6dc737142d1f46f4fe7645177e154582cc8ba27c6845b54e8 - languageName: node - linkType: hard - -"vega-expression@npm:^5.0.1, vega-expression@npm:^5.1.1, vega-expression@npm:~5.1.0, vega-expression@npm:~5.1.1": - version: 5.1.1 - resolution: "vega-expression@npm:5.1.1" - dependencies: - "@types/estree": ^1.0.0 - vega-util: ^1.17.2 - checksum: 5af3732b1757000e7f79f7b923cf6594cf75bdc2350b2d54992d8df0bad5cea04812d6d08b79e6fc7a20c3df944b6c11fc5e6ab39a098e5d51e3edf33df4d29f - languageName: node - linkType: hard - -"vega-force@npm:~4.2.1": - version: 4.2.1 - resolution: "vega-force@npm:4.2.1" - dependencies: - d3-force: ^3.0.0 - vega-dataflow: ^5.7.6 - vega-util: ^1.17.2 - checksum: da7b113943f4369a4217db88e17022966f1e228349eaf368bc487c6f73d488d20de5a5ced901948f96ebe1b6c45efb642e2a1dbc43299da1aea41c62648ab48b - languageName: node - linkType: hard - -"vega-format@npm:^1.1.2, vega-format@npm:~1.1.2": - version: 1.1.2 - resolution: "vega-format@npm:1.1.2" - dependencies: - d3-array: ^3.2.2 - d3-format: ^3.1.0 - d3-time-format: ^4.1.0 - vega-time: ^2.1.2 - vega-util: ^1.17.2 - checksum: 04edc955080a994353a7d8915fd2142b5f055b7d86d7d7ab45f44648a68d8138c958d40a4cc6f4ecdd4f2327866d5ad96aa8fb9b543f2c130c01d8893e2cb365 - languageName: node - linkType: hard - -"vega-functions@npm:^5.15.0, vega-functions@npm:~5.15.0": - version: 5.15.0 - resolution: "vega-functions@npm:5.15.0" - dependencies: - d3-array: ^3.2.2 - d3-color: ^3.1.0 - d3-geo: ^3.1.0 - vega-dataflow: ^5.7.6 - vega-expression: ^5.1.1 - vega-scale: ^7.4.1 - vega-scenegraph: ^4.13.0 - vega-selections: ^5.4.2 - vega-statistics: ^1.9.0 - vega-time: ^2.1.2 - vega-util: ^1.17.2 - checksum: 5aff41436560b18f03059f173d951e13f7d7c6d0cf0552829f951c7d992a69c9374651d472e51ba092e14cf99c3a9d000ebb2918a13354c52827da9cb3f462f0 - languageName: node - linkType: hard - -"vega-geo@npm:~4.4.2": - version: 4.4.2 - resolution: "vega-geo@npm:4.4.2" - dependencies: - d3-array: ^3.2.2 - d3-color: ^3.1.0 - d3-geo: ^3.1.0 - vega-canvas: ^1.2.7 - vega-dataflow: ^5.7.6 - vega-projection: ^1.6.1 - vega-statistics: ^1.9.0 - vega-util: ^1.17.2 - checksum: a7c0df4c0ae8c762136ca6b22047a278c32a848d970cb729f9b7886852856996b48ae0ffc44a357ddecd4fd665f66b33291efd056692864fba9d6d60a30115fa - languageName: node - linkType: hard - -"vega-hierarchy@npm:~4.1.2": - version: 4.1.2 - resolution: "vega-hierarchy@npm:4.1.2" - dependencies: - d3-hierarchy: ^3.1.2 - vega-dataflow: ^5.7.6 - vega-util: ^1.17.2 - checksum: 5c083982cc99f78f34a7ddec2719cd2e016971024d8e11572be35600d10940ab4c14624254d3cef99756345f5601c39f62fb9d2cbeab5a341b3c6dc4c47dc4e9 - languageName: node - linkType: hard - -"vega-label@npm:~1.3.0": - version: 1.3.0 - resolution: "vega-label@npm:1.3.0" - dependencies: - vega-canvas: ^1.2.7 - vega-dataflow: ^5.7.6 - vega-scenegraph: ^4.13.0 - vega-util: ^1.17.2 - checksum: d42049c2c9d1a92f3a2f5531d28ed9250593f0a62399d1397fc597674377a1c91ae1363dc753d0ce1c5c25eecbdda2f9710ad64c5ebfa52f171c5b57ca706490 - languageName: node - linkType: hard - -"vega-lite@npm:^5.6.1": - version: 5.19.0 - resolution: "vega-lite@npm:5.19.0" - dependencies: - json-stringify-pretty-compact: ~3.0.0 - tslib: ~2.6.3 - vega-event-selector: ~3.0.1 - vega-expression: ~5.1.0 - vega-util: ~1.17.2 - yargs: ~17.7.2 - peerDependencies: - vega: ^5.24.0 - bin: - vl2pdf: bin/vl2pdf - vl2png: bin/vl2png - vl2svg: bin/vl2svg - vl2vg: bin/vl2vg - checksum: 78baf896f1638637a3a2103923ceb00395dab658d043f187fe67992aacf6ba70264ce3f3e60012bfcf9e55a7f22183b9c4174c71ee082aa69e4b47bf827fb428 - languageName: node - linkType: hard - -"vega-loader@npm:^4.5.2, vega-loader@npm:~4.5.2": - version: 4.5.2 - resolution: "vega-loader@npm:4.5.2" - dependencies: - d3-dsv: ^3.0.1 - node-fetch: ^2.6.7 - topojson-client: ^3.1.0 - vega-format: ^1.1.2 - vega-util: ^1.17.2 - checksum: e2f77e36dd40d5604b31f7273a0cebc5cc2a83560131bec217fc9c2c1f03faa68fe57c86ff39d3b14d375a9ad91f1d5709abaf666e30ca97041f687756d99de6 - languageName: node - linkType: hard - -"vega-parser@npm:~6.4.0": - version: 6.4.0 - resolution: "vega-parser@npm:6.4.0" - dependencies: - vega-dataflow: ^5.7.6 - vega-event-selector: ^3.0.1 - vega-functions: ^5.15.0 - vega-scale: ^7.4.1 - vega-util: ^1.17.2 - checksum: bc0d0057e65820351513c550b0576e5860f7110e3de05fd682b01c3d6453c3aef8a3510ab039d8b45b4269b233a67f5bd4b09cfd770f21cdf58a1f2d186e03c8 - languageName: node - linkType: hard - -"vega-projection@npm:^1.6.1, vega-projection@npm:~1.6.1": - version: 1.6.1 - resolution: "vega-projection@npm:1.6.1" - dependencies: - d3-geo: ^3.1.0 - d3-geo-projection: ^4.0.0 - vega-scale: ^7.4.1 - checksum: 4ea5c449d4aed427add0777cecf430670c6addaa1c938bc112458e1b2281e5a976b9bcbe1b3aa2ce3e135ae39a6ddecd32c3ac1bd978f879d1bcd8fe0425aab3 - languageName: node - linkType: hard - -"vega-regression@npm:~1.3.0": - version: 1.3.0 - resolution: "vega-regression@npm:1.3.0" - dependencies: - d3-array: ^3.2.2 - vega-dataflow: ^5.7.6 - vega-statistics: ^1.9.0 - vega-util: ^1.17.2 - checksum: 1a442e5a8d17cc07a02b080ac2c75b1de5dd4133df70f482833c9d3fa4794bce2acc10ce9c85d7c96fa47e5566728c84fb6ee1afa309d96b522575e1cade84fd - languageName: node - linkType: hard - -"vega-runtime@npm:^6.2.0, vega-runtime@npm:~6.2.0": - version: 6.2.0 - resolution: "vega-runtime@npm:6.2.0" - dependencies: - vega-dataflow: ^5.7.6 - vega-util: ^1.17.2 - checksum: e818063dd9b1ca336cb27437047c50ed15f70be86413166d84687aca40270f574da82355934c43cedbb40b14639fe171cfae29eb975ede10910747d345f38e15 - languageName: node - linkType: hard - -"vega-scale@npm:^7.4.1, vega-scale@npm:~7.4.1": - version: 7.4.1 - resolution: "vega-scale@npm:7.4.1" - dependencies: - d3-array: ^3.2.2 - d3-interpolate: ^3.0.1 - d3-scale: ^4.0.2 - d3-scale-chromatic: ^3.1.0 - vega-time: ^2.1.2 - vega-util: ^1.17.2 - checksum: 7fe83fdcf09b1e328531d0e4a411ad2eaabbde40b5c0a6de21c75dc341ca208194b1cf48369d76a64718beac438549dad42ff5e7e495a6e39bcff1aeb24118b9 - languageName: node - linkType: hard - -"vega-scenegraph@npm:^4.13.0, vega-scenegraph@npm:~4.13.0": - version: 4.13.0 - resolution: "vega-scenegraph@npm:4.13.0" - dependencies: - d3-path: ^3.1.0 - d3-shape: ^3.2.0 - vega-canvas: ^1.2.7 - vega-loader: ^4.5.2 - vega-scale: ^7.4.1 - vega-util: ^1.17.2 - checksum: 8910511db2bd11237984716e69817d3e91fc83d871263771933f5693b281f9dfe74e93caab913869283fcbbfdb739657d246beed07e43dd5ebfa405bb21fca27 - languageName: node - linkType: hard - -"vega-selections@npm:^5.4.2": - version: 5.4.2 - resolution: "vega-selections@npm:5.4.2" - dependencies: - d3-array: 3.2.4 - vega-expression: ^5.0.1 - vega-util: ^1.17.1 - checksum: 4e78053ab1f8ba4338005ed424043e7d0e91c857b58ab03600a07292e3777a4244d34caa7f8c85e72b2fdd9916882dfdda2fa93c730120ce790ec9883738f2be - languageName: node - linkType: hard - -"vega-statistics@npm:^1.7.9, vega-statistics@npm:^1.9.0, vega-statistics@npm:~1.9.0": - version: 1.9.0 - resolution: "vega-statistics@npm:1.9.0" - dependencies: - d3-array: ^3.2.2 - checksum: bbf2ea088c5a6a662c6aed1bf57996c06a82a98228730ada8a97e57824a6ed391999ea974f16dcde6e73bf88799976d91aff748842848d38ab45dbb9fafba3f9 - languageName: node - linkType: hard - -"vega-time@npm:^2.1.2, vega-time@npm:~2.1.2": - version: 2.1.2 - resolution: "vega-time@npm:2.1.2" - dependencies: - d3-array: ^3.2.2 - d3-time: ^3.1.0 - vega-util: ^1.17.2 - checksum: 35605db00f110f75274ee115716dc9e981da3cecb8c5692865557860058931ecb43d64f0ec2e7f00225a73e00fb7d1424d12b091a43ed11962a2f63177465dd6 - languageName: node - linkType: hard - -"vega-transforms@npm:~4.12.0": - version: 4.12.0 - resolution: "vega-transforms@npm:4.12.0" - dependencies: - d3-array: ^3.2.2 - vega-dataflow: ^5.7.6 - vega-statistics: ^1.9.0 - vega-time: ^2.1.2 - vega-util: ^1.17.2 - checksum: f2dcc0ef9f8fe49df3f421956d689dc0b0eccd7c178575c9a1093729d70dab6780b9a54f3d5725e55b8480bb2eff363d606c8e001e49f9492952354f1ebb8e72 - languageName: node - linkType: hard - -"vega-typings@npm:~1.3.1": - version: 1.3.1 - resolution: "vega-typings@npm:1.3.1" - dependencies: - "@types/geojson": 7946.0.4 - vega-event-selector: ^3.0.1 - vega-expression: ^5.1.1 - vega-util: ^1.17.2 - checksum: 0a7b4ecf3c5858a1216389f94fea8ba725371569c072f1e561d545938efa7ef6982a35377408c5238e11f9ae17c07ee5622ab3d1bcc92935e757d8806966d42c - languageName: node - linkType: hard - -"vega-util@npm:^1.17.1, vega-util@npm:^1.17.2, vega-util@npm:~1.17.2": - version: 1.17.2 - resolution: "vega-util@npm:1.17.2" - checksum: 5d681cb1a6ffda7af1b74df7c1c46a32f1d874daef54f9c9c65c7d7c7bfc4271dc6d9b1c1c7a853b14eb6e4cc8ec811b0132cd3ea25fa85259eac92e1b4f07fa - languageName: node - linkType: hard - -"vega-view-transforms@npm:~4.6.0": - version: 4.6.0 - resolution: "vega-view-transforms@npm:4.6.0" - dependencies: - vega-dataflow: ^5.7.6 - vega-scenegraph: ^4.13.0 - vega-util: ^1.17.2 - checksum: 5fde295a051e41ee644480bb2554b7f39e9a77377a172e96265a0d95bd8049abc2e33e78707e193d28d990ca12072f9957da54a7c595b98b547020726bc07936 - languageName: node - linkType: hard - -"vega-view@npm:~5.13.0": - version: 5.13.0 - resolution: "vega-view@npm:5.13.0" - dependencies: - d3-array: ^3.2.2 - d3-timer: ^3.0.1 - vega-dataflow: ^5.7.6 - vega-format: ^1.1.2 - vega-functions: ^5.15.0 - vega-runtime: ^6.2.0 - vega-scenegraph: ^4.13.0 - vega-util: ^1.17.2 - checksum: 55ce2e108754a18d354070b2b48b9a90ae26d9d98db89871260bcfd6a3abc0882cdc91175d698c0eed88e9a34a49ae7bcd64187954acb7eb437b8e95064e3c8c - languageName: node - linkType: hard - -"vega-voronoi@npm:~4.2.3": - version: 4.2.3 - resolution: "vega-voronoi@npm:4.2.3" - dependencies: - d3-delaunay: ^6.0.2 - vega-dataflow: ^5.7.6 - vega-util: ^1.17.2 - checksum: 2f5146ce081373b1f0cf8cf96eb914224b4bd10e41b6b0fbc661a4de2dbf124ba4a2756b14ff9f19b8584374df0071a0d0c97043fca393aaa3526fb5d8a8bec1 - languageName: node - linkType: hard - -"vega-wordcloud@npm:~4.1.5": - version: 4.1.5 - resolution: "vega-wordcloud@npm:4.1.5" - dependencies: - vega-canvas: ^1.2.7 - vega-dataflow: ^5.7.6 - vega-scale: ^7.4.1 - vega-statistics: ^1.9.0 - vega-util: ^1.17.2 - checksum: 88ac7776a0f7e02b2e50de7fd59d593ff16cad58cd756e219a9c9e6005343eb41c96109aff141b6be344f824e5238bac0d83c8a8d78136e380f9020a14c0e373 - languageName: node - linkType: hard - -"vega@npm:^5.20.0": - version: 5.30.0 - resolution: "vega@npm:5.30.0" - dependencies: - vega-crossfilter: ~4.1.2 - vega-dataflow: ~5.7.6 - vega-encode: ~4.10.1 - vega-event-selector: ~3.0.1 - vega-expression: ~5.1.1 - vega-force: ~4.2.1 - vega-format: ~1.1.2 - vega-functions: ~5.15.0 - vega-geo: ~4.4.2 - vega-hierarchy: ~4.1.2 - vega-label: ~1.3.0 - vega-loader: ~4.5.2 - vega-parser: ~6.4.0 - vega-projection: ~1.6.1 - vega-regression: ~1.3.0 - vega-runtime: ~6.2.0 - vega-scale: ~7.4.1 - vega-scenegraph: ~4.13.0 - vega-statistics: ~1.9.0 - vega-time: ~2.1.2 - vega-transforms: ~4.12.0 - vega-typings: ~1.3.1 - vega-util: ~1.17.2 - vega-view: ~5.13.0 - vega-view-transforms: ~4.6.0 - vega-voronoi: ~4.2.3 - vega-wordcloud: ~4.1.5 - checksum: 4775a990339a5d45bc42b474678b8136134aed7f8df0cfd43be9b440c82b90e5784f642fd69298dc66a930297c3e828fc106d75d0cc2b6fc15ecea30313e6af6 - languageName: node - linkType: hard - -"vscode-jsonrpc@npm:8.2.0": - version: 8.2.0 - resolution: "vscode-jsonrpc@npm:8.2.0" - checksum: f302a01e59272adc1ae6494581fa31c15499f9278df76366e3b97b2236c7c53ebfc71efbace9041cfd2caa7f91675b9e56f2407871a1b3c7f760a2e2ee61484a - languageName: node - linkType: hard - -"vscode-jsonrpc@npm:^6.0.0": - version: 6.0.0 - resolution: "vscode-jsonrpc@npm:6.0.0" - checksum: 3a67a56f287e8c449f2d9752eedf91e704dc7b9a326f47fb56ac07667631deb45ca52192e9bccb2ab108764e48409d70fa64b930d46fc3822f75270b111c5f53 - languageName: node - linkType: hard - -"vscode-jsonrpc@npm:^8.0.2": - version: 8.2.1 - resolution: "vscode-jsonrpc@npm:8.2.1" - checksum: 2af2c333d73f6587896a7077978b8d4b430e55c674d5dbb90597a84a6647057c1655a3bff398a9b08f1f8ba57dbd2deabf05164315829c297b0debba3b8bc19e - languageName: node - linkType: hard - -"vscode-languageserver-protocol@npm:^3.17.0": - version: 3.17.5 - resolution: "vscode-languageserver-protocol@npm:3.17.5" - dependencies: - vscode-jsonrpc: 8.2.0 - vscode-languageserver-types: 3.17.5 - checksum: dfb42d276df5dfea728267885b99872ecff62f6c20448b8539fae71bb196b420f5351c5aca7c1047bf8fb1f89fa94a961dce2bc5bf7e726198f4be0bb86a1e71 - languageName: node - linkType: hard - -"vscode-languageserver-types@npm:3.17.5": - version: 3.17.5 - resolution: "vscode-languageserver-types@npm:3.17.5" - checksum: 79b420e7576398d396579ca3a461c9ed70e78db4403cd28bbdf4d3ed2b66a2b4114031172e51fad49f0baa60a2180132d7cb2ea35aa3157d7af3c325528210ac - languageName: node - linkType: hard - -"vscode-ws-jsonrpc@npm:~1.0.2": - version: 1.0.2 - resolution: "vscode-ws-jsonrpc@npm:1.0.2" - dependencies: - vscode-jsonrpc: ^8.0.2 - checksum: eb2fdb5c96f124326505f06564dfc6584318b748fd6e39b4c0ba16a0d383d13ba0e9433596abdb841428dfc2a5501994c3206723d1cb38c6af5fcac1faf4be26 - languageName: node - linkType: hard - -"w3c-keyname@npm:^2.2.4": - version: 2.2.8 - resolution: "w3c-keyname@npm:2.2.8" - checksum: 95bafa4c04fa2f685a86ca1000069c1ec43ace1f8776c10f226a73296caeddd83f893db885c2c220ebeb6c52d424e3b54d7c0c1e963bbf204038ff1a944fbb07 - languageName: node - linkType: hard - "walker@npm:^1.0.8": version: 1.0.8 resolution: "walker@npm:1.0.8" @@ -11011,13 +8315,6 @@ __metadata: languageName: node linkType: hard -"webidl-conversions@npm:^3.0.0": - version: 3.0.1 - resolution: "webidl-conversions@npm:3.0.1" - checksum: c92a0a6ab95314bde9c32e1d0a6dfac83b578f8fa5f21e675bc2706ed6981bc26b7eb7e6a1fab158e5ce4adf9caa4a0aee49a52505d4d13c7be545f15021b17c - languageName: node - linkType: hard - "webidl-conversions@npm:^6.1.0": version: 6.1.0 resolution: "webidl-conversions@npm:6.1.0" @@ -11129,16 +8426,6 @@ __metadata: languageName: node linkType: hard -"whatwg-url@npm:^5.0.0": - version: 5.0.0 - resolution: "whatwg-url@npm:5.0.0" - dependencies: - tr46: ~0.0.3 - webidl-conversions: ^3.0.0 - checksum: b8daed4ad3356cc4899048a15b2c143a9aed0dfae1f611ebd55073310c7b910f522ad75d727346ad64203d7e6c79ef25eafd465f4d12775ca44b90fa82ed9e2c - languageName: node - linkType: hard - "whatwg-url@npm:^8.0.0": version: 8.7.0 resolution: "whatwg-url@npm:8.7.0" @@ -11335,7 +8622,7 @@ __metadata: languageName: node linkType: hard -"yargs@npm:^17.3.1, yargs@npm:~17.7.2": +"yargs@npm:^17.3.1": version: 17.7.2 resolution: "yargs@npm:17.7.2" dependencies: From 601797b895b36b2cbacc5c55d6e8c5d20e535672 Mon Sep 17 00:00:00 2001 From: Nour-Cheour10 Date: Thu, 11 Jul 2024 12:19:01 +0200 Subject: [PATCH 11/21] added arrow layer+wind layer from olwind --- examples/config.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 examples/config.py diff --git a/examples/config.py b/examples/config.py new file mode 100644 index 0000000..9b95d3d --- /dev/null +++ b/examples/config.py @@ -0,0 +1 @@ +API_KEY = '65e5afd33250199e6f0299c4e2fc256b' From 6f9750b999459ef296895b0021c7f0609842dca7 Mon Sep 17 00:00:00 2001 From: Nour-Cheour10 Date: Thu, 11 Jul 2024 14:01:05 +0200 Subject: [PATCH 12/21] added arrowlayer+ windlayer from olwind --- examples/introduction.ipynb | 605 +- examples/metadata.json | 5 + examples/u.json | 81337 ++++++++++++++++++++++++++++++++++ examples/v.json | 81337 ++++++++++++++++++++++++++++++++++ ipyopenlayers/Map.py | 31 +- package.json | 3 +- src/arrowlayer.ts | 143 + src/geojson.ts | 5 +- src/heatmap.ts | 2 +- src/widget.ts | 63 +- src/windlayer.ts | 116 + yarn.lock | 4776 +- 12 files changed, 165496 insertions(+), 2927 deletions(-) create mode 100644 examples/metadata.json create mode 100644 examples/u.json create mode 100644 examples/v.json create mode 100644 src/arrowlayer.ts create mode 100644 src/windlayer.ts diff --git a/examples/introduction.ipynb b/examples/introduction.ipynb index 6227495..8517174 100644 --- a/examples/introduction.ipynb +++ b/examples/introduction.ipynb @@ -9,7 +9,7 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 4, "metadata": {}, "outputs": [], "source": [ @@ -18,22 +18,22 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 5, "metadata": {}, "outputs": [], "source": [ - "from ipyopenlayers import GeoJSON, HeatmapLayer" + "from ipyopenlayers import GeoJSON, HeatmapLayer, WindLayer, ArrowLayer" ] }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "4c76f387aa9d4970b97a987e4dbae92f", + "model_id": "689d1e18f0554e62b1db5287c8b63ef5", "version_major": 2, "version_minor": 0 }, @@ -41,7 +41,7 @@ "Map(center=[0.0, 0.0])" ] }, - "execution_count": 3, + "execution_count": 6, "metadata": {}, "output_type": "execute_result" } @@ -53,7 +53,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 7, "metadata": {}, "outputs": [], "source": [ @@ -61,117 +61,13 @@ "m.add_layer(layer)" ] }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "[0.0, 0.0]" - ] - }, - "execution_count": 5, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "m.center" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "2.0" - ] - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "m.zoom" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [], - "source": [ - "layere=TileLayer()\n", - "layere.url='https://{a-c}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}.png'\n", - "m.add_layer(layere)" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [], - "source": [ - "m.remove_layer(layere)" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": {}, - "outputs": [], - "source": [ - "zoom=ZoomSlider()\n", - "full=FullScreen()\n", - "scale=ScaleLine()\n", - "coord=MousePosition()" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "metadata": {}, - "outputs": [], - "source": [ - "m.add_control(zoom)\n", - "m.add_control(scale)\n", - "m.add_control(coord)\n", - "m.add_control(full)" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "metadata": {}, - "outputs": [], - "source": [ - "image=ImageOverlay()\n", - "image.image_url=\"https://i.imgur.com/06Q1fSz.png\"\n", - "m.add_overlay(image)" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "metadata": {}, - "outputs": [], - "source": [ - "image.image_url=\"https://i.imgur.com/ZF6s192.png\"" - ] - }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [], "source": [ - "image.position=[-70,70]" + "wind=WindLayer()\n" ] }, { @@ -180,480 +76,79 @@ "metadata": {}, "outputs": [], "source": [ - "imaget=ImageOverlay()\n", - "imaget.image_url=\"https://upload.wikimedia.org/wikipedia/en/a/a9/Example.jpg\"\n", - "m.add_overlay(imaget)" - ] - }, - { - "cell_type": "code", - "execution_count": 15, - "metadata": {}, - "outputs": [], - "source": [ - "m.remove_overlay(imaget)" - ] - }, - { - "cell_type": "code", - "execution_count": 16, - "metadata": {}, - "outputs": [], - "source": [ - "video=VideoOverlay()\n", - "video.video_url=\"https://www.mapbox.com/bites/00188/patricia_nasa.webm\"\n", - "m.add_overlay(video)" - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "metadata": {}, - "outputs": [], - "source": [ - "video.video_url=\"https://www.w3schools.com/html/mov_bbb.webm\"\n", - "video.position=[-70,80]" - ] - }, - { - "cell_type": "code", - "execution_count": 18, - "metadata": {}, - "outputs": [], - "source": [ - "m.remove_overlay(video)" - ] - }, - { - "cell_type": "code", - "execution_count": 19, - "metadata": {}, - "outputs": [], - "source": [ - "video2=VideoOverlay()\n", - "video2.video_url=\"https://www.mapbox.com/bites/00188/patricia_nasa.webm\"\n", - "m.add_overlay(video2)" - ] - }, - { - "cell_type": "code", - "execution_count": 20, - "metadata": {}, - "outputs": [], - "source": [ - "m.remove_overlay(video2)" - ] - }, - { - "cell_type": "code", - "execution_count": 21, - "metadata": {}, - "outputs": [], - "source": [ - "popup=PopupOverlay()\n", - "popup.popup_content='Maap'\n", - "m.add_overlay(popup)" - ] - }, - { - "cell_type": "code", - "execution_count": 22, - "metadata": {}, - "outputs": [], - "source": [ - "m.remove_overlay(popup)" - ] - }, - { - "cell_type": "code", - "execution_count": 23, - "metadata": {}, - "outputs": [], - "source": [ - "widget= GeoJSON()" - ] - }, - { - "cell_type": "code", - "execution_count": 24, - "metadata": {}, - "outputs": [], - "source": [ - "widget = GeoJSON(\n", - " data={\n", - " 'type': 'FeatureCollection',\n", - " 'features': [\n", - " {\n", - " 'type': 'Feature',\n", - " 'geometry': {\n", - " 'type': 'Point',\n", - " 'coordinates': [0, 0],\n", - " },\n", - " 'properties': {\n", - " 'name': 'Null Island',\n", - " },\n", - " },\n", - " ],\n", - " },\n", - " style={\n", - " 'Point': {\n", - " 'radius': 10,\n", - " 'fillColor': '#ff7800',\n", - " 'color': '#000',\n", - " 'weight': 1,\n", - " 'opacity': 1,\n", - " 'fillOpacity': 0.8,\n", - " },\n", - " },\n", - " visible=True\n", - ")" - ] - }, - { - "cell_type": "code", - "execution_count": 25, - "metadata": {}, - "outputs": [], - "source": [ - "m.add_layer(widget)" - ] - }, - { - "cell_type": "code", - "execution_count": 26, - "metadata": {}, - "outputs": [], - "source": [ - "widget.visible = False" - ] - }, - { - "cell_type": "code", - "execution_count": 27, - "metadata": {}, - "outputs": [], - "source": [ - "widget.visible=True" - ] - }, - { - "cell_type": "code", - "execution_count": 28, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "{'type': 'FeatureCollection',\n", - " 'features': [{'type': 'Feature',\n", - " 'geometry': {'type': 'Point', 'coordinates': [0, 0]},\n", - " 'properties': {'name': 'Null Island'}}]}" - ] - }, - "execution_count": 28, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "widget.data" - ] - }, - { - "cell_type": "code", - "execution_count": 29, - "metadata": {}, - "outputs": [], - "source": [ - "import matplotlib as mpl\n", - "import matplotlib.cm\n", - "import matplotlib.colors\n", - "import numpy as np\n", - "\n", - "\n", - "def n_colors(n, colormap=mpl.cm.Blues):\n", - " data = np.linspace(0.0, 1.0, n)\n", - " c = [mpl.colors.rgb2hex(d[0:3]) for d in colormap(data)]\n", - " return c\n", + "import json\n", "\n", + "with open('./metadata.json', 'r') as f:\n", + " wind.metadata = json.load(f)\n", "\n", - "def data_to_colors(data, colormap=mpl.cm.Blues):\n", - " c = [mpl.colors.rgb2hex(d[0:3]) for d in colormap(mpl.colors.Normalize()(data))]\n", - " return c" - ] - }, - { - "cell_type": "code", - "execution_count": 30, - "metadata": { - "jupyter": { - "source_hidden": true - } - }, - "outputs": [], - "source": [ - "import json\n", + "with open('./u.json', 'r') as f:\n", + " wind.ufile = json.load(f)\n", "\n", - "with open(\"demo.json\") as f:\n", - " data = json.load(f)" + "with open('./v.json', 'r') as f:\n", + " wind.vfile = json.load(f)" ] }, { "cell_type": "code", - "execution_count": 31, - "metadata": { - "jupyter": { - "source_hidden": true - } - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "20\n" - ] - } - ], - "source": [ - "n_features = len(data[\"features\"])\n", - "colors = n_colors(n_features)\n", - "print(n_features)" - ] - }, - { - "cell_type": "code", - "execution_count": 32, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "['#f7fbff',\n", - " '#edf4fc',\n", - " '#e3eef8',\n", - " '#d8e7f5',\n", - " '#cee0f2',\n", - " '#c2d9ee',\n", - " '#b2d2e8',\n", - " '#a0cbe2',\n", - " '#8cc0dd',\n", - " '#75b4d8',\n", - " '#63a8d3',\n", - " '#519ccc',\n", - " '#4090c5',\n", - " '#3282be',\n", - " '#2474b7',\n", - " '#1966ad',\n", - " '#0e59a2',\n", - " '#084b93',\n", - " '#083d7f',\n", - " '#08306b']" - ] - }, - "execution_count": 32, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "colors" - ] - }, - { - "cell_type": "code", - "execution_count": 33, - "metadata": { - "jupyter": { - "source_hidden": true - } - }, - "outputs": [], - "source": [ - "for feature, color in zip(data[\"features\"], colors):\n", - " feature[\"properties\"][\"style\"] = {\n", - " \"color\": color,\n", - " \"weight\": 1,\n", - " \"fillColor\": color,\n", - " \"fillOpacity\": 0.5,\n", - " }" - ] - }, - { - "cell_type": "code", - "execution_count": 34, - "metadata": { - "jupyter": { - "source_hidden": true - } - }, - "outputs": [ - { - "data": { - "text/plain": [ - "{'geometry': {'type': 'MultiPolygon',\n", - " 'coordinates': [[[[-77.39940577291571, 34.5780540544853],\n", - " [-77.39940610066606, 34.57805427015046],\n", - " [-77.39940640189788, 34.57805446836596],\n", - " [-77.39940680648922, 34.57805473459376],\n", - " [-77.39940687019617, 34.57805477651398],\n", - " [-77.39940689381065, 34.57805472199389],\n", - " [-77.3994073308358, 34.57805432604519],\n", - " [-77.39940731720131, 34.578054179242265],\n", - " [-77.39940728534575, 34.578053836252096],\n", - " [-77.39940728147378, 34.57805380828763],\n", - " [-77.39940726378504, 34.57805363205166],\n", - " [-77.39940725501071, 34.57805361742678],\n", - " [-77.39940719593868, 34.57805349818902],\n", - " [-77.39940711258689, 34.57805350039165],\n", - " [-77.39940706262787, 34.57805349996589],\n", - " [-77.3994070238417, 34.578053501157314],\n", - " [-77.39940689549977, 34.57805350509971],\n", - " [-77.3994068702403, 34.5780535173504],\n", - " [-77.39940683257294, 34.57805352755014],\n", - " [-77.39940665584797, 34.57805351246129],\n", - " [-77.39940650171212, 34.578053517196004],\n", - " [-77.39940646539253, 34.578053518311656],\n", - " [-77.39940610067742, 34.578053945657025]]]]},\n", - " 'type': 'Feature',\n", - " 'id': 'demo0',\n", - " 'properties': {'style': {'color': '#f7fbff',\n", - " 'weight': 1,\n", - " 'fillColor': '#f7fbff',\n", - " 'fillOpacity': 0.5}}}" - ] - }, - "execution_count": 34, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "data[\"features\"][0]\n" - ] - }, - { - "cell_type": "code", - "execution_count": 35, - "metadata": {}, - "outputs": [], - "source": [ - "g = GeoJSON(data=data)\n" - ] - }, - { - "cell_type": "code", - "execution_count": 36, - "metadata": {}, - "outputs": [], - "source": [ - "m.add_layer(g)" - ] - }, - { - "cell_type": "code", - "execution_count": 37, - "metadata": {}, - "outputs": [], - "source": [ - "m.remove_layer(g)" - ] - }, - { - "cell_type": "code", - "execution_count": 38, - "metadata": {}, - "outputs": [], - "source": [ - "points = [[0, 0]]\n", - "heatmap_layer = HeatmapLayer(blur=20, radius=15, points=points)" - ] - }, - { - "cell_type": "code", - "execution_count": 39, - "metadata": {}, - "outputs": [], - "source": [ - "m.add_layer(heatmap_layer)" - ] - }, - { - "cell_type": "code", - "execution_count": 40, - "metadata": {}, - "outputs": [], - "source": [ - "points_data_france = [\n", - " [48.8566, 2.3522, 0.8], # Paris\n", - " [45.7640, 4.8357, 0.6], # Lyon\n", - " [43.2965, 5.3698, 0.7], # Marseille\n", - " [43.6045, 1.4442, 0.5], # Toulouse\n", - " [43.7102, 7.2620, 0.4], # Nice\n", - " [47.2184, -1.5536, 0.3], # Nantes\n", - " [48.5734, 7.7521, 0.6], # Strasbourg\n", - " [43.6119, 3.8772, 0.5], # Montpellier\n", - " [44.8378, -0.5792, 0.4], # Bordeaux\n", - " [50.6292, 3.0573, 0.3], # Lille\n", - "]\n" - ] - }, - { - "cell_type": "code", - "execution_count": 41, + "execution_count": 15, "metadata": {}, "outputs": [], "source": [ - "heatmap_layer = HeatmapLayer(blur=20, radius=15, points=points_data_france)" + "m.add_layer(wind)" ] }, { "cell_type": "code", - "execution_count": 42, + "execution_count": 8, "metadata": {}, "outputs": [], "source": [ - "points_data_france_1 = [\n", - " [42.3656, 9.1493, 16.79], # Haute-Corse\n", - " [43.4527, 6.2649, 16.28], # Var\n", - " [43.6043, 5.0123, 15.93], # Bouches-du-Rhône\n", - " [42.6987, 2.8956, 15.87], # Pyrénées-Orientales\n", - " [43.6119, 3.8772, 15.81], # Hérault\n", - " [41.9264, 8.7364, 15.64], # Corse-du-Sud\n", - " [44.8378, -0.5792, 15.28], # Gironde\n", - " [43.8914, -1.2200, 15.2], # Landes\n", - " [43.9493, 4.8055, 15.17], # Vaucluse\n", - " [44.1004, 1.3555, 14.85], # Tarn-et-Garonne\n", - " [44.3058, 0.6283, 14.85], # Lot-et-Garonne\n", - " [43.6045, 1.4442, 14.75], # Haute-Garonne\n", - " [43.9074, 4.5079, 14.65], # Gard\n", - " [43.6205, 0.5898, 14.52], # Gers\n", - " [43.7102, 7.2620, 14.41], # Alpes-Maritimes\n", - " [45.7515, -0.6331, 14.34], # Charente-Maritime\n", - " [44.6144, 1.9023, 14.05], # Lot\n", - " [43.6043, 2.2344, 13.88], # Tarn\n", - " [43.1566, 2.3605, 13.88], # Aude\n", - " [43.2998, -0.3674, 13.85], # Pyrénées-Atlantiques\n", - " # Continue for other locations as needed\n", - "]\n" + "arrow=ArrowLayer()\n" ] }, { "cell_type": "code", - "execution_count": 43, + "execution_count": 9, "metadata": {}, "outputs": [], "source": [ - "heatmap_layer1 = HeatmapLayer(blur=20, radius=15, points=points_data_france_1)" + "import requests\n", + "import config \n", + "all_weather_data = []\n", + "coordinates = [\n", + " {\"lat\": 48.8566, \"lon\": 2.3522}, # Paris\n", + " {\"lat\": 51.5074, \"lon\": -0.1278}, # London\n", + " {\"lat\": 40.7128, \"lon\": -74.0060} # New York\n", + "]\n", + "for coords in coordinates:\n", + " url = f'https://api.openweathermap.org/data/2.5/weather?lat={coords[\"lat\"]}&lon={coords[\"lon\"]}&appid={config.API_KEY}'\n", + " response = requests.get(url)\n", + "\n", + " if response.status_code == 200:\n", + " data = response.json()\n", + " \n", + " all_weather_data.append(data)\n", + " \n", + " coord = data.get('coord', {})\n", + " weather = data.get('weather', [{}])[0]\n", + " main = data.get('main', {})\n", + " wind = data.get('wind', {})\n", + " sys = data.get('sys', {})\n", + "\n", + " \n", + " else:\n", + " print(f\"Failed to get weather data for coordinates {coords}: {response.status_code}\")\n" ] }, { "cell_type": "code", - "execution_count": 44, + "execution_count": 11, "metadata": {}, "outputs": [], "source": [ - "m.add_layer(heatmap_layer1)" + "arrow.data=all_weather_data\n", + "\n", + "m.add_layer(arrow)" ] }, { diff --git a/examples/metadata.json b/examples/metadata.json new file mode 100644 index 0000000..70a946e --- /dev/null +++ b/examples/metadata.json @@ -0,0 +1,5 @@ +{ + "extent":[576551.1954449099,5667450.411567883,1300927.6096102786,6160637.315193227], + "width":233, + "height":347 +} \ No newline at end of file diff --git a/examples/u.json b/examples/u.json new file mode 100644 index 0000000..2f240a6 --- /dev/null +++ b/examples/u.json @@ -0,0 +1,81337 @@ +{ + "_metadata": { + "dtype": "float64", + "param": "10u/heightAboveGround/10", + "param_attrs": { + "name": "10 metre U wind component", + "stepType": "instant" + }, + "shape": [ + 233, + 347 + ], + "source": "wrfd03", + "time": "2019-07-31 00:00:00", + "unit": "m_per_s", + "unit_string": "m/s" + }, + "array": [ + [ + 4.07, + 4.05, + 3.84, + 3.63, + 3.64, + 3.69, + 3.7600000000000002, + 3.8200000000000003, + 3.9, + 3.97, + 4.03, + 4.05, + 4.0600000000000005, + 4.03, + 4.0200000000000005, + 4.0600000000000005, + 4.13, + 4.22, + 4.3, + 4.42, + 4.58, + 4.7700000000000005, + 4.94, + 5.0600000000000005, + 5.13, + 5.07, + 5.01, + 4.98, + 4.97, + 4.88, + 4.72, + 4.49, + 4.3100000000000005, + 4.14, + 4.0, + 3.85, + 3.65, + 3.52, + 3.46, + 3.5100000000000002, + 3.66, + 3.79, + 3.85, + 3.86, + 3.86, + 3.89, + 4.0, + 4.14, + 4.29, + 4.39, + 4.34, + 4.21, + 4.01, + 3.8200000000000003, + 3.59, + 3.37, + 3.19, + 3.06, + 3.0, + 2.99, + 3.0, + 2.96, + 2.88, + 2.92, + 3.0100000000000002, + 3.11, + 3.2, + 3.25, + 3.29, + 3.3000000000000003, + 3.29, + 3.24, + 3.19, + 3.19, + 3.24, + 3.31, + 3.33, + 3.3000000000000003, + 3.27, + 3.2600000000000002, + 3.27, + 3.2800000000000002, + 3.34, + 3.38, + 3.35, + 3.3000000000000003, + 3.22, + 3.16, + 3.25, + 3.31, + 3.49, + 3.69, + 3.8000000000000003, + 3.85, + 3.7800000000000002, + 3.67, + 3.65, + 3.66, + 3.64, + 3.59, + 3.68, + 3.86, + 4.15, + 4.45, + 4.84, + 5.33, + 5.89, + 6.47, + 6.86, + 7.01, + 7.08, + 7.08, + 7.140000000000001, + 7.38, + 7.67, + 7.99, + 8.18, + 8.1, + 7.8500000000000005, + 7.2, + 6.47, + 5.3, + 4.18, + 3.33, + 2.59, + 1.93, + 1.29, + 0.81, + 0.52, + 0.4, + 0.35000000000000003, + 0.32, + 0.26, + 0.19, + 0.05, + -0.12, + -0.27, + -0.43, + -0.54, + -0.62, + -0.65, + -0.66, + -0.62, + -0.6, + -0.53, + -0.46, + -0.27, + 0.02, + 0.31, + 0.58, + 0.77, + 0.89, + 1.0, + 0.97, + 0.9400000000000001, + 0.73, + 0.58, + 0.44, + 0.34, + 0.34, + 0.42, + 0.5, + 0.59, + 0.5700000000000001, + 0.59, + 0.79, + 1.1500000000000001, + 1.61, + 1.92, + 1.97, + 1.85, + 1.67, + 1.7, + 2.02, + 2.68, + 3.35, + 3.91, + 4.38, + 4.74, + 5.11, + 5.45, + 5.73, + 5.7700000000000005, + 5.67, + 5.44, + 5.18, + 5.01, + 4.96, + 5.0200000000000005, + 5.15, + 5.12, + 5.0200000000000005, + 4.91, + 4.83, + 4.69, + 4.51, + 4.29, + 3.95, + 3.62, + 3.42, + 3.47, + 3.87, + 4.34, + 4.83, + 5.26, + 5.54, + 5.78, + 5.92, + 6.07, + 6.21, + 6.33, + 6.390000000000001, + 6.42, + 6.32, + 6.16, + 6.0200000000000005, + 5.95, + 5.99, + 6.08, + 6.13, + 6.07, + 5.88, + 5.51, + 5.0600000000000005, + 4.58, + 4.11, + 3.71, + 3.36, + 3.04, + 2.75, + 2.5300000000000002, + 2.34, + 2.22, + 2.15, + 2.09, + 2.05, + 2.0300000000000002, + 2.04, + 2.06, + 2.0300000000000002, + 1.9000000000000001, + 1.74, + 1.57, + 1.42, + 1.3, + 1.22, + 1.16, + 1.11, + 1.07, + 1.06, + 1.06, + 1.09, + 1.11, + 1.2, + 1.29, + 1.4000000000000001, + 1.47, + 1.57, + 1.62, + 1.6600000000000001, + 1.69, + 1.68, + 1.6300000000000001, + 1.58, + 1.53, + 1.51, + 1.54, + 1.61, + 1.71, + 1.8, + 1.85, + 1.8800000000000001, + 1.85, + 1.79, + 1.74, + 1.71, + 1.73, + 1.76, + 1.78, + 1.77, + 1.72, + 1.6300000000000001, + 1.58, + 1.58, + 1.6, + 1.61, + 1.6300000000000001, + 1.6600000000000001, + 1.71, + 1.73, + 1.75, + 1.76, + 1.77, + 1.8, + 1.84, + 1.9000000000000001, + 1.95, + 2.0, + 2.0300000000000002, + 2.0100000000000002, + 1.96, + 1.8800000000000001, + 1.82, + 1.79, + 1.76, + 1.75, + 1.75, + 1.76, + 1.79, + 1.86, + 1.97, + 2.09, + 2.22, + 2.34, + 2.44, + 2.5100000000000002, + 2.54, + 2.5500000000000003, + 2.54, + 2.54, + 2.56, + 2.6, + 2.7, + 2.81, + 2.86, + 2.9, + 2.96, + 3.02, + 3.1, + 3.15, + 3.14, + 3.09, + 2.99, + 2.92, + 2.87, + 2.7800000000000002, + 2.75, + 2.72, + 2.71, + 2.69, + 2.67, + 2.69, + 2.68, + 2.71, + 2.68, + 2.66, + 2.62 + ], + [ + 4.07, + 4.0200000000000005, + 3.85, + 3.7, + 3.66, + 3.72, + 3.7800000000000002, + 3.85, + 3.93, + 4.0200000000000005, + 4.09, + 4.14, + 4.14, + 4.12, + 4.1, + 4.11, + 4.17, + 4.25, + 4.34, + 4.45, + 4.61, + 4.78, + 4.95, + 5.0600000000000005, + 5.03, + 4.98, + 4.88, + 4.86, + 4.8500000000000005, + 4.8, + 4.59, + 4.33, + 4.09, + 3.92, + 3.8000000000000003, + 3.66, + 3.58, + 3.49, + 3.5, + 3.62, + 3.7600000000000002, + 3.88, + 3.93, + 3.91, + 3.89, + 3.94, + 4.0200000000000005, + 4.18, + 4.33, + 4.42, + 4.4, + 4.22, + 4.01, + 3.7600000000000002, + 3.54, + 3.3200000000000003, + 3.14, + 3.04, + 3.0, + 3.0300000000000002, + 3.06, + 3.0100000000000002, + 2.91, + 2.89, + 2.99, + 3.0700000000000003, + 3.14, + 3.21, + 3.25, + 3.27, + 3.25, + 3.21, + 3.14, + 3.09, + 3.13, + 3.22, + 3.2600000000000002, + 3.25, + 3.24, + 3.24, + 3.23, + 3.24, + 3.29, + 3.3200000000000003, + 3.37, + 3.33, + 3.3000000000000003, + 3.33, + 3.34, + 3.42, + 3.47, + 3.65, + 3.8200000000000003, + 3.87, + 3.86, + 3.79, + 3.73, + 3.72, + 3.69, + 3.66, + 3.73, + 3.96, + 4.28, + 4.67, + 5.08, + 5.59, + 6.16, + 6.63, + 6.94, + 7.1000000000000005, + 7.15, + 7.22, + 7.42, + 7.66, + 8.040000000000001, + 8.4, + 8.47, + 8.41, + 7.79, + 7.16, + 5.99, + 4.8, + 3.79, + 2.96, + 2.31, + 1.69, + 1.1300000000000001, + 0.67, + 0.46, + 0.38, + 0.35000000000000003, + 0.34, + 0.34, + 0.28, + 0.18, + 0.03, + -0.17, + -0.33, + -0.5, + -0.6, + -0.66, + -0.65, + -0.62, + -0.56, + -0.5, + -0.4, + -0.23, + 0.02, + 0.32, + 0.55, + 0.72, + 0.87, + 1.0, + 1.11, + 1.08, + 1.05, + 0.93, + 0.81, + 0.68, + 0.6, + 0.64, + 0.71, + 0.74, + 0.75, + 0.75, + 0.92, + 1.3800000000000001, + 1.93, + 2.27, + 2.33, + 2.14, + 1.86, + 1.77, + 2.07, + 2.58, + 3.23, + 3.8200000000000003, + 4.25, + 4.66, + 5.04, + 5.4, + 5.64, + 5.7700000000000005, + 5.63, + 5.39, + 5.09, + 4.83, + 4.73, + 4.78, + 4.88, + 4.94, + 4.88, + 4.78, + 4.66, + 4.51, + 4.36, + 4.14, + 3.88, + 3.5500000000000003, + 3.35, + 3.54, + 3.87, + 4.43, + 4.9, + 5.2700000000000005, + 5.59, + 5.78, + 5.97, + 6.12, + 6.28, + 6.38, + 6.44, + 6.390000000000001, + 6.29, + 6.11, + 5.94, + 5.89, + 5.94, + 6.0600000000000005, + 6.12, + 6.0600000000000005, + 5.8500000000000005, + 5.5200000000000005, + 5.04, + 4.53, + 4.08, + 3.68, + 3.37, + 3.09, + 2.83, + 2.58, + 2.38, + 2.22, + 2.11, + 2.0300000000000002, + 1.98, + 1.95, + 1.97, + 2.02, + 1.95, + 1.81, + 1.6400000000000001, + 1.45, + 1.27, + 1.1500000000000001, + 1.07, + 1.01, + 0.98, + 0.97, + 0.97, + 1.01, + 1.03, + 1.08, + 1.1400000000000001, + 1.26, + 1.33, + 1.45, + 1.51, + 1.56, + 1.59, + 1.61, + 1.61, + 1.56, + 1.49, + 1.44, + 1.41, + 1.44, + 1.52, + 1.6300000000000001, + 1.72, + 1.8, + 1.83, + 1.81, + 1.75, + 1.69, + 1.6600000000000001, + 1.6600000000000001, + 1.69, + 1.72, + 1.72, + 1.68, + 1.59, + 1.5, + 1.48, + 1.49, + 1.5, + 1.53, + 1.59, + 1.6400000000000001, + 1.68, + 1.7, + 1.71, + 1.73, + 1.76, + 1.81, + 1.86, + 1.92, + 1.98, + 1.98, + 1.97, + 1.9000000000000001, + 1.83, + 1.78, + 1.74, + 1.73, + 1.72, + 1.73, + 1.74, + 1.78, + 1.84, + 1.93, + 2.06, + 2.18, + 2.2800000000000002, + 2.35, + 2.39, + 2.43, + 2.42, + 2.43, + 2.42, + 2.44, + 2.5, + 2.59, + 2.66, + 2.72, + 2.77, + 2.84, + 2.94, + 3.0300000000000002, + 3.1, + 3.09, + 3.02, + 2.89, + 2.8000000000000003, + 2.77, + 2.79, + 2.81, + 2.82, + 2.84, + 2.82, + 2.83, + 2.82, + 2.83, + 2.82, + 2.77, + 2.72, + 2.69 + ], + [ + 4.08, + 4.07, + 3.88, + 3.69, + 3.7, + 3.75, + 3.81, + 3.88, + 3.97, + 4.0600000000000005, + 4.15, + 4.21, + 4.23, + 4.2, + 4.16, + 4.16, + 4.2, + 4.2700000000000005, + 4.36, + 4.48, + 4.64, + 4.82, + 4.97, + 4.99, + 4.94, + 4.79, + 4.69, + 4.68, + 4.72, + 4.62, + 4.42, + 4.16, + 3.89, + 3.72, + 3.61, + 3.5700000000000003, + 3.54, + 3.56, + 3.64, + 3.7600000000000002, + 3.9, + 4.0, + 3.99, + 3.96, + 3.97, + 3.99, + 4.11, + 4.24, + 4.42, + 4.54, + 4.46, + 4.2700000000000005, + 4.01, + 3.73, + 3.48, + 3.2600000000000002, + 3.09, + 2.99, + 2.95, + 3.0100000000000002, + 3.08, + 3.0, + 2.91, + 2.91, + 2.96, + 3.0300000000000002, + 3.09, + 3.15, + 3.2, + 3.23, + 3.23, + 3.18, + 3.1, + 3.0300000000000002, + 3.02, + 3.06, + 3.14, + 3.14, + 3.14, + 3.15, + 3.14, + 3.14, + 3.19, + 3.29, + 3.37, + 3.45, + 3.49, + 3.5300000000000002, + 3.54, + 3.5300000000000002, + 3.5500000000000003, + 3.64, + 3.81, + 3.93, + 3.9, + 3.87, + 3.83, + 3.8000000000000003, + 3.73, + 3.69, + 3.79, + 4.03, + 4.41, + 4.83, + 5.3500000000000005, + 5.89, + 6.4, + 6.8100000000000005, + 7.07, + 7.21, + 7.32, + 7.51, + 7.72, + 8.040000000000001, + 8.370000000000001, + 8.57, + 8.72, + 8.2, + 7.66, + 6.58, + 5.47, + 4.3500000000000005, + 3.33, + 2.63, + 2.0300000000000002, + 1.45, + 0.91, + 0.58, + 0.44, + 0.38, + 0.38, + 0.4, + 0.41000000000000003, + 0.42, + 0.34, + 0.21, + 0.02, + -0.21, + -0.39, + -0.56, + -0.63, + -0.65, + -0.61, + -0.54, + -0.47000000000000003, + -0.37, + -0.2, + 0.03, + 0.27, + 0.49, + 0.66, + 0.8200000000000001, + 1.01, + 1.17, + 1.28, + 1.3, + 1.26, + 1.12, + 0.97, + 0.89, + 0.86, + 0.93, + 0.9400000000000001, + 0.9, + 0.8200000000000001, + 1.02, + 1.49, + 2.09, + 2.57, + 2.63, + 2.41, + 2.11, + 1.93, + 2.0300000000000002, + 2.5100000000000002, + 3.1, + 3.68, + 4.16, + 4.57, + 4.95, + 5.3, + 5.6000000000000005, + 5.67, + 5.63, + 5.33, + 4.99, + 4.72, + 4.49, + 4.54, + 4.64, + 4.7, + 4.68, + 4.59, + 4.48, + 4.38, + 4.25, + 4.1, + 3.87, + 3.67, + 3.5700000000000003, + 3.65, + 4.11, + 4.55, + 4.96, + 5.3, + 5.55, + 5.76, + 5.94, + 6.140000000000001, + 6.3, + 6.44, + 6.43, + 6.38, + 6.23, + 6.05, + 5.9, + 5.84, + 5.91, + 6.05, + 6.12, + 6.04, + 5.84, + 5.48, + 5.04, + 4.53, + 4.04, + 3.68, + 3.36, + 3.12, + 2.89, + 2.64, + 2.41, + 2.23, + 2.08, + 1.99, + 1.92, + 1.9000000000000001, + 1.9100000000000001, + 1.8800000000000001, + 1.82, + 1.69, + 1.51, + 1.31, + 1.12, + 0.99, + 0.93, + 0.9, + 0.91, + 0.91, + 0.9500000000000001, + 0.98, + 1.02, + 1.05, + 1.16, + 1.28, + 1.3900000000000001, + 1.5, + 1.54, + 1.56, + 1.56, + 1.57, + 1.55, + 1.49, + 1.41, + 1.35, + 1.32, + 1.35, + 1.43, + 1.55, + 1.67, + 1.75, + 1.8, + 1.76, + 1.7, + 1.6400000000000001, + 1.6, + 1.61, + 1.6300000000000001, + 1.67, + 1.7, + 1.6500000000000001, + 1.55, + 1.46, + 1.4000000000000001, + 1.3900000000000001, + 1.4000000000000001, + 1.44, + 1.52, + 1.58, + 1.62, + 1.6400000000000001, + 1.6500000000000001, + 1.68, + 1.72, + 1.78, + 1.84, + 1.8900000000000001, + 1.92, + 1.93, + 1.8900000000000001, + 1.84, + 1.78, + 1.73, + 1.7, + 1.69, + 1.69, + 1.7, + 1.71, + 1.74, + 1.8, + 1.8900000000000001, + 2.0, + 2.11, + 2.17, + 2.2, + 2.24, + 2.25, + 2.27, + 2.2600000000000002, + 2.27, + 2.3000000000000003, + 2.37, + 2.45, + 2.54, + 2.59, + 2.65, + 2.74, + 2.86, + 2.99, + 3.0700000000000003, + 3.09, + 3.0100000000000002, + 2.9, + 2.81, + 2.82, + 2.9, + 2.94, + 2.99, + 3.02, + 3.0100000000000002, + 3.0, + 2.97, + 2.96, + 2.9, + 2.86, + 2.7800000000000002, + 2.74 + ], + [ + 4.09, + 4.04, + 3.91, + 3.77, + 3.73, + 3.77, + 3.83, + 3.92, + 4.01, + 4.1, + 4.2, + 4.2700000000000005, + 4.29, + 4.26, + 4.2, + 4.16, + 4.19, + 4.26, + 4.3500000000000005, + 4.49, + 4.67, + 4.86, + 4.94, + 4.95, + 4.78, + 4.58, + 4.49, + 4.47, + 4.47, + 4.42, + 4.23, + 3.96, + 3.73, + 3.56, + 3.5, + 3.5100000000000002, + 3.5700000000000003, + 3.66, + 3.77, + 3.9, + 4.03, + 4.07, + 4.07, + 4.04, + 4.03, + 4.1, + 4.19, + 4.36, + 4.5600000000000005, + 4.6000000000000005, + 4.5600000000000005, + 4.28, + 4.0, + 3.71, + 3.44, + 3.22, + 3.0300000000000002, + 2.88, + 2.84, + 2.91, + 3.0, + 3.0100000000000002, + 2.91, + 2.89, + 2.93, + 2.98, + 3.04, + 3.09, + 3.15, + 3.2, + 3.19, + 3.16, + 3.06, + 2.95, + 2.9, + 2.9, + 2.93, + 2.96, + 2.99, + 3.02, + 3.0500000000000003, + 3.0500000000000003, + 3.11, + 3.25, + 3.39, + 3.54, + 3.64, + 3.63, + 3.69, + 3.61, + 3.5500000000000003, + 3.68, + 3.84, + 3.9, + 3.93, + 3.92, + 3.91, + 3.88, + 3.77, + 3.74, + 3.8200000000000003, + 4.09, + 4.5, + 5.04, + 5.62, + 6.19, + 6.69, + 7.04, + 7.24, + 7.390000000000001, + 7.57, + 7.8, + 8.05, + 8.34, + 8.52, + 8.700000000000001, + 8.38, + 7.95, + 6.97, + 5.96, + 4.88, + 3.79, + 3.02, + 2.36, + 1.79, + 1.22, + 0.81, + 0.55, + 0.43, + 0.41000000000000003, + 0.42, + 0.47000000000000003, + 0.52, + 0.54, + 0.54, + 0.41000000000000003, + 0.24, + -0.01, + -0.26, + -0.45, + -0.6, + -0.65, + -0.63, + -0.5700000000000001, + -0.49, + -0.37, + -0.22, + -0.01, + 0.22, + 0.44, + 0.61, + 0.81, + 1.04, + 1.29, + 1.47, + 1.56, + 1.52, + 1.45, + 1.3, + 1.17, + 1.21, + 1.22, + 1.2, + 1.11, + 1.04, + 1.03, + 1.5, + 2.22, + 2.7, + 2.88, + 2.69, + 2.33, + 2.08, + 2.09, + 2.41, + 3.0100000000000002, + 3.58, + 4.0600000000000005, + 4.48, + 4.8500000000000005, + 5.2, + 5.47, + 5.65, + 5.51, + 5.29, + 4.94, + 4.59, + 4.42, + 4.34, + 4.42, + 4.49, + 4.46, + 4.39, + 4.33, + 4.2700000000000005, + 4.22, + 4.12, + 4.0, + 3.89, + 3.85, + 4.01, + 4.28, + 4.65, + 5.0200000000000005, + 5.29, + 5.5200000000000005, + 5.71, + 5.9, + 6.11, + 6.33, + 6.41, + 6.44, + 6.34, + 6.18, + 6.01, + 5.8500000000000005, + 5.8, + 5.87, + 5.99, + 6.07, + 6.0200000000000005, + 5.8100000000000005, + 5.49, + 5.04, + 4.55, + 4.09, + 3.65, + 3.35, + 3.13, + 2.9, + 2.67, + 2.45, + 2.24, + 2.1, + 1.98, + 1.9000000000000001, + 1.84, + 1.81, + 1.76, + 1.69, + 1.57, + 1.4000000000000001, + 1.2, + 1.02, + 0.91, + 0.85, + 0.87, + 0.88, + 0.93, + 0.96, + 1.0, + 1.03, + 1.09, + 1.18, + 1.31, + 1.45, + 1.51, + 1.57, + 1.56, + 1.54, + 1.53, + 1.5, + 1.42, + 1.33, + 1.26, + 1.23, + 1.25, + 1.35, + 1.48, + 1.61, + 1.72, + 1.75, + 1.73, + 1.6500000000000001, + 1.57, + 1.55, + 1.54, + 1.59, + 1.6300000000000001, + 1.6500000000000001, + 1.6400000000000001, + 1.53, + 1.41, + 1.34, + 1.31, + 1.33, + 1.3800000000000001, + 1.45, + 1.52, + 1.56, + 1.57, + 1.59, + 1.6400000000000001, + 1.69, + 1.76, + 1.82, + 1.86, + 1.8800000000000001, + 1.85, + 1.81, + 1.77, + 1.72, + 1.68, + 1.6600000000000001, + 1.6500000000000001, + 1.6600000000000001, + 1.6600000000000001, + 1.68, + 1.7, + 1.75, + 1.82, + 1.93, + 2.0, + 2.02, + 2.0300000000000002, + 2.05, + 2.08, + 2.09, + 2.08, + 2.09, + 2.12, + 2.2, + 2.31, + 2.37, + 2.45, + 2.5300000000000002, + 2.63, + 2.81, + 2.97, + 3.09, + 3.14, + 3.09, + 2.98, + 2.91, + 2.96, + 3.0300000000000002, + 3.09, + 3.13, + 3.14, + 3.15, + 3.1, + 3.06, + 2.98, + 2.93, + 2.86, + 2.8000000000000003, + 2.75 + ], + [ + 4.1, + 4.1, + 3.97, + 3.7800000000000002, + 3.8000000000000003, + 3.8000000000000003, + 3.89, + 3.98, + 4.08, + 4.16, + 4.25, + 4.33, + 4.33, + 4.28, + 4.21, + 4.15, + 4.15, + 4.22, + 4.33, + 4.5, + 4.69, + 4.86, + 4.97, + 4.84, + 4.64, + 4.42, + 4.24, + 4.22, + 4.23, + 4.15, + 4.0, + 3.8000000000000003, + 3.58, + 3.46, + 3.43, + 3.5, + 3.63, + 3.7600000000000002, + 3.88, + 4.0, + 4.09, + 4.14, + 4.13, + 4.11, + 4.13, + 4.18, + 4.29, + 4.47, + 4.58, + 4.68, + 4.44, + 4.21, + 3.9, + 3.62, + 3.38, + 3.16, + 2.96, + 2.77, + 2.73, + 2.83, + 2.92, + 2.93, + 2.88, + 2.87, + 2.91, + 2.97, + 3.0, + 3.0700000000000003, + 3.13, + 3.16, + 3.18, + 3.11, + 3.0300000000000002, + 2.91, + 2.79, + 2.75, + 2.73, + 2.75, + 2.81, + 2.88, + 2.95, + 3.02, + 3.1, + 3.24, + 3.43, + 3.58, + 3.62, + 3.62, + 3.64, + 3.67, + 3.62, + 3.67, + 3.81, + 3.91, + 3.92, + 3.96, + 4.0, + 4.0, + 3.9, + 3.81, + 3.9, + 4.15, + 4.61, + 5.23, + 5.91, + 6.53, + 7.0, + 7.28, + 7.45, + 7.6000000000000005, + 7.78, + 8.01, + 8.3, + 8.43, + 8.6, + 8.41, + 8.13, + 7.3100000000000005, + 6.3100000000000005, + 5.26, + 4.23, + 3.4, + 2.71, + 2.13, + 1.59, + 1.12, + 0.76, + 0.55, + 0.47000000000000003, + 0.45, + 0.48, + 0.54, + 0.61, + 0.68, + 0.6900000000000001, + 0.65, + 0.45, + 0.2, + -0.09, + -0.37, + -0.55, + -0.68, + -0.68, + -0.64, + -0.54, + -0.42, + -0.24, + -0.04, + 0.18, + 0.4, + 0.61, + 0.8300000000000001, + 1.11, + 1.45, + 1.7, + 1.78, + 1.8, + 1.71, + 1.6300000000000001, + 1.62, + 1.61, + 1.61, + 1.55, + 1.44, + 1.25, + 1.26, + 1.51, + 2.2, + 2.86, + 3.0300000000000002, + 2.9, + 2.58, + 2.24, + 2.18, + 2.47, + 2.94, + 3.52, + 3.99, + 4.39, + 4.76, + 5.1000000000000005, + 5.39, + 5.47, + 5.47, + 5.18, + 4.87, + 4.55, + 4.29, + 4.22, + 4.24, + 4.25, + 4.22, + 4.17, + 4.16, + 4.19, + 4.22, + 4.22, + 4.19, + 4.15, + 4.16, + 4.25, + 4.47, + 4.74, + 5.03, + 5.3, + 5.5, + 5.68, + 5.87, + 6.09, + 6.26, + 6.41, + 6.38, + 6.3, + 6.15, + 5.98, + 5.83, + 5.75, + 5.8, + 5.92, + 6.0, + 5.96, + 5.8100000000000005, + 5.49, + 5.08, + 4.6000000000000005, + 4.12, + 3.67, + 3.2800000000000002, + 3.08, + 2.9, + 2.68, + 2.46, + 2.2600000000000002, + 2.1, + 1.97, + 1.86, + 1.79, + 1.73, + 1.67, + 1.6, + 1.48, + 1.34, + 1.17, + 0.99, + 0.9, + 0.89, + 0.89, + 0.9400000000000001, + 0.97, + 1.01, + 1.04, + 1.08, + 1.12, + 1.22, + 1.35, + 1.44, + 1.5, + 1.51, + 1.51, + 1.5, + 1.49, + 1.42, + 1.33, + 1.25, + 1.18, + 1.1500000000000001, + 1.17, + 1.26, + 1.42, + 1.57, + 1.68, + 1.73, + 1.67, + 1.59, + 1.53, + 1.49, + 1.52, + 1.55, + 1.6, + 1.6400000000000001, + 1.59, + 1.49, + 1.36, + 1.27, + 1.24, + 1.27, + 1.33, + 1.4000000000000001, + 1.45, + 1.48, + 1.51, + 1.54, + 1.6, + 1.68, + 1.76, + 1.8, + 1.83, + 1.81, + 1.77, + 1.74, + 1.7, + 1.67, + 1.6400000000000001, + 1.62, + 1.61, + 1.61, + 1.62, + 1.62, + 1.6400000000000001, + 1.68, + 1.75, + 1.82, + 1.86, + 1.86, + 1.85, + 1.86, + 1.9000000000000001, + 1.9100000000000001, + 1.8900000000000001, + 1.8800000000000001, + 1.92, + 2.0, + 2.07, + 2.17, + 2.24, + 2.35, + 2.56, + 2.7800000000000002, + 3.0100000000000002, + 3.15, + 3.2, + 3.19, + 3.11, + 3.04, + 3.06, + 3.14, + 3.19, + 3.21, + 3.22, + 3.2, + 3.16, + 3.06, + 2.97, + 2.91, + 2.84, + 2.8000000000000003, + 2.75 + ], + [ + 4.12, + 4.11, + 4.09, + 3.99, + 3.93, + 3.97, + 4.01, + 4.12, + 4.23, + 4.3100000000000005, + 4.37, + 4.4, + 4.38, + 4.2700000000000005, + 4.17, + 4.1, + 4.1, + 4.17, + 4.3100000000000005, + 4.48, + 4.69, + 4.89, + 4.9, + 4.82, + 4.5200000000000005, + 4.22, + 4.07, + 3.97, + 3.94, + 3.89, + 3.77, + 3.62, + 3.47, + 3.38, + 3.4, + 3.52, + 3.67, + 3.8200000000000003, + 3.95, + 4.04, + 4.13, + 4.16, + 4.19, + 4.17, + 4.19, + 4.23, + 4.3, + 4.43, + 4.58, + 4.41, + 4.2, + 3.91, + 3.66, + 3.44, + 3.2600000000000002, + 3.06, + 2.85, + 2.72, + 2.7, + 2.77, + 2.87, + 2.91, + 2.87, + 2.84, + 2.92, + 2.98, + 3.02, + 3.08, + 3.12, + 3.16, + 3.13, + 3.08, + 2.98, + 2.87, + 2.7600000000000002, + 2.64, + 2.61, + 2.59, + 2.63, + 2.74, + 2.84, + 2.96, + 3.11, + 3.2800000000000002, + 3.46, + 3.58, + 3.62, + 3.58, + 3.56, + 3.6, + 3.61, + 3.7, + 3.81, + 3.85, + 3.88, + 3.99, + 4.12, + 4.09, + 4.0200000000000005, + 3.93, + 3.96, + 4.26, + 4.75, + 5.44, + 6.24, + 6.890000000000001, + 7.32, + 7.5600000000000005, + 7.65, + 7.74, + 7.890000000000001, + 8.120000000000001, + 8.27, + 8.46, + 8.36, + 8.22, + 7.62, + 6.8, + 5.7, + 4.5600000000000005, + 3.69, + 2.98, + 2.4, + 1.9000000000000001, + 1.42, + 1.01, + 0.72, + 0.56, + 0.49, + 0.49, + 0.53, + 0.61, + 0.7000000000000001, + 0.78, + 0.86, + 0.8, + 0.7000000000000001, + 0.39, + 0.07, + -0.24, + -0.53, + -0.66, + -0.74, + -0.68, + -0.59, + -0.42, + -0.23, + -0.03, + 0.17, + 0.39, + 0.63, + 0.92, + 1.27, + 1.6, + 1.85, + 1.98, + 1.96, + 1.96, + 1.99, + 2.05, + 2.07, + 2.07, + 1.98, + 1.83, + 1.58, + 1.36, + 1.67, + 2.2800000000000002, + 2.86, + 3.18, + 3.08, + 2.7800000000000002, + 2.5100000000000002, + 2.4, + 2.59, + 3.04, + 3.5100000000000002, + 3.94, + 4.32, + 4.68, + 5.01, + 5.22, + 5.38, + 5.28, + 5.1000000000000005, + 4.78, + 4.45, + 4.21, + 4.07, + 4.05, + 4.0200000000000005, + 3.97, + 3.93, + 3.98, + 4.11, + 4.22, + 4.32, + 4.37, + 4.4, + 4.43, + 4.49, + 4.62, + 4.82, + 5.05, + 5.29, + 5.51, + 5.67, + 5.83, + 6.01, + 6.19, + 6.2700000000000005, + 6.3, + 6.21, + 6.09, + 5.93, + 5.79, + 5.71, + 5.73, + 5.82, + 5.9, + 5.89, + 5.75, + 5.49, + 5.07, + 4.63, + 4.13, + 3.67, + 3.3000000000000003, + 3.0, + 2.85, + 2.67, + 2.43, + 2.24, + 2.07, + 1.93, + 1.84, + 1.75, + 1.69, + 1.62, + 1.53, + 1.41, + 1.28, + 1.1300000000000001, + 1.02, + 1.0, + 0.99, + 1.01, + 1.02, + 1.05, + 1.07, + 1.1, + 1.1400000000000001, + 1.19, + 1.25, + 1.36, + 1.45, + 1.47, + 1.46, + 1.45, + 1.43, + 1.4000000000000001, + 1.33, + 1.24, + 1.16, + 1.1, + 1.08, + 1.1, + 1.21, + 1.36, + 1.54, + 1.6600000000000001, + 1.67, + 1.62, + 1.55, + 1.49, + 1.49, + 1.5, + 1.54, + 1.58, + 1.59, + 1.55, + 1.42, + 1.28, + 1.2, + 1.17, + 1.21, + 1.28, + 1.35, + 1.3900000000000001, + 1.42, + 1.45, + 1.49, + 1.58, + 1.67, + 1.74, + 1.79, + 1.77, + 1.75, + 1.7, + 1.6600000000000001, + 1.6400000000000001, + 1.62, + 1.6, + 1.58, + 1.57, + 1.56, + 1.56, + 1.56, + 1.57, + 1.6, + 1.6500000000000001, + 1.7, + 1.72, + 1.69, + 1.6600000000000001, + 1.68, + 1.7, + 1.68, + 1.67, + 1.6500000000000001, + 1.68, + 1.73, + 1.81, + 1.8800000000000001, + 1.98, + 2.2, + 2.47, + 2.81, + 3.11, + 3.25, + 3.3000000000000003, + 3.25, + 3.18, + 3.15, + 3.17, + 3.23, + 3.27, + 3.2800000000000002, + 3.27, + 3.24, + 3.16, + 3.0700000000000003, + 2.99, + 2.9, + 2.87, + 2.82, + 2.7600000000000002 + ], + [ + 4.13, + 4.13, + 4.19, + 4.19, + 4.16, + 4.19, + 4.23, + 4.34, + 4.42, + 4.5, + 4.54, + 4.54, + 4.47, + 4.28, + 4.11, + 4.04, + 4.03, + 4.13, + 4.26, + 4.47, + 4.69, + 4.84, + 4.92, + 4.7, + 4.42, + 4.13, + 3.87, + 3.77, + 3.69, + 3.65, + 3.58, + 3.48, + 3.39, + 3.35, + 3.4, + 3.52, + 3.7, + 3.85, + 3.95, + 4.04, + 4.11, + 4.17, + 4.18, + 4.2, + 4.23, + 4.2700000000000005, + 4.3100000000000005, + 4.38, + 4.29, + 4.1, + 3.79, + 3.5, + 3.31, + 3.17, + 3.0100000000000002, + 2.88, + 2.75, + 2.68, + 2.69, + 2.77, + 2.85, + 2.91, + 2.9, + 2.89, + 2.92, + 2.97, + 3.0300000000000002, + 3.0300000000000002, + 3.1, + 3.09, + 3.1, + 3.0300000000000002, + 2.94, + 2.84, + 2.73, + 2.64, + 2.56, + 2.52, + 2.49, + 2.57, + 2.7, + 2.83, + 3.0500000000000003, + 3.27, + 3.46, + 3.6, + 3.59, + 3.5500000000000003, + 3.5500000000000003, + 3.5700000000000003, + 3.62, + 3.69, + 3.7600000000000002, + 3.8000000000000003, + 3.91, + 4.0200000000000005, + 4.14, + 4.18, + 4.08, + 3.95, + 4.0600000000000005, + 4.36, + 4.92, + 5.71, + 6.53, + 7.23, + 7.67, + 7.79, + 7.82, + 7.8, + 7.890000000000001, + 8.02, + 8.19, + 8.19, + 8.15, + 7.79, + 7.3, + 6.3100000000000005, + 5.13, + 4.07, + 3.16, + 2.57, + 2.09, + 1.62, + 1.21, + 0.88, + 0.66, + 0.53, + 0.49, + 0.5, + 0.56, + 0.65, + 0.75, + 0.86, + 0.93, + 0.97, + 0.8200000000000001, + 0.59, + 0.23, + -0.14, + -0.43, + -0.68, + -0.72, + -0.7000000000000001, + -0.56, + -0.38, + -0.18, + 0.01, + 0.21, + 0.43, + 0.71, + 1.07, + 1.44, + 1.77, + 2.02, + 2.06, + 2.07, + 2.16, + 2.29, + 2.41, + 2.54, + 2.5300000000000002, + 2.47, + 2.22, + 1.8800000000000001, + 1.67, + 1.72, + 2.3000000000000003, + 2.95, + 3.2, + 3.19, + 2.99, + 2.7600000000000002, + 2.69, + 2.86, + 3.2, + 3.5700000000000003, + 3.92, + 4.26, + 4.6000000000000005, + 4.86, + 5.1000000000000005, + 5.16, + 5.17, + 4.95, + 4.7, + 4.3500000000000005, + 4.07, + 3.93, + 3.87, + 3.81, + 3.73, + 3.75, + 3.86, + 4.03, + 4.24, + 4.39, + 4.53, + 4.61, + 4.64, + 4.69, + 4.76, + 4.9, + 5.09, + 5.32, + 5.51, + 5.68, + 5.79, + 5.92, + 6.04, + 6.13, + 6.13, + 6.09, + 5.99, + 5.86, + 5.72, + 5.62, + 5.63, + 5.72, + 5.79, + 5.79, + 5.66, + 5.39, + 5.0200000000000005, + 4.58, + 4.14, + 3.69, + 3.29, + 3.0300000000000002, + 2.83, + 2.58, + 2.33, + 2.14, + 2.0, + 1.9000000000000001, + 1.82, + 1.74, + 1.6600000000000001, + 1.58, + 1.47, + 1.36, + 1.23, + 1.1400000000000001, + 1.1300000000000001, + 1.1500000000000001, + 1.18, + 1.18, + 1.18, + 1.17, + 1.16, + 1.1500000000000001, + 1.2, + 1.24, + 1.3, + 1.37, + 1.43, + 1.46, + 1.43, + 1.3800000000000001, + 1.35, + 1.31, + 1.24, + 1.1500000000000001, + 1.09, + 1.05, + 1.04, + 1.06, + 1.1500000000000001, + 1.34, + 1.52, + 1.61, + 1.6400000000000001, + 1.56, + 1.49, + 1.48, + 1.48, + 1.51, + 1.53, + 1.55, + 1.56, + 1.48, + 1.34, + 1.21, + 1.11, + 1.1, + 1.16, + 1.24, + 1.31, + 1.35, + 1.37, + 1.4000000000000001, + 1.47, + 1.56, + 1.6600000000000001, + 1.73, + 1.74, + 1.73, + 1.67, + 1.62, + 1.6, + 1.57, + 1.57, + 1.56, + 1.54, + 1.52, + 1.51, + 1.49, + 1.49, + 1.48, + 1.5, + 1.54, + 1.56, + 1.54, + 1.51, + 1.48, + 1.46, + 1.45, + 1.43, + 1.41, + 1.3900000000000001, + 1.41, + 1.44, + 1.5, + 1.57, + 1.77, + 2.0300000000000002, + 2.46, + 2.92, + 3.22, + 3.39, + 3.39, + 3.29, + 3.23, + 3.22, + 3.2600000000000002, + 3.3200000000000003, + 3.36, + 3.34, + 3.31, + 3.25, + 3.18, + 3.09, + 3.02, + 2.95, + 2.91, + 2.84, + 2.7800000000000002 + ], + [ + 4.14, + 4.19, + 4.36, + 4.33, + 4.36, + 4.3500000000000005, + 4.4, + 4.45, + 4.54, + 4.59, + 4.65, + 4.65, + 4.54, + 4.34, + 4.09, + 3.97, + 4.0, + 4.07, + 4.24, + 4.44, + 4.65, + 4.83, + 4.78, + 4.63, + 4.3100000000000005, + 4.0, + 3.7800000000000002, + 3.58, + 3.52, + 3.47, + 3.44, + 3.41, + 3.38, + 3.38, + 3.43, + 3.5500000000000003, + 3.7, + 3.8200000000000003, + 3.92, + 4.0, + 4.07, + 4.12, + 4.16, + 4.21, + 4.26, + 4.26, + 4.29, + 4.18, + 4.03, + 3.69, + 3.3000000000000003, + 3.0700000000000003, + 2.92, + 2.81, + 2.72, + 2.65, + 2.63, + 2.65, + 2.73, + 2.81, + 2.9, + 2.95, + 2.95, + 2.92, + 2.88, + 2.91, + 2.89, + 2.92, + 2.95, + 2.99, + 3.0, + 2.98, + 2.91, + 2.83, + 2.73, + 2.65, + 2.56, + 2.47, + 2.43, + 2.45, + 2.56, + 2.69, + 2.89, + 3.17, + 3.4, + 3.54, + 3.6, + 3.5700000000000003, + 3.54, + 3.59, + 3.6, + 3.67, + 3.73, + 3.85, + 3.96, + 4.11, + 4.23, + 4.24, + 4.14, + 4.11, + 4.17, + 4.5200000000000005, + 5.13, + 5.95, + 6.87, + 7.58, + 7.94, + 8.05, + 7.88, + 7.79, + 7.79, + 7.88, + 7.95, + 7.96, + 7.7700000000000005, + 7.45, + 6.8, + 5.93, + 4.74, + 3.5700000000000003, + 2.79, + 2.22, + 1.75, + 1.32, + 0.97, + 0.74, + 0.5700000000000001, + 0.49, + 0.46, + 0.49, + 0.56, + 0.66, + 0.78, + 0.88, + 0.99, + 1.02, + 0.98, + 0.74, + 0.41000000000000003, + 0.05, + -0.34, + -0.53, + -0.6900000000000001, + -0.61, + -0.49, + -0.29, + -0.09, + 0.09, + 0.27, + 0.51, + 0.85, + 1.23, + 1.62, + 1.95, + 2.07, + 2.14, + 2.18, + 2.2800000000000002, + 2.49, + 2.73, + 2.9, + 3.04, + 2.89, + 2.67, + 2.23, + 1.8, + 1.94, + 2.36, + 2.88, + 3.2, + 3.22, + 3.13, + 3.0, + 3.0, + 3.15, + 3.4, + 3.69, + 3.93, + 4.2, + 4.45, + 4.71, + 4.87, + 4.98, + 4.95, + 4.83, + 4.53, + 4.21, + 3.93, + 3.73, + 3.65, + 3.59, + 3.58, + 3.62, + 3.7800000000000002, + 4.0200000000000005, + 4.24, + 4.46, + 4.62, + 4.74, + 4.8, + 4.8100000000000005, + 4.87, + 4.97, + 5.13, + 5.32, + 5.5200000000000005, + 5.64, + 5.74, + 5.82, + 5.89, + 5.95, + 5.97, + 5.95, + 5.89, + 5.76, + 5.61, + 5.51, + 5.5200000000000005, + 5.6000000000000005, + 5.68, + 5.68, + 5.54, + 5.28, + 4.91, + 4.49, + 4.09, + 3.7, + 3.29, + 3.0, + 2.72, + 2.45, + 2.2, + 1.98, + 1.9000000000000001, + 1.86, + 1.79, + 1.73, + 1.6400000000000001, + 1.55, + 1.44, + 1.33, + 1.25, + 1.23, + 1.26, + 1.37, + 1.44, + 1.42, + 1.3900000000000001, + 1.32, + 1.27, + 1.27, + 1.29, + 1.3, + 1.32, + 1.3900000000000001, + 1.44, + 1.44, + 1.4000000000000001, + 1.33, + 1.26, + 1.21, + 1.1500000000000001, + 1.08, + 1.04, + 1.02, + 1.02, + 1.05, + 1.1400000000000001, + 1.3, + 1.48, + 1.59, + 1.56, + 1.5, + 1.46, + 1.45, + 1.48, + 1.52, + 1.54, + 1.54, + 1.5, + 1.42, + 1.28, + 1.12, + 1.05, + 1.04, + 1.1, + 1.2, + 1.28, + 1.31, + 1.33, + 1.3800000000000001, + 1.45, + 1.56, + 1.6500000000000001, + 1.69, + 1.7, + 1.6500000000000001, + 1.6, + 1.57, + 1.54, + 1.53, + 1.51, + 1.51, + 1.5, + 1.47, + 1.45, + 1.43, + 1.41, + 1.3900000000000001, + 1.3800000000000001, + 1.3900000000000001, + 1.3900000000000001, + 1.37, + 1.33, + 1.29, + 1.24, + 1.2, + 1.19, + 1.1500000000000001, + 1.1500000000000001, + 1.1400000000000001, + 1.17, + 1.2, + 1.36, + 1.55, + 1.99, + 2.5300000000000002, + 3.02, + 3.42, + 3.54, + 3.48, + 3.38, + 3.29, + 3.29, + 3.37, + 3.43, + 3.44, + 3.42, + 3.35, + 3.27, + 3.18, + 3.09, + 3.0300000000000002, + 2.98, + 2.91, + 2.85, + 2.77 + ], + [ + 4.13, + 4.14, + 4.3100000000000005, + 4.37, + 4.37, + 4.39, + 4.39, + 4.42, + 4.47, + 4.51, + 4.5600000000000005, + 4.63, + 4.55, + 4.3100000000000005, + 4.08, + 3.97, + 3.97, + 4.08, + 4.22, + 4.42, + 4.63, + 4.7, + 4.68, + 4.46, + 4.19, + 3.91, + 3.66, + 3.5100000000000002, + 3.39, + 3.37, + 3.38, + 3.4, + 3.44, + 3.48, + 3.5300000000000002, + 3.63, + 3.73, + 3.83, + 3.91, + 3.97, + 4.03, + 4.07, + 4.13, + 4.21, + 4.2, + 4.21, + 4.07, + 3.95, + 3.63, + 3.25, + 2.91, + 2.64, + 2.52, + 2.42, + 2.42, + 2.49, + 2.56, + 2.7, + 2.81, + 2.89, + 2.96, + 3.02, + 3.0100000000000002, + 2.86, + 2.79, + 2.74, + 2.71, + 2.75, + 2.79, + 2.86, + 2.9, + 2.91, + 2.89, + 2.83, + 2.75, + 2.66, + 2.5500000000000003, + 2.45, + 2.35, + 2.37, + 2.46, + 2.59, + 2.7600000000000002, + 3.0100000000000002, + 3.3000000000000003, + 3.49, + 3.61, + 3.64, + 3.63, + 3.64, + 3.67, + 3.68, + 3.79, + 3.92, + 4.07, + 4.26, + 4.33, + 4.3500000000000005, + 4.3100000000000005, + 4.33, + 4.43, + 4.71, + 5.33, + 6.23, + 7.140000000000001, + 7.87, + 8.24, + 8.11, + 7.94, + 7.71, + 7.65, + 7.72, + 7.7700000000000005, + 7.68, + 7.48, + 7.03, + 6.42, + 5.46, + 4.34, + 3.27, + 2.41, + 1.86, + 1.3900000000000001, + 1.01, + 0.74, + 0.56, + 0.48, + 0.42, + 0.41000000000000003, + 0.45, + 0.52, + 0.64, + 0.76, + 0.89, + 0.99, + 1.08, + 1.08, + 0.97, + 0.67, + 0.28, + -0.06, + -0.38, + -0.45, + -0.47000000000000003, + -0.32, + -0.16, + 0.02, + 0.19, + 0.37, + 0.62, + 0.96, + 1.37, + 1.74, + 1.95, + 2.11, + 2.16, + 2.24, + 2.38, + 2.61, + 2.94, + 3.27, + 3.33, + 3.34, + 2.96, + 2.5300000000000002, + 2.15, + 2.04, + 2.43, + 2.85, + 3.13, + 3.25, + 3.22, + 3.22, + 3.25, + 3.4, + 3.62, + 3.7800000000000002, + 3.98, + 4.1, + 4.29, + 4.46, + 4.64, + 4.75, + 4.79, + 4.61, + 4.3500000000000005, + 4.0200000000000005, + 3.71, + 3.5300000000000002, + 3.41, + 3.38, + 3.43, + 3.5500000000000003, + 3.7800000000000002, + 4.03, + 4.3, + 4.5200000000000005, + 4.71, + 4.84, + 4.86, + 4.88, + 4.92, + 5.01, + 5.15, + 5.3100000000000005, + 5.47, + 5.61, + 5.66, + 5.7, + 5.75, + 5.78, + 5.82, + 5.8500000000000005, + 5.78, + 5.67, + 5.51, + 5.38, + 5.39, + 5.51, + 5.6000000000000005, + 5.58, + 5.45, + 5.17, + 4.8100000000000005, + 4.39, + 3.98, + 3.58, + 3.2, + 2.87, + 2.58, + 2.3000000000000003, + 2.04, + 1.9000000000000001, + 1.81, + 1.78, + 1.76, + 1.68, + 1.6, + 1.51, + 1.44, + 1.36, + 1.33, + 1.33, + 1.43, + 1.55, + 1.6600000000000001, + 1.7, + 1.58, + 1.51, + 1.41, + 1.3800000000000001, + 1.36, + 1.36, + 1.3800000000000001, + 1.41, + 1.44, + 1.45, + 1.36, + 1.25, + 1.19, + 1.12, + 1.06, + 1.01, + 0.98, + 0.99, + 1.01, + 1.04, + 1.1300000000000001, + 1.29, + 1.45, + 1.51, + 1.5, + 1.44, + 1.4000000000000001, + 1.44, + 1.49, + 1.53, + 1.55, + 1.52, + 1.46, + 1.36, + 1.21, + 1.08, + 0.98, + 0.99, + 1.06, + 1.16, + 1.25, + 1.29, + 1.32, + 1.37, + 1.46, + 1.56, + 1.6300000000000001, + 1.68, + 1.6400000000000001, + 1.58, + 1.55, + 1.52, + 1.5, + 1.48, + 1.47, + 1.46, + 1.43, + 1.41, + 1.3900000000000001, + 1.36, + 1.32, + 1.28, + 1.26, + 1.22, + 1.21, + 1.19, + 1.1500000000000001, + 1.12, + 1.07, + 1.03, + 0.99, + 0.98, + 0.9500000000000001, + 0.93, + 0.91, + 1.04, + 1.18, + 1.52, + 1.96, + 2.58, + 3.23, + 3.5700000000000003, + 3.72, + 3.66, + 3.52, + 3.44, + 3.44, + 3.5, + 3.54, + 3.5500000000000003, + 3.5, + 3.42, + 3.29, + 3.18, + 3.09, + 3.02, + 2.95, + 2.89, + 2.81, + 2.74 + ], + [ + 4.11, + 4.16, + 4.34, + 4.34, + 4.3, + 4.3, + 4.29, + 4.3, + 4.3, + 4.34, + 4.4, + 4.46, + 4.47, + 4.28, + 4.07, + 3.96, + 4.01, + 4.1, + 4.24, + 4.41, + 4.54, + 4.61, + 4.49, + 4.28, + 4.04, + 3.8000000000000003, + 3.6, + 3.43, + 3.35, + 3.3200000000000003, + 3.37, + 3.47, + 3.5500000000000003, + 3.65, + 3.72, + 3.77, + 3.85, + 3.9, + 3.95, + 3.99, + 4.0200000000000005, + 4.0200000000000005, + 4.07, + 4.09, + 4.1, + 3.94, + 3.7800000000000002, + 3.54, + 3.21, + 2.84, + 2.5100000000000002, + 2.3000000000000003, + 2.15, + 2.15, + 2.25, + 2.4, + 2.63, + 2.79, + 2.92, + 3.0100000000000002, + 3.06, + 3.1, + 2.95, + 2.79, + 2.65, + 2.56, + 2.54, + 2.56, + 2.67, + 2.7600000000000002, + 2.84, + 2.89, + 2.89, + 2.87, + 2.8000000000000003, + 2.69, + 2.57, + 2.39, + 2.3000000000000003, + 2.29, + 2.38, + 2.52, + 2.69, + 2.93, + 3.18, + 3.43, + 3.61, + 3.69, + 3.73, + 3.73, + 3.7800000000000002, + 3.7800000000000002, + 3.84, + 3.98, + 4.17, + 4.3, + 4.44, + 4.44, + 4.48, + 4.53, + 4.64, + 4.96, + 5.57, + 6.46, + 7.43, + 8.11, + 8.27, + 8.18, + 7.8100000000000005, + 7.5600000000000005, + 7.5600000000000005, + 7.62, + 7.61, + 7.51, + 7.17, + 6.68, + 5.94, + 5.04, + 3.93, + 2.86, + 2.08, + 1.48, + 1.06, + 0.73, + 0.5, + 0.4, + 0.34, + 0.33, + 0.34, + 0.37, + 0.44, + 0.55, + 0.68, + 0.8300000000000001, + 0.97, + 1.1300000000000001, + 1.22, + 1.19, + 1.01, + 0.64, + 0.24, + -0.01, + -0.19, + -0.17, + -0.12, + 0.02, + 0.14, + 0.3, + 0.48, + 0.73, + 1.05, + 1.42, + 1.71, + 1.93, + 2.05, + 2.13, + 2.24, + 2.39, + 2.68, + 3.08, + 3.39, + 3.59, + 3.44, + 3.18, + 2.72, + 2.31, + 2.25, + 2.45, + 2.83, + 3.11, + 3.24, + 3.3200000000000003, + 3.35, + 3.44, + 3.58, + 3.74, + 3.9, + 3.94, + 4.03, + 4.08, + 4.19, + 4.37, + 4.5200000000000005, + 4.51, + 4.4, + 4.11, + 3.7800000000000002, + 3.5, + 3.2800000000000002, + 3.18, + 3.16, + 3.27, + 3.5100000000000002, + 3.7800000000000002, + 4.09, + 4.36, + 4.6000000000000005, + 4.79, + 4.87, + 4.9, + 4.9, + 4.93, + 5.03, + 5.17, + 5.29, + 5.43, + 5.5200000000000005, + 5.58, + 5.59, + 5.59, + 5.63, + 5.68, + 5.71, + 5.71, + 5.58, + 5.38, + 5.2700000000000005, + 5.29, + 5.41, + 5.53, + 5.5200000000000005, + 5.3500000000000005, + 5.09, + 4.71, + 4.3, + 3.85, + 3.43, + 3.02, + 2.67, + 2.4, + 2.13, + 1.93, + 1.81, + 1.74, + 1.72, + 1.68, + 1.62, + 1.54, + 1.49, + 1.43, + 1.43, + 1.42, + 1.45, + 1.53, + 1.6600000000000001, + 1.79, + 1.78, + 1.73, + 1.6, + 1.51, + 1.44, + 1.41, + 1.41, + 1.42, + 1.43, + 1.43, + 1.3900000000000001, + 1.3, + 1.2, + 1.11, + 1.06, + 1.0, + 0.9500000000000001, + 0.93, + 0.9500000000000001, + 1.0, + 1.05, + 1.12, + 1.26, + 1.3800000000000001, + 1.46, + 1.41, + 1.36, + 1.37, + 1.42, + 1.5, + 1.57, + 1.57, + 1.53, + 1.44, + 1.33, + 1.19, + 1.04, + 0.96, + 0.9400000000000001, + 1.01, + 1.1300000000000001, + 1.22, + 1.28, + 1.31, + 1.3800000000000001, + 1.47, + 1.55, + 1.6300000000000001, + 1.61, + 1.58, + 1.53, + 1.49, + 1.47, + 1.46, + 1.43, + 1.41, + 1.37, + 1.35, + 1.32, + 1.31, + 1.27, + 1.22, + 1.17, + 1.12, + 1.08, + 1.06, + 1.04, + 1.03, + 0.99, + 0.9500000000000001, + 0.9, + 0.88, + 0.85, + 0.81, + 0.76, + 0.8300000000000001, + 0.9400000000000001, + 1.2, + 1.52, + 2.04, + 2.7, + 3.29, + 3.7600000000000002, + 3.87, + 3.84, + 3.72, + 3.63, + 3.62, + 3.64, + 3.67, + 3.65, + 3.59, + 3.46, + 3.3200000000000003, + 3.17, + 3.0500000000000003, + 2.97, + 2.9, + 2.83, + 2.7600000000000002, + 2.7 + ], + [ + 4.08, + 4.1, + 4.25, + 4.28, + 4.24, + 4.21, + 4.19, + 4.16, + 4.17, + 4.2, + 4.26, + 4.34, + 4.33, + 4.19, + 4.01, + 3.99, + 4.04, + 4.14, + 4.26, + 4.39, + 4.5, + 4.47, + 4.33, + 4.11, + 3.88, + 3.7, + 3.54, + 3.42, + 3.34, + 3.35, + 3.41, + 3.54, + 3.72, + 3.83, + 3.93, + 3.99, + 4.0200000000000005, + 4.05, + 4.05, + 4.0600000000000005, + 3.98, + 3.95, + 3.92, + 3.94, + 3.7800000000000002, + 3.58, + 3.36, + 3.1, + 2.7800000000000002, + 2.45, + 2.18, + 2.0, + 1.95, + 2.02, + 2.2, + 2.5, + 2.73, + 2.9, + 3.0300000000000002, + 3.1, + 3.15, + 3.0500000000000003, + 2.92, + 2.69, + 2.5100000000000002, + 2.43, + 2.39, + 2.48, + 2.59, + 2.73, + 2.83, + 2.91, + 2.95, + 2.93, + 2.87, + 2.75, + 2.61, + 2.43, + 2.24, + 2.23, + 2.35, + 2.5, + 2.72, + 2.94, + 3.09, + 3.3000000000000003, + 3.5300000000000002, + 3.68, + 3.69, + 3.73, + 3.79, + 3.85, + 3.87, + 3.98, + 4.1, + 4.25, + 4.36, + 4.44, + 4.53, + 4.73, + 4.9, + 5.22, + 5.86, + 6.76, + 7.640000000000001, + 8.120000000000001, + 8.290000000000001, + 7.98, + 7.63, + 7.48, + 7.45, + 7.54, + 7.5600000000000005, + 7.32, + 6.95, + 6.29, + 5.49, + 4.5200000000000005, + 3.46, + 2.49, + 1.73, + 1.19, + 0.78, + 0.5, + 0.34, + 0.26, + 0.24, + 0.24, + 0.24, + 0.27, + 0.32, + 0.41000000000000003, + 0.55, + 0.71, + 0.9400000000000001, + 1.1500000000000001, + 1.36, + 1.48, + 1.33, + 1.05, + 0.66, + 0.36, + 0.21, + 0.13, + 0.16, + 0.17, + 0.28, + 0.4, + 0.59, + 0.84, + 1.1400000000000001, + 1.44, + 1.71, + 1.87, + 1.99, + 2.06, + 2.16, + 2.31, + 2.62, + 3.06, + 3.47, + 3.5700000000000003, + 3.49, + 3.22, + 2.82, + 2.47, + 2.29, + 2.5100000000000002, + 2.83, + 3.08, + 3.24, + 3.33, + 3.45, + 3.5500000000000003, + 3.69, + 3.85, + 3.91, + 3.95, + 3.9, + 3.9, + 3.96, + 4.08, + 4.22, + 4.26, + 4.1, + 3.84, + 3.5300000000000002, + 3.25, + 3.06, + 2.93, + 2.97, + 3.15, + 3.44, + 3.8200000000000003, + 4.14, + 4.43, + 4.66, + 4.8, + 4.89, + 4.89, + 4.89, + 4.91, + 5.0, + 5.12, + 5.25, + 5.36, + 5.45, + 5.47, + 5.47, + 5.46, + 5.45, + 5.51, + 5.58, + 5.5600000000000005, + 5.48, + 5.28, + 5.13, + 5.17, + 5.34, + 5.45, + 5.42, + 5.28, + 5.0, + 4.64, + 4.18, + 3.72, + 3.23, + 2.79, + 2.47, + 2.2, + 1.99, + 1.82, + 1.73, + 1.67, + 1.6400000000000001, + 1.61, + 1.55, + 1.5, + 1.45, + 1.45, + 1.46, + 1.5, + 1.54, + 1.56, + 1.67, + 1.75, + 1.77, + 1.73, + 1.6300000000000001, + 1.54, + 1.46, + 1.44, + 1.44, + 1.45, + 1.44, + 1.41, + 1.33, + 1.25, + 1.16, + 1.09, + 1.04, + 0.97, + 0.89, + 0.87, + 0.91, + 0.97, + 1.04, + 1.12, + 1.21, + 1.32, + 1.36, + 1.34, + 1.31, + 1.32, + 1.42, + 1.53, + 1.59, + 1.61, + 1.54, + 1.44, + 1.32, + 1.18, + 1.04, + 0.92, + 0.91, + 0.98, + 1.09, + 1.2, + 1.26, + 1.32, + 1.3800000000000001, + 1.46, + 1.55, + 1.56, + 1.54, + 1.51, + 1.47, + 1.45, + 1.44, + 1.4000000000000001, + 1.35, + 1.31, + 1.25, + 1.22, + 1.2, + 1.18, + 1.16, + 1.11, + 1.05, + 1.01, + 0.98, + 0.96, + 0.97, + 0.96, + 0.9400000000000001, + 0.89, + 0.86, + 0.8300000000000001, + 0.78, + 0.72, + 0.75, + 0.8200000000000001, + 1.03, + 1.3, + 1.6600000000000001, + 2.13, + 2.77, + 3.4, + 3.7800000000000002, + 3.97, + 3.94, + 3.86, + 3.79, + 3.77, + 3.79, + 3.79, + 3.77, + 3.64, + 3.5, + 3.31, + 3.15, + 3.02, + 2.92, + 2.84, + 2.7600000000000002, + 2.7, + 2.65 + ], + [ + 4.04, + 4.09, + 4.24, + 4.24, + 4.18, + 4.15, + 4.1, + 4.09, + 4.1, + 4.14, + 4.2, + 4.25, + 4.16, + 4.03, + 3.98, + 3.97, + 4.08, + 4.19, + 4.29, + 4.4, + 4.44, + 4.39, + 4.21, + 3.96, + 3.77, + 3.61, + 3.5100000000000002, + 3.44, + 3.39, + 3.4, + 3.49, + 3.64, + 3.8200000000000003, + 4.01, + 4.12, + 4.2, + 4.23, + 4.22, + 4.21, + 4.09, + 3.99, + 3.8000000000000003, + 3.72, + 3.59, + 3.41, + 3.17, + 2.91, + 2.66, + 2.37, + 2.11, + 1.9100000000000001, + 1.83, + 1.8800000000000001, + 2.04, + 2.34, + 2.63, + 2.86, + 3.02, + 3.1, + 3.16, + 3.1, + 3.0100000000000002, + 2.79, + 2.57, + 2.43, + 2.34, + 2.35, + 2.43, + 2.61, + 2.79, + 2.9, + 2.98, + 3.0100000000000002, + 3.0, + 2.93, + 2.83, + 2.68, + 2.5100000000000002, + 2.33, + 2.22, + 2.33, + 2.59, + 2.82, + 2.93, + 3.06, + 3.14, + 3.34, + 3.47, + 3.5300000000000002, + 3.62, + 3.71, + 3.77, + 3.8200000000000003, + 3.86, + 3.9, + 4.08, + 4.25, + 4.38, + 4.58, + 4.84, + 5.25, + 5.63, + 6.28, + 7.11, + 7.69, + 8.13, + 8.02, + 7.74, + 7.51, + 7.3500000000000005, + 7.42, + 7.5200000000000005, + 7.43, + 7.2, + 6.65, + 5.93, + 5.03, + 4.0, + 3.0, + 2.12, + 1.44, + 0.96, + 0.59, + 0.34, + 0.22, + 0.19, + 0.17, + 0.16, + 0.16, + 0.16, + 0.19, + 0.25, + 0.36, + 0.6, + 0.85, + 1.2, + 1.51, + 1.7, + 1.73, + 1.42, + 1.06, + 0.76, + 0.58, + 0.48, + 0.41000000000000003, + 0.4, + 0.39, + 0.51, + 0.6900000000000001, + 0.9400000000000001, + 1.22, + 1.5, + 1.68, + 1.84, + 1.8900000000000001, + 1.95, + 1.94, + 2.05, + 2.43, + 2.93, + 3.34, + 3.5500000000000003, + 3.5, + 3.31, + 2.97, + 2.61, + 2.49, + 2.56, + 2.84, + 3.0300000000000002, + 3.18, + 3.3000000000000003, + 3.42, + 3.62, + 3.77, + 3.85, + 3.92, + 3.87, + 3.81, + 3.75, + 3.77, + 3.85, + 3.94, + 3.95, + 3.8200000000000003, + 3.5700000000000003, + 3.29, + 3.0500000000000003, + 2.85, + 2.7600000000000002, + 2.7600000000000002, + 3.0, + 3.42, + 3.81, + 4.2, + 4.48, + 4.66, + 4.8, + 4.84, + 4.8500000000000005, + 4.82, + 4.84, + 4.93, + 5.05, + 5.19, + 5.29, + 5.37, + 5.39, + 5.36, + 5.3100000000000005, + 5.3, + 5.3100000000000005, + 5.39, + 5.44, + 5.34, + 5.17, + 5.04, + 5.05, + 5.2, + 5.33, + 5.32, + 5.17, + 4.91, + 4.53, + 4.09, + 3.54, + 3.02, + 2.59, + 2.2600000000000002, + 2.05, + 1.86, + 1.74, + 1.67, + 1.62, + 1.59, + 1.55, + 1.49, + 1.44, + 1.42, + 1.42, + 1.47, + 1.51, + 1.53, + 1.55, + 1.59, + 1.6600000000000001, + 1.71, + 1.69, + 1.6500000000000001, + 1.57, + 1.5, + 1.45, + 1.46, + 1.48, + 1.44, + 1.3800000000000001, + 1.32, + 1.25, + 1.16, + 1.08, + 1.02, + 0.9500000000000001, + 0.87, + 0.81, + 0.84, + 0.93, + 1.0, + 1.07, + 1.1500000000000001, + 1.23, + 1.27, + 1.27, + 1.25, + 1.31, + 1.42, + 1.54, + 1.62, + 1.62, + 1.57, + 1.46, + 1.33, + 1.19, + 1.05, + 0.9500000000000001, + 0.89, + 0.96, + 1.07, + 1.17, + 1.25, + 1.31, + 1.3800000000000001, + 1.46, + 1.49, + 1.49, + 1.46, + 1.42, + 1.41, + 1.4000000000000001, + 1.3800000000000001, + 1.35, + 1.27, + 1.19, + 1.1300000000000001, + 1.07, + 1.06, + 1.05, + 1.05, + 1.03, + 0.99, + 0.96, + 0.9400000000000001, + 0.9400000000000001, + 0.9400000000000001, + 0.97, + 0.96, + 0.92, + 0.88, + 0.8200000000000001, + 0.75, + 0.75, + 0.78, + 0.9400000000000001, + 1.19, + 1.46, + 1.78, + 2.25, + 2.82, + 3.37, + 3.77, + 3.93, + 3.98, + 3.92, + 3.9, + 3.89, + 3.9, + 3.9, + 3.81, + 3.69, + 3.49, + 3.29, + 3.12, + 2.99, + 2.88, + 2.7800000000000002, + 2.71, + 2.64, + 2.6 + ], + [ + 4.0200000000000005, + 4.05, + 4.19, + 4.2, + 4.15, + 4.11, + 4.08, + 4.07, + 4.09, + 4.16, + 4.19, + 4.1, + 4.01, + 3.93, + 3.87, + 4.01, + 4.13, + 4.23, + 4.32, + 4.4, + 4.44, + 4.34, + 4.13, + 3.9, + 3.7, + 3.59, + 3.5300000000000002, + 3.49, + 3.49, + 3.52, + 3.59, + 3.74, + 3.89, + 4.07, + 4.24, + 4.33, + 4.4, + 4.4, + 4.29, + 4.17, + 3.89, + 3.66, + 3.42, + 3.21, + 3.0100000000000002, + 2.75, + 2.5, + 2.24, + 2.0300000000000002, + 1.85, + 1.75, + 1.79, + 1.92, + 2.21, + 2.5100000000000002, + 2.79, + 3.0, + 3.1, + 3.18, + 3.13, + 3.0700000000000003, + 2.85, + 2.63, + 2.45, + 2.32, + 2.31, + 2.35, + 2.49, + 2.7, + 2.87, + 2.99, + 3.0500000000000003, + 3.09, + 3.06, + 2.98, + 2.88, + 2.7600000000000002, + 2.59, + 2.39, + 2.2800000000000002, + 2.33, + 2.57, + 2.81, + 2.95, + 2.89, + 2.94, + 3.0500000000000003, + 3.17, + 3.35, + 3.48, + 3.59, + 3.64, + 3.68, + 3.68, + 3.79, + 3.96, + 4.19, + 4.3500000000000005, + 4.62, + 5.07, + 5.5200000000000005, + 6.15, + 6.76, + 7.2700000000000005, + 7.8100000000000005, + 7.86, + 7.76, + 7.5600000000000005, + 7.3500000000000005, + 7.34, + 7.42, + 7.390000000000001, + 7.29, + 6.94, + 6.37, + 5.55, + 4.57, + 3.56, + 2.57, + 1.78, + 1.19, + 0.75, + 0.41000000000000003, + 0.21, + 0.16, + 0.14, + 0.13, + 0.12, + 0.1, + 0.09, + 0.06, + 0.09, + 0.21, + 0.42, + 0.8, + 1.19, + 1.61, + 1.92, + 1.96, + 1.77, + 1.3900000000000001, + 1.09, + 0.89, + 0.77, + 0.68, + 0.5700000000000001, + 0.56, + 0.6, + 0.78, + 0.99, + 1.26, + 1.47, + 1.6500000000000001, + 1.77, + 1.83, + 1.74, + 1.6600000000000001, + 1.75, + 2.05, + 2.66, + 3.18, + 3.5100000000000002, + 3.62, + 3.49, + 3.24, + 2.93, + 2.74, + 2.79, + 2.85, + 3.02, + 3.08, + 3.2, + 3.39, + 3.58, + 3.7600000000000002, + 3.85, + 3.83, + 3.7800000000000002, + 3.71, + 3.65, + 3.64, + 3.69, + 3.69, + 3.65, + 3.5500000000000003, + 3.37, + 3.12, + 2.91, + 2.73, + 2.59, + 2.64, + 2.9, + 3.34, + 3.86, + 4.23, + 4.51, + 4.68, + 4.74, + 4.78, + 4.75, + 4.73, + 4.76, + 4.83, + 4.99, + 5.14, + 5.25, + 5.32, + 5.3100000000000005, + 5.26, + 5.18, + 5.14, + 5.15, + 5.21, + 5.26, + 5.23, + 5.0600000000000005, + 4.9, + 4.92, + 5.05, + 5.17, + 5.18, + 5.05, + 4.8, + 4.45, + 3.93, + 3.36, + 2.82, + 2.36, + 2.11, + 1.92, + 1.79, + 1.7, + 1.6500000000000001, + 1.62, + 1.58, + 1.54, + 1.47, + 1.37, + 1.35, + 1.35, + 1.3900000000000001, + 1.4000000000000001, + 1.42, + 1.46, + 1.5, + 1.61, + 1.67, + 1.69, + 1.67, + 1.6, + 1.54, + 1.49, + 1.49, + 1.48, + 1.44, + 1.37, + 1.32, + 1.25, + 1.16, + 1.08, + 1.01, + 0.9400000000000001, + 0.84, + 0.78, + 0.78, + 0.86, + 0.93, + 1.0, + 1.07, + 1.1500000000000001, + 1.2, + 1.2, + 1.23, + 1.3, + 1.41, + 1.54, + 1.61, + 1.6300000000000001, + 1.58, + 1.49, + 1.36, + 1.23, + 1.09, + 0.97, + 0.92, + 0.93, + 1.04, + 1.16, + 1.24, + 1.3, + 1.37, + 1.42, + 1.45, + 1.42, + 1.3900000000000001, + 1.36, + 1.34, + 1.35, + 1.34, + 1.29, + 1.19, + 1.11, + 1.03, + 0.98, + 0.97, + 0.98, + 1.0, + 1.0, + 1.0, + 0.98, + 0.97, + 0.97, + 1.01, + 1.03, + 1.01, + 0.98, + 0.91, + 0.84, + 0.79, + 0.79, + 0.9, + 1.09, + 1.35, + 1.62, + 1.92, + 2.3000000000000003, + 2.81, + 3.2800000000000002, + 3.63, + 3.84, + 3.89, + 3.94, + 3.93, + 3.94, + 3.95, + 3.9, + 3.83, + 3.64, + 3.45, + 3.24, + 3.0700000000000003, + 2.93, + 2.82, + 2.72, + 2.64, + 2.58, + 2.5500000000000003 + ], + [ + 3.98, + 4.03, + 4.19, + 4.2, + 4.16, + 4.12, + 4.12, + 4.09, + 4.05, + 4.11, + 4.11, + 4.01, + 3.92, + 3.83, + 3.95, + 4.09, + 4.2, + 4.3, + 4.37, + 4.44, + 4.45, + 4.34, + 4.13, + 3.89, + 3.71, + 3.62, + 3.6, + 3.61, + 3.62, + 3.66, + 3.73, + 3.79, + 3.93, + 4.07, + 4.24, + 4.43, + 4.51, + 4.5, + 4.4, + 4.12, + 3.81, + 3.46, + 3.16, + 2.89, + 2.64, + 2.4, + 2.15, + 1.95, + 1.79, + 1.69, + 1.72, + 1.82, + 2.07, + 2.36, + 2.69, + 2.96, + 3.1, + 3.2, + 3.19, + 3.15, + 2.9, + 2.68, + 2.43, + 2.25, + 2.24, + 2.2600000000000002, + 2.39, + 2.57, + 2.77, + 2.94, + 3.04, + 3.11, + 3.13, + 3.09, + 3.0100000000000002, + 2.91, + 2.8000000000000003, + 2.63, + 2.43, + 2.2600000000000002, + 2.3000000000000003, + 2.44, + 2.67, + 2.7600000000000002, + 2.71, + 2.67, + 2.75, + 2.95, + 3.17, + 3.39, + 3.52, + 3.56, + 3.5700000000000003, + 3.66, + 3.83, + 4.0600000000000005, + 4.33, + 4.49, + 4.72, + 5.23, + 5.93, + 6.55, + 7.09, + 7.57, + 7.63, + 7.67, + 7.5, + 7.3100000000000005, + 7.3100000000000005, + 7.34, + 7.3100000000000005, + 7.25, + 7.04, + 6.66, + 6.04, + 5.18, + 4.21, + 3.18, + 2.27, + 1.56, + 1.0, + 0.58, + 0.28, + 0.16, + 0.12, + 0.13, + 0.13, + 0.11, + 0.09, + 0.03, + -0.02, + -0.03, + 0.06, + 0.32, + 0.7000000000000001, + 1.19, + 1.6600000000000001, + 2.02, + 2.15, + 1.96, + 1.6500000000000001, + 1.34, + 1.1500000000000001, + 1.02, + 0.88, + 0.77, + 0.6900000000000001, + 0.73, + 0.8, + 1.01, + 1.18, + 1.3800000000000001, + 1.57, + 1.7, + 1.77, + 1.67, + 1.44, + 1.3900000000000001, + 1.76, + 2.34, + 3.0500000000000003, + 3.56, + 3.7800000000000002, + 3.8200000000000003, + 3.61, + 3.38, + 3.18, + 3.0700000000000003, + 3.1, + 3.0300000000000002, + 3.09, + 3.16, + 3.34, + 3.5100000000000002, + 3.69, + 3.77, + 3.7600000000000002, + 3.69, + 3.61, + 3.5700000000000003, + 3.56, + 3.5100000000000002, + 3.47, + 3.41, + 3.3200000000000003, + 3.19, + 3.02, + 2.82, + 2.64, + 2.5100000000000002, + 2.5100000000000002, + 2.81, + 3.3200000000000003, + 3.84, + 4.3100000000000005, + 4.57, + 4.65, + 4.7, + 4.66, + 4.63, + 4.64, + 4.67, + 4.78, + 4.94, + 5.11, + 5.24, + 5.26, + 5.23, + 5.14, + 5.04, + 4.99, + 4.98, + 5.04, + 5.1000000000000005, + 5.0600000000000005, + 4.93, + 4.78, + 4.73, + 4.8500000000000005, + 4.99, + 5.01, + 4.93, + 4.7, + 4.3, + 3.7800000000000002, + 3.17, + 2.59, + 2.21, + 1.97, + 1.83, + 1.73, + 1.69, + 1.68, + 1.6500000000000001, + 1.6300000000000001, + 1.56, + 1.44, + 1.34, + 1.26, + 1.26, + 1.25, + 1.26, + 1.29, + 1.33, + 1.47, + 1.59, + 1.6300000000000001, + 1.6500000000000001, + 1.6500000000000001, + 1.61, + 1.56, + 1.53, + 1.49, + 1.46, + 1.42, + 1.36, + 1.31, + 1.26, + 1.17, + 1.09, + 1.01, + 0.93, + 0.8300000000000001, + 0.74, + 0.74, + 0.78, + 0.85, + 0.92, + 1.0, + 1.08, + 1.1400000000000001, + 1.18, + 1.22, + 1.3, + 1.41, + 1.52, + 1.6, + 1.6300000000000001, + 1.6, + 1.51, + 1.4000000000000001, + 1.27, + 1.1500000000000001, + 1.03, + 0.9400000000000001, + 0.96, + 1.03, + 1.1400000000000001, + 1.22, + 1.28, + 1.33, + 1.37, + 1.3900000000000001, + 1.37, + 1.33, + 1.3, + 1.3, + 1.31, + 1.31, + 1.26, + 1.16, + 1.06, + 0.99, + 0.96, + 0.9500000000000001, + 0.99, + 1.02, + 1.05, + 1.06, + 1.07, + 1.06, + 1.08, + 1.12, + 1.11, + 1.09, + 1.02, + 0.9400000000000001, + 0.89, + 0.84, + 0.89, + 1.03, + 1.26, + 1.53, + 1.77, + 2.02, + 2.35, + 2.72, + 3.14, + 3.42, + 3.63, + 3.7600000000000002, + 3.8200000000000003, + 3.92, + 3.93, + 3.87, + 3.8200000000000003, + 3.69, + 3.52, + 3.34, + 3.14, + 2.97, + 2.83, + 2.74, + 2.65, + 2.58, + 2.52, + 2.49 + ], + [ + 3.96, + 3.99, + 4.16, + 4.2, + 4.16, + 4.14, + 4.11, + 4.0, + 3.95, + 3.92, + 3.92, + 3.93, + 3.84, + 3.95, + 4.07, + 4.2, + 4.3100000000000005, + 4.38, + 4.44, + 4.49, + 4.49, + 4.38, + 4.17, + 3.94, + 3.7800000000000002, + 3.7, + 3.71, + 3.73, + 3.79, + 3.8200000000000003, + 3.84, + 3.89, + 3.91, + 4.05, + 4.24, + 4.43, + 4.57, + 4.57, + 4.37, + 4.07, + 3.7, + 3.3200000000000003, + 2.95, + 2.64, + 2.37, + 2.13, + 1.93, + 1.76, + 1.67, + 1.69, + 1.75, + 1.95, + 2.2, + 2.48, + 2.8000000000000003, + 3.0500000000000003, + 3.19, + 3.2, + 3.19, + 2.96, + 2.71, + 2.41, + 2.16, + 2.09, + 2.1, + 2.25, + 2.42, + 2.62, + 2.83, + 2.98, + 3.06, + 3.13, + 3.15, + 3.11, + 3.0300000000000002, + 2.94, + 2.82, + 2.66, + 2.42, + 2.25, + 2.22, + 2.36, + 2.45, + 2.52, + 2.5, + 2.47, + 2.5, + 2.7, + 3.08, + 3.39, + 3.5300000000000002, + 3.5700000000000003, + 3.64, + 3.79, + 4.03, + 4.38, + 4.6000000000000005, + 4.71, + 4.95, + 5.5200000000000005, + 6.25, + 6.94, + 7.46, + 7.57, + 7.62, + 7.4, + 7.23, + 7.17, + 7.19, + 7.22, + 7.19, + 7.03, + 6.76, + 6.390000000000001, + 5.76, + 4.91, + 3.9, + 2.94, + 2.1, + 1.44, + 0.9500000000000001, + 0.53, + 0.26, + 0.15, + 0.14, + 0.15, + 0.16, + 0.14, + 0.09, + 0.03, + -0.05, + -0.08, + 0.0, + 0.25, + 0.66, + 1.16, + 1.6500000000000001, + 2.0300000000000002, + 2.19, + 2.08, + 1.79, + 1.54, + 1.36, + 1.23, + 1.09, + 0.97, + 0.89, + 0.8, + 0.87, + 0.88, + 1.05, + 1.22, + 1.41, + 1.73, + 1.84, + 1.73, + 1.48, + 1.29, + 1.54, + 2.19, + 2.95, + 3.62, + 4.0200000000000005, + 4.12, + 4.0600000000000005, + 3.85, + 3.69, + 3.54, + 3.4, + 3.3200000000000003, + 3.23, + 3.3000000000000003, + 3.33, + 3.5, + 3.5700000000000003, + 3.64, + 3.66, + 3.6, + 3.54, + 3.5100000000000002, + 3.42, + 3.34, + 3.25, + 3.16, + 3.11, + 3.0300000000000002, + 2.89, + 2.74, + 2.57, + 2.44, + 2.45, + 2.7600000000000002, + 3.2800000000000002, + 3.87, + 4.33, + 4.55, + 4.62, + 4.58, + 4.53, + 4.55, + 4.58, + 4.64, + 4.75, + 4.9, + 5.07, + 5.17, + 5.17, + 5.1000000000000005, + 4.98, + 4.89, + 4.82, + 4.8, + 4.8500000000000005, + 4.91, + 4.87, + 4.74, + 4.59, + 4.54, + 4.61, + 4.74, + 4.83, + 4.76, + 4.55, + 4.16, + 3.6, + 2.98, + 2.46, + 2.1, + 1.8900000000000001, + 1.77, + 1.7, + 1.69, + 1.7, + 1.7, + 1.67, + 1.57, + 1.44, + 1.31, + 1.23, + 1.18, + 1.17, + 1.17, + 1.2, + 1.3, + 1.44, + 1.52, + 1.56, + 1.56, + 1.55, + 1.58, + 1.57, + 1.52, + 1.48, + 1.43, + 1.3800000000000001, + 1.32, + 1.27, + 1.24, + 1.19, + 1.11, + 1.04, + 0.9500000000000001, + 0.8200000000000001, + 0.73, + 0.6900000000000001, + 0.72, + 0.77, + 0.84, + 0.9400000000000001, + 1.03, + 1.12, + 1.17, + 1.22, + 1.3, + 1.4000000000000001, + 1.5, + 1.58, + 1.62, + 1.6, + 1.53, + 1.43, + 1.32, + 1.2, + 1.09, + 1.0, + 0.99, + 1.06, + 1.1300000000000001, + 1.21, + 1.25, + 1.29, + 1.3, + 1.31, + 1.3, + 1.26, + 1.25, + 1.27, + 1.3, + 1.3, + 1.25, + 1.1500000000000001, + 1.07, + 1.04, + 1.0, + 1.0, + 1.04, + 1.1, + 1.1400000000000001, + 1.18, + 1.19, + 1.21, + 1.23, + 1.24, + 1.24, + 1.1500000000000001, + 1.07, + 1.01, + 0.9500000000000001, + 0.9400000000000001, + 1.0, + 1.18, + 1.44, + 1.7, + 1.93, + 2.11, + 2.33, + 2.65, + 2.93, + 3.2, + 3.38, + 3.5300000000000002, + 3.69, + 3.7800000000000002, + 3.8200000000000003, + 3.7600000000000002, + 3.61, + 3.47, + 3.3200000000000003, + 3.14, + 3.0, + 2.84, + 2.73, + 2.64, + 2.57, + 2.5100000000000002, + 2.46, + 2.43 + ], + [ + 3.91, + 3.95, + 4.14, + 4.17, + 4.12, + 4.09, + 3.98, + 3.87, + 3.7600000000000002, + 3.73, + 3.79, + 3.81, + 3.94, + 4.05, + 4.19, + 4.32, + 4.42, + 4.48, + 4.51, + 4.55, + 4.54, + 4.42, + 4.22, + 4.01, + 3.86, + 3.81, + 3.8200000000000003, + 3.88, + 3.93, + 3.97, + 3.98, + 3.93, + 3.95, + 4.01, + 4.2, + 4.39, + 4.53, + 4.51, + 4.29, + 3.96, + 3.58, + 3.21, + 2.84, + 2.47, + 2.19, + 1.99, + 1.83, + 1.71, + 1.71, + 1.74, + 1.8800000000000001, + 2.06, + 2.2800000000000002, + 2.5500000000000003, + 2.79, + 3.04, + 3.12, + 3.13, + 2.95, + 2.71, + 2.39, + 2.08, + 1.95, + 1.9100000000000001, + 2.0300000000000002, + 2.22, + 2.45, + 2.68, + 2.86, + 2.98, + 3.0700000000000003, + 3.13, + 3.15, + 3.12, + 3.0500000000000003, + 2.97, + 2.86, + 2.68, + 2.43, + 2.2600000000000002, + 2.23, + 2.27, + 2.36, + 2.3000000000000003, + 2.2600000000000002, + 2.22, + 2.25, + 2.5100000000000002, + 2.94, + 3.41, + 3.62, + 3.71, + 3.83, + 4.01, + 4.32, + 4.65, + 4.82, + 4.94, + 5.29, + 5.86, + 6.65, + 7.3500000000000005, + 7.59, + 7.69, + 7.41, + 7.18, + 7.0, + 6.96, + 7.0200000000000005, + 7.04, + 6.98, + 6.78, + 6.55, + 6.18, + 5.62, + 4.8, + 3.79, + 2.84, + 2.05, + 1.49, + 1.0, + 0.58, + 0.3, + 0.2, + 0.18, + 0.19, + 0.2, + 0.17, + 0.12, + 0.06, + -0.02, + -0.06, + 0.02, + 0.24, + 0.65, + 1.12, + 1.6, + 1.96, + 2.09, + 2.06, + 1.85, + 1.6600000000000001, + 1.55, + 1.44, + 1.33, + 1.2, + 1.08, + 0.98, + 0.8200000000000001, + 0.84, + 0.8200000000000001, + 0.99, + 1.35, + 1.7, + 2.07, + 2.0300000000000002, + 1.74, + 1.55, + 1.56, + 2.11, + 2.92, + 3.65, + 4.16, + 4.37, + 4.39, + 4.34, + 4.18, + 4.04, + 3.87, + 3.72, + 3.62, + 3.54, + 3.5700000000000003, + 3.5, + 3.56, + 3.48, + 3.48, + 3.5100000000000002, + 3.47, + 3.36, + 3.24, + 3.12, + 3.0, + 2.93, + 2.89, + 2.84, + 2.73, + 2.62, + 2.5, + 2.39, + 2.47, + 2.75, + 3.2800000000000002, + 3.87, + 4.3, + 4.5200000000000005, + 4.51, + 4.46, + 4.45, + 4.48, + 4.55, + 4.62, + 4.68, + 4.8100000000000005, + 4.96, + 5.04, + 5.03, + 4.93, + 4.84, + 4.7700000000000005, + 4.68, + 4.63, + 4.66, + 4.68, + 4.65, + 4.5200000000000005, + 4.37, + 4.32, + 4.38, + 4.49, + 4.58, + 4.57, + 4.3500000000000005, + 3.97, + 3.4, + 2.85, + 2.38, + 2.05, + 1.87, + 1.75, + 1.7, + 1.69, + 1.71, + 1.71, + 1.67, + 1.57, + 1.44, + 1.31, + 1.22, + 1.17, + 1.1500000000000001, + 1.1500000000000001, + 1.19, + 1.3, + 1.3800000000000001, + 1.45, + 1.44, + 1.42, + 1.45, + 1.49, + 1.52, + 1.49, + 1.44, + 1.3800000000000001, + 1.31, + 1.24, + 1.21, + 1.2, + 1.17, + 1.1300000000000001, + 1.06, + 0.9500000000000001, + 0.8200000000000001, + 0.73, + 0.6900000000000001, + 0.66, + 0.7000000000000001, + 0.77, + 0.86, + 0.99, + 1.09, + 1.17, + 1.23, + 1.3, + 1.3800000000000001, + 1.48, + 1.56, + 1.6, + 1.6, + 1.54, + 1.47, + 1.36, + 1.25, + 1.1400000000000001, + 1.06, + 1.04, + 1.08, + 1.1500000000000001, + 1.19, + 1.23, + 1.24, + 1.25, + 1.25, + 1.23, + 1.22, + 1.23, + 1.25, + 1.29, + 1.3, + 1.24, + 1.18, + 1.16, + 1.1300000000000001, + 1.1300000000000001, + 1.12, + 1.16, + 1.22, + 1.26, + 1.3, + 1.34, + 1.37, + 1.3800000000000001, + 1.3900000000000001, + 1.35, + 1.25, + 1.17, + 1.12, + 1.07, + 1.06, + 1.1500000000000001, + 1.36, + 1.6, + 1.86, + 2.04, + 2.17, + 2.33, + 2.54, + 2.79, + 2.96, + 3.15, + 3.3200000000000003, + 3.49, + 3.62, + 3.65, + 3.5700000000000003, + 3.41, + 3.23, + 3.08, + 2.97, + 2.85, + 2.73, + 2.64, + 2.56, + 2.5100000000000002, + 2.45, + 2.41, + 2.38 + ], + [ + 3.89, + 3.94, + 4.11, + 4.08, + 4.03, + 3.95, + 3.86, + 3.77, + 3.65, + 3.68, + 3.74, + 3.84, + 3.98, + 4.13, + 4.26, + 4.4, + 4.49, + 4.5600000000000005, + 4.58, + 4.6000000000000005, + 4.57, + 4.48, + 4.28, + 4.08, + 3.96, + 3.9, + 3.93, + 3.99, + 4.0600000000000005, + 4.1, + 4.08, + 4.0200000000000005, + 3.96, + 4.0, + 4.08, + 4.2700000000000005, + 4.37, + 4.32, + 4.14, + 3.79, + 3.48, + 3.14, + 2.77, + 2.41, + 2.14, + 2.0, + 1.86, + 1.81, + 1.79, + 1.83, + 1.95, + 2.11, + 2.31, + 2.48, + 2.72, + 2.83, + 2.92, + 2.81, + 2.63, + 2.37, + 2.0300000000000002, + 1.85, + 1.76, + 1.81, + 1.97, + 2.23, + 2.49, + 2.7, + 2.86, + 2.97, + 3.04, + 3.1, + 3.12, + 3.11, + 3.0700000000000003, + 3.0, + 2.91, + 2.73, + 2.5300000000000002, + 2.34, + 2.27, + 2.31, + 2.27, + 2.19, + 2.02, + 1.97, + 2.0100000000000002, + 2.3000000000000003, + 2.86, + 3.37, + 3.74, + 3.92, + 4.05, + 4.2700000000000005, + 4.54, + 4.7700000000000005, + 4.98, + 5.2, + 5.55, + 6.29, + 7.09, + 7.53, + 7.7700000000000005, + 7.5200000000000005, + 7.22, + 6.92, + 6.74, + 6.75, + 6.82, + 6.83, + 6.74, + 6.640000000000001, + 6.45, + 6.16, + 5.65, + 4.87, + 3.92, + 2.9, + 2.14, + 1.58, + 1.12, + 0.67, + 0.39, + 0.27, + 0.24, + 0.25, + 0.24, + 0.21, + 0.18, + 0.12, + 0.06, + 0.02, + 0.07, + 0.31, + 0.65, + 1.11, + 1.51, + 1.79, + 1.96, + 1.92, + 1.83, + 1.78, + 1.7, + 1.6500000000000001, + 1.54, + 1.43, + 1.31, + 1.1500000000000001, + 0.97, + 0.74, + 0.72, + 0.8200000000000001, + 1.2, + 1.79, + 2.2, + 2.48, + 2.27, + 1.9100000000000001, + 1.8900000000000001, + 2.17, + 2.91, + 3.67, + 4.17, + 4.49, + 4.6000000000000005, + 4.64, + 4.6000000000000005, + 4.48, + 4.3500000000000005, + 4.19, + 4.0600000000000005, + 3.96, + 3.87, + 3.8000000000000003, + 3.54, + 3.44, + 3.3200000000000003, + 3.35, + 3.3200000000000003, + 3.19, + 3.0300000000000002, + 2.89, + 2.8000000000000003, + 2.7600000000000002, + 2.72, + 2.66, + 2.58, + 2.5, + 2.43, + 2.42, + 2.48, + 2.81, + 3.3200000000000003, + 3.84, + 4.28, + 4.49, + 4.48, + 4.39, + 4.4, + 4.41, + 4.48, + 4.51, + 4.54, + 4.65, + 4.79, + 4.9, + 4.89, + 4.82, + 4.79, + 4.71, + 4.58, + 4.5, + 4.47, + 4.48, + 4.4, + 4.28, + 4.19, + 4.12, + 4.14, + 4.25, + 4.32, + 4.3, + 4.11, + 3.7, + 3.22, + 2.69, + 2.29, + 2.02, + 1.85, + 1.74, + 1.69, + 1.68, + 1.69, + 1.69, + 1.6500000000000001, + 1.55, + 1.43, + 1.34, + 1.25, + 1.21, + 1.18, + 1.17, + 1.22, + 1.27, + 1.34, + 1.36, + 1.34, + 1.3, + 1.32, + 1.3800000000000001, + 1.41, + 1.41, + 1.37, + 1.29, + 1.2, + 1.1300000000000001, + 1.12, + 1.1300000000000001, + 1.1400000000000001, + 1.12, + 1.05, + 0.9400000000000001, + 0.8300000000000001, + 0.73, + 0.67, + 0.64, + 0.64, + 0.7000000000000001, + 0.8200000000000001, + 0.9500000000000001, + 1.08, + 1.17, + 1.24, + 1.31, + 1.3800000000000001, + 1.47, + 1.54, + 1.57, + 1.58, + 1.54, + 1.48, + 1.3800000000000001, + 1.28, + 1.17, + 1.09, + 1.09, + 1.1300000000000001, + 1.16, + 1.19, + 1.2, + 1.2, + 1.19, + 1.19, + 1.2, + 1.2, + 1.22, + 1.27, + 1.3, + 1.3, + 1.27, + 1.26, + 1.26, + 1.28, + 1.28, + 1.29, + 1.31, + 1.33, + 1.3800000000000001, + 1.45, + 1.5, + 1.5, + 1.51, + 1.51, + 1.45, + 1.42, + 1.36, + 1.27, + 1.22, + 1.19, + 1.29, + 1.49, + 1.72, + 1.94, + 2.06, + 2.18, + 2.33, + 2.49, + 2.66, + 2.81, + 2.98, + 3.16, + 3.3000000000000003, + 3.43, + 3.4, + 3.3200000000000003, + 3.2, + 3.02, + 2.89, + 2.8000000000000003, + 2.73, + 2.64, + 2.56, + 2.5100000000000002, + 2.45, + 2.39, + 2.35, + 2.32 + ], + [ + 3.87, + 3.87, + 3.97, + 3.97, + 3.91, + 3.84, + 3.8000000000000003, + 3.71, + 3.72, + 3.73, + 3.77, + 3.87, + 3.98, + 4.12, + 4.25, + 4.38, + 4.5200000000000005, + 4.57, + 4.61, + 4.63, + 4.62, + 4.5200000000000005, + 4.3500000000000005, + 4.18, + 4.04, + 4.0, + 4.0200000000000005, + 4.08, + 4.17, + 4.22, + 4.19, + 4.1, + 4.01, + 3.92, + 3.98, + 4.0200000000000005, + 4.11, + 4.07, + 3.85, + 3.64, + 3.35, + 3.08, + 2.73, + 2.42, + 2.23, + 2.1, + 2.02, + 1.92, + 1.84, + 1.84, + 1.9000000000000001, + 2.05, + 2.15, + 2.32, + 2.41, + 2.54, + 2.5100000000000002, + 2.4, + 2.24, + 1.97, + 1.79, + 1.6600000000000001, + 1.6500000000000001, + 1.75, + 1.95, + 2.24, + 2.49, + 2.68, + 2.83, + 2.91, + 2.99, + 3.04, + 3.08, + 3.0700000000000003, + 3.06, + 3.04, + 2.97, + 2.86, + 2.65, + 2.47, + 2.39, + 2.33, + 2.2800000000000002, + 2.17, + 2.0, + 1.83, + 1.9000000000000001, + 2.19, + 2.82, + 3.42, + 3.8200000000000003, + 4.07, + 4.25, + 4.43, + 4.63, + 4.87, + 5.07, + 5.33, + 5.89, + 6.640000000000001, + 7.25, + 7.71, + 7.62, + 7.34, + 6.92, + 6.6000000000000005, + 6.5600000000000005, + 6.61, + 6.69, + 6.71, + 6.66, + 6.6000000000000005, + 6.51, + 6.29, + 5.82, + 5.03, + 4.07, + 3.06, + 2.23, + 1.6600000000000001, + 1.19, + 0.78, + 0.47000000000000003, + 0.35000000000000003, + 0.31, + 0.29, + 0.27, + 0.26, + 0.23, + 0.2, + 0.15, + 0.13, + 0.21, + 0.37, + 0.71, + 1.08, + 1.42, + 1.67, + 1.78, + 1.82, + 1.85, + 1.85, + 1.86, + 1.83, + 1.73, + 1.6300000000000001, + 1.53, + 1.36, + 1.12, + 0.87, + 0.67, + 0.78, + 1.07, + 1.69, + 2.35, + 2.64, + 2.79, + 2.48, + 2.2, + 2.44, + 2.98, + 3.66, + 4.21, + 4.5, + 4.7, + 4.8, + 4.84, + 4.78, + 4.69, + 4.55, + 4.43, + 4.3500000000000005, + 4.26, + 4.08, + 3.79, + 3.43, + 3.31, + 3.2, + 3.15, + 3.02, + 2.87, + 2.75, + 2.71, + 2.64, + 2.59, + 2.5300000000000002, + 2.46, + 2.4, + 2.4, + 2.41, + 2.57, + 2.87, + 3.33, + 3.86, + 4.25, + 4.47, + 4.54, + 4.46, + 4.33, + 4.34, + 4.32, + 4.33, + 4.3500000000000005, + 4.46, + 4.62, + 4.76, + 4.8100000000000005, + 4.82, + 4.78, + 4.67, + 4.51, + 4.3500000000000005, + 4.3, + 4.28, + 4.21, + 4.1, + 3.99, + 3.93, + 3.94, + 3.97, + 4.03, + 3.97, + 3.74, + 3.42, + 2.93, + 2.5100000000000002, + 2.17, + 1.96, + 1.82, + 1.73, + 1.68, + 1.6600000000000001, + 1.67, + 1.67, + 1.62, + 1.53, + 1.45, + 1.36, + 1.31, + 1.27, + 1.21, + 1.2, + 1.22, + 1.27, + 1.28, + 1.28, + 1.25, + 1.21, + 1.19, + 1.23, + 1.29, + 1.28, + 1.26, + 1.18, + 1.08, + 1.01, + 1.01, + 1.05, + 1.08, + 1.06, + 1.01, + 0.9400000000000001, + 0.8200000000000001, + 0.74, + 0.67, + 0.61, + 0.6, + 0.64, + 0.77, + 0.93, + 1.07, + 1.19, + 1.27, + 1.33, + 1.4000000000000001, + 1.46, + 1.52, + 1.55, + 1.55, + 1.53, + 1.48, + 1.4000000000000001, + 1.3, + 1.2, + 1.1500000000000001, + 1.1400000000000001, + 1.1400000000000001, + 1.17, + 1.18, + 1.18, + 1.17, + 1.16, + 1.1500000000000001, + 1.17, + 1.19, + 1.23, + 1.29, + 1.33, + 1.35, + 1.36, + 1.35, + 1.3900000000000001, + 1.43, + 1.43, + 1.44, + 1.45, + 1.47, + 1.54, + 1.61, + 1.68, + 1.68, + 1.67, + 1.6600000000000001, + 1.6400000000000001, + 1.6300000000000001, + 1.56, + 1.47, + 1.35, + 1.3, + 1.3800000000000001, + 1.56, + 1.74, + 1.87, + 2.02, + 2.17, + 2.31, + 2.46, + 2.6, + 2.75, + 2.9, + 3.0300000000000002, + 3.17, + 3.15, + 3.11, + 3.0100000000000002, + 2.89, + 2.81, + 2.7, + 2.66, + 2.6, + 2.56, + 2.5, + 2.44, + 2.38, + 2.32, + 2.29, + 2.24 + ], + [ + 3.86, + 3.88, + 3.94, + 3.87, + 3.83, + 3.85, + 3.81, + 3.8200000000000003, + 3.81, + 3.81, + 3.83, + 3.86, + 3.96, + 4.05, + 4.17, + 4.3100000000000005, + 4.43, + 4.55, + 4.6000000000000005, + 4.65, + 4.64, + 4.59, + 4.43, + 4.25, + 4.12, + 4.0600000000000005, + 4.07, + 4.13, + 4.22, + 4.3, + 4.29, + 4.19, + 4.03, + 3.9, + 3.79, + 3.8000000000000003, + 3.7800000000000002, + 3.72, + 3.61, + 3.42, + 3.23, + 2.97, + 2.72, + 2.47, + 2.32, + 2.24, + 2.14, + 1.99, + 1.84, + 1.75, + 1.78, + 1.81, + 1.92, + 1.97, + 2.05, + 2.07, + 2.04, + 1.99, + 1.84, + 1.72, + 1.59, + 1.57, + 1.62, + 1.73, + 2.0, + 2.27, + 2.5100000000000002, + 2.65, + 2.74, + 2.83, + 2.9, + 2.96, + 2.99, + 3.0100000000000002, + 3.0300000000000002, + 3.04, + 3.02, + 2.95, + 2.82, + 2.63, + 2.46, + 2.4, + 2.39, + 2.29, + 2.13, + 1.99, + 1.95, + 2.36, + 2.9, + 3.5100000000000002, + 3.89, + 4.09, + 4.3100000000000005, + 4.47, + 4.68, + 4.91, + 5.12, + 5.51, + 6.07, + 6.74, + 7.4, + 7.59, + 7.48, + 7.09, + 6.640000000000001, + 6.47, + 6.5, + 6.68, + 6.82, + 6.78, + 6.7700000000000005, + 6.71, + 6.66, + 6.44, + 5.87, + 5.12, + 4.05, + 3.04, + 2.2, + 1.62, + 1.19, + 0.78, + 0.54, + 0.41000000000000003, + 0.35000000000000003, + 0.32, + 0.31, + 0.3, + 0.3, + 0.28, + 0.28, + 0.27, + 0.32, + 0.51, + 0.75, + 1.07, + 1.37, + 1.57, + 1.7, + 1.81, + 1.8800000000000001, + 1.95, + 1.99, + 1.94, + 1.86, + 1.79, + 1.72, + 1.59, + 1.34, + 1.09, + 0.87, + 0.79, + 1.12, + 1.51, + 2.15, + 2.75, + 2.87, + 2.91, + 2.68, + 2.66, + 3.16, + 3.77, + 4.24, + 4.5600000000000005, + 4.75, + 4.91, + 4.97, + 4.96, + 4.8500000000000005, + 4.75, + 4.72, + 4.66, + 4.5600000000000005, + 4.37, + 4.04, + 3.65, + 3.2800000000000002, + 3.18, + 3.04, + 2.9, + 2.77, + 2.7, + 2.65, + 2.6, + 2.52, + 2.45, + 2.39, + 2.37, + 2.37, + 2.46, + 2.61, + 2.95, + 3.39, + 3.79, + 4.2, + 4.48, + 4.57, + 4.5200000000000005, + 4.37, + 4.23, + 4.2, + 4.14, + 4.16, + 4.25, + 4.44, + 4.65, + 4.75, + 4.8100000000000005, + 4.7700000000000005, + 4.65, + 4.43, + 4.22, + 4.16, + 4.14, + 4.03, + 3.92, + 3.81, + 3.74, + 3.69, + 3.72, + 3.65, + 3.54, + 3.37, + 3.02, + 2.67, + 2.31, + 2.05, + 1.9000000000000001, + 1.78, + 1.71, + 1.6600000000000001, + 1.6500000000000001, + 1.6500000000000001, + 1.6300000000000001, + 1.58, + 1.5, + 1.43, + 1.3900000000000001, + 1.35, + 1.27, + 1.21, + 1.21, + 1.23, + 1.24, + 1.24, + 1.2, + 1.1500000000000001, + 1.09, + 1.06, + 1.07, + 1.11, + 1.1400000000000001, + 1.12, + 1.06, + 0.97, + 0.89, + 0.92, + 0.97, + 0.99, + 0.99, + 0.97, + 0.9, + 0.85, + 0.76, + 0.67, + 0.6, + 0.55, + 0.6, + 0.71, + 0.88, + 1.07, + 1.2, + 1.3, + 1.37, + 1.42, + 1.47, + 1.51, + 1.54, + 1.54, + 1.53, + 1.49, + 1.43, + 1.34, + 1.28, + 1.22, + 1.19, + 1.18, + 1.16, + 1.16, + 1.17, + 1.1500000000000001, + 1.1400000000000001, + 1.1400000000000001, + 1.1500000000000001, + 1.18, + 1.24, + 1.31, + 1.3900000000000001, + 1.43, + 1.45, + 1.48, + 1.51, + 1.53, + 1.55, + 1.57, + 1.59, + 1.6300000000000001, + 1.7, + 1.81, + 1.8800000000000001, + 1.92, + 1.9100000000000001, + 1.9000000000000001, + 1.9000000000000001, + 1.85, + 1.76, + 1.59, + 1.42, + 1.36, + 1.44, + 1.57, + 1.69, + 1.8, + 1.96, + 2.13, + 2.29, + 2.45, + 2.58, + 2.72, + 2.7800000000000002, + 2.91, + 2.93, + 2.89, + 2.81, + 2.71, + 2.63, + 2.57, + 2.52, + 2.5, + 2.5, + 2.46, + 2.42, + 2.36, + 2.31, + 2.2600000000000002, + 2.21, + 2.12 + ], + [ + 3.87, + 3.87, + 3.89, + 3.81, + 3.86, + 3.89, + 3.91, + 3.92, + 3.91, + 3.9, + 3.89, + 3.89, + 3.91, + 3.98, + 4.0600000000000005, + 4.19, + 4.34, + 4.45, + 4.57, + 4.62, + 4.67, + 4.6000000000000005, + 4.49, + 4.3100000000000005, + 4.16, + 4.08, + 4.07, + 4.11, + 4.23, + 4.29, + 4.34, + 4.25, + 4.07, + 3.87, + 3.7, + 3.5700000000000003, + 3.5300000000000002, + 3.46, + 3.36, + 3.24, + 3.0700000000000003, + 2.88, + 2.64, + 2.46, + 2.36, + 2.32, + 2.2, + 2.0300000000000002, + 1.8, + 1.6400000000000001, + 1.59, + 1.58, + 1.59, + 1.6300000000000001, + 1.6600000000000001, + 1.6600000000000001, + 1.68, + 1.6400000000000001, + 1.61, + 1.54, + 1.52, + 1.56, + 1.6400000000000001, + 1.8, + 2.02, + 2.29, + 2.5100000000000002, + 2.57, + 2.65, + 2.71, + 2.79, + 2.83, + 2.88, + 2.92, + 2.96, + 2.97, + 3.0100000000000002, + 3.02, + 2.93, + 2.7800000000000002, + 2.59, + 2.52, + 2.54, + 2.54, + 2.39, + 2.19, + 2.22, + 2.5, + 3.1, + 3.6, + 3.8000000000000003, + 3.99, + 4.14, + 4.39, + 4.67, + 4.93, + 5.2, + 5.5600000000000005, + 6.11, + 6.8100000000000005, + 7.3, + 7.5, + 7.3500000000000005, + 6.93, + 6.640000000000001, + 6.55, + 6.73, + 7.03, + 7.16, + 7.140000000000001, + 6.94, + 6.88, + 6.75, + 6.3500000000000005, + 5.8100000000000005, + 4.86, + 3.87, + 2.85, + 1.98, + 1.48, + 1.09, + 0.79, + 0.54, + 0.44, + 0.38, + 0.35000000000000003, + 0.33, + 0.34, + 0.35000000000000003, + 0.36, + 0.37, + 0.4, + 0.47000000000000003, + 0.6, + 0.8300000000000001, + 1.08, + 1.34, + 1.55, + 1.7, + 1.82, + 1.94, + 2.0300000000000002, + 2.05, + 2.0300000000000002, + 1.98, + 1.92, + 1.8900000000000001, + 1.79, + 1.6400000000000001, + 1.3900000000000001, + 1.18, + 1.09, + 1.12, + 1.49, + 1.8800000000000001, + 2.43, + 2.92, + 2.95, + 2.97, + 3.0300000000000002, + 3.3200000000000003, + 3.85, + 4.3500000000000005, + 4.65, + 4.84, + 4.99, + 5.09, + 5.05, + 4.96, + 4.93, + 4.93, + 4.92, + 4.84, + 4.64, + 4.29, + 3.83, + 3.45, + 3.16, + 3.0100000000000002, + 2.84, + 2.74, + 2.66, + 2.61, + 2.56, + 2.49, + 2.41, + 2.38, + 2.35, + 2.41, + 2.48, + 2.72, + 3.04, + 3.38, + 3.77, + 4.08, + 4.39, + 4.55, + 4.49, + 4.41, + 4.25, + 4.13, + 4.0600000000000005, + 3.99, + 4.1, + 4.24, + 4.45, + 4.66, + 4.72, + 4.74, + 4.58, + 4.36, + 4.18, + 4.08, + 3.97, + 3.87, + 3.73, + 3.62, + 3.52, + 3.46, + 3.37, + 3.2600000000000002, + 3.11, + 2.93, + 2.7, + 2.38, + 2.13, + 1.95, + 1.83, + 1.75, + 1.69, + 1.6400000000000001, + 1.61, + 1.6, + 1.59, + 1.51, + 1.44, + 1.4000000000000001, + 1.37, + 1.3, + 1.22, + 1.18, + 1.18, + 1.2, + 1.2, + 1.1500000000000001, + 1.09, + 1.01, + 0.93, + 0.88, + 0.89, + 0.93, + 0.96, + 0.97, + 0.93, + 0.86, + 0.8300000000000001, + 0.84, + 0.89, + 0.91, + 0.92, + 0.92, + 0.92, + 0.88, + 0.81, + 0.7000000000000001, + 0.59, + 0.54, + 0.54, + 0.66, + 0.85, + 1.05, + 1.22, + 1.32, + 1.4000000000000001, + 1.44, + 1.48, + 1.51, + 1.54, + 1.54, + 1.53, + 1.49, + 1.45, + 1.41, + 1.36, + 1.3, + 1.26, + 1.2, + 1.16, + 1.1400000000000001, + 1.1400000000000001, + 1.1500000000000001, + 1.1400000000000001, + 1.1300000000000001, + 1.1500000000000001, + 1.18, + 1.25, + 1.34, + 1.42, + 1.49, + 1.54, + 1.58, + 1.61, + 1.6400000000000001, + 1.6500000000000001, + 1.68, + 1.71, + 1.76, + 1.85, + 1.98, + 2.07, + 2.12, + 2.16, + 2.15, + 2.13, + 2.04, + 1.87, + 1.6300000000000001, + 1.44, + 1.3900000000000001, + 1.45, + 1.54, + 1.6400000000000001, + 1.75, + 1.9000000000000001, + 2.1, + 2.27, + 2.41, + 2.5500000000000003, + 2.58, + 2.64, + 2.61, + 2.63, + 2.65, + 2.56, + 2.5, + 2.45, + 2.39, + 2.37, + 2.37, + 2.37, + 2.37, + 2.32, + 2.2600000000000002, + 2.22, + 2.18, + 2.09, + 2.0100000000000002 + ], + [ + 3.88, + 3.9, + 3.94, + 3.91, + 3.93, + 3.99, + 4.0200000000000005, + 4.0200000000000005, + 4.0200000000000005, + 4.0, + 3.97, + 3.94, + 3.93, + 3.92, + 3.99, + 4.07, + 4.22, + 4.3500000000000005, + 4.46, + 4.58, + 4.62, + 4.62, + 4.47, + 4.3100000000000005, + 4.16, + 4.05, + 4.0200000000000005, + 4.04, + 4.09, + 4.21, + 4.24, + 4.22, + 4.1, + 3.87, + 3.65, + 3.49, + 3.37, + 3.3000000000000003, + 3.2, + 3.1, + 2.97, + 2.79, + 2.58, + 2.46, + 2.35, + 2.31, + 2.23, + 1.99, + 1.72, + 1.6, + 1.47, + 1.45, + 1.3900000000000001, + 1.41, + 1.41, + 1.46, + 1.48, + 1.5, + 1.51, + 1.51, + 1.54, + 1.58, + 1.69, + 1.79, + 1.99, + 2.23, + 2.32, + 2.45, + 2.5100000000000002, + 2.58, + 2.64, + 2.69, + 2.74, + 2.79, + 2.8000000000000003, + 2.84, + 2.92, + 3.02, + 3.04, + 2.91, + 2.79, + 2.73, + 2.73, + 2.75, + 2.67, + 2.45, + 2.34, + 2.68, + 3.14, + 3.41, + 3.61, + 3.66, + 3.88, + 4.2700000000000005, + 4.64, + 4.99, + 5.24, + 5.5200000000000005, + 6.05, + 6.65, + 7.21, + 7.45, + 7.3100000000000005, + 7.08, + 6.83, + 6.88, + 7.21, + 7.5200000000000005, + 7.65, + 7.51, + 7.23, + 6.92, + 6.58, + 6.17, + 5.36, + 4.51, + 3.43, + 2.46, + 1.8, + 1.27, + 0.96, + 0.7000000000000001, + 0.55, + 0.45, + 0.4, + 0.37, + 0.36, + 0.37, + 0.39, + 0.42, + 0.45, + 0.5, + 0.58, + 0.71, + 0.88, + 1.12, + 1.36, + 1.56, + 1.72, + 1.85, + 1.98, + 2.05, + 2.1, + 2.11, + 2.08, + 2.09, + 2.08, + 2.06, + 1.95, + 1.76, + 1.54, + 1.36, + 1.33, + 1.4000000000000001, + 1.74, + 2.12, + 2.61, + 3.0100000000000002, + 3.08, + 3.2, + 3.52, + 3.96, + 4.41, + 4.79, + 4.99, + 5.12, + 5.16, + 5.14, + 5.11, + 5.09, + 5.1000000000000005, + 5.13, + 5.04, + 4.84, + 4.51, + 4.0, + 3.5700000000000003, + 3.2800000000000002, + 3.0300000000000002, + 2.87, + 2.7, + 2.63, + 2.58, + 2.54, + 2.48, + 2.43, + 2.38, + 2.39, + 2.43, + 2.59, + 2.81, + 3.09, + 3.4, + 3.65, + 3.93, + 4.17, + 4.3500000000000005, + 4.39, + 4.29, + 4.2700000000000005, + 4.15, + 4.04, + 3.98, + 3.96, + 4.13, + 4.28, + 4.47, + 4.61, + 4.5600000000000005, + 4.49, + 4.29, + 4.09, + 3.94, + 3.8200000000000003, + 3.67, + 3.5300000000000002, + 3.39, + 3.2800000000000002, + 3.16, + 3.0300000000000002, + 2.88, + 2.73, + 2.58, + 2.39, + 2.15, + 1.97, + 1.84, + 1.77, + 1.71, + 1.6600000000000001, + 1.6, + 1.57, + 1.56, + 1.49, + 1.41, + 1.3900000000000001, + 1.34, + 1.29, + 1.21, + 1.1400000000000001, + 1.1, + 1.11, + 1.1300000000000001, + 1.09, + 1.01, + 0.93, + 0.8300000000000001, + 0.76, + 0.72, + 0.72, + 0.76, + 0.79, + 0.81, + 0.8, + 0.79, + 0.75, + 0.81, + 0.84, + 0.88, + 0.88, + 0.92, + 0.9400000000000001, + 0.9400000000000001, + 0.87, + 0.75, + 0.62, + 0.53, + 0.53, + 0.61, + 0.8200000000000001, + 1.04, + 1.19, + 1.32, + 1.3800000000000001, + 1.44, + 1.47, + 1.51, + 1.51, + 1.52, + 1.5, + 1.48, + 1.48, + 1.46, + 1.4000000000000001, + 1.35, + 1.28, + 1.21, + 1.16, + 1.1400000000000001, + 1.1400000000000001, + 1.1500000000000001, + 1.1500000000000001, + 1.16, + 1.16, + 1.21, + 1.27, + 1.36, + 1.45, + 1.53, + 1.6, + 1.6600000000000001, + 1.7, + 1.74, + 1.75, + 1.77, + 1.81, + 1.87, + 1.97, + 2.08, + 2.18, + 2.25, + 2.3000000000000003, + 2.31, + 2.2600000000000002, + 2.17, + 1.92, + 1.6400000000000001, + 1.46, + 1.33, + 1.37, + 1.48, + 1.56, + 1.68, + 1.8900000000000001, + 2.08, + 2.23, + 2.37, + 2.39, + 2.41, + 2.35, + 2.29, + 2.32, + 2.37, + 2.39, + 2.35, + 2.29, + 2.24, + 2.22, + 2.22, + 2.24, + 2.24, + 2.23, + 2.19, + 2.14, + 2.08, + 1.99, + 1.9100000000000001 + ], + [ + 3.93, + 3.93, + 3.98, + 3.95, + 4.01, + 4.08, + 4.11, + 4.12, + 4.12, + 4.11, + 4.07, + 4.0200000000000005, + 3.97, + 3.94, + 3.95, + 4.03, + 4.12, + 4.26, + 4.38, + 4.5, + 4.57, + 4.53, + 4.44, + 4.26, + 4.12, + 4.03, + 3.95, + 3.91, + 3.93, + 3.97, + 4.07, + 4.09, + 4.04, + 3.91, + 3.67, + 3.49, + 3.36, + 3.25, + 3.16, + 3.0500000000000003, + 2.95, + 2.8000000000000003, + 2.65, + 2.47, + 2.4, + 2.32, + 2.18, + 1.97, + 1.77, + 1.59, + 1.55, + 1.44, + 1.41, + 1.37, + 1.4000000000000001, + 1.43, + 1.46, + 1.5, + 1.52, + 1.55, + 1.57, + 1.62, + 1.68, + 1.74, + 1.82, + 1.95, + 2.08, + 2.21, + 2.37, + 2.47, + 2.5100000000000002, + 2.56, + 2.6, + 2.62, + 2.63, + 2.69, + 2.8000000000000003, + 2.97, + 3.09, + 3.1, + 3.0, + 2.88, + 2.89, + 2.92, + 2.8000000000000003, + 2.63, + 2.5300000000000002, + 2.6, + 2.91, + 3.16, + 3.17, + 3.2600000000000002, + 3.69, + 4.16, + 4.71, + 5.12, + 5.25, + 5.4, + 5.76, + 6.42, + 7.0, + 7.37, + 7.45, + 7.2700000000000005, + 7.2, + 7.3500000000000005, + 7.66, + 7.99, + 8.08, + 7.75, + 7.32, + 6.8100000000000005, + 6.29, + 5.61, + 4.87, + 3.85, + 2.88, + 2.09, + 1.45, + 1.08, + 0.79, + 0.63, + 0.51, + 0.46, + 0.41000000000000003, + 0.39, + 0.39, + 0.4, + 0.43, + 0.47000000000000003, + 0.52, + 0.59, + 0.68, + 0.78, + 0.9500000000000001, + 1.1500000000000001, + 1.3800000000000001, + 1.59, + 1.72, + 1.85, + 1.95, + 2.06, + 2.14, + 2.18, + 2.24, + 2.2800000000000002, + 2.36, + 2.37, + 2.2800000000000002, + 2.1, + 1.84, + 1.61, + 1.47, + 1.47, + 1.61, + 2.0100000000000002, + 2.4, + 2.86, + 3.2, + 3.42, + 3.63, + 4.0600000000000005, + 4.5200000000000005, + 4.88, + 5.14, + 5.24, + 5.29, + 5.3, + 5.26, + 5.22, + 5.22, + 5.17, + 5.09, + 4.89, + 4.54, + 4.16, + 3.73, + 3.41, + 3.18, + 2.92, + 2.75, + 2.6, + 2.57, + 2.52, + 2.48, + 2.44, + 2.44, + 2.43, + 2.5500000000000003, + 2.68, + 2.9, + 3.14, + 3.3200000000000003, + 3.5100000000000002, + 3.7, + 3.92, + 4.05, + 4.08, + 4.12, + 4.16, + 4.17, + 4.04, + 3.97, + 3.99, + 4.05, + 4.21, + 4.33, + 4.36, + 4.3500000000000005, + 4.24, + 4.12, + 3.95, + 3.7800000000000002, + 3.62, + 3.45, + 3.3000000000000003, + 3.15, + 3.02, + 2.89, + 2.7600000000000002, + 2.6, + 2.45, + 2.34, + 2.18, + 1.99, + 1.81, + 1.75, + 1.71, + 1.69, + 1.6400000000000001, + 1.59, + 1.53, + 1.46, + 1.3900000000000001, + 1.35, + 1.33, + 1.31, + 1.23, + 1.16, + 1.07, + 1.03, + 1.04, + 0.99, + 0.92, + 0.8300000000000001, + 0.74, + 0.66, + 0.61, + 0.58, + 0.6, + 0.62, + 0.65, + 0.67, + 0.71, + 0.72, + 0.78, + 0.8300000000000001, + 0.88, + 0.9, + 0.92, + 0.96, + 0.99, + 1.01, + 0.9400000000000001, + 0.81, + 0.68, + 0.5700000000000001, + 0.54, + 0.64, + 0.78, + 0.98, + 1.1500000000000001, + 1.25, + 1.34, + 1.3900000000000001, + 1.45, + 1.45, + 1.46, + 1.46, + 1.47, + 1.5, + 1.51, + 1.49, + 1.43, + 1.37, + 1.29, + 1.22, + 1.18, + 1.17, + 1.17, + 1.17, + 1.19, + 1.19, + 1.21, + 1.23, + 1.31, + 1.3900000000000001, + 1.48, + 1.57, + 1.6500000000000001, + 1.73, + 1.79, + 1.84, + 1.84, + 1.84, + 1.86, + 1.92, + 2.02, + 2.13, + 2.23, + 2.31, + 2.34, + 2.35, + 2.33, + 2.2, + 1.99, + 1.68, + 1.41, + 1.28, + 1.25, + 1.35, + 1.46, + 1.67, + 1.8800000000000001, + 2.04, + 2.19, + 2.22, + 2.24, + 2.18, + 2.07, + 2.04, + 2.07, + 2.14, + 2.19, + 2.17, + 2.11, + 2.06, + 2.05, + 2.08, + 2.11, + 2.13, + 2.13, + 2.12, + 2.07, + 2.0100000000000002, + 1.92, + 1.83 + ], + [ + 3.97, + 4.0, + 4.07, + 4.05, + 4.09, + 4.16, + 4.2, + 4.22, + 4.23, + 4.22, + 4.18, + 4.13, + 4.0600000000000005, + 4.0, + 3.99, + 4.0200000000000005, + 4.11, + 4.21, + 4.34, + 4.44, + 4.49, + 4.47, + 4.34, + 4.19, + 4.08, + 3.99, + 3.89, + 3.7800000000000002, + 3.71, + 3.7, + 3.75, + 3.86, + 3.92, + 3.88, + 3.7600000000000002, + 3.58, + 3.43, + 3.3200000000000003, + 3.21, + 3.13, + 3.0300000000000002, + 2.91, + 2.77, + 2.61, + 2.45, + 2.33, + 2.18, + 1.97, + 1.79, + 1.75, + 1.7, + 1.62, + 1.53, + 1.51, + 1.5, + 1.51, + 1.54, + 1.54, + 1.55, + 1.55, + 1.56, + 1.58, + 1.59, + 1.6300000000000001, + 1.6600000000000001, + 1.7, + 1.84, + 1.98, + 2.2, + 2.4, + 2.43, + 2.45, + 2.46, + 2.49, + 2.52, + 2.5500000000000003, + 2.75, + 2.97, + 3.18, + 3.2800000000000002, + 3.16, + 2.99, + 2.91, + 2.92, + 2.91, + 2.72, + 2.57, + 2.58, + 2.64, + 2.74, + 2.75, + 3.11, + 3.49, + 4.2, + 4.88, + 5.19, + 5.2700000000000005, + 5.22, + 5.4, + 5.98, + 6.72, + 7.26, + 7.5, + 7.54, + 7.54, + 7.71, + 8.05, + 8.290000000000001, + 8.2, + 7.88, + 7.22, + 6.57, + 5.83, + 5.03, + 4.11, + 3.16, + 2.33, + 1.57, + 1.16, + 0.8200000000000001, + 0.65, + 0.53, + 0.49, + 0.46, + 0.43, + 0.41000000000000003, + 0.42, + 0.44, + 0.48, + 0.53, + 0.59, + 0.68, + 0.76, + 0.86, + 0.98, + 1.18, + 1.4000000000000001, + 1.57, + 1.71, + 1.8, + 1.9100000000000001, + 2.04, + 2.17, + 2.2800000000000002, + 2.39, + 2.5500000000000003, + 2.68, + 2.73, + 2.64, + 2.39, + 2.09, + 1.81, + 1.62, + 1.58, + 1.73, + 1.97, + 2.44, + 2.88, + 3.36, + 3.66, + 3.93, + 4.17, + 4.59, + 5.0200000000000005, + 5.22, + 5.36, + 5.41, + 5.46, + 5.44, + 5.3500000000000005, + 5.25, + 5.15, + 5.0, + 4.8, + 4.51, + 4.17, + 3.87, + 3.6, + 3.3200000000000003, + 3.0300000000000002, + 2.79, + 2.66, + 2.56, + 2.52, + 2.49, + 2.48, + 2.49, + 2.5500000000000003, + 2.65, + 2.85, + 3.0300000000000002, + 3.15, + 3.2600000000000002, + 3.35, + 3.48, + 3.63, + 3.73, + 3.8000000000000003, + 3.9, + 4.01, + 4.05, + 4.03, + 3.99, + 4.01, + 4.08, + 4.15, + 4.19, + 4.17, + 4.1, + 4.0, + 3.92, + 3.7800000000000002, + 3.61, + 3.42, + 3.25, + 3.09, + 2.95, + 2.81, + 2.7, + 2.58, + 2.45, + 2.31, + 2.17, + 2.02, + 1.85, + 1.73, + 1.6600000000000001, + 1.67, + 1.69, + 1.6500000000000001, + 1.59, + 1.47, + 1.37, + 1.29, + 1.25, + 1.24, + 1.25, + 1.22, + 1.1400000000000001, + 1.07, + 1.01, + 0.9500000000000001, + 0.87, + 0.78, + 0.6900000000000001, + 0.6, + 0.55, + 0.5, + 0.51, + 0.52, + 0.54, + 0.55, + 0.6, + 0.64, + 0.75, + 0.8300000000000001, + 0.91, + 0.97, + 1.0, + 1.0, + 1.03, + 1.07, + 1.07, + 1.01, + 0.89, + 0.74, + 0.65, + 0.62, + 0.65, + 0.78, + 0.93, + 1.06, + 1.18, + 1.26, + 1.33, + 1.3800000000000001, + 1.4000000000000001, + 1.4000000000000001, + 1.41, + 1.43, + 1.49, + 1.51, + 1.51, + 1.47, + 1.42, + 1.36, + 1.29, + 1.24, + 1.24, + 1.24, + 1.25, + 1.25, + 1.26, + 1.26, + 1.3, + 1.35, + 1.44, + 1.52, + 1.61, + 1.7, + 1.78, + 1.87, + 1.8900000000000001, + 1.9000000000000001, + 1.86, + 1.86, + 1.9100000000000001, + 2.0300000000000002, + 2.14, + 2.24, + 2.31, + 2.33, + 2.34, + 2.32, + 2.23, + 1.96, + 1.6500000000000001, + 1.34, + 1.1400000000000001, + 1.1500000000000001, + 1.23, + 1.45, + 1.67, + 1.86, + 2.02, + 2.08, + 2.1, + 2.04, + 1.97, + 1.8800000000000001, + 1.82, + 1.87, + 1.96, + 2.0, + 1.98, + 1.9100000000000001, + 1.86, + 1.86, + 1.9100000000000001, + 1.98, + 2.02, + 2.05, + 2.04, + 2.02, + 1.94, + 1.86, + 1.84 + ], + [ + 4.03, + 4.04, + 4.1, + 4.1, + 4.16, + 4.23, + 4.2700000000000005, + 4.3, + 4.32, + 4.32, + 4.29, + 4.23, + 4.16, + 4.09, + 4.05, + 4.08, + 4.14, + 4.24, + 4.34, + 4.43, + 4.45, + 4.38, + 4.25, + 4.12, + 4.0200000000000005, + 3.93, + 3.84, + 3.67, + 3.5, + 3.45, + 3.44, + 3.58, + 3.77, + 3.85, + 3.8200000000000003, + 3.68, + 3.52, + 3.39, + 3.29, + 3.21, + 3.11, + 3.0300000000000002, + 2.88, + 2.73, + 2.52, + 2.35, + 2.14, + 1.94, + 1.9000000000000001, + 1.9100000000000001, + 1.85, + 1.79, + 1.72, + 1.68, + 1.6400000000000001, + 1.61, + 1.58, + 1.56, + 1.52, + 1.48, + 1.45, + 1.43, + 1.45, + 1.48, + 1.52, + 1.57, + 1.62, + 1.81, + 2.04, + 2.19, + 2.33, + 2.29, + 2.3000000000000003, + 2.33, + 2.39, + 2.5500000000000003, + 2.77, + 3.0700000000000003, + 3.37, + 3.41, + 3.24, + 3.0, + 2.84, + 2.82, + 2.85, + 2.82, + 2.66, + 2.5100000000000002, + 2.5100000000000002, + 2.49, + 2.75, + 2.95, + 3.63, + 4.29, + 4.94, + 5.41, + 5.26, + 4.93, + 5.05, + 5.55, + 6.36, + 7.12, + 7.54, + 7.7, + 7.83, + 8.03, + 8.25, + 8.38, + 8.26, + 7.72, + 7.05, + 6.22, + 5.36, + 4.38, + 3.39, + 2.5500000000000003, + 1.68, + 1.22, + 0.81, + 0.65, + 0.51, + 0.5, + 0.5, + 0.48, + 0.46, + 0.45, + 0.46, + 0.49, + 0.54, + 0.6, + 0.68, + 0.78, + 0.86, + 0.9400000000000001, + 1.05, + 1.18, + 1.3800000000000001, + 1.56, + 1.6300000000000001, + 1.71, + 1.83, + 1.99, + 2.16, + 2.33, + 2.5500000000000003, + 2.8000000000000003, + 3.02, + 3.13, + 3.02, + 2.7, + 2.32, + 2.0, + 1.81, + 1.82, + 1.95, + 2.25, + 2.6, + 3.2, + 3.72, + 4.04, + 4.2700000000000005, + 4.45, + 4.71, + 5.0, + 5.29, + 5.39, + 5.49, + 5.57, + 5.61, + 5.5, + 5.3100000000000005, + 5.13, + 4.93, + 4.69, + 4.43, + 4.16, + 3.96, + 3.75, + 3.43, + 3.1, + 2.87, + 2.7, + 2.6, + 2.5, + 2.48, + 2.49, + 2.52, + 2.61, + 2.8000000000000003, + 3.0500000000000003, + 3.17, + 3.21, + 3.2, + 3.21, + 3.29, + 3.39, + 3.48, + 3.5700000000000003, + 3.68, + 3.86, + 3.96, + 3.95, + 3.95, + 4.01, + 4.08, + 4.11, + 4.09, + 4.03, + 3.9, + 3.85, + 3.7600000000000002, + 3.62, + 3.45, + 3.2600000000000002, + 3.06, + 2.9, + 2.7600000000000002, + 2.66, + 2.57, + 2.47, + 2.35, + 2.2, + 2.04, + 1.8900000000000001, + 1.74, + 1.6300000000000001, + 1.59, + 1.61, + 1.6500000000000001, + 1.69, + 1.56, + 1.41, + 1.28, + 1.16, + 1.1, + 1.1, + 1.11, + 1.1400000000000001, + 1.1300000000000001, + 1.07, + 1.0, + 0.91, + 0.8300000000000001, + 0.73, + 0.65, + 0.6, + 0.52, + 0.5, + 0.46, + 0.49, + 0.49, + 0.53, + 0.56, + 0.68, + 0.79, + 0.91, + 1.02, + 1.08, + 1.11, + 1.1300000000000001, + 1.1300000000000001, + 1.1400000000000001, + 1.1400000000000001, + 1.07, + 0.9500000000000001, + 0.84, + 0.77, + 0.72, + 0.74, + 0.78, + 0.9, + 1.0, + 1.11, + 1.2, + 1.27, + 1.32, + 1.33, + 1.33, + 1.33, + 1.37, + 1.41, + 1.47, + 1.49, + 1.5, + 1.51, + 1.48, + 1.41, + 1.36, + 1.34, + 1.34, + 1.34, + 1.33, + 1.33, + 1.33, + 1.36, + 1.42, + 1.49, + 1.58, + 1.6600000000000001, + 1.74, + 1.84, + 1.8800000000000001, + 1.94, + 1.86, + 1.81, + 1.81, + 1.86, + 1.98, + 2.12, + 2.21, + 2.27, + 2.31, + 2.31, + 2.27, + 2.15, + 1.93, + 1.54, + 1.22, + 1.06, + 1.02, + 1.22, + 1.44, + 1.69, + 1.8900000000000001, + 1.98, + 2.0100000000000002, + 1.95, + 1.86, + 1.77, + 1.68, + 1.69, + 1.73, + 1.81, + 1.86, + 1.83, + 1.74, + 1.67, + 1.69, + 1.74, + 1.83, + 1.9100000000000001, + 1.95, + 1.97, + 1.93, + 1.87, + 1.84, + 1.83 + ], + [ + 4.08, + 4.12, + 4.21, + 4.19, + 4.23, + 4.28, + 4.33, + 4.37, + 4.4, + 4.41, + 4.39, + 4.3500000000000005, + 4.2700000000000005, + 4.19, + 4.14, + 4.14, + 4.2, + 4.28, + 4.39, + 4.47, + 4.43, + 4.33, + 4.18, + 4.03, + 3.94, + 3.88, + 3.74, + 3.56, + 3.38, + 3.22, + 3.2600000000000002, + 3.37, + 3.6, + 3.83, + 3.85, + 3.73, + 3.5700000000000003, + 3.42, + 3.31, + 3.21, + 3.13, + 3.04, + 2.96, + 2.75, + 2.5500000000000003, + 2.32, + 2.08, + 2.0, + 1.96, + 1.97, + 1.98, + 1.9100000000000001, + 1.87, + 1.8, + 1.73, + 1.67, + 1.6, + 1.53, + 1.44, + 1.36, + 1.29, + 1.25, + 1.28, + 1.34, + 1.41, + 1.48, + 1.53, + 1.61, + 1.82, + 2.0100000000000002, + 2.06, + 2.07, + 2.09, + 2.15, + 2.32, + 2.5500000000000003, + 2.83, + 3.19, + 3.41, + 3.46, + 3.25, + 2.88, + 2.69, + 2.69, + 2.7600000000000002, + 2.84, + 2.79, + 2.59, + 2.47, + 2.59, + 2.82, + 3.2800000000000002, + 3.79, + 4.49, + 5.17, + 5.41, + 5.28, + 4.89, + 4.63, + 5.16, + 6.08, + 6.9, + 7.5200000000000005, + 7.86, + 8.07, + 8.3, + 8.45, + 8.45, + 8.16, + 7.6000000000000005, + 6.7700000000000005, + 5.88, + 4.83, + 3.74, + 2.84, + 1.96, + 1.37, + 0.8300000000000001, + 0.64, + 0.49, + 0.51, + 0.53, + 0.54, + 0.52, + 0.5, + 0.5, + 0.51, + 0.55, + 0.6, + 0.68, + 0.77, + 0.88, + 0.98, + 1.04, + 1.11, + 1.24, + 1.3800000000000001, + 1.48, + 1.55, + 1.62, + 1.72, + 1.9000000000000001, + 2.11, + 2.35, + 2.66, + 3.0100000000000002, + 3.37, + 3.52, + 3.41, + 3.0700000000000003, + 2.59, + 2.22, + 2.07, + 2.09, + 2.34, + 2.62, + 3.08, + 3.58, + 4.1, + 4.5200000000000005, + 4.6000000000000005, + 4.67, + 4.8100000000000005, + 5.0, + 5.18, + 5.36, + 5.49, + 5.66, + 5.69, + 5.61, + 5.42, + 5.16, + 4.92, + 4.66, + 4.39, + 4.19, + 4.0, + 3.81, + 3.54, + 3.19, + 2.92, + 2.7800000000000002, + 2.63, + 2.52, + 2.42, + 2.47, + 2.5100000000000002, + 2.68, + 2.92, + 3.14, + 3.29, + 3.24, + 3.14, + 3.1, + 3.13, + 3.22, + 3.3000000000000003, + 3.38, + 3.54, + 3.7, + 3.8200000000000003, + 3.88, + 3.93, + 4.0, + 4.0600000000000005, + 4.11, + 4.03, + 3.94, + 3.83, + 3.75, + 3.62, + 3.48, + 3.3000000000000003, + 3.11, + 2.91, + 2.72, + 2.6, + 2.54, + 2.46, + 2.37, + 2.2600000000000002, + 2.08, + 1.9100000000000001, + 1.75, + 1.61, + 1.53, + 1.48, + 1.53, + 1.6, + 1.6, + 1.56, + 1.36, + 1.19, + 1.06, + 0.9400000000000001, + 0.91, + 0.93, + 1.01, + 1.08, + 1.06, + 1.01, + 0.9500000000000001, + 0.88, + 0.8200000000000001, + 0.77, + 0.6900000000000001, + 0.62, + 0.54, + 0.52, + 0.49, + 0.52, + 0.55, + 0.64, + 0.74, + 0.86, + 1.0, + 1.09, + 1.18, + 1.24, + 1.26, + 1.26, + 1.23, + 1.2, + 1.1400000000000001, + 1.06, + 0.98, + 0.92, + 0.88, + 0.85, + 0.85, + 0.89, + 0.99, + 1.07, + 1.16, + 1.21, + 1.27, + 1.29, + 1.28, + 1.24, + 1.28, + 1.31, + 1.3900000000000001, + 1.44, + 1.51, + 1.61, + 1.61, + 1.55, + 1.5, + 1.47, + 1.45, + 1.42, + 1.41, + 1.4000000000000001, + 1.41, + 1.43, + 1.48, + 1.56, + 1.6400000000000001, + 1.7, + 1.78, + 1.83, + 1.8800000000000001, + 1.82, + 1.73, + 1.67, + 1.69, + 1.77, + 1.9100000000000001, + 2.04, + 2.13, + 2.21, + 2.25, + 2.23, + 2.15, + 2.0100000000000002, + 1.72, + 1.3900000000000001, + 1.1, + 0.92, + 1.03, + 1.2, + 1.48, + 1.75, + 1.9100000000000001, + 2.0100000000000002, + 1.94, + 1.82, + 1.69, + 1.57, + 1.56, + 1.6, + 1.68, + 1.76, + 1.77, + 1.72, + 1.62, + 1.53, + 1.52, + 1.59, + 1.67, + 1.78, + 1.8800000000000001, + 1.8900000000000001, + 1.8800000000000001, + 1.84, + 1.81, + 1.85 + ], + [ + 4.13, + 4.14, + 4.23, + 4.24, + 4.28, + 4.34, + 4.38, + 4.42, + 4.45, + 4.48, + 4.48, + 4.46, + 4.39, + 4.3, + 4.23, + 4.21, + 4.25, + 4.3500000000000005, + 4.45, + 4.49, + 4.48, + 4.3, + 4.12, + 3.95, + 3.83, + 3.74, + 3.64, + 3.46, + 3.2600000000000002, + 3.16, + 3.13, + 3.29, + 3.54, + 3.75, + 3.83, + 3.72, + 3.5300000000000002, + 3.36, + 3.23, + 3.12, + 3.04, + 2.98, + 2.87, + 2.74, + 2.5100000000000002, + 2.29, + 2.15, + 2.05, + 2.05, + 2.05, + 2.02, + 1.97, + 1.92, + 1.86, + 1.77, + 1.69, + 1.61, + 1.51, + 1.3900000000000001, + 1.25, + 1.1500000000000001, + 1.11, + 1.11, + 1.22, + 1.31, + 1.3900000000000001, + 1.45, + 1.51, + 1.61, + 1.74, + 1.81, + 1.85, + 1.86, + 2.04, + 2.24, + 2.52, + 2.85, + 3.13, + 3.35, + 3.35, + 3.09, + 2.8000000000000003, + 2.58, + 2.5300000000000002, + 2.71, + 2.84, + 2.7800000000000002, + 2.66, + 2.5300000000000002, + 2.62, + 3.04, + 3.5700000000000003, + 4.1, + 4.72, + 5.2700000000000005, + 5.66, + 5.32, + 4.7, + 4.53, + 4.8, + 5.65, + 6.640000000000001, + 7.3500000000000005, + 7.88, + 8.290000000000001, + 8.57, + 8.72, + 8.56, + 8.16, + 7.44, + 6.55, + 5.5, + 4.37, + 3.2800000000000002, + 2.2800000000000002, + 1.6500000000000001, + 1.03, + 0.75, + 0.53, + 0.55, + 0.59, + 0.61, + 0.6, + 0.58, + 0.56, + 0.56, + 0.59, + 0.63, + 0.68, + 0.76, + 0.88, + 1.0, + 1.08, + 1.1500000000000001, + 1.22, + 1.31, + 1.3900000000000001, + 1.45, + 1.48, + 1.5, + 1.6300000000000001, + 1.79, + 2.0300000000000002, + 2.32, + 2.69, + 3.18, + 3.6, + 3.9, + 3.81, + 3.41, + 2.94, + 2.5500000000000003, + 2.37, + 2.54, + 2.79, + 3.17, + 3.56, + 4.05, + 4.54, + 4.76, + 4.93, + 4.86, + 4.83, + 4.94, + 5.07, + 5.25, + 5.45, + 5.63, + 5.7700000000000005, + 5.69, + 5.51, + 5.26, + 4.98, + 4.71, + 4.46, + 4.23, + 4.0600000000000005, + 3.87, + 3.5700000000000003, + 3.2600000000000002, + 3.0300000000000002, + 2.86, + 2.7, + 2.52, + 2.49, + 2.48, + 2.61, + 2.74, + 3.0, + 3.25, + 3.3200000000000003, + 3.23, + 3.09, + 2.98, + 3.02, + 3.12, + 3.19, + 3.2800000000000002, + 3.42, + 3.59, + 3.7, + 3.8000000000000003, + 3.87, + 3.95, + 4.04, + 4.0200000000000005, + 3.99, + 3.85, + 3.74, + 3.62, + 3.47, + 3.33, + 3.17, + 2.99, + 2.7800000000000002, + 2.6, + 2.47, + 2.38, + 2.31, + 2.22, + 2.12, + 1.97, + 1.78, + 1.62, + 1.51, + 1.42, + 1.41, + 1.41, + 1.5, + 1.54, + 1.44, + 1.29, + 1.12, + 0.96, + 0.85, + 0.73, + 0.8, + 0.92, + 1.01, + 1.04, + 1.04, + 1.05, + 1.03, + 1.01, + 0.98, + 0.89, + 0.79, + 0.7000000000000001, + 0.62, + 0.59, + 0.5700000000000001, + 0.64, + 0.72, + 0.8200000000000001, + 0.92, + 1.05, + 1.16, + 1.28, + 1.37, + 1.43, + 1.43, + 1.3900000000000001, + 1.3, + 1.23, + 1.19, + 1.1400000000000001, + 1.1, + 1.05, + 0.99, + 0.9500000000000001, + 0.98, + 1.02, + 1.1, + 1.1500000000000001, + 1.22, + 1.26, + 1.28, + 1.25, + 1.24, + 1.22, + 1.29, + 1.35, + 1.45, + 1.56, + 1.6600000000000001, + 1.73, + 1.7, + 1.6300000000000001, + 1.58, + 1.53, + 1.49, + 1.47, + 1.46, + 1.47, + 1.5, + 1.56, + 1.6400000000000001, + 1.68, + 1.74, + 1.79, + 1.81, + 1.78, + 1.67, + 1.55, + 1.44, + 1.52, + 1.6400000000000001, + 1.76, + 1.9100000000000001, + 2.02, + 2.12, + 2.17, + 2.1, + 1.98, + 1.78, + 1.5, + 1.2, + 0.93, + 0.91, + 0.98, + 1.26, + 1.55, + 1.79, + 1.98, + 1.97, + 1.9000000000000001, + 1.73, + 1.53, + 1.47, + 1.49, + 1.58, + 1.69, + 1.74, + 1.71, + 1.62, + 1.48, + 1.3800000000000001, + 1.37, + 1.43, + 1.53, + 1.6400000000000001, + 1.76, + 1.83, + 1.83, + 1.82, + 1.83, + 1.86 + ], + [ + 4.19, + 4.23, + 4.34, + 4.32, + 4.34, + 4.38, + 4.42, + 4.45, + 4.49, + 4.5200000000000005, + 4.5600000000000005, + 4.55, + 4.51, + 4.43, + 4.33, + 4.28, + 4.3100000000000005, + 4.38, + 4.48, + 4.54, + 4.43, + 4.2700000000000005, + 4.03, + 3.8200000000000003, + 3.7, + 3.6, + 3.49, + 3.35, + 3.21, + 3.12, + 3.15, + 3.2800000000000002, + 3.49, + 3.7, + 3.7600000000000002, + 3.63, + 3.44, + 3.25, + 3.1, + 2.99, + 2.89, + 2.82, + 2.74, + 2.61, + 2.45, + 2.29, + 2.18, + 2.15, + 2.16, + 2.12, + 2.05, + 2.0100000000000002, + 1.96, + 1.8800000000000001, + 1.79, + 1.71, + 1.6300000000000001, + 1.52, + 1.37, + 1.22, + 1.1, + 1.02, + 1.04, + 1.1, + 1.22, + 1.32, + 1.36, + 1.4000000000000001, + 1.47, + 1.53, + 1.6300000000000001, + 1.67, + 1.82, + 1.98, + 2.22, + 2.49, + 2.7600000000000002, + 2.99, + 3.15, + 3.16, + 2.98, + 2.75, + 2.57, + 2.52, + 2.59, + 2.73, + 2.73, + 2.5300000000000002, + 2.39, + 2.69, + 3.15, + 3.75, + 4.3500000000000005, + 4.92, + 5.49, + 5.66, + 5.46, + 4.84, + 4.3, + 4.58, + 5.23, + 6.13, + 7.0200000000000005, + 7.71, + 8.39, + 8.85, + 8.99, + 8.86, + 8.22, + 7.390000000000001, + 6.32, + 5.19, + 3.95, + 2.7800000000000002, + 2.05, + 1.3800000000000001, + 1.01, + 0.7000000000000001, + 0.66, + 0.68, + 0.72, + 0.72, + 0.7000000000000001, + 0.66, + 0.65, + 0.66, + 0.68, + 0.72, + 0.77, + 0.86, + 0.98, + 1.1, + 1.2, + 1.27, + 1.34, + 1.4000000000000001, + 1.44, + 1.44, + 1.41, + 1.45, + 1.51, + 1.7, + 1.9100000000000001, + 2.25, + 2.68, + 3.24, + 3.85, + 4.15, + 4.15, + 3.81, + 3.33, + 2.97, + 2.89, + 3.0100000000000002, + 3.38, + 3.7600000000000002, + 4.11, + 4.51, + 4.76, + 5.03, + 5.01, + 4.97, + 4.87, + 4.84, + 4.97, + 5.13, + 5.38, + 5.62, + 5.72, + 5.73, + 5.5600000000000005, + 5.33, + 5.0600000000000005, + 4.79, + 4.54, + 4.29, + 4.1, + 3.84, + 3.56, + 3.3000000000000003, + 3.09, + 2.96, + 2.81, + 2.67, + 2.5500000000000003, + 2.64, + 2.7600000000000002, + 2.91, + 3.11, + 3.2800000000000002, + 3.36, + 3.23, + 3.0100000000000002, + 2.93, + 2.98, + 3.0700000000000003, + 3.15, + 3.25, + 3.4, + 3.5500000000000003, + 3.65, + 3.73, + 3.8000000000000003, + 3.87, + 3.91, + 3.93, + 3.83, + 3.72, + 3.61, + 3.49, + 3.36, + 3.21, + 3.08, + 2.93, + 2.74, + 2.54, + 2.37, + 2.23, + 2.14, + 2.06, + 1.96, + 1.85, + 1.69, + 1.56, + 1.44, + 1.3900000000000001, + 1.35, + 1.3900000000000001, + 1.42, + 1.42, + 1.34, + 1.19, + 1.03, + 0.92, + 0.79, + 0.75, + 0.75, + 0.88, + 1.0, + 1.07, + 1.1300000000000001, + 1.16, + 1.2, + 1.2, + 1.18, + 1.12, + 1.01, + 0.91, + 0.79, + 0.7000000000000001, + 0.71, + 0.74, + 0.8200000000000001, + 0.89, + 1.01, + 1.11, + 1.27, + 1.41, + 1.54, + 1.6400000000000001, + 1.6500000000000001, + 1.59, + 1.49, + 1.3900000000000001, + 1.34, + 1.33, + 1.29, + 1.22, + 1.1500000000000001, + 1.1, + 1.09, + 1.12, + 1.1500000000000001, + 1.22, + 1.27, + 1.31, + 1.33, + 1.31, + 1.26, + 1.29, + 1.33, + 1.42, + 1.51, + 1.62, + 1.74, + 1.8, + 1.8, + 1.75, + 1.68, + 1.62, + 1.57, + 1.53, + 1.52, + 1.53, + 1.56, + 1.62, + 1.6600000000000001, + 1.71, + 1.75, + 1.8, + 1.77, + 1.72, + 1.57, + 1.35, + 1.35, + 1.41, + 1.53, + 1.61, + 1.75, + 1.8900000000000001, + 2.0, + 2.06, + 2.0100000000000002, + 1.83, + 1.61, + 1.34, + 1.03, + 0.89, + 0.84, + 1.03, + 1.3, + 1.58, + 1.86, + 1.95, + 1.95, + 1.83, + 1.6400000000000001, + 1.48, + 1.4000000000000001, + 1.47, + 1.62, + 1.7, + 1.71, + 1.6500000000000001, + 1.51, + 1.36, + 1.24, + 1.2, + 1.28, + 1.3800000000000001, + 1.52, + 1.6400000000000001, + 1.75, + 1.8, + 1.81, + 1.83, + 1.87 + ], + [ + 4.23, + 4.25, + 4.3500000000000005, + 4.36, + 4.38, + 4.42, + 4.45, + 4.47, + 4.5, + 4.55, + 4.59, + 4.64, + 4.62, + 4.54, + 4.45, + 4.37, + 4.36, + 4.41, + 4.49, + 4.48, + 4.41, + 4.18, + 3.93, + 3.72, + 3.54, + 3.46, + 3.35, + 3.24, + 3.15, + 3.11, + 3.16, + 3.2800000000000002, + 3.45, + 3.61, + 3.65, + 3.54, + 3.34, + 3.16, + 3.0100000000000002, + 2.87, + 2.77, + 2.65, + 2.58, + 2.46, + 2.37, + 2.25, + 2.23, + 2.23, + 2.23, + 2.2, + 2.14, + 2.08, + 2.0100000000000002, + 1.92, + 1.84, + 1.75, + 1.67, + 1.58, + 1.42, + 1.25, + 1.11, + 1.02, + 1.0, + 1.05, + 1.1400000000000001, + 1.22, + 1.28, + 1.31, + 1.35, + 1.45, + 1.52, + 1.69, + 1.8800000000000001, + 2.0300000000000002, + 2.2, + 2.43, + 2.64, + 2.83, + 2.95, + 2.97, + 2.92, + 2.7600000000000002, + 2.65, + 2.6, + 2.6, + 2.64, + 2.5500000000000003, + 2.35, + 2.37, + 2.56, + 3.22, + 3.9, + 4.5, + 5.09, + 5.59, + 5.89, + 5.54, + 4.92, + 4.46, + 4.29, + 4.88, + 5.61, + 6.47, + 7.42, + 8.23, + 8.96, + 9.290000000000001, + 9.05, + 8.47, + 7.34, + 6.15, + 4.79, + 3.47, + 2.5500000000000003, + 1.78, + 1.37, + 1.01, + 0.88, + 0.85, + 0.87, + 0.86, + 0.85, + 0.81, + 0.78, + 0.76, + 0.76, + 0.78, + 0.8200000000000001, + 0.87, + 0.96, + 1.07, + 1.19, + 1.3, + 1.3800000000000001, + 1.45, + 1.52, + 1.51, + 1.46, + 1.43, + 1.4000000000000001, + 1.48, + 1.59, + 1.84, + 2.15, + 2.66, + 3.31, + 3.93, + 4.42, + 4.43, + 4.15, + 3.77, + 3.52, + 3.44, + 3.64, + 3.98, + 4.3100000000000005, + 4.64, + 4.76, + 4.95, + 5.0200000000000005, + 5.07, + 4.93, + 4.8, + 4.79, + 4.84, + 5.0600000000000005, + 5.34, + 5.54, + 5.63, + 5.61, + 5.54, + 5.32, + 5.0600000000000005, + 4.8, + 4.55, + 4.3100000000000005, + 4.0600000000000005, + 3.8000000000000003, + 3.54, + 3.2800000000000002, + 3.19, + 3.09, + 2.95, + 2.81, + 2.7600000000000002, + 2.8000000000000003, + 2.92, + 3.0500000000000003, + 3.22, + 3.33, + 3.34, + 3.2, + 3.02, + 2.92, + 2.96, + 3.06, + 3.15, + 3.27, + 3.42, + 3.5300000000000002, + 3.62, + 3.65, + 3.72, + 3.7600000000000002, + 3.8000000000000003, + 3.75, + 3.67, + 3.5700000000000003, + 3.5, + 3.39, + 3.27, + 3.14, + 3.02, + 2.89, + 2.75, + 2.52, + 2.29, + 2.13, + 2.0, + 1.9100000000000001, + 1.85, + 1.75, + 1.6400000000000001, + 1.52, + 1.44, + 1.3800000000000001, + 1.37, + 1.3800000000000001, + 1.3800000000000001, + 1.35, + 1.25, + 1.11, + 1.02, + 0.9500000000000001, + 0.87, + 0.79, + 0.8300000000000001, + 0.93, + 1.04, + 1.1400000000000001, + 1.21, + 1.3, + 1.33, + 1.34, + 1.34, + 1.3, + 1.22, + 1.11, + 1.0, + 0.88, + 0.84, + 0.89, + 0.9500000000000001, + 1.03, + 1.12, + 1.27, + 1.42, + 1.59, + 1.76, + 1.86, + 1.92, + 1.86, + 1.73, + 1.62, + 1.55, + 1.52, + 1.48, + 1.4000000000000001, + 1.31, + 1.25, + 1.24, + 1.24, + 1.26, + 1.3, + 1.35, + 1.4000000000000001, + 1.3900000000000001, + 1.3800000000000001, + 1.37, + 1.3900000000000001, + 1.45, + 1.52, + 1.6, + 1.69, + 1.78, + 1.86, + 1.8800000000000001, + 1.87, + 1.81, + 1.73, + 1.6500000000000001, + 1.6, + 1.57, + 1.57, + 1.61, + 1.62, + 1.6600000000000001, + 1.7, + 1.75, + 1.76, + 1.72, + 1.6400000000000001, + 1.5, + 1.3800000000000001, + 1.36, + 1.45, + 1.54, + 1.62, + 1.68, + 1.8, + 1.9100000000000001, + 1.97, + 1.93, + 1.78, + 1.55, + 1.25, + 0.99, + 0.79, + 0.84, + 1.0, + 1.28, + 1.6, + 1.81, + 1.95, + 1.8800000000000001, + 1.77, + 1.57, + 1.3900000000000001, + 1.36, + 1.47, + 1.59, + 1.69, + 1.69, + 1.59, + 1.44, + 1.24, + 1.11, + 1.08, + 1.12, + 1.26, + 1.3900000000000001, + 1.56, + 1.7, + 1.77, + 1.81, + 1.84, + 1.87 + ], + [ + 4.28, + 4.32, + 4.43, + 4.42, + 4.43, + 4.46, + 4.47, + 4.49, + 4.51, + 4.55, + 4.61, + 4.67, + 4.71, + 4.66, + 4.5600000000000005, + 4.47, + 4.4, + 4.41, + 4.41, + 4.41, + 4.28, + 4.09, + 3.86, + 3.63, + 3.48, + 3.34, + 3.2600000000000002, + 3.16, + 3.11, + 3.08, + 3.14, + 3.23, + 3.37, + 3.48, + 3.52, + 3.45, + 3.2800000000000002, + 3.13, + 2.99, + 2.88, + 2.75, + 2.62, + 2.48, + 2.41, + 2.31, + 2.2800000000000002, + 2.27, + 2.2800000000000002, + 2.3000000000000003, + 2.25, + 2.21, + 2.12, + 2.05, + 1.96, + 1.8900000000000001, + 1.82, + 1.77, + 1.6600000000000001, + 1.5, + 1.32, + 1.16, + 1.06, + 0.99, + 1.0, + 1.06, + 1.1400000000000001, + 1.19, + 1.24, + 1.31, + 1.4000000000000001, + 1.55, + 1.77, + 1.93, + 2.07, + 2.19, + 2.34, + 2.5, + 2.63, + 2.73, + 2.8000000000000003, + 2.79, + 2.8000000000000003, + 2.75, + 2.73, + 2.73, + 2.62, + 2.49, + 2.39, + 2.29, + 2.67, + 3.24, + 3.97, + 4.62, + 5.24, + 5.8100000000000005, + 5.96, + 5.76, + 5.13, + 4.51, + 4.41, + 4.54, + 5.22, + 5.94, + 6.87, + 7.95, + 8.8, + 9.35, + 9.33, + 8.55, + 7.48, + 5.89, + 4.39, + 3.21, + 2.22, + 1.76, + 1.3900000000000001, + 1.2, + 1.1, + 1.08, + 1.05, + 1.03, + 0.98, + 0.9400000000000001, + 0.91, + 0.89, + 0.89, + 0.9, + 0.92, + 0.97, + 1.04, + 1.1400000000000001, + 1.27, + 1.3900000000000001, + 1.48, + 1.56, + 1.61, + 1.62, + 1.55, + 1.46, + 1.45, + 1.45, + 1.59, + 1.76, + 2.13, + 2.63, + 3.34, + 4.11, + 4.55, + 4.65, + 4.43, + 4.21, + 4.03, + 4.05, + 4.22, + 4.54, + 4.87, + 4.93, + 4.98, + 4.95, + 4.96, + 4.95, + 4.8500000000000005, + 4.76, + 4.72, + 4.8, + 4.97, + 5.23, + 5.45, + 5.51, + 5.47, + 5.37, + 5.2, + 4.98, + 4.74, + 4.49, + 4.2700000000000005, + 4.03, + 3.77, + 3.52, + 3.38, + 3.29, + 3.19, + 3.11, + 3.0100000000000002, + 2.94, + 3.0, + 3.09, + 3.24, + 3.36, + 3.41, + 3.35, + 3.22, + 3.04, + 2.96, + 2.97, + 3.04, + 3.14, + 3.2600000000000002, + 3.39, + 3.5, + 3.52, + 3.56, + 3.59, + 3.63, + 3.61, + 3.56, + 3.48, + 3.41, + 3.36, + 3.3200000000000003, + 3.19, + 3.0700000000000003, + 2.96, + 2.87, + 2.69, + 2.45, + 2.21, + 2.02, + 1.8900000000000001, + 1.81, + 1.75, + 1.69, + 1.6, + 1.52, + 1.44, + 1.41, + 1.3900000000000001, + 1.3800000000000001, + 1.36, + 1.29, + 1.19, + 1.11, + 1.05, + 1.03, + 1.0, + 0.9400000000000001, + 0.93, + 1.01, + 1.1, + 1.2, + 1.32, + 1.4000000000000001, + 1.41, + 1.42, + 1.44, + 1.43, + 1.3900000000000001, + 1.32, + 1.17, + 1.05, + 1.03, + 1.06, + 1.11, + 1.18, + 1.3, + 1.46, + 1.6300000000000001, + 1.82, + 1.98, + 2.12, + 2.17, + 2.17, + 2.05, + 1.9100000000000001, + 1.82, + 1.74, + 1.67, + 1.58, + 1.48, + 1.42, + 1.3900000000000001, + 1.35, + 1.33, + 1.37, + 1.41, + 1.43, + 1.44, + 1.44, + 1.46, + 1.5, + 1.57, + 1.6300000000000001, + 1.69, + 1.76, + 1.81, + 1.8900000000000001, + 1.97, + 1.98, + 1.94, + 1.85, + 1.73, + 1.6600000000000001, + 1.59, + 1.58, + 1.59, + 1.61, + 1.6300000000000001, + 1.6600000000000001, + 1.73, + 1.74, + 1.68, + 1.58, + 1.49, + 1.44, + 1.46, + 1.59, + 1.6600000000000001, + 1.7, + 1.75, + 1.78, + 1.8800000000000001, + 1.95, + 1.93, + 1.84, + 1.6300000000000001, + 1.28, + 0.96, + 0.81, + 0.76, + 0.96, + 1.21, + 1.51, + 1.76, + 1.84, + 1.78, + 1.6400000000000001, + 1.46, + 1.31, + 1.29, + 1.4000000000000001, + 1.52, + 1.61, + 1.6400000000000001, + 1.53, + 1.32, + 1.1300000000000001, + 1.02, + 0.97, + 1.02, + 1.1300000000000001, + 1.31, + 1.48, + 1.6400000000000001, + 1.77, + 1.8, + 1.84, + 1.86 + ], + [ + 4.3100000000000005, + 4.33, + 4.44, + 4.47, + 4.48, + 4.49, + 4.5, + 4.5, + 4.51, + 4.53, + 4.59, + 4.69, + 4.74, + 4.74, + 4.67, + 4.53, + 4.44, + 4.34, + 4.3100000000000005, + 4.25, + 4.15, + 4.0, + 3.81, + 3.63, + 3.45, + 3.35, + 3.24, + 3.17, + 3.1, + 3.09, + 3.09, + 3.19, + 3.2600000000000002, + 3.36, + 3.41, + 3.35, + 3.2800000000000002, + 3.15, + 3.09, + 3.0, + 2.86, + 2.72, + 2.5500000000000003, + 2.41, + 2.35, + 2.31, + 2.3000000000000003, + 2.32, + 2.2800000000000002, + 2.24, + 2.17, + 2.11, + 2.0300000000000002, + 1.98, + 1.92, + 1.9000000000000001, + 1.84, + 1.73, + 1.57, + 1.36, + 1.19, + 1.06, + 0.97, + 0.9500000000000001, + 0.98, + 1.06, + 1.12, + 1.19, + 1.28, + 1.3900000000000001, + 1.55, + 1.73, + 1.94, + 2.0100000000000002, + 2.07, + 2.19, + 2.3000000000000003, + 2.4, + 2.46, + 2.5500000000000003, + 2.66, + 2.7, + 2.81, + 2.83, + 2.79, + 2.71, + 2.69, + 2.59, + 2.5500000000000003, + 2.75, + 3.39, + 4.07, + 4.74, + 5.38, + 5.9, + 6.18, + 5.88, + 5.33, + 4.8, + 4.48, + 4.66, + 4.93, + 5.6000000000000005, + 6.36, + 7.4, + 8.540000000000001, + 9.23, + 9.370000000000001, + 8.82, + 7.3500000000000005, + 5.75, + 4.2, + 2.9, + 2.25, + 1.81, + 1.58, + 1.43, + 1.36, + 1.31, + 1.27, + 1.2, + 1.1500000000000001, + 1.09, + 1.06, + 1.04, + 1.03, + 1.02, + 1.03, + 1.05, + 1.11, + 1.21, + 1.33, + 1.46, + 1.57, + 1.6600000000000001, + 1.73, + 1.73, + 1.68, + 1.61, + 1.55, + 1.57, + 1.61, + 1.82, + 2.11, + 2.71, + 3.47, + 4.19, + 4.7, + 4.79, + 4.67, + 4.5, + 4.54, + 4.6000000000000005, + 4.79, + 5.09, + 5.24, + 5.3, + 5.1000000000000005, + 4.93, + 4.91, + 4.8500000000000005, + 4.82, + 4.76, + 4.72, + 4.73, + 4.9, + 5.13, + 5.32, + 5.4, + 5.34, + 5.18, + 5.01, + 4.89, + 4.68, + 4.46, + 4.24, + 3.99, + 3.74, + 3.56, + 3.45, + 3.35, + 3.25, + 3.25, + 3.24, + 3.22, + 3.23, + 3.35, + 3.48, + 3.5500000000000003, + 3.5300000000000002, + 3.45, + 3.3000000000000003, + 3.15, + 3.04, + 3.02, + 3.0100000000000002, + 3.09, + 3.24, + 3.36, + 3.37, + 3.38, + 3.39, + 3.42, + 3.43, + 3.41, + 3.33, + 3.24, + 3.23, + 3.23, + 3.19, + 3.1, + 3.0, + 2.92, + 2.81, + 2.62, + 2.37, + 2.11, + 1.92, + 1.81, + 1.73, + 1.68, + 1.6300000000000001, + 1.6, + 1.53, + 1.48, + 1.44, + 1.41, + 1.3800000000000001, + 1.32, + 1.24, + 1.16, + 1.1, + 1.1, + 1.1500000000000001, + 1.09, + 1.04, + 1.01, + 1.04, + 1.12, + 1.22, + 1.33, + 1.42, + 1.45, + 1.46, + 1.49, + 1.5, + 1.49, + 1.44, + 1.34, + 1.25, + 1.21, + 1.24, + 1.28, + 1.35, + 1.47, + 1.6500000000000001, + 1.85, + 2.04, + 2.22, + 2.35, + 2.45, + 2.45, + 2.4, + 2.2600000000000002, + 2.11, + 2.0, + 1.87, + 1.77, + 1.67, + 1.61, + 1.54, + 1.48, + 1.42, + 1.4000000000000001, + 1.42, + 1.42, + 1.45, + 1.48, + 1.52, + 1.6, + 1.6600000000000001, + 1.73, + 1.78, + 1.81, + 1.86, + 1.93, + 2.02, + 2.1, + 2.06, + 1.93, + 1.81, + 1.67, + 1.59, + 1.56, + 1.56, + 1.56, + 1.56, + 1.6500000000000001, + 1.76, + 1.74, + 1.67, + 1.57, + 1.51, + 1.48, + 1.56, + 1.6500000000000001, + 1.73, + 1.76, + 1.8, + 1.84, + 1.93, + 2.0100000000000002, + 2.05, + 1.98, + 1.73, + 1.41, + 1.06, + 0.8300000000000001, + 0.79, + 0.89, + 1.1400000000000001, + 1.41, + 1.67, + 1.79, + 1.71, + 1.51, + 1.36, + 1.2, + 1.22, + 1.31, + 1.46, + 1.56, + 1.56, + 1.3800000000000001, + 1.17, + 1.01, + 0.9, + 0.88, + 0.92, + 1.06, + 1.23, + 1.41, + 1.58, + 1.7, + 1.78, + 1.81, + 1.84 + ], + [ + 4.3500000000000005, + 4.39, + 4.51, + 4.5200000000000005, + 4.5200000000000005, + 4.5200000000000005, + 4.5200000000000005, + 4.51, + 4.49, + 4.51, + 4.5600000000000005, + 4.65, + 4.74, + 4.76, + 4.68, + 4.57, + 4.38, + 4.25, + 4.14, + 4.07, + 4.0200000000000005, + 3.92, + 3.81, + 3.69, + 3.54, + 3.43, + 3.33, + 3.25, + 3.21, + 3.18, + 3.2, + 3.21, + 3.29, + 3.31, + 3.35, + 3.33, + 3.2600000000000002, + 3.25, + 3.2, + 3.15, + 3.04, + 2.87, + 2.69, + 2.5100000000000002, + 2.39, + 2.34, + 2.31, + 2.27, + 2.19, + 2.13, + 2.06, + 2.0100000000000002, + 1.99, + 1.94, + 1.93, + 1.9000000000000001, + 1.86, + 1.75, + 1.59, + 1.3900000000000001, + 1.22, + 1.07, + 0.99, + 0.9400000000000001, + 0.97, + 1.01, + 1.09, + 1.16, + 1.24, + 1.34, + 1.45, + 1.59, + 1.74, + 1.82, + 1.87, + 1.96, + 2.06, + 2.12, + 2.2, + 2.33, + 2.45, + 2.57, + 2.67, + 2.7600000000000002, + 2.7600000000000002, + 2.91, + 2.97, + 2.96, + 2.93, + 3.14, + 3.63, + 4.25, + 4.8500000000000005, + 5.49, + 6.04, + 6.22, + 6.03, + 5.5200000000000005, + 5.11, + 4.86, + 4.8500000000000005, + 5.11, + 5.3100000000000005, + 6.01, + 6.92, + 8.02, + 9.07, + 9.39, + 8.71, + 7.42, + 5.68, + 4.0600000000000005, + 3.04, + 2.36, + 2.06, + 1.86, + 1.72, + 1.6400000000000001, + 1.56, + 1.47, + 1.4000000000000001, + 1.32, + 1.27, + 1.22, + 1.2, + 1.17, + 1.1500000000000001, + 1.12, + 1.1400000000000001, + 1.18, + 1.27, + 1.4000000000000001, + 1.53, + 1.6500000000000001, + 1.75, + 1.82, + 1.85, + 1.84, + 1.8, + 1.76, + 1.72, + 1.77, + 1.8900000000000001, + 2.27, + 2.87, + 3.62, + 4.3100000000000005, + 4.75, + 4.86, + 4.7700000000000005, + 4.79, + 4.86, + 5.11, + 5.3500000000000005, + 5.54, + 5.69, + 5.5600000000000005, + 5.33, + 5.08, + 4.93, + 4.91, + 4.86, + 4.8100000000000005, + 4.75, + 4.75, + 4.8100000000000005, + 5.03, + 5.22, + 5.28, + 5.22, + 5.05, + 4.84, + 4.72, + 4.66, + 4.46, + 4.18, + 3.91, + 3.67, + 3.48, + 3.46, + 3.41, + 3.35, + 3.36, + 3.47, + 3.5500000000000003, + 3.59, + 3.71, + 3.75, + 3.74, + 3.69, + 3.5700000000000003, + 3.43, + 3.3000000000000003, + 3.18, + 3.04, + 3.0300000000000002, + 3.09, + 3.22, + 3.27, + 3.2800000000000002, + 3.22, + 3.21, + 3.19, + 3.2, + 3.15, + 3.08, + 3.04, + 3.0500000000000003, + 3.08, + 3.08, + 3.0100000000000002, + 2.94, + 2.88, + 2.8000000000000003, + 2.59, + 2.29, + 2.0300000000000002, + 1.83, + 1.72, + 1.6600000000000001, + 1.62, + 1.62, + 1.6, + 1.55, + 1.51, + 1.47, + 1.43, + 1.3800000000000001, + 1.3, + 1.2, + 1.11, + 1.09, + 1.1300000000000001, + 1.1500000000000001, + 1.1300000000000001, + 1.05, + 1.01, + 1.01, + 1.04, + 1.1400000000000001, + 1.24, + 1.34, + 1.41, + 1.45, + 1.48, + 1.51, + 1.52, + 1.5, + 1.48, + 1.44, + 1.4000000000000001, + 1.42, + 1.44, + 1.5, + 1.6300000000000001, + 1.83, + 2.04, + 2.2600000000000002, + 2.42, + 2.57, + 2.66, + 2.73, + 2.67, + 2.57, + 2.41, + 2.21, + 2.07, + 1.97, + 1.8800000000000001, + 1.81, + 1.74, + 1.61, + 1.5, + 1.44, + 1.41, + 1.42, + 1.43, + 1.49, + 1.57, + 1.6500000000000001, + 1.73, + 1.8, + 1.87, + 1.8900000000000001, + 1.9000000000000001, + 1.98, + 2.09, + 2.16, + 2.12, + 2.0, + 1.82, + 1.67, + 1.56, + 1.51, + 1.51, + 1.5, + 1.51, + 1.59, + 1.71, + 1.73, + 1.6600000000000001, + 1.55, + 1.5, + 1.47, + 1.53, + 1.59, + 1.67, + 1.75, + 1.79, + 1.8800000000000001, + 1.98, + 2.16, + 2.21, + 2.06, + 1.83, + 1.52, + 1.19, + 0.9500000000000001, + 0.85, + 0.93, + 1.11, + 1.3900000000000001, + 1.6400000000000001, + 1.77, + 1.74, + 1.54, + 1.31, + 1.22, + 1.21, + 1.33, + 1.5, + 1.59, + 1.49, + 1.31, + 1.03, + 0.85, + 0.8, + 0.77, + 0.85, + 0.98, + 1.1500000000000001, + 1.32, + 1.48, + 1.61, + 1.71, + 1.78, + 1.8 + ], + [ + 4.37, + 4.41, + 4.53, + 4.5600000000000005, + 4.55, + 4.5600000000000005, + 4.55, + 4.51, + 4.49, + 4.47, + 4.51, + 4.5600000000000005, + 4.65, + 4.67, + 4.62, + 4.47, + 4.29, + 4.09, + 3.96, + 3.9, + 3.86, + 3.86, + 3.83, + 3.74, + 3.66, + 3.54, + 3.48, + 3.41, + 3.4, + 3.39, + 3.42, + 3.43, + 3.42, + 3.44, + 3.39, + 3.37, + 3.34, + 3.33, + 3.33, + 3.29, + 3.18, + 3.02, + 2.81, + 2.62, + 2.45, + 2.35, + 2.3000000000000003, + 2.23, + 2.11, + 1.96, + 1.92, + 1.9000000000000001, + 1.8900000000000001, + 1.87, + 1.86, + 1.87, + 1.83, + 1.78, + 1.6300000000000001, + 1.48, + 1.3, + 1.19, + 1.1, + 1.04, + 1.03, + 1.05, + 1.09, + 1.1300000000000001, + 1.18, + 1.23, + 1.25, + 1.36, + 1.43, + 1.53, + 1.59, + 1.71, + 1.82, + 1.8900000000000001, + 2.0100000000000002, + 2.15, + 2.2600000000000002, + 2.38, + 2.42, + 2.5, + 2.72, + 2.91, + 3.27, + 3.41, + 3.48, + 3.69, + 4.05, + 4.5200000000000005, + 5.0600000000000005, + 5.63, + 6.08, + 6.26, + 6.05, + 5.7, + 5.3500000000000005, + 5.29, + 5.28, + 5.29, + 5.48, + 5.63, + 6.48, + 7.67, + 8.72, + 9.16, + 8.68, + 7.4, + 5.75, + 4.3100000000000005, + 3.25, + 2.7, + 2.39, + 2.19, + 2.04, + 1.9100000000000001, + 1.79, + 1.69, + 1.59, + 1.51, + 1.45, + 1.4000000000000001, + 1.34, + 1.31, + 1.25, + 1.22, + 1.2, + 1.23, + 1.31, + 1.44, + 1.57, + 1.7, + 1.8, + 1.8900000000000001, + 1.98, + 2.0300000000000002, + 2.04, + 2.0300000000000002, + 1.97, + 1.94, + 2.13, + 2.5300000000000002, + 3.16, + 3.83, + 4.45, + 4.73, + 4.82, + 4.79, + 4.83, + 5.14, + 5.44, + 5.78, + 6.01, + 6.0, + 5.88, + 5.6000000000000005, + 5.33, + 5.15, + 5.07, + 5.0200000000000005, + 4.94, + 4.87, + 4.78, + 4.84, + 4.94, + 5.12, + 5.2, + 5.12, + 4.91, + 4.72, + 4.64, + 4.57, + 4.41, + 4.14, + 3.8200000000000003, + 3.56, + 3.44, + 3.41, + 3.43, + 3.41, + 3.52, + 3.72, + 3.85, + 3.98, + 4.01, + 3.97, + 3.92, + 3.8200000000000003, + 3.72, + 3.58, + 3.42, + 3.22, + 3.08, + 3.0100000000000002, + 3.0700000000000003, + 3.15, + 3.21, + 3.11, + 3.04, + 2.95, + 2.92, + 2.91, + 2.87, + 2.84, + 2.85, + 2.9, + 2.96, + 2.97, + 2.93, + 2.89, + 2.88, + 2.7800000000000002, + 2.56, + 2.2600000000000002, + 1.94, + 1.74, + 1.59, + 1.53, + 1.56, + 1.57, + 1.57, + 1.54, + 1.51, + 1.47, + 1.45, + 1.4000000000000001, + 1.29, + 1.17, + 1.08, + 1.06, + 1.08, + 1.09, + 1.05, + 0.97, + 0.92, + 0.9, + 0.93, + 0.97, + 1.08, + 1.21, + 1.29, + 1.3800000000000001, + 1.43, + 1.45, + 1.47, + 1.53, + 1.55, + 1.55, + 1.56, + 1.55, + 1.57, + 1.62, + 1.75, + 1.95, + 2.19, + 2.39, + 2.6, + 2.72, + 2.8000000000000003, + 2.86, + 2.9, + 2.79, + 2.61, + 2.41, + 2.23, + 2.12, + 2.09, + 2.0300000000000002, + 1.9100000000000001, + 1.78, + 1.61, + 1.5, + 1.45, + 1.43, + 1.46, + 1.52, + 1.61, + 1.69, + 1.78, + 1.87, + 1.94, + 1.99, + 2.0, + 2.02, + 2.13, + 2.2, + 2.16, + 2.0, + 1.81, + 1.6400000000000001, + 1.52, + 1.49, + 1.48, + 1.43, + 1.41, + 1.54, + 1.67, + 1.71, + 1.67, + 1.58, + 1.47, + 1.46, + 1.45, + 1.51, + 1.56, + 1.67, + 1.8, + 1.9000000000000001, + 2.13, + 2.31, + 2.29, + 2.14, + 1.8800000000000001, + 1.58, + 1.31, + 1.09, + 0.97, + 0.99, + 1.18, + 1.43, + 1.69, + 1.86, + 1.83, + 1.69, + 1.47, + 1.33, + 1.34, + 1.46, + 1.62, + 1.6600000000000001, + 1.56, + 1.3, + 1.03, + 0.8200000000000001, + 0.73, + 0.7000000000000001, + 0.75, + 0.88, + 1.04, + 1.2, + 1.36, + 1.51, + 1.6300000000000001, + 1.72, + 1.76 + ], + [ + 4.41, + 4.45, + 4.57, + 4.59, + 4.59, + 4.59, + 4.57, + 4.53, + 4.47, + 4.44, + 4.4, + 4.44, + 4.45, + 4.47, + 4.42, + 4.28, + 4.1, + 3.91, + 3.79, + 3.73, + 3.73, + 3.7600000000000002, + 3.79, + 3.77, + 3.69, + 3.63, + 3.5700000000000003, + 3.58, + 3.58, + 3.66, + 3.69, + 3.74, + 3.72, + 3.62, + 3.5700000000000003, + 3.5, + 3.47, + 3.45, + 3.44, + 3.38, + 3.27, + 3.11, + 2.91, + 2.7, + 2.5300000000000002, + 2.4, + 2.32, + 2.23, + 2.08, + 1.9100000000000001, + 1.79, + 1.78, + 1.76, + 1.76, + 1.77, + 1.78, + 1.82, + 1.78, + 1.76, + 1.62, + 1.51, + 1.4000000000000001, + 1.32, + 1.26, + 1.18, + 1.16, + 1.1500000000000001, + 1.1400000000000001, + 1.1400000000000001, + 1.12, + 1.12, + 1.12, + 1.19, + 1.24, + 1.36, + 1.52, + 1.6500000000000001, + 1.73, + 1.85, + 2.0, + 2.11, + 2.11, + 2.15, + 2.2600000000000002, + 2.46, + 2.94, + 3.37, + 3.83, + 4.0600000000000005, + 4.25, + 4.57, + 4.89, + 5.3, + 5.74, + 6.08, + 6.2, + 5.99, + 5.69, + 5.54, + 5.5200000000000005, + 5.7, + 5.7, + 5.53, + 5.69, + 6.17, + 7.29, + 8.290000000000001, + 8.77, + 8.48, + 7.3500000000000005, + 5.94, + 4.58, + 3.65, + 3.11, + 2.74, + 2.5, + 2.31, + 2.14, + 2.0100000000000002, + 1.9000000000000001, + 1.8, + 1.71, + 1.6400000000000001, + 1.56, + 1.5, + 1.42, + 1.35, + 1.27, + 1.25, + 1.26, + 1.34, + 1.44, + 1.57, + 1.7, + 1.81, + 1.94, + 2.08, + 2.23, + 2.35, + 2.34, + 2.27, + 2.25, + 2.42, + 2.88, + 3.5300000000000002, + 4.14, + 4.45, + 4.7, + 4.66, + 4.64, + 4.8100000000000005, + 5.13, + 5.66, + 6.05, + 6.24, + 6.25, + 6.1000000000000005, + 5.8500000000000005, + 5.62, + 5.45, + 5.33, + 5.2700000000000005, + 5.18, + 5.07, + 4.98, + 4.93, + 5.01, + 5.07, + 5.14, + 5.07, + 4.87, + 4.72, + 4.64, + 4.51, + 4.3500000000000005, + 4.1, + 3.79, + 3.5500000000000003, + 3.41, + 3.41, + 3.44, + 3.46, + 3.58, + 3.87, + 4.11, + 4.2, + 4.2, + 4.13, + 4.0200000000000005, + 3.96, + 3.92, + 3.74, + 3.38, + 3.17, + 3.0, + 2.93, + 2.97, + 3.0500000000000003, + 2.99, + 2.89, + 2.74, + 2.64, + 2.59, + 2.57, + 2.57, + 2.57, + 2.65, + 2.77, + 2.83, + 2.85, + 2.85, + 2.86, + 2.85, + 2.7800000000000002, + 2.54, + 2.18, + 1.85, + 1.52, + 1.37, + 1.3900000000000001, + 1.42, + 1.47, + 1.47, + 1.48, + 1.45, + 1.46, + 1.46, + 1.4000000000000001, + 1.29, + 1.1500000000000001, + 1.04, + 1.0, + 1.0, + 0.99, + 0.93, + 0.86, + 0.8, + 0.78, + 0.76, + 0.81, + 0.91, + 1.04, + 1.17, + 1.27, + 1.34, + 1.37, + 1.41, + 1.47, + 1.55, + 1.58, + 1.62, + 1.62, + 1.6500000000000001, + 1.7, + 1.82, + 1.98, + 2.22, + 2.45, + 2.64, + 2.77, + 2.85, + 2.92, + 2.95, + 2.94, + 2.77, + 2.59, + 2.41, + 2.31, + 2.27, + 2.17, + 2.05, + 1.8900000000000001, + 1.71, + 1.58, + 1.51, + 1.48, + 1.49, + 1.56, + 1.6500000000000001, + 1.73, + 1.81, + 1.9100000000000001, + 2.0300000000000002, + 2.08, + 2.09, + 2.11, + 2.19, + 2.2600000000000002, + 2.18, + 2.02, + 1.79, + 1.61, + 1.49, + 1.45, + 1.47, + 1.43, + 1.41, + 1.52, + 1.67, + 1.76, + 1.74, + 1.7, + 1.58, + 1.52, + 1.5, + 1.5, + 1.57, + 1.72, + 1.86, + 2.02, + 2.25, + 2.45, + 2.45, + 2.21, + 1.93, + 1.67, + 1.41, + 1.23, + 1.11, + 1.1300000000000001, + 1.3, + 1.53, + 1.76, + 1.95, + 2.02, + 1.8900000000000001, + 1.74, + 1.58, + 1.53, + 1.6300000000000001, + 1.73, + 1.75, + 1.59, + 1.34, + 1.1500000000000001, + 0.9400000000000001, + 0.75, + 0.6900000000000001, + 0.67, + 0.77, + 0.91, + 1.06, + 1.25, + 1.41, + 1.55, + 1.6500000000000001, + 1.68 + ], + [ + 4.43, + 4.47, + 4.6000000000000005, + 4.63, + 4.63, + 4.63, + 4.6000000000000005, + 4.54, + 4.47, + 4.38, + 4.33, + 4.23, + 4.23, + 4.2, + 4.14, + 4.05, + 3.88, + 3.74, + 3.63, + 3.6, + 3.61, + 3.65, + 3.68, + 3.67, + 3.62, + 3.58, + 3.5700000000000003, + 3.61, + 3.7, + 3.8000000000000003, + 3.96, + 4.0, + 4.0, + 3.91, + 3.7800000000000002, + 3.71, + 3.65, + 3.63, + 3.54, + 3.46, + 3.3200000000000003, + 3.15, + 2.97, + 2.77, + 2.61, + 2.49, + 2.4, + 2.29, + 2.12, + 1.9100000000000001, + 1.76, + 1.68, + 1.67, + 1.67, + 1.69, + 1.76, + 1.81, + 1.8800000000000001, + 1.87, + 1.87, + 1.77, + 1.71, + 1.6400000000000001, + 1.54, + 1.45, + 1.35, + 1.29, + 1.23, + 1.18, + 1.1400000000000001, + 1.11, + 1.09, + 1.11, + 1.16, + 1.28, + 1.45, + 1.59, + 1.6600000000000001, + 1.7, + 1.85, + 1.9100000000000001, + 1.9100000000000001, + 1.93, + 2.0300000000000002, + 2.34, + 2.83, + 3.5100000000000002, + 4.05, + 4.49, + 4.7700000000000005, + 4.97, + 5.22, + 5.5, + 5.79, + 6.0200000000000005, + 5.98, + 5.8, + 5.54, + 5.48, + 5.74, + 5.93, + 6.03, + 5.86, + 5.72, + 6.19, + 6.82, + 7.78, + 8.24, + 7.97, + 7.24, + 5.97, + 4.8500000000000005, + 4.0200000000000005, + 3.44, + 3.04, + 2.7600000000000002, + 2.5300000000000002, + 2.37, + 2.23, + 2.12, + 2.0100000000000002, + 1.92, + 1.82, + 1.73, + 1.6300000000000001, + 1.54, + 1.4000000000000001, + 1.32, + 1.26, + 1.28, + 1.32, + 1.41, + 1.52, + 1.6400000000000001, + 1.78, + 1.93, + 2.18, + 2.43, + 2.62, + 2.7, + 2.62, + 2.59, + 2.81, + 3.36, + 3.95, + 4.32, + 4.58, + 4.46, + 4.42, + 4.39, + 4.55, + 5.08, + 5.62, + 6.12, + 6.33, + 6.32, + 6.18, + 6.05, + 5.87, + 5.71, + 5.61, + 5.57, + 5.53, + 5.41, + 5.32, + 5.22, + 5.17, + 5.19, + 5.13, + 5.0600000000000005, + 4.95, + 4.8, + 4.66, + 4.53, + 4.3100000000000005, + 4.05, + 3.85, + 3.64, + 3.45, + 3.43, + 3.46, + 3.48, + 3.61, + 3.88, + 4.17, + 4.2700000000000005, + 4.29, + 4.21, + 4.15, + 4.2, + 4.11, + 3.74, + 3.37, + 2.98, + 2.81, + 2.7600000000000002, + 2.8000000000000003, + 2.77, + 2.7, + 2.54, + 2.37, + 2.27, + 2.21, + 2.22, + 2.22, + 2.29, + 2.41, + 2.57, + 2.69, + 2.74, + 2.79, + 2.83, + 2.85, + 2.77, + 2.49, + 2.11, + 1.6500000000000001, + 1.32, + 1.17, + 1.19, + 1.3, + 1.35, + 1.3800000000000001, + 1.3800000000000001, + 1.4000000000000001, + 1.43, + 1.42, + 1.36, + 1.26, + 1.12, + 0.99, + 0.91, + 0.9, + 0.87, + 0.8300000000000001, + 0.78, + 0.71, + 0.65, + 0.64, + 0.6900000000000001, + 0.8, + 0.9, + 1.04, + 1.12, + 1.19, + 1.25, + 1.3, + 1.3800000000000001, + 1.46, + 1.55, + 1.61, + 1.67, + 1.72, + 1.76, + 1.84, + 1.98, + 2.17, + 2.41, + 2.59, + 2.73, + 2.83, + 2.9, + 2.99, + 2.98, + 2.96, + 2.7800000000000002, + 2.61, + 2.52, + 2.41, + 2.29, + 2.11, + 1.92, + 1.77, + 1.6500000000000001, + 1.58, + 1.55, + 1.55, + 1.61, + 1.69, + 1.75, + 1.83, + 1.93, + 2.07, + 2.18, + 2.19, + 2.2, + 2.2800000000000002, + 2.32, + 2.24, + 2.04, + 1.81, + 1.59, + 1.47, + 1.44, + 1.46, + 1.49, + 1.51, + 1.57, + 1.69, + 1.8, + 1.82, + 1.81, + 1.76, + 1.68, + 1.6500000000000001, + 1.6400000000000001, + 1.72, + 1.87, + 2.0100000000000002, + 2.17, + 2.39, + 2.59, + 2.62, + 2.39, + 2.04, + 1.77, + 1.53, + 1.36, + 1.26, + 1.29, + 1.43, + 1.61, + 1.85, + 2.04, + 2.14, + 2.1, + 1.96, + 1.84, + 1.76, + 1.77, + 1.85, + 1.75, + 1.59, + 1.43, + 1.24, + 1.06, + 0.87, + 0.72, + 0.68, + 0.68, + 0.77, + 0.9400000000000001, + 1.1400000000000001, + 1.33, + 1.48, + 1.57, + 1.6 + ], + [ + 4.46, + 4.49, + 4.62, + 4.65, + 4.66, + 4.66, + 4.62, + 4.55, + 4.45, + 4.34, + 4.2, + 4.1, + 3.97, + 3.94, + 3.9, + 3.81, + 3.71, + 3.59, + 3.52, + 3.5, + 3.5, + 3.5300000000000002, + 3.5300000000000002, + 3.5, + 3.46, + 3.43, + 3.46, + 3.5300000000000002, + 3.65, + 3.85, + 4.03, + 4.17, + 4.18, + 4.11, + 3.98, + 3.9, + 3.85, + 3.7600000000000002, + 3.66, + 3.5, + 3.35, + 3.19, + 3.0, + 2.85, + 2.72, + 2.6, + 2.5, + 2.38, + 2.18, + 1.94, + 1.76, + 1.67, + 1.6600000000000001, + 1.67, + 1.75, + 1.82, + 1.92, + 2.0, + 2.07, + 2.08, + 2.1, + 2.06, + 1.98, + 1.8800000000000001, + 1.74, + 1.6300000000000001, + 1.5, + 1.4000000000000001, + 1.31, + 1.26, + 1.23, + 1.23, + 1.21, + 1.23, + 1.32, + 1.47, + 1.6, + 1.56, + 1.59, + 1.6300000000000001, + 1.69, + 1.79, + 1.82, + 1.96, + 2.2800000000000002, + 2.86, + 3.58, + 4.24, + 4.71, + 5.03, + 5.2, + 5.4, + 5.62, + 5.8, + 5.84, + 5.79, + 5.54, + 5.34, + 5.45, + 5.75, + 6.12, + 6.24, + 6.1000000000000005, + 5.95, + 5.95, + 6.58, + 7.08, + 7.49, + 7.45, + 6.75, + 5.93, + 4.97, + 4.25, + 3.73, + 3.2800000000000002, + 2.94, + 2.74, + 2.6, + 2.46, + 2.34, + 2.22, + 2.11, + 2.0100000000000002, + 1.8800000000000001, + 1.76, + 1.6, + 1.47, + 1.33, + 1.27, + 1.25, + 1.29, + 1.34, + 1.43, + 1.54, + 1.69, + 1.92, + 2.23, + 2.59, + 2.87, + 3.0100000000000002, + 2.99, + 2.99, + 3.31, + 3.8200000000000003, + 4.3, + 4.6000000000000005, + 4.39, + 4.26, + 3.99, + 3.95, + 4.3, + 4.82, + 5.51, + 6.0, + 6.23, + 6.2, + 6.19, + 6.11, + 6.03, + 5.91, + 5.8500000000000005, + 5.84, + 5.87, + 5.8500000000000005, + 5.72, + 5.6000000000000005, + 5.49, + 5.38, + 5.28, + 5.08, + 4.98, + 4.87, + 4.72, + 4.55, + 4.32, + 4.11, + 3.93, + 3.73, + 3.5500000000000003, + 3.42, + 3.41, + 3.5, + 3.66, + 3.91, + 4.16, + 4.3100000000000005, + 4.34, + 4.32, + 4.38, + 4.39, + 4.11, + 3.72, + 3.22, + 2.82, + 2.58, + 2.54, + 2.47, + 2.43, + 2.34, + 2.17, + 2.0300000000000002, + 1.92, + 1.92, + 1.94, + 1.94, + 1.99, + 2.16, + 2.34, + 2.5300000000000002, + 2.67, + 2.75, + 2.86, + 2.88, + 2.75, + 2.47, + 2.0300000000000002, + 1.56, + 1.2, + 1.05, + 1.1400000000000001, + 1.26, + 1.34, + 1.37, + 1.32, + 1.33, + 1.32, + 1.29, + 1.27, + 1.18, + 1.05, + 0.92, + 0.8200000000000001, + 0.78, + 0.77, + 0.76, + 0.71, + 0.65, + 0.59, + 0.59, + 0.64, + 0.72, + 0.8300000000000001, + 0.88, + 0.96, + 1.0, + 1.05, + 1.1400000000000001, + 1.23, + 1.37, + 1.48, + 1.61, + 1.72, + 1.8, + 1.86, + 1.8900000000000001, + 1.98, + 2.14, + 2.31, + 2.5100000000000002, + 2.66, + 2.7600000000000002, + 2.87, + 2.97, + 3.06, + 3.04, + 2.96, + 2.79, + 2.69, + 2.57, + 2.34, + 2.12, + 1.9100000000000001, + 1.74, + 1.6600000000000001, + 1.61, + 1.6, + 1.62, + 1.6500000000000001, + 1.7, + 1.76, + 1.84, + 1.96, + 2.14, + 2.2600000000000002, + 2.2800000000000002, + 2.29, + 2.29, + 2.33, + 2.31, + 2.1, + 1.85, + 1.6300000000000001, + 1.44, + 1.4000000000000001, + 1.49, + 1.56, + 1.62, + 1.7, + 1.75, + 1.78, + 1.86, + 1.9000000000000001, + 1.8800000000000001, + 1.85, + 1.81, + 1.79, + 1.86, + 1.94, + 2.08, + 2.27, + 2.49, + 2.73, + 2.77, + 2.58, + 2.24, + 1.87, + 1.6300000000000001, + 1.49, + 1.42, + 1.43, + 1.56, + 1.73, + 1.94, + 2.13, + 2.22, + 2.22, + 2.12, + 2.0100000000000002, + 1.94, + 1.93, + 1.8900000000000001, + 1.79, + 1.6300000000000001, + 1.48, + 1.34, + 1.1500000000000001, + 0.98, + 0.8300000000000001, + 0.7000000000000001, + 0.68, + 0.71, + 0.86, + 1.06, + 1.26, + 1.41, + 1.49, + 1.52 + ], + [ + 4.47, + 4.51, + 4.65, + 4.68, + 4.69, + 4.68, + 4.64, + 4.55, + 4.44, + 4.28, + 4.13, + 3.95, + 3.8200000000000003, + 3.73, + 3.7, + 3.66, + 3.5700000000000003, + 3.48, + 3.43, + 3.42, + 3.42, + 3.4, + 3.37, + 3.33, + 3.2800000000000002, + 3.2600000000000002, + 3.29, + 3.38, + 3.54, + 3.7600000000000002, + 3.97, + 4.14, + 4.2, + 4.15, + 4.08, + 4.0, + 3.94, + 3.84, + 3.71, + 3.5300000000000002, + 3.36, + 3.2, + 3.0500000000000003, + 2.93, + 2.85, + 2.7800000000000002, + 2.65, + 2.5, + 2.27, + 2.0, + 1.81, + 1.74, + 1.73, + 1.82, + 1.9000000000000001, + 2.02, + 2.12, + 2.23, + 2.3000000000000003, + 2.37, + 2.41, + 2.41, + 2.33, + 2.2, + 2.05, + 1.9000000000000001, + 1.75, + 1.6, + 1.49, + 1.41, + 1.3800000000000001, + 1.3900000000000001, + 1.3800000000000001, + 1.36, + 1.42, + 1.54, + 1.54, + 1.49, + 1.3800000000000001, + 1.41, + 1.52, + 1.62, + 1.81, + 1.98, + 2.33, + 2.95, + 3.67, + 4.32, + 4.82, + 5.1000000000000005, + 5.28, + 5.45, + 5.64, + 5.74, + 5.75, + 5.65, + 5.41, + 5.3, + 5.4, + 5.78, + 6.2, + 6.33, + 6.2, + 5.92, + 5.91, + 6.04, + 6.51, + 6.75, + 6.66, + 6.33, + 5.59, + 4.96, + 4.39, + 3.89, + 3.43, + 3.12, + 2.95, + 2.82, + 2.7, + 2.57, + 2.44, + 2.32, + 2.17, + 2.0300000000000002, + 1.85, + 1.68, + 1.48, + 1.34, + 1.24, + 1.22, + 1.23, + 1.27, + 1.32, + 1.42, + 1.61, + 1.8900000000000001, + 2.27, + 2.69, + 3.0700000000000003, + 3.2800000000000002, + 3.35, + 3.49, + 3.77, + 4.23, + 4.66, + 4.54, + 4.3100000000000005, + 3.81, + 3.52, + 3.5300000000000002, + 3.89, + 4.63, + 5.33, + 5.82, + 6.0, + 6.03, + 6.03, + 6.13, + 6.11, + 6.05, + 6.01, + 6.0600000000000005, + 6.15, + 6.2, + 6.13, + 5.98, + 5.8100000000000005, + 5.65, + 5.39, + 5.17, + 4.99, + 4.89, + 4.78, + 4.61, + 4.46, + 4.26, + 3.98, + 3.77, + 3.5, + 3.33, + 3.36, + 3.5, + 3.75, + 4.08, + 4.3, + 4.46, + 4.5200000000000005, + 4.58, + 4.5600000000000005, + 4.3100000000000005, + 4.04, + 3.56, + 3.0500000000000003, + 2.71, + 2.45, + 2.24, + 2.18, + 2.14, + 2.05, + 1.94, + 1.82, + 1.8, + 1.86, + 1.84, + 1.84, + 1.82, + 1.96, + 2.18, + 2.4, + 2.59, + 2.7800000000000002, + 2.9, + 2.93, + 2.81, + 2.48, + 2.02, + 1.59, + 1.22, + 1.1, + 1.2, + 1.37, + 1.46, + 1.42, + 1.37, + 1.22, + 1.16, + 1.11, + 1.06, + 1.04, + 0.9500000000000001, + 0.8300000000000001, + 0.74, + 0.6900000000000001, + 0.68, + 0.67, + 0.63, + 0.58, + 0.54, + 0.54, + 0.59, + 0.67, + 0.7000000000000001, + 0.74, + 0.76, + 0.8, + 0.85, + 0.9500000000000001, + 1.11, + 1.27, + 1.47, + 1.6400000000000001, + 1.78, + 1.8900000000000001, + 1.95, + 1.97, + 2.0, + 2.08, + 2.24, + 2.4, + 2.56, + 2.69, + 2.81, + 2.96, + 3.06, + 3.12, + 3.04, + 2.95, + 2.85, + 2.71, + 2.46, + 2.13, + 1.8900000000000001, + 1.67, + 1.56, + 1.56, + 1.56, + 1.61, + 1.67, + 1.71, + 1.78, + 1.87, + 2.08, + 2.25, + 2.35, + 2.37, + 2.31, + 2.31, + 2.32, + 2.29, + 2.18, + 1.93, + 1.62, + 1.41, + 1.35, + 1.46, + 1.6400000000000001, + 1.75, + 1.84, + 1.8900000000000001, + 1.86, + 1.9100000000000001, + 1.97, + 1.97, + 1.94, + 1.87, + 1.84, + 1.85, + 1.93, + 2.09, + 2.2800000000000002, + 2.56, + 2.81, + 2.9, + 2.69, + 2.33, + 1.95, + 1.69, + 1.55, + 1.52, + 1.57, + 1.7, + 1.8800000000000001, + 2.06, + 2.22, + 2.3000000000000003, + 2.27, + 2.2, + 2.1, + 2.0300000000000002, + 1.97, + 1.93, + 1.84, + 1.69, + 1.53, + 1.3900000000000001, + 1.28, + 1.11, + 0.9400000000000001, + 0.81, + 0.71, + 0.75, + 0.85, + 1.04, + 1.22, + 1.36, + 1.43, + 1.43 + ], + [ + 4.47, + 4.5, + 4.64, + 4.69, + 4.71, + 4.7, + 4.65, + 4.5600000000000005, + 4.42, + 4.25, + 4.0600000000000005, + 3.86, + 3.71, + 3.62, + 3.6, + 3.5700000000000003, + 3.48, + 3.4, + 3.35, + 3.34, + 3.33, + 3.29, + 3.24, + 3.19, + 3.14, + 3.14, + 3.16, + 3.2600000000000002, + 3.41, + 3.6, + 3.84, + 3.99, + 4.08, + 4.07, + 4.01, + 3.94, + 3.88, + 3.79, + 3.63, + 3.5, + 3.33, + 3.2, + 3.08, + 3.02, + 2.99, + 2.96, + 2.86, + 2.67, + 2.39, + 2.09, + 1.9100000000000001, + 1.84, + 1.8900000000000001, + 1.99, + 2.13, + 2.25, + 2.38, + 2.49, + 2.5500000000000003, + 2.62, + 2.68, + 2.67, + 2.59, + 2.43, + 2.31, + 2.14, + 1.97, + 1.8, + 1.6400000000000001, + 1.54, + 1.5, + 1.51, + 1.53, + 1.54, + 1.55, + 1.6, + 1.58, + 1.3900000000000001, + 1.25, + 1.26, + 1.37, + 1.61, + 1.83, + 2.08, + 2.47, + 3.0, + 3.72, + 4.39, + 4.84, + 5.11, + 5.24, + 5.38, + 5.5200000000000005, + 5.67, + 5.74, + 5.65, + 5.49, + 5.32, + 5.45, + 5.82, + 6.11, + 6.29, + 6.12, + 5.82, + 5.62, + 5.72, + 5.87, + 6.0600000000000005, + 6.0, + 5.66, + 5.29, + 4.79, + 4.39, + 3.92, + 3.5300000000000002, + 3.3000000000000003, + 3.15, + 3.0500000000000003, + 2.93, + 2.81, + 2.67, + 2.5100000000000002, + 2.36, + 2.15, + 1.95, + 1.7, + 1.49, + 1.3, + 1.2, + 1.1500000000000001, + 1.1500000000000001, + 1.1500000000000001, + 1.19, + 1.29, + 1.51, + 1.86, + 2.31, + 2.8000000000000003, + 3.22, + 3.56, + 3.8000000000000003, + 3.91, + 4.13, + 4.55, + 4.61, + 4.51, + 3.96, + 3.42, + 3.16, + 3.16, + 3.66, + 4.46, + 5.21, + 5.67, + 5.8, + 5.8100000000000005, + 5.9, + 6.0600000000000005, + 6.18, + 6.15, + 6.140000000000001, + 6.24, + 6.37, + 6.44, + 6.43, + 6.3, + 6.11, + 5.84, + 5.5600000000000005, + 5.3, + 5.1000000000000005, + 4.96, + 4.8500000000000005, + 4.73, + 4.59, + 4.36, + 4.0600000000000005, + 3.68, + 3.36, + 3.16, + 3.21, + 3.5, + 3.88, + 4.26, + 4.5200000000000005, + 4.69, + 4.7700000000000005, + 4.78, + 4.53, + 4.23, + 3.7800000000000002, + 3.3200000000000003, + 3.0300000000000002, + 2.67, + 2.36, + 2.14, + 2.0, + 1.97, + 1.95, + 1.8800000000000001, + 1.8800000000000001, + 1.96, + 1.99, + 2.0, + 1.8900000000000001, + 1.87, + 1.92, + 2.14, + 2.35, + 2.58, + 2.8000000000000003, + 2.97, + 3.0300000000000002, + 2.87, + 2.5500000000000003, + 2.17, + 1.72, + 1.3800000000000001, + 1.27, + 1.33, + 1.51, + 1.61, + 1.56, + 1.41, + 1.24, + 1.02, + 0.92, + 0.85, + 0.8200000000000001, + 0.8, + 0.7000000000000001, + 0.62, + 0.59, + 0.58, + 0.5700000000000001, + 0.54, + 0.48, + 0.45, + 0.45, + 0.5, + 0.54, + 0.5700000000000001, + 0.6, + 0.61, + 0.64, + 0.71, + 0.8200000000000001, + 1.02, + 1.24, + 1.48, + 1.69, + 1.85, + 1.97, + 2.02, + 2.0300000000000002, + 2.0300000000000002, + 2.07, + 2.19, + 2.33, + 2.48, + 2.61, + 2.7800000000000002, + 2.94, + 3.08, + 3.15, + 3.18, + 3.1, + 3.04, + 2.91, + 2.61, + 2.2600000000000002, + 1.8900000000000001, + 1.6300000000000001, + 1.43, + 1.3900000000000001, + 1.43, + 1.5, + 1.62, + 1.71, + 1.8, + 1.99, + 2.19, + 2.36, + 2.46, + 2.43, + 2.36, + 2.29, + 2.3000000000000003, + 2.2600000000000002, + 2.15, + 1.9000000000000001, + 1.56, + 1.34, + 1.31, + 1.44, + 1.6500000000000001, + 1.86, + 1.98, + 2.05, + 2.0300000000000002, + 2.0100000000000002, + 1.99, + 2.0, + 1.93, + 1.87, + 1.85, + 1.84, + 1.9100000000000001, + 2.07, + 2.3000000000000003, + 2.58, + 2.84, + 2.92, + 2.77, + 2.37, + 1.98, + 1.75, + 1.6, + 1.58, + 1.6500000000000001, + 1.8, + 1.99, + 2.16, + 2.3000000000000003, + 2.33, + 2.31, + 2.2600000000000002, + 2.16, + 2.0300000000000002, + 1.97, + 1.8800000000000001, + 1.81, + 1.68, + 1.53, + 1.43, + 1.31, + 1.24, + 1.08, + 0.92, + 0.8200000000000001, + 0.79, + 0.9, + 1.06, + 1.23, + 1.34, + 1.3900000000000001, + 1.3800000000000001 + ], + [ + 4.48, + 4.53, + 4.68, + 4.71, + 4.73, + 4.71, + 4.66, + 4.55, + 4.41, + 4.22, + 4.01, + 3.81, + 3.65, + 3.56, + 3.54, + 3.52, + 3.44, + 3.33, + 3.2800000000000002, + 3.2600000000000002, + 3.24, + 3.21, + 3.16, + 3.11, + 3.1, + 3.08, + 3.12, + 3.18, + 3.3000000000000003, + 3.47, + 3.64, + 3.81, + 3.89, + 3.89, + 3.83, + 3.77, + 3.69, + 3.59, + 3.5, + 3.36, + 3.2800000000000002, + 3.17, + 3.1, + 3.08, + 3.1, + 3.09, + 3.04, + 2.82, + 2.5300000000000002, + 2.22, + 2.0100000000000002, + 1.98, + 2.0300000000000002, + 2.16, + 2.32, + 2.46, + 2.6, + 2.66, + 2.72, + 2.72, + 2.75, + 2.75, + 2.62, + 2.58, + 2.43, + 2.33, + 2.16, + 1.99, + 1.81, + 1.6600000000000001, + 1.62, + 1.62, + 1.6600000000000001, + 1.69, + 1.7, + 1.73, + 1.6, + 1.3800000000000001, + 1.22, + 1.2, + 1.45, + 1.72, + 2.0300000000000002, + 2.31, + 2.59, + 3.15, + 3.7600000000000002, + 4.41, + 4.86, + 5.05, + 5.12, + 5.2, + 5.37, + 5.57, + 5.73, + 5.75, + 5.6000000000000005, + 5.48, + 5.51, + 5.66, + 5.99, + 6.0, + 5.8500000000000005, + 5.63, + 5.39, + 5.36, + 5.5, + 5.5, + 5.42, + 5.2, + 4.89, + 4.6000000000000005, + 4.26, + 3.92, + 3.64, + 3.44, + 3.36, + 3.27, + 3.18, + 3.06, + 2.9, + 2.73, + 2.5, + 2.29, + 2.0100000000000002, + 1.74, + 1.47, + 1.27, + 1.1300000000000001, + 1.08, + 1.05, + 1.04, + 1.03, + 1.1400000000000001, + 1.3900000000000001, + 1.82, + 2.37, + 2.92, + 3.44, + 3.89, + 4.18, + 4.25, + 4.39, + 4.46, + 4.5600000000000005, + 4.19, + 3.64, + 3.24, + 2.95, + 3.17, + 3.73, + 4.45, + 5.22, + 5.63, + 5.7, + 5.65, + 5.8, + 6.03, + 6.16, + 6.25, + 6.3100000000000005, + 6.4, + 6.53, + 6.640000000000001, + 6.640000000000001, + 6.55, + 6.33, + 6.0600000000000005, + 5.78, + 5.5, + 5.25, + 5.09, + 4.95, + 4.83, + 4.65, + 4.39, + 3.99, + 3.5500000000000003, + 3.18, + 3.0, + 3.0500000000000003, + 3.43, + 3.93, + 4.34, + 4.68, + 4.83, + 4.92, + 4.76, + 4.49, + 4.01, + 3.54, + 3.3200000000000003, + 3.04, + 2.77, + 2.44, + 2.19, + 2.05, + 1.97, + 1.98, + 2.0100000000000002, + 2.09, + 2.22, + 2.27, + 2.22, + 2.09, + 2.0, + 2.09, + 2.22, + 2.41, + 2.63, + 2.89, + 3.08, + 3.1, + 2.98, + 2.74, + 2.37, + 1.95, + 1.59, + 1.42, + 1.5, + 1.6, + 1.67, + 1.71, + 1.54, + 1.32, + 1.09, + 0.8200000000000001, + 0.74, + 0.66, + 0.63, + 0.56, + 0.51, + 0.49, + 0.49, + 0.47000000000000003, + 0.42, + 0.36, + 0.32, + 0.33, + 0.34, + 0.38, + 0.44, + 0.48, + 0.55, + 0.6, + 0.68, + 0.84, + 1.02, + 1.29, + 1.54, + 1.76, + 1.92, + 2.02, + 2.09, + 2.09, + 2.07, + 2.14, + 2.22, + 2.33, + 2.46, + 2.6, + 2.7600000000000002, + 2.95, + 3.11, + 3.25, + 3.3000000000000003, + 3.34, + 3.3000000000000003, + 3.18, + 2.85, + 2.4, + 2.02, + 1.6300000000000001, + 1.41, + 1.24, + 1.24, + 1.35, + 1.51, + 1.67, + 1.86, + 2.06, + 2.3000000000000003, + 2.48, + 2.5, + 2.47, + 2.42, + 2.34, + 2.24, + 2.19, + 2.0300000000000002, + 1.75, + 1.45, + 1.26, + 1.27, + 1.47, + 1.6600000000000001, + 1.86, + 2.08, + 2.17, + 2.16, + 2.07, + 2.0100000000000002, + 1.95, + 1.9000000000000001, + 1.8800000000000001, + 1.85, + 1.87, + 1.92, + 2.06, + 2.3000000000000003, + 2.58, + 2.83, + 2.96, + 2.77, + 2.43, + 2.06, + 1.8, + 1.69, + 1.62, + 1.71, + 1.85, + 2.02, + 2.21, + 2.31, + 2.34, + 2.33, + 2.29, + 2.13, + 2.0, + 1.87, + 1.78, + 1.7, + 1.58, + 1.48, + 1.3900000000000001, + 1.37, + 1.3, + 1.2, + 1.04, + 0.89, + 0.86, + 0.9400000000000001, + 1.1, + 1.26, + 1.36, + 1.41, + 1.41 + ], + [ + 4.48, + 4.5, + 4.65, + 4.7, + 4.72, + 4.72, + 4.65, + 4.55, + 4.39, + 4.19, + 3.97, + 3.7600000000000002, + 3.6, + 3.5100000000000002, + 3.5, + 3.49, + 3.42, + 3.31, + 3.21, + 3.2, + 3.19, + 3.17, + 3.15, + 3.15, + 3.12, + 3.14, + 3.14, + 3.17, + 3.23, + 3.3200000000000003, + 3.47, + 3.61, + 3.71, + 3.7, + 3.63, + 3.5300000000000002, + 3.45, + 3.37, + 3.29, + 3.23, + 3.16, + 3.12, + 3.09, + 3.1, + 3.14, + 3.19, + 3.1, + 2.95, + 2.61, + 2.29, + 2.11, + 2.07, + 2.15, + 2.2800000000000002, + 2.41, + 2.58, + 2.66, + 2.72, + 2.65, + 2.61, + 2.59, + 2.5300000000000002, + 2.52, + 2.47, + 2.5300000000000002, + 2.45, + 2.35, + 2.18, + 2.0, + 1.8800000000000001, + 1.77, + 1.78, + 1.8, + 1.8, + 1.81, + 1.72, + 1.61, + 1.36, + 1.17, + 1.31, + 1.6, + 1.98, + 2.32, + 2.62, + 2.91, + 3.27, + 3.88, + 4.44, + 4.8, + 4.99, + 4.95, + 4.98, + 5.17, + 5.44, + 5.66, + 5.8100000000000005, + 5.73, + 5.57, + 5.48, + 5.5600000000000005, + 5.53, + 5.58, + 5.51, + 5.3, + 5.26, + 5.26, + 5.24, + 5.22, + 5.0600000000000005, + 4.88, + 4.64, + 4.45, + 4.23, + 4.0, + 3.75, + 3.66, + 3.58, + 3.52, + 3.44, + 3.33, + 3.17, + 2.94, + 2.69, + 2.39, + 2.08, + 1.76, + 1.47, + 1.24, + 1.1, + 1.02, + 0.99, + 0.9400000000000001, + 0.93, + 0.97, + 1.28, + 1.78, + 2.43, + 3.0700000000000003, + 3.65, + 4.18, + 4.34, + 4.43, + 4.37, + 4.41, + 4.29, + 3.95, + 3.46, + 3.0700000000000003, + 3.19, + 3.44, + 3.98, + 4.75, + 5.32, + 5.66, + 5.72, + 5.67, + 5.67, + 5.93, + 6.18, + 6.3100000000000005, + 6.45, + 6.59, + 6.7, + 6.7700000000000005, + 6.82, + 6.71, + 6.54, + 6.29, + 6.0200000000000005, + 5.69, + 5.41, + 5.18, + 5.04, + 4.88, + 4.68, + 4.3100000000000005, + 3.83, + 3.35, + 2.98, + 2.8000000000000003, + 2.96, + 3.3200000000000003, + 3.85, + 4.38, + 4.7, + 4.91, + 4.89, + 4.75, + 4.33, + 3.84, + 3.5700000000000003, + 3.35, + 3.17, + 2.91, + 2.67, + 2.41, + 2.22, + 2.15, + 2.09, + 2.15, + 2.2800000000000002, + 2.41, + 2.5, + 2.37, + 2.2800000000000002, + 2.25, + 2.29, + 2.41, + 2.5300000000000002, + 2.7600000000000002, + 3.02, + 3.19, + 3.24, + 3.17, + 2.96, + 2.66, + 2.23, + 1.8800000000000001, + 1.69, + 1.6300000000000001, + 1.72, + 1.74, + 1.77, + 1.75, + 1.54, + 1.28, + 1.04, + 0.75, + 0.67, + 0.55, + 0.48, + 0.41000000000000003, + 0.4, + 0.4, + 0.39, + 0.33, + 0.28, + 0.23, + 0.22, + 0.23, + 0.27, + 0.34, + 0.43, + 0.52, + 0.65, + 0.78, + 0.93, + 1.1500000000000001, + 1.37, + 1.62, + 1.83, + 1.96, + 2.05, + 2.1, + 2.15, + 2.19, + 2.23, + 2.32, + 2.39, + 2.47, + 2.6, + 2.77, + 2.97, + 3.17, + 3.34, + 3.5100000000000002, + 3.5700000000000003, + 3.5700000000000003, + 3.43, + 3.13, + 2.66, + 2.18, + 1.78, + 1.41, + 1.21, + 1.08, + 1.18, + 1.3800000000000001, + 1.61, + 1.85, + 2.15, + 2.41, + 2.54, + 2.56, + 2.5300000000000002, + 2.49, + 2.37, + 2.24, + 2.06, + 1.87, + 1.6, + 1.31, + 1.16, + 1.27, + 1.47, + 1.6600000000000001, + 1.86, + 2.1, + 2.2800000000000002, + 2.22, + 2.11, + 2.0, + 1.93, + 1.8900000000000001, + 1.8800000000000001, + 1.8800000000000001, + 1.8900000000000001, + 1.96, + 2.08, + 2.27, + 2.56, + 2.81, + 2.92, + 2.84, + 2.47, + 2.11, + 1.8800000000000001, + 1.76, + 1.72, + 1.73, + 1.85, + 2.0, + 2.17, + 2.31, + 2.31, + 2.3000000000000003, + 2.16, + 2.02, + 1.86, + 1.73, + 1.6400000000000001, + 1.56, + 1.52, + 1.43, + 1.41, + 1.43, + 1.4000000000000001, + 1.29, + 1.11, + 0.9400000000000001, + 0.86, + 0.9400000000000001, + 1.1, + 1.24, + 1.3800000000000001, + 1.43, + 1.45 + ], + [ + 4.49, + 4.53, + 4.68, + 4.69, + 4.71, + 4.69, + 4.65, + 4.53, + 4.37, + 4.15, + 3.92, + 3.7, + 3.5300000000000002, + 3.46, + 3.47, + 3.49, + 3.41, + 3.3000000000000003, + 3.23, + 3.18, + 3.2, + 3.2, + 3.23, + 3.24, + 3.25, + 3.24, + 3.21, + 3.19, + 3.19, + 3.23, + 3.33, + 3.47, + 3.54, + 3.5300000000000002, + 3.44, + 3.33, + 3.22, + 3.15, + 3.08, + 3.0500000000000003, + 3.04, + 3.02, + 3.04, + 3.08, + 3.15, + 3.17, + 3.15, + 2.91, + 2.63, + 2.31, + 2.1, + 2.1, + 2.19, + 2.3000000000000003, + 2.44, + 2.5100000000000002, + 2.6, + 2.57, + 2.44, + 2.31, + 2.25, + 2.25, + 2.2600000000000002, + 2.35, + 2.49, + 2.6, + 2.52, + 2.39, + 2.24, + 2.1, + 2.0100000000000002, + 1.97, + 1.94, + 1.92, + 1.81, + 1.72, + 1.51, + 1.26, + 1.21, + 1.3900000000000001, + 1.77, + 2.2, + 2.57, + 2.86, + 3.13, + 3.45, + 3.92, + 4.39, + 4.73, + 4.74, + 4.74, + 4.79, + 4.93, + 5.22, + 5.5600000000000005, + 5.7, + 5.76, + 5.61, + 5.44, + 5.22, + 5.1000000000000005, + 5.07, + 5.0600000000000005, + 5.11, + 5.16, + 5.22, + 5.19, + 5.1000000000000005, + 4.95, + 4.74, + 4.58, + 4.43, + 4.32, + 4.16, + 4.0200000000000005, + 3.89, + 3.83, + 3.77, + 3.74, + 3.64, + 3.44, + 3.19, + 2.85, + 2.52, + 2.15, + 1.8, + 1.48, + 1.23, + 1.08, + 1.02, + 0.97, + 0.91, + 0.81, + 0.88, + 1.1, + 1.71, + 2.46, + 3.11, + 3.77, + 4.16, + 4.43, + 4.33, + 4.2700000000000005, + 4.23, + 4.14, + 3.75, + 3.24, + 3.15, + 3.38, + 3.88, + 4.43, + 5.0, + 5.5200000000000005, + 5.83, + 5.82, + 5.7, + 5.76, + 5.8500000000000005, + 6.1000000000000005, + 6.3500000000000005, + 6.54, + 6.74, + 6.82, + 6.88, + 6.86, + 6.83, + 6.68, + 6.46, + 6.16, + 5.83, + 5.47, + 5.22, + 5.1000000000000005, + 4.94, + 4.58, + 4.13, + 3.62, + 3.12, + 2.77, + 2.7, + 2.82, + 3.3200000000000003, + 3.8200000000000003, + 4.38, + 4.76, + 4.88, + 4.9, + 4.59, + 4.19, + 3.83, + 3.56, + 3.41, + 3.27, + 3.09, + 2.88, + 2.72, + 2.5100000000000002, + 2.33, + 2.2600000000000002, + 2.23, + 2.36, + 2.5100000000000002, + 2.52, + 2.52, + 2.45, + 2.46, + 2.5500000000000003, + 2.64, + 2.7800000000000002, + 2.94, + 3.17, + 3.38, + 3.46, + 3.42, + 3.3000000000000003, + 3.0300000000000002, + 2.7, + 2.31, + 2.09, + 2.02, + 1.92, + 1.93, + 1.9000000000000001, + 1.9000000000000001, + 1.84, + 1.59, + 1.31, + 1.02, + 0.75, + 0.58, + 0.44, + 0.36, + 0.32, + 0.33, + 0.33, + 0.27, + 0.21, + 0.19, + 0.16, + 0.19, + 0.22, + 0.3, + 0.42, + 0.56, + 0.73, + 0.92, + 1.1, + 1.28, + 1.49, + 1.68, + 1.84, + 1.98, + 2.04, + 2.09, + 2.16, + 2.2600000000000002, + 2.35, + 2.43, + 2.45, + 2.5, + 2.6, + 2.7800000000000002, + 2.99, + 3.21, + 3.47, + 3.68, + 3.79, + 3.79, + 3.71, + 3.36, + 2.94, + 2.45, + 1.93, + 1.56, + 1.2, + 1.07, + 1.03, + 1.27, + 1.52, + 1.84, + 2.19, + 2.5, + 2.65, + 2.63, + 2.6, + 2.52, + 2.39, + 2.19, + 1.97, + 1.72, + 1.44, + 1.2, + 1.1400000000000001, + 1.2, + 1.4000000000000001, + 1.67, + 1.9100000000000001, + 2.13, + 2.24, + 2.2600000000000002, + 2.1, + 1.98, + 1.92, + 1.8800000000000001, + 1.87, + 1.8900000000000001, + 1.96, + 2.02, + 2.14, + 2.3000000000000003, + 2.5, + 2.75, + 2.86, + 2.74, + 2.5100000000000002, + 2.15, + 1.8900000000000001, + 1.79, + 1.74, + 1.74, + 1.8, + 1.92, + 2.12, + 2.2, + 2.24, + 2.14, + 2.0100000000000002, + 1.85, + 1.69, + 1.6400000000000001, + 1.54, + 1.51, + 1.5, + 1.49, + 1.5, + 1.51, + 1.48, + 1.36, + 1.12, + 0.9, + 0.81, + 0.87, + 1.01, + 1.19, + 1.32, + 1.42, + 1.3800000000000001 + ], + [ + 4.49, + 4.49, + 4.62, + 4.66, + 4.67, + 4.68, + 4.61, + 4.5, + 4.32, + 4.1, + 3.86, + 3.63, + 3.47, + 3.42, + 3.44, + 3.48, + 3.46, + 3.35, + 3.2600000000000002, + 3.24, + 3.24, + 3.27, + 3.31, + 3.33, + 3.37, + 3.33, + 3.29, + 3.23, + 3.18, + 3.2, + 3.25, + 3.35, + 3.42, + 3.39, + 3.29, + 3.17, + 3.0500000000000003, + 2.94, + 2.88, + 2.85, + 2.85, + 2.91, + 2.95, + 3.0300000000000002, + 3.0700000000000003, + 3.13, + 3.02, + 2.86, + 2.5500000000000003, + 2.23, + 2.1, + 2.07, + 2.16, + 2.27, + 2.32, + 2.37, + 2.36, + 2.3000000000000003, + 2.19, + 2.0100000000000002, + 1.95, + 2.0100000000000002, + 2.09, + 2.3000000000000003, + 2.5100000000000002, + 2.67, + 2.73, + 2.6, + 2.46, + 2.32, + 2.22, + 2.12, + 2.08, + 1.97, + 1.84, + 1.6600000000000001, + 1.43, + 1.25, + 1.2, + 1.44, + 1.8800000000000001, + 2.2800000000000002, + 2.65, + 2.95, + 3.16, + 3.45, + 3.87, + 4.29, + 4.44, + 4.49, + 4.47, + 4.5200000000000005, + 4.7, + 4.96, + 5.26, + 5.54, + 5.57, + 5.5200000000000005, + 5.21, + 4.87, + 4.74, + 4.67, + 4.76, + 4.93, + 5.08, + 5.2, + 5.21, + 5.09, + 4.95, + 4.7700000000000005, + 4.59, + 4.53, + 4.48, + 4.38, + 4.28, + 4.17, + 4.08, + 4.1, + 4.09, + 3.96, + 3.75, + 3.4, + 3.0300000000000002, + 2.63, + 2.23, + 1.84, + 1.5, + 1.24, + 1.1, + 1.04, + 1.0, + 0.9, + 0.79, + 0.73, + 1.04, + 1.55, + 2.32, + 3.08, + 3.67, + 4.15, + 4.2, + 4.15, + 4.0200000000000005, + 4.01, + 3.87, + 3.52, + 3.18, + 3.14, + 3.6, + 4.21, + 4.79, + 5.3100000000000005, + 5.74, + 5.98, + 6.08, + 5.97, + 5.83, + 5.93, + 6.03, + 6.3, + 6.59, + 6.76, + 6.9, + 6.87, + 6.87, + 6.83, + 6.76, + 6.54, + 6.26, + 5.88, + 5.49, + 5.29, + 5.2, + 4.92, + 4.46, + 3.92, + 3.36, + 2.91, + 2.67, + 2.62, + 2.97, + 3.38, + 4.01, + 4.51, + 4.79, + 4.93, + 4.76, + 4.49, + 4.12, + 3.75, + 3.5100000000000002, + 3.4, + 3.2600000000000002, + 3.14, + 3.06, + 2.94, + 2.7800000000000002, + 2.56, + 2.41, + 2.36, + 2.37, + 2.49, + 2.5500000000000003, + 2.5500000000000003, + 2.58, + 2.64, + 2.8000000000000003, + 2.92, + 3.02, + 3.19, + 3.39, + 3.58, + 3.72, + 3.72, + 3.67, + 3.49, + 3.19, + 2.92, + 2.68, + 2.5, + 2.34, + 2.18, + 2.15, + 2.08, + 2.02, + 1.8900000000000001, + 1.57, + 1.21, + 0.88, + 0.62, + 0.45, + 0.32, + 0.31, + 0.29, + 0.25, + 0.21, + 0.16, + 0.15, + 0.18, + 0.19, + 0.26, + 0.34, + 0.47000000000000003, + 0.64, + 0.8300000000000001, + 1.04, + 1.24, + 1.42, + 1.59, + 1.73, + 1.85, + 1.97, + 2.02, + 2.1, + 2.17, + 2.3000000000000003, + 2.44, + 2.48, + 2.5, + 2.5300000000000002, + 2.6, + 2.75, + 2.97, + 3.25, + 3.56, + 3.8200000000000003, + 3.94, + 3.96, + 3.86, + 3.66, + 3.22, + 2.75, + 2.23, + 1.71, + 1.3800000000000001, + 1.08, + 1.1500000000000001, + 1.25, + 1.52, + 1.81, + 2.2600000000000002, + 2.65, + 2.7800000000000002, + 2.73, + 2.66, + 2.58, + 2.4, + 2.16, + 1.8900000000000001, + 1.62, + 1.35, + 1.16, + 1.06, + 1.1500000000000001, + 1.31, + 1.62, + 1.93, + 2.1, + 2.2600000000000002, + 2.18, + 2.05, + 1.96, + 1.8800000000000001, + 1.85, + 1.85, + 1.93, + 2.02, + 2.12, + 2.21, + 2.32, + 2.49, + 2.62, + 2.7, + 2.66, + 2.41, + 2.13, + 1.9000000000000001, + 1.76, + 1.67, + 1.6600000000000001, + 1.68, + 1.77, + 1.92, + 2.09, + 2.08, + 2.0, + 1.8900000000000001, + 1.71, + 1.6600000000000001, + 1.6300000000000001, + 1.59, + 1.55, + 1.5, + 1.52, + 1.53, + 1.54, + 1.51, + 1.33, + 1.07, + 0.8, + 0.66, + 0.73, + 0.89, + 1.05, + 1.23, + 1.29, + 1.3 + ], + [ + 4.48, + 4.5200000000000005, + 4.66, + 4.64, + 4.66, + 4.63, + 4.57, + 4.43, + 4.25, + 4.03, + 3.79, + 3.58, + 3.42, + 3.37, + 3.43, + 3.5, + 3.47, + 3.4, + 3.3200000000000003, + 3.2800000000000002, + 3.2800000000000002, + 3.3000000000000003, + 3.3200000000000003, + 3.37, + 3.36, + 3.38, + 3.33, + 3.27, + 3.21, + 3.18, + 3.22, + 3.29, + 3.31, + 3.2800000000000002, + 3.17, + 3.02, + 2.86, + 2.73, + 2.64, + 2.62, + 2.64, + 2.72, + 2.82, + 2.87, + 2.95, + 2.91, + 2.89, + 2.67, + 2.44, + 2.24, + 2.06, + 2.08, + 2.14, + 2.19, + 2.19, + 2.18, + 2.14, + 2.11, + 2.0, + 1.9000000000000001, + 1.9000000000000001, + 1.96, + 2.16, + 2.34, + 2.62, + 2.83, + 2.86, + 2.81, + 2.65, + 2.5, + 2.34, + 2.23, + 2.1, + 2.0100000000000002, + 1.83, + 1.6300000000000001, + 1.45, + 1.24, + 1.28, + 1.53, + 1.86, + 2.24, + 2.6, + 2.88, + 3.11, + 3.38, + 3.73, + 4.04, + 4.21, + 4.18, + 4.14, + 4.26, + 4.42, + 4.7, + 4.98, + 5.21, + 5.37, + 5.21, + 4.91, + 4.71, + 4.5200000000000005, + 4.59, + 4.71, + 4.88, + 5.09, + 5.19, + 5.21, + 5.13, + 4.99, + 4.84, + 4.71, + 4.63, + 4.61, + 4.6000000000000005, + 4.51, + 4.44, + 4.43, + 4.46, + 4.42, + 4.33, + 4.01, + 3.64, + 3.19, + 2.75, + 2.32, + 1.9000000000000001, + 1.55, + 1.29, + 1.1400000000000001, + 1.1, + 1.05, + 0.92, + 0.79, + 0.74, + 0.85, + 1.49, + 2.19, + 3.0, + 3.64, + 3.93, + 4.03, + 3.8200000000000003, + 3.65, + 3.62, + 3.61, + 3.2800000000000002, + 2.93, + 3.14, + 3.7600000000000002, + 4.48, + 5.0600000000000005, + 5.5200000000000005, + 5.89, + 6.19, + 6.28, + 6.3100000000000005, + 6.16, + 6.03, + 6.13, + 6.24, + 6.5200000000000005, + 6.76, + 6.8, + 6.8100000000000005, + 6.8, + 6.82, + 6.75, + 6.59, + 6.26, + 5.88, + 5.59, + 5.41, + 5.19, + 4.8500000000000005, + 4.33, + 3.71, + 3.18, + 2.82, + 2.59, + 2.77, + 3.15, + 3.71, + 4.28, + 4.63, + 4.93, + 4.84, + 4.7, + 4.38, + 4.03, + 3.69, + 3.42, + 3.27, + 3.15, + 3.1, + 3.11, + 3.08, + 2.94, + 2.7800000000000002, + 2.61, + 2.5, + 2.5100000000000002, + 2.5100000000000002, + 2.5500000000000003, + 2.56, + 2.61, + 2.72, + 2.91, + 3.19, + 3.33, + 3.45, + 3.64, + 3.84, + 3.96, + 4.0200000000000005, + 3.97, + 3.89, + 3.71, + 3.49, + 3.2800000000000002, + 3.0500000000000003, + 2.82, + 2.6, + 2.42, + 2.32, + 2.19, + 2.04, + 1.8, + 1.3800000000000001, + 0.9500000000000001, + 0.72, + 0.47000000000000003, + 0.42, + 0.34, + 0.28, + 0.21, + 0.14, + 0.09, + 0.13, + 0.19, + 0.28, + 0.35000000000000003, + 0.45, + 0.58, + 0.73, + 0.93, + 1.1500000000000001, + 1.36, + 1.55, + 1.7, + 1.82, + 1.94, + 2.02, + 2.12, + 2.14, + 2.25, + 2.35, + 2.46, + 2.5300000000000002, + 2.54, + 2.54, + 2.59, + 2.7, + 2.93, + 3.25, + 3.59, + 3.88, + 4.07, + 4.08, + 4.0, + 3.81, + 3.52, + 3.04, + 2.54, + 2.0300000000000002, + 1.58, + 1.41, + 1.3, + 1.43, + 1.56, + 1.94, + 2.39, + 2.77, + 2.96, + 2.93, + 2.82, + 2.67, + 2.45, + 2.21, + 1.92, + 1.6, + 1.36, + 1.17, + 1.1300000000000001, + 1.1, + 1.32, + 1.56, + 1.86, + 2.08, + 2.15, + 2.14, + 2.04, + 1.93, + 1.87, + 1.82, + 1.85, + 1.95, + 2.08, + 2.19, + 2.2600000000000002, + 2.34, + 2.43, + 2.5100000000000002, + 2.54, + 2.5, + 2.33, + 2.06, + 1.81, + 1.6400000000000001, + 1.53, + 1.53, + 1.51, + 1.62, + 1.71, + 1.8800000000000001, + 1.95, + 1.93, + 1.83, + 1.76, + 1.72, + 1.69, + 1.6600000000000001, + 1.56, + 1.48, + 1.45, + 1.46, + 1.49, + 1.44, + 1.28, + 0.9500000000000001, + 0.62, + 0.5, + 0.51, + 0.67, + 0.88, + 1.06, + 1.2, + 1.17 + ], + [ + 4.47, + 4.47, + 4.57, + 4.59, + 4.59, + 4.58, + 4.49, + 4.36, + 4.17, + 3.95, + 3.72, + 3.5100000000000002, + 3.38, + 3.35, + 3.39, + 3.47, + 3.49, + 3.42, + 3.34, + 3.3000000000000003, + 3.2800000000000002, + 3.2600000000000002, + 3.27, + 3.29, + 3.33, + 3.35, + 3.36, + 3.3000000000000003, + 3.23, + 3.21, + 3.22, + 3.23, + 3.22, + 3.15, + 3.0300000000000002, + 2.87, + 2.68, + 2.5300000000000002, + 2.43, + 2.37, + 2.43, + 2.5, + 2.6, + 2.68, + 2.67, + 2.68, + 2.61, + 2.49, + 2.35, + 2.21, + 2.15, + 2.12, + 2.16, + 2.18, + 2.17, + 2.1, + 2.1, + 2.11, + 2.09, + 2.06, + 2.06, + 2.2, + 2.35, + 2.57, + 2.7800000000000002, + 2.95, + 3.0500000000000003, + 2.95, + 2.81, + 2.61, + 2.42, + 2.23, + 2.08, + 1.94, + 1.8, + 1.6600000000000001, + 1.5, + 1.42, + 1.43, + 1.6300000000000001, + 1.8900000000000001, + 2.18, + 2.5300000000000002, + 2.81, + 3.0300000000000002, + 3.2600000000000002, + 3.58, + 3.85, + 3.95, + 3.92, + 3.95, + 3.97, + 4.22, + 4.45, + 4.75, + 4.98, + 5.01, + 4.92, + 4.76, + 4.59, + 4.62, + 4.73, + 4.89, + 5.05, + 5.19, + 5.26, + 5.24, + 5.16, + 5.05, + 4.9, + 4.79, + 4.75, + 4.74, + 4.73, + 4.73, + 4.7, + 4.74, + 4.75, + 4.78, + 4.57, + 4.2700000000000005, + 3.8200000000000003, + 3.34, + 2.88, + 2.41, + 2.0, + 1.6300000000000001, + 1.37, + 1.23, + 1.1400000000000001, + 1.08, + 0.97, + 0.8200000000000001, + 0.74, + 0.97, + 1.42, + 2.23, + 3.04, + 3.5500000000000003, + 3.88, + 3.72, + 3.46, + 3.33, + 3.2600000000000002, + 3.17, + 2.92, + 2.79, + 3.08, + 3.83, + 4.66, + 5.25, + 5.63, + 5.95, + 6.21, + 6.46, + 6.51, + 6.5200000000000005, + 6.3500000000000005, + 6.22, + 6.33, + 6.49, + 6.65, + 6.72, + 6.7, + 6.7, + 6.75, + 6.76, + 6.54, + 6.22, + 5.88, + 5.64, + 5.41, + 5.14, + 4.73, + 4.12, + 3.5700000000000003, + 3.14, + 2.79, + 2.68, + 2.8000000000000003, + 3.34, + 3.97, + 4.39, + 4.8, + 4.8100000000000005, + 4.79, + 4.54, + 4.28, + 3.94, + 3.59, + 3.36, + 3.16, + 3.09, + 3.06, + 3.1, + 3.15, + 3.09, + 2.96, + 2.85, + 2.7600000000000002, + 2.69, + 2.65, + 2.6, + 2.6, + 2.59, + 2.7600000000000002, + 2.95, + 3.2800000000000002, + 3.6, + 3.74, + 3.92, + 4.09, + 4.24, + 4.2700000000000005, + 4.26, + 4.19, + 4.1, + 3.95, + 3.7800000000000002, + 3.5700000000000003, + 3.2800000000000002, + 3.02, + 2.7800000000000002, + 2.59, + 2.43, + 2.2600000000000002, + 2.0, + 1.61, + 1.26, + 0.87, + 0.77, + 0.59, + 0.49, + 0.34, + 0.22, + 0.09, + 0.09, + 0.14, + 0.27, + 0.4, + 0.51, + 0.62, + 0.74, + 0.88, + 1.04, + 1.26, + 1.47, + 1.6600000000000001, + 1.83, + 1.94, + 2.08, + 2.2, + 2.3000000000000003, + 2.34, + 2.36, + 2.44, + 2.5100000000000002, + 2.56, + 2.57, + 2.56, + 2.5500000000000003, + 2.66, + 2.89, + 3.21, + 3.58, + 3.9, + 4.12, + 4.21, + 4.13, + 3.96, + 3.68, + 3.33, + 2.81, + 2.32, + 1.97, + 1.69, + 1.6400000000000001, + 1.6400000000000001, + 1.83, + 2.07, + 2.5300000000000002, + 3.0100000000000002, + 3.13, + 3.12, + 3.02, + 2.83, + 2.62, + 2.38, + 2.09, + 1.76, + 1.49, + 1.37, + 1.27, + 1.26, + 1.34, + 1.62, + 1.86, + 2.0300000000000002, + 2.13, + 2.11, + 2.02, + 1.92, + 1.85, + 1.8, + 1.81, + 1.95, + 2.13, + 2.23, + 2.2800000000000002, + 2.32, + 2.37, + 2.43, + 2.44, + 2.39, + 2.22, + 1.98, + 1.73, + 1.51, + 1.47, + 1.44, + 1.53, + 1.52, + 1.68, + 1.78, + 1.87, + 1.9100000000000001, + 1.86, + 1.82, + 1.77, + 1.75, + 1.6400000000000001, + 1.5, + 1.37, + 1.3, + 1.32, + 1.37, + 1.35, + 1.1500000000000001, + 0.8300000000000001, + 0.46, + 0.23, + 0.26, + 0.4, + 0.65, + 0.91, + 1.08, + 1.1400000000000001 + ], + [ + 4.46, + 4.48, + 4.58, + 4.55, + 4.54, + 4.5, + 4.42, + 4.28, + 4.09, + 3.88, + 3.66, + 3.46, + 3.34, + 3.29, + 3.34, + 3.41, + 3.44, + 3.43, + 3.35, + 3.3000000000000003, + 3.23, + 3.18, + 3.18, + 3.19, + 3.2600000000000002, + 3.33, + 3.34, + 3.33, + 3.2600000000000002, + 3.22, + 3.19, + 3.17, + 3.12, + 3.02, + 2.88, + 2.71, + 2.54, + 2.39, + 2.2800000000000002, + 2.25, + 2.24, + 2.32, + 2.38, + 2.41, + 2.39, + 2.4, + 2.37, + 2.34, + 2.25, + 2.24, + 2.24, + 2.2600000000000002, + 2.2600000000000002, + 2.27, + 2.24, + 2.23, + 2.24, + 2.29, + 2.36, + 2.38, + 2.42, + 2.5100000000000002, + 2.64, + 2.8000000000000003, + 2.96, + 3.11, + 3.13, + 3.11, + 2.92, + 2.72, + 2.47, + 2.19, + 2.0300000000000002, + 1.85, + 1.76, + 1.68, + 1.61, + 1.58, + 1.67, + 1.84, + 2.0300000000000002, + 2.23, + 2.49, + 2.7800000000000002, + 3.0, + 3.23, + 3.48, + 3.72, + 3.85, + 3.85, + 3.7800000000000002, + 3.93, + 4.0600000000000005, + 4.37, + 4.62, + 4.72, + 4.74, + 4.7, + 4.63, + 4.66, + 4.8100000000000005, + 4.95, + 5.13, + 5.2700000000000005, + 5.34, + 5.33, + 5.24, + 5.18, + 5.08, + 4.96, + 4.88, + 4.84, + 4.8500000000000005, + 4.86, + 4.89, + 4.92, + 4.93, + 5.0, + 4.93, + 4.8, + 4.46, + 4.0, + 3.5, + 3.0100000000000002, + 2.5500000000000003, + 2.12, + 1.77, + 1.5, + 1.32, + 1.23, + 1.12, + 0.98, + 0.84, + 0.8, + 0.9500000000000001, + 1.52, + 2.2600000000000002, + 2.94, + 3.61, + 3.6, + 3.47, + 3.2, + 3.0, + 2.93, + 2.83, + 2.62, + 2.5, + 3.0300000000000002, + 3.98, + 4.79, + 5.33, + 5.67, + 5.89, + 6.16, + 6.48, + 6.7, + 6.72, + 6.65, + 6.45, + 6.36, + 6.49, + 6.62, + 6.62, + 6.5600000000000005, + 6.6000000000000005, + 6.69, + 6.65, + 6.48, + 6.16, + 5.82, + 5.53, + 5.3, + 4.96, + 4.47, + 3.96, + 3.5, + 3.12, + 2.83, + 2.68, + 2.95, + 3.41, + 3.99, + 4.47, + 4.64, + 4.71, + 4.57, + 4.39, + 4.16, + 3.87, + 3.62, + 3.36, + 3.21, + 3.11, + 3.11, + 3.17, + 3.22, + 3.21, + 3.15, + 3.1, + 3.04, + 2.96, + 2.86, + 2.7800000000000002, + 2.69, + 2.7600000000000002, + 2.7800000000000002, + 3.09, + 3.37, + 3.69, + 3.97, + 4.16, + 4.37, + 4.48, + 4.53, + 4.5, + 4.45, + 4.34, + 4.26, + 4.14, + 3.96, + 3.71, + 3.4, + 3.16, + 2.91, + 2.7, + 2.5500000000000003, + 2.35, + 1.99, + 1.6, + 1.36, + 1.1300000000000001, + 0.9500000000000001, + 0.73, + 0.54, + 0.3, + 0.22, + 0.15, + 0.26, + 0.43, + 0.58, + 0.72, + 0.85, + 0.96, + 1.08, + 1.22, + 1.37, + 1.57, + 1.75, + 1.8800000000000001, + 2.04, + 2.2, + 2.39, + 2.47, + 2.5500000000000003, + 2.5300000000000002, + 2.54, + 2.59, + 2.62, + 2.61, + 2.56, + 2.54, + 2.6, + 2.85, + 3.19, + 3.56, + 3.9, + 4.16, + 4.3, + 4.29, + 4.1, + 3.84, + 3.49, + 3.06, + 2.65, + 2.2800000000000002, + 2.05, + 1.93, + 1.98, + 2.08, + 2.36, + 2.72, + 3.04, + 3.25, + 3.2600000000000002, + 3.19, + 3.04, + 2.85, + 2.61, + 2.31, + 2.0, + 1.74, + 1.57, + 1.45, + 1.42, + 1.52, + 1.73, + 1.9000000000000001, + 2.04, + 2.12, + 2.13, + 2.0100000000000002, + 1.9000000000000001, + 1.82, + 1.75, + 1.8, + 1.93, + 2.11, + 2.24, + 2.2800000000000002, + 2.29, + 2.32, + 2.36, + 2.39, + 2.33, + 2.2, + 1.97, + 1.7, + 1.54, + 1.43, + 1.51, + 1.6400000000000001, + 1.6500000000000001, + 1.71, + 1.79, + 1.86, + 1.86, + 1.8800000000000001, + 1.8, + 1.77, + 1.69, + 1.54, + 1.37, + 1.18, + 1.12, + 1.17, + 1.24, + 1.24, + 1.06, + 0.67, + 0.23, + 0.01, + -0.06, + 0.14, + 0.39, + 0.75, + 1.07, + 1.1500000000000001 + ], + [ + 4.43, + 4.42, + 4.49, + 4.46, + 4.46, + 4.43, + 4.34, + 4.21, + 4.03, + 3.83, + 3.61, + 3.42, + 3.3000000000000003, + 3.25, + 3.2600000000000002, + 3.33, + 3.38, + 3.38, + 3.34, + 3.2600000000000002, + 3.17, + 3.12, + 3.08, + 3.13, + 3.19, + 3.2800000000000002, + 3.35, + 3.31, + 3.2600000000000002, + 3.19, + 3.14, + 3.08, + 2.99, + 2.88, + 2.73, + 2.58, + 2.44, + 2.32, + 2.25, + 2.19, + 2.17, + 2.17, + 2.2, + 2.18, + 2.19, + 2.16, + 2.24, + 2.24, + 2.2800000000000002, + 2.32, + 2.37, + 2.42, + 2.43, + 2.42, + 2.4, + 2.42, + 2.46, + 2.56, + 2.64, + 2.7, + 2.7600000000000002, + 2.82, + 2.92, + 3.0100000000000002, + 3.13, + 3.18, + 3.22, + 3.14, + 3.04, + 2.79, + 2.5300000000000002, + 2.2600000000000002, + 2.0100000000000002, + 1.8800000000000001, + 1.77, + 1.73, + 1.72, + 1.75, + 1.92, + 2.09, + 2.22, + 2.39, + 2.59, + 2.81, + 3.02, + 3.22, + 3.47, + 3.69, + 3.83, + 3.88, + 3.88, + 3.91, + 4.13, + 4.36, + 4.47, + 4.5, + 4.5200000000000005, + 4.5200000000000005, + 4.6000000000000005, + 4.7700000000000005, + 4.93, + 5.12, + 5.3, + 5.44, + 5.44, + 5.29, + 5.2, + 5.18, + 5.12, + 5.03, + 4.95, + 4.96, + 4.98, + 5.0200000000000005, + 5.0600000000000005, + 5.0600000000000005, + 5.05, + 5.09, + 5.11, + 4.95, + 4.7, + 4.22, + 3.68, + 3.2, + 2.73, + 2.31, + 1.95, + 1.67, + 1.48, + 1.33, + 1.17, + 0.99, + 0.85, + 0.77, + 1.04, + 1.47, + 2.16, + 2.85, + 3.2, + 3.4, + 3.13, + 2.85, + 2.7, + 2.64, + 2.5100000000000002, + 2.2800000000000002, + 2.46, + 3.14, + 4.07, + 4.93, + 5.44, + 5.64, + 5.86, + 6.19, + 6.5, + 6.8100000000000005, + 6.94, + 6.7700000000000005, + 6.59, + 6.47, + 6.48, + 6.55, + 6.5600000000000005, + 6.5, + 6.47, + 6.54, + 6.57, + 6.38, + 6.07, + 5.69, + 5.36, + 5.07, + 4.69, + 4.25, + 3.83, + 3.45, + 3.15, + 2.88, + 2.83, + 2.99, + 3.52, + 4.08, + 4.39, + 4.57, + 4.53, + 4.4, + 4.29, + 4.12, + 3.93, + 3.72, + 3.52, + 3.34, + 3.24, + 3.22, + 3.25, + 3.29, + 3.31, + 3.3200000000000003, + 3.36, + 3.36, + 3.29, + 3.17, + 3.04, + 3.02, + 3.0100000000000002, + 3.13, + 3.2600000000000002, + 3.56, + 3.8200000000000003, + 4.11, + 4.37, + 4.57, + 4.72, + 4.75, + 4.73, + 4.63, + 4.51, + 4.41, + 4.3500000000000005, + 4.22, + 3.97, + 3.71, + 3.46, + 3.23, + 3.0100000000000002, + 2.84, + 2.65, + 2.4, + 2.08, + 1.83, + 1.59, + 1.36, + 1.1, + 0.79, + 0.62, + 0.45, + 0.47000000000000003, + 0.52, + 0.66, + 0.8200000000000001, + 0.9500000000000001, + 1.1, + 1.23, + 1.31, + 1.4000000000000001, + 1.49, + 1.6400000000000001, + 1.75, + 1.8900000000000001, + 2.08, + 2.2800000000000002, + 2.47, + 2.63, + 2.66, + 2.67, + 2.67, + 2.68, + 2.69, + 2.68, + 2.58, + 2.46, + 2.56, + 2.84, + 3.2, + 3.5700000000000003, + 3.92, + 4.22, + 4.41, + 4.43, + 4.3100000000000005, + 4.05, + 3.69, + 3.3200000000000003, + 2.94, + 2.61, + 2.32, + 2.2600000000000002, + 2.2800000000000002, + 2.42, + 2.6, + 2.89, + 3.11, + 3.31, + 3.38, + 3.3200000000000003, + 3.22, + 3.02, + 2.7800000000000002, + 2.5, + 2.18, + 1.93, + 1.72, + 1.58, + 1.56, + 1.6400000000000001, + 1.8, + 1.97, + 2.08, + 2.19, + 2.1, + 1.99, + 1.87, + 1.77, + 1.73, + 1.74, + 1.9100000000000001, + 2.12, + 2.23, + 2.27, + 2.27, + 2.2800000000000002, + 2.32, + 2.36, + 2.35, + 2.24, + 2.04, + 1.78, + 1.56, + 1.48, + 1.52, + 1.6, + 1.72, + 1.73, + 1.8, + 1.8, + 1.78, + 1.73, + 1.68, + 1.62, + 1.56, + 1.41, + 1.2, + 1.05, + 0.99, + 1.06, + 1.19, + 1.21, + 1.01, + 0.59, + 0.12, + -0.27, + -0.28, + -0.19, + 0.22, + 0.64, + 1.01, + 1.28 + ], + [ + 4.42, + 4.43, + 4.47, + 4.42, + 4.4, + 4.36, + 4.29, + 4.16, + 4.0, + 3.81, + 3.6, + 3.42, + 3.2800000000000002, + 3.21, + 3.2, + 3.23, + 3.29, + 3.31, + 3.29, + 3.23, + 3.15, + 3.0500000000000003, + 3.06, + 3.0700000000000003, + 3.16, + 3.25, + 3.2800000000000002, + 3.2800000000000002, + 3.21, + 3.13, + 3.0500000000000003, + 2.96, + 2.87, + 2.75, + 2.62, + 2.5100000000000002, + 2.4, + 2.35, + 2.2800000000000002, + 2.2, + 2.15, + 2.11, + 2.09, + 2.09, + 2.06, + 2.15, + 2.2, + 2.27, + 2.33, + 2.42, + 2.5300000000000002, + 2.59, + 2.62, + 2.6, + 2.58, + 2.59, + 2.66, + 2.75, + 2.84, + 2.91, + 2.97, + 3.0500000000000003, + 3.11, + 3.19, + 3.22, + 3.25, + 3.23, + 3.17, + 3.0300000000000002, + 2.85, + 2.57, + 2.31, + 2.1, + 1.95, + 1.87, + 1.83, + 1.83, + 1.8800000000000001, + 2.05, + 2.2800000000000002, + 2.44, + 2.57, + 2.74, + 2.91, + 3.11, + 3.31, + 3.5, + 3.72, + 3.87, + 3.95, + 3.99, + 4.07, + 4.21, + 4.3100000000000005, + 4.34, + 4.37, + 4.3500000000000005, + 4.46, + 4.6000000000000005, + 4.79, + 5.01, + 5.22, + 5.45, + 5.5600000000000005, + 5.43, + 5.2700000000000005, + 5.21, + 5.2, + 5.19, + 5.12, + 5.09, + 5.08, + 5.14, + 5.18, + 5.2, + 5.2, + 5.19, + 5.2, + 5.21, + 5.17, + 4.86, + 4.45, + 3.94, + 3.42, + 2.96, + 2.5300000000000002, + 2.17, + 1.8900000000000001, + 1.6600000000000001, + 1.46, + 1.28, + 1.05, + 0.86, + 0.86, + 1.03, + 1.53, + 2.08, + 2.54, + 2.89, + 2.9, + 2.75, + 2.52, + 2.35, + 2.31, + 2.25, + 2.22, + 2.47, + 3.22, + 4.26, + 5.05, + 5.45, + 5.71, + 6.0, + 6.33, + 6.69, + 6.96, + 6.99, + 6.890000000000001, + 6.640000000000001, + 6.46, + 6.49, + 6.54, + 6.5200000000000005, + 6.41, + 6.4, + 6.42, + 6.42, + 6.32, + 5.94, + 5.47, + 5.15, + 4.86, + 4.51, + 4.13, + 3.77, + 3.52, + 3.23, + 3.0300000000000002, + 2.92, + 3.19, + 3.62, + 4.07, + 4.42, + 4.46, + 4.41, + 4.34, + 4.2700000000000005, + 4.16, + 4.0600000000000005, + 3.88, + 3.71, + 3.52, + 3.35, + 3.3000000000000003, + 3.29, + 3.3200000000000003, + 3.35, + 3.43, + 3.61, + 3.71, + 3.67, + 3.56, + 3.46, + 3.38, + 3.43, + 3.5100000000000002, + 3.64, + 3.8000000000000003, + 4.0600000000000005, + 4.28, + 4.55, + 4.78, + 4.9, + 4.97, + 4.91, + 4.7700000000000005, + 4.62, + 4.49, + 4.42, + 4.3500000000000005, + 4.18, + 3.95, + 3.72, + 3.5, + 3.29, + 3.12, + 2.97, + 2.74, + 2.48, + 2.24, + 2.02, + 1.77, + 1.48, + 1.23, + 1.0, + 0.93, + 0.9, + 0.9500000000000001, + 1.0, + 1.09, + 1.19, + 1.32, + 1.46, + 1.54, + 1.53, + 1.57, + 1.6500000000000001, + 1.75, + 1.9000000000000001, + 2.08, + 2.32, + 2.54, + 2.68, + 2.79, + 2.7800000000000002, + 2.7800000000000002, + 2.77, + 2.77, + 2.71, + 2.57, + 2.47, + 2.5, + 2.79, + 3.22, + 3.61, + 3.97, + 4.2700000000000005, + 4.5200000000000005, + 4.62, + 4.55, + 4.34, + 3.96, + 3.56, + 3.24, + 2.92, + 2.66, + 2.5, + 2.58, + 2.73, + 2.93, + 3.12, + 3.36, + 3.5100000000000002, + 3.5500000000000003, + 3.48, + 3.33, + 3.11, + 2.87, + 2.59, + 2.29, + 2.0300000000000002, + 1.82, + 1.68, + 1.6400000000000001, + 1.72, + 1.86, + 1.97, + 2.12, + 2.12, + 2.07, + 1.94, + 1.82, + 1.73, + 1.6600000000000001, + 1.73, + 1.9100000000000001, + 2.1, + 2.24, + 2.27, + 2.24, + 2.24, + 2.3000000000000003, + 2.35, + 2.37, + 2.3000000000000003, + 2.09, + 1.86, + 1.6, + 1.44, + 1.45, + 1.52, + 1.59, + 1.68, + 1.72, + 1.74, + 1.6600000000000001, + 1.53, + 1.47, + 1.43, + 1.36, + 1.25, + 1.09, + 0.96, + 0.93, + 1.07, + 1.22, + 1.31, + 1.16, + 0.66, + 0.07, + -0.32, + -0.55, + -0.31, + 0.03, + 0.56, + 1.05, + 1.25 + ], + [ + 4.41, + 4.4, + 4.4, + 4.32, + 4.32, + 4.32, + 4.24, + 4.13, + 3.98, + 3.8200000000000003, + 3.63, + 3.45, + 3.3200000000000003, + 3.22, + 3.18, + 3.18, + 3.2, + 3.25, + 3.25, + 3.23, + 3.15, + 3.09, + 3.0500000000000003, + 3.09, + 3.14, + 3.2, + 3.23, + 3.2, + 3.14, + 3.06, + 2.96, + 2.87, + 2.7600000000000002, + 2.66, + 2.56, + 2.46, + 2.41, + 2.37, + 2.32, + 2.25, + 2.16, + 2.09, + 2.1, + 2.08, + 2.12, + 2.18, + 2.25, + 2.33, + 2.41, + 2.5300000000000002, + 2.67, + 2.79, + 2.81, + 2.77, + 2.75, + 2.75, + 2.8000000000000003, + 2.87, + 2.96, + 3.0500000000000003, + 3.11, + 3.18, + 3.25, + 3.2800000000000002, + 3.3000000000000003, + 3.29, + 3.27, + 3.15, + 3.0100000000000002, + 2.81, + 2.59, + 2.37, + 2.18, + 2.05, + 1.97, + 1.93, + 1.9100000000000001, + 1.98, + 2.14, + 2.37, + 2.61, + 2.77, + 2.9, + 3.06, + 3.29, + 3.49, + 3.64, + 3.8000000000000003, + 3.94, + 4.03, + 4.12, + 4.21, + 4.25, + 4.29, + 4.3100000000000005, + 4.2700000000000005, + 4.36, + 4.48, + 4.64, + 4.82, + 5.04, + 5.3, + 5.51, + 5.6000000000000005, + 5.5, + 5.29, + 5.21, + 5.3, + 5.32, + 5.26, + 5.22, + 5.25, + 5.3, + 5.34, + 5.38, + 5.3500000000000005, + 5.32, + 5.34, + 5.36, + 5.2700000000000005, + 5.07, + 4.68, + 4.21, + 3.71, + 3.23, + 2.79, + 2.42, + 2.12, + 1.85, + 1.61, + 1.3800000000000001, + 1.1500000000000001, + 0.9500000000000001, + 0.89, + 1.18, + 1.62, + 1.97, + 2.29, + 2.48, + 2.48, + 2.35, + 2.17, + 2.08, + 2.05, + 2.06, + 2.17, + 2.54, + 3.3200000000000003, + 4.28, + 5.05, + 5.53, + 5.87, + 6.2, + 6.61, + 6.97, + 7.09, + 7.11, + 6.9, + 6.65, + 6.51, + 6.51, + 6.5600000000000005, + 6.54, + 6.43, + 6.33, + 6.34, + 6.32, + 6.13, + 5.75, + 5.34, + 5.0, + 4.72, + 4.42, + 4.12, + 3.93, + 3.7, + 3.46, + 3.22, + 3.19, + 3.33, + 3.74, + 4.13, + 4.37, + 4.42, + 4.37, + 4.3100000000000005, + 4.26, + 4.23, + 4.1, + 4.0200000000000005, + 3.84, + 3.63, + 3.46, + 3.35, + 3.3200000000000003, + 3.31, + 3.36, + 3.5500000000000003, + 3.79, + 4.0200000000000005, + 4.09, + 4.01, + 3.92, + 3.86, + 3.87, + 3.94, + 4.05, + 4.19, + 4.34, + 4.54, + 4.75, + 4.92, + 5.0600000000000005, + 5.09, + 5.05, + 4.89, + 4.68, + 4.55, + 4.48, + 4.42, + 4.3500000000000005, + 4.17, + 3.99, + 3.7800000000000002, + 3.5500000000000003, + 3.36, + 3.24, + 3.06, + 2.86, + 2.63, + 2.44, + 2.21, + 1.97, + 1.7, + 1.56, + 1.5, + 1.47, + 1.45, + 1.44, + 1.3900000000000001, + 1.43, + 1.51, + 1.62, + 1.68, + 1.68, + 1.6400000000000001, + 1.67, + 1.78, + 1.9000000000000001, + 2.11, + 2.35, + 2.56, + 2.74, + 2.83, + 2.88, + 2.86, + 2.85, + 2.82, + 2.7600000000000002, + 2.62, + 2.44, + 2.5100000000000002, + 2.79, + 3.2, + 3.66, + 4.03, + 4.33, + 4.59, + 4.78, + 4.82, + 4.6000000000000005, + 4.28, + 3.89, + 3.54, + 3.21, + 2.93, + 2.8000000000000003, + 2.84, + 3.02, + 3.2600000000000002, + 3.48, + 3.73, + 3.8000000000000003, + 3.7800000000000002, + 3.63, + 3.39, + 3.16, + 2.91, + 2.63, + 2.35, + 2.09, + 1.8800000000000001, + 1.75, + 1.72, + 1.78, + 1.83, + 1.92, + 2.02, + 2.05, + 1.97, + 1.87, + 1.77, + 1.68, + 1.6600000000000001, + 1.71, + 1.92, + 2.13, + 2.24, + 2.2600000000000002, + 2.23, + 2.21, + 2.25, + 2.34, + 2.38, + 2.29, + 2.11, + 1.85, + 1.62, + 1.4000000000000001, + 1.32, + 1.35, + 1.41, + 1.53, + 1.6500000000000001, + 1.6300000000000001, + 1.55, + 1.41, + 1.26, + 1.22, + 1.19, + 1.1, + 0.99, + 0.91, + 0.9500000000000001, + 1.11, + 1.3900000000000001, + 1.53, + 1.36, + 0.93, + 0.21, + -0.36, + -0.51, + -0.47000000000000003, + 0.0, + 0.53, + 1.0, + 1.32 + ], + [ + 4.4, + 4.39, + 4.38, + 4.3, + 4.2700000000000005, + 4.26, + 4.22, + 4.12, + 4.01, + 3.86, + 3.7, + 3.5300000000000002, + 3.39, + 3.29, + 3.2, + 3.17, + 3.18, + 3.2, + 3.2600000000000002, + 3.2600000000000002, + 3.21, + 3.15, + 3.11, + 3.1, + 3.14, + 3.16, + 3.17, + 3.14, + 3.08, + 3.02, + 2.93, + 2.83, + 2.73, + 2.62, + 2.52, + 2.45, + 2.41, + 2.38, + 2.33, + 2.27, + 2.18, + 2.16, + 2.15, + 2.18, + 2.21, + 2.24, + 2.3000000000000003, + 2.36, + 2.44, + 2.61, + 2.84, + 2.96, + 3.02, + 2.98, + 2.92, + 2.92, + 2.92, + 2.99, + 3.1, + 3.17, + 3.2, + 3.2600000000000002, + 3.33, + 3.37, + 3.36, + 3.34, + 3.25, + 3.15, + 2.96, + 2.77, + 2.59, + 2.42, + 2.2600000000000002, + 2.14, + 2.06, + 2.02, + 2.02, + 2.06, + 2.23, + 2.48, + 2.73, + 2.95, + 3.09, + 3.25, + 3.48, + 3.7, + 3.87, + 3.94, + 4.03, + 4.14, + 4.23, + 4.25, + 4.2700000000000005, + 4.3100000000000005, + 4.3100000000000005, + 4.37, + 4.47, + 4.59, + 4.71, + 4.89, + 5.08, + 5.32, + 5.54, + 5.62, + 5.5200000000000005, + 5.3500000000000005, + 5.34, + 5.41, + 5.43, + 5.4, + 5.39, + 5.41, + 5.46, + 5.51, + 5.5200000000000005, + 5.5, + 5.48, + 5.5, + 5.48, + 5.4, + 5.23, + 4.99, + 4.54, + 4.0600000000000005, + 3.5700000000000003, + 3.08, + 2.68, + 2.33, + 2.0300000000000002, + 1.72, + 1.45, + 1.18, + 0.99, + 0.99, + 1.22, + 1.58, + 1.94, + 2.09, + 2.16, + 2.13, + 2.0, + 1.92, + 1.82, + 1.85, + 1.92, + 2.11, + 2.5300000000000002, + 3.29, + 4.21, + 5.0, + 5.63, + 6.0600000000000005, + 6.5, + 6.92, + 7.15, + 7.3, + 7.140000000000001, + 6.93, + 6.640000000000001, + 6.45, + 6.5200000000000005, + 6.66, + 6.6000000000000005, + 6.46, + 6.36, + 6.29, + 6.18, + 5.99, + 5.63, + 5.24, + 4.92, + 4.68, + 4.44, + 4.3100000000000005, + 4.15, + 4.01, + 3.79, + 3.5700000000000003, + 3.48, + 3.67, + 3.95, + 4.26, + 4.45, + 4.44, + 4.3500000000000005, + 4.29, + 4.25, + 4.18, + 4.08, + 4.0, + 3.92, + 3.72, + 3.52, + 3.41, + 3.33, + 3.31, + 3.35, + 3.54, + 3.95, + 4.28, + 4.41, + 4.44, + 4.33, + 4.3100000000000005, + 4.2700000000000005, + 4.3500000000000005, + 4.47, + 4.62, + 4.69, + 4.75, + 4.89, + 5.0200000000000005, + 5.12, + 5.18, + 5.12, + 4.98, + 4.79, + 4.62, + 4.55, + 4.55, + 4.49, + 4.43, + 4.28, + 4.05, + 3.8200000000000003, + 3.68, + 3.54, + 3.44, + 3.27, + 3.1, + 2.9, + 2.73, + 2.5300000000000002, + 2.3000000000000003, + 2.14, + 2.1, + 2.08, + 2.0100000000000002, + 1.8900000000000001, + 1.81, + 1.71, + 1.74, + 1.77, + 1.8, + 1.78, + 1.74, + 1.75, + 1.82, + 1.94, + 2.11, + 2.34, + 2.56, + 2.74, + 2.87, + 2.89, + 2.9, + 2.87, + 2.85, + 2.7800000000000002, + 2.68, + 2.54, + 2.52, + 2.79, + 3.2, + 3.63, + 4.04, + 4.37, + 4.65, + 4.87, + 4.97, + 4.88, + 4.53, + 4.18, + 3.7800000000000002, + 3.45, + 3.13, + 2.98, + 3.04, + 3.29, + 3.56, + 3.86, + 3.98, + 4.03, + 3.9, + 3.67, + 3.42, + 3.18, + 2.93, + 2.66, + 2.38, + 2.09, + 1.8800000000000001, + 1.78, + 1.75, + 1.75, + 1.77, + 1.85, + 1.93, + 1.92, + 1.86, + 1.78, + 1.73, + 1.6600000000000001, + 1.6400000000000001, + 1.78, + 2.0100000000000002, + 2.2, + 2.27, + 2.27, + 2.22, + 2.2, + 2.23, + 2.3000000000000003, + 2.34, + 2.27, + 2.05, + 1.81, + 1.54, + 1.32, + 1.17, + 1.1400000000000001, + 1.23, + 1.36, + 1.5, + 1.56, + 1.45, + 1.28, + 1.11, + 0.99, + 0.97, + 0.9400000000000001, + 0.88, + 0.88, + 0.96, + 1.24, + 1.53, + 1.7, + 1.62, + 1.11, + 0.46, + -0.11, + -0.46, + -0.34, + -0.04, + 0.53, + 1.04, + 1.33 + ], + [ + 4.4, + 4.4, + 4.3500000000000005, + 4.23, + 4.22, + 4.23, + 4.19, + 4.13, + 4.03, + 3.92, + 3.77, + 3.63, + 3.5, + 3.37, + 3.27, + 3.2, + 3.19, + 3.23, + 3.29, + 3.33, + 3.3200000000000003, + 3.24, + 3.18, + 3.15, + 3.13, + 3.13, + 3.11, + 3.09, + 3.06, + 2.99, + 2.93, + 2.84, + 2.74, + 2.64, + 2.5300000000000002, + 2.45, + 2.41, + 2.38, + 2.35, + 2.29, + 2.2600000000000002, + 2.24, + 2.2600000000000002, + 2.29, + 2.2800000000000002, + 2.3000000000000003, + 2.31, + 2.34, + 2.46, + 2.66, + 2.91, + 3.17, + 3.22, + 3.21, + 3.15, + 3.08, + 3.09, + 3.18, + 3.27, + 3.27, + 3.29, + 3.3200000000000003, + 3.39, + 3.44, + 3.45, + 3.34, + 3.22, + 3.06, + 2.87, + 2.72, + 2.58, + 2.43, + 2.32, + 2.2, + 2.12, + 2.1, + 2.13, + 2.2, + 2.36, + 2.61, + 2.91, + 3.12, + 3.19, + 3.35, + 3.65, + 3.9, + 4.04, + 4.14, + 4.19, + 4.26, + 4.2700000000000005, + 4.24, + 4.29, + 4.36, + 4.44, + 4.54, + 4.64, + 4.74, + 4.8500000000000005, + 4.98, + 5.16, + 5.33, + 5.5200000000000005, + 5.62, + 5.55, + 5.45, + 5.44, + 5.5200000000000005, + 5.5600000000000005, + 5.54, + 5.54, + 5.5600000000000005, + 5.6000000000000005, + 5.64, + 5.66, + 5.62, + 5.6000000000000005, + 5.61, + 5.62, + 5.5600000000000005, + 5.5, + 5.25, + 4.95, + 4.46, + 3.92, + 3.42, + 2.94, + 2.5500000000000003, + 2.15, + 1.8, + 1.43, + 1.1300000000000001, + 0.9500000000000001, + 0.93, + 1.17, + 1.51, + 1.79, + 1.96, + 1.95, + 1.85, + 1.83, + 1.78, + 1.74, + 1.68, + 1.81, + 2.02, + 2.46, + 3.13, + 4.04, + 4.99, + 5.68, + 6.26, + 6.73, + 7.04, + 7.3, + 7.3, + 7.19, + 6.890000000000001, + 6.58, + 6.43, + 6.46, + 6.63, + 6.69, + 6.5200000000000005, + 6.3500000000000005, + 6.2, + 5.97, + 5.7700000000000005, + 5.5200000000000005, + 5.15, + 4.8500000000000005, + 4.65, + 4.57, + 4.47, + 4.45, + 4.33, + 4.11, + 3.91, + 3.95, + 4.09, + 4.3, + 4.55, + 4.62, + 4.55, + 4.4, + 4.26, + 4.2, + 4.13, + 4.04, + 4.0, + 3.92, + 3.79, + 3.61, + 3.48, + 3.41, + 3.31, + 3.33, + 3.5300000000000002, + 3.9, + 4.36, + 4.61, + 4.64, + 4.62, + 4.55, + 4.5600000000000005, + 4.68, + 4.8500000000000005, + 4.97, + 5.03, + 5.0, + 4.95, + 5.08, + 5.15, + 5.21, + 5.22, + 5.1000000000000005, + 4.95, + 4.8, + 4.73, + 4.72, + 4.75, + 4.69, + 4.5600000000000005, + 4.36, + 4.19, + 4.03, + 3.95, + 3.87, + 3.7600000000000002, + 3.63, + 3.47, + 3.3200000000000003, + 3.11, + 2.91, + 2.7600000000000002, + 2.7, + 2.64, + 2.54, + 2.39, + 2.23, + 2.11, + 1.97, + 1.96, + 1.92, + 1.8900000000000001, + 1.86, + 1.86, + 1.9000000000000001, + 1.98, + 2.14, + 2.33, + 2.57, + 2.7600000000000002, + 2.84, + 2.87, + 2.86, + 2.85, + 2.83, + 2.83, + 2.73, + 2.64, + 2.63, + 2.79, + 3.16, + 3.56, + 3.97, + 4.34, + 4.65, + 4.89, + 5.03, + 4.94, + 4.7, + 4.25, + 3.89, + 3.48, + 3.15, + 3.02, + 3.08, + 3.41, + 3.84, + 4.03, + 4.08, + 4.0200000000000005, + 3.83, + 3.6, + 3.39, + 3.15, + 2.92, + 2.66, + 2.36, + 2.06, + 1.87, + 1.76, + 1.72, + 1.71, + 1.73, + 1.78, + 1.8, + 1.78, + 1.72, + 1.69, + 1.6500000000000001, + 1.6400000000000001, + 1.71, + 1.93, + 2.16, + 2.31, + 2.36, + 2.3000000000000003, + 2.24, + 2.18, + 2.2, + 2.25, + 2.29, + 2.21, + 2.02, + 1.72, + 1.43, + 1.1400000000000001, + 0.93, + 0.9400000000000001, + 1.02, + 1.22, + 1.4000000000000001, + 1.45, + 1.37, + 1.1400000000000001, + 0.84, + 0.73, + 0.71, + 0.73, + 0.8200000000000001, + 0.86, + 1.05, + 1.32, + 1.6400000000000001, + 1.83, + 1.72, + 1.32, + 0.75, + 0.18, + -0.12, + -0.17, + 0.13, + 0.58, + 1.07, + 1.42 + ], + [ + 4.41, + 4.39, + 4.32, + 4.21, + 4.18, + 4.19, + 4.17, + 4.12, + 4.0600000000000005, + 3.96, + 3.86, + 3.72, + 3.58, + 3.45, + 3.33, + 3.2600000000000002, + 3.24, + 3.27, + 3.36, + 3.43, + 3.41, + 3.36, + 3.2600000000000002, + 3.2, + 3.16, + 3.12, + 3.09, + 3.06, + 3.0300000000000002, + 2.99, + 2.93, + 2.86, + 2.7600000000000002, + 2.66, + 2.5500000000000003, + 2.47, + 2.42, + 2.4, + 2.38, + 2.37, + 2.34, + 2.34, + 2.37, + 2.36, + 2.34, + 2.3000000000000003, + 2.27, + 2.31, + 2.41, + 2.67, + 2.99, + 3.25, + 3.44, + 3.43, + 3.42, + 3.34, + 3.29, + 3.36, + 3.36, + 3.35, + 3.31, + 3.34, + 3.42, + 3.49, + 3.44, + 3.34, + 3.16, + 2.97, + 2.81, + 2.66, + 2.54, + 2.43, + 2.32, + 2.22, + 2.16, + 2.16, + 2.22, + 2.35, + 2.52, + 2.7600000000000002, + 3.0300000000000002, + 3.15, + 3.23, + 3.44, + 3.73, + 4.0, + 4.17, + 4.3100000000000005, + 4.41, + 4.37, + 4.32, + 4.28, + 4.3100000000000005, + 4.46, + 4.62, + 4.71, + 4.8, + 4.88, + 4.97, + 5.09, + 5.23, + 5.39, + 5.51, + 5.59, + 5.58, + 5.5, + 5.54, + 5.62, + 5.66, + 5.65, + 5.65, + 5.67, + 5.71, + 5.75, + 5.74, + 5.7, + 5.69, + 5.72, + 5.73, + 5.73, + 5.66, + 5.55, + 5.23, + 4.84, + 4.3100000000000005, + 3.7600000000000002, + 3.2600000000000002, + 2.7600000000000002, + 2.32, + 1.84, + 1.43, + 1.05, + 0.81, + 0.85, + 1.04, + 1.3800000000000001, + 1.6500000000000001, + 1.78, + 1.78, + 1.77, + 1.8, + 1.81, + 1.79, + 1.76, + 1.8, + 2.0, + 2.27, + 2.94, + 3.85, + 4.83, + 5.78, + 6.4, + 6.79, + 7.12, + 7.26, + 7.29, + 7.12, + 6.8500000000000005, + 6.54, + 6.34, + 6.42, + 6.59, + 6.640000000000001, + 6.57, + 6.33, + 6.04, + 5.8100000000000005, + 5.5600000000000005, + 5.33, + 5.01, + 4.76, + 4.67, + 4.62, + 4.73, + 4.72, + 4.5600000000000005, + 4.3500000000000005, + 4.3500000000000005, + 4.4, + 4.5200000000000005, + 4.72, + 4.84, + 4.89, + 4.69, + 4.44, + 4.25, + 4.13, + 4.05, + 3.99, + 3.97, + 4.01, + 3.89, + 3.7600000000000002, + 3.66, + 3.6, + 3.5100000000000002, + 3.42, + 3.5700000000000003, + 3.91, + 4.33, + 4.62, + 4.71, + 4.68, + 4.62, + 4.73, + 4.91, + 5.14, + 5.3500000000000005, + 5.33, + 5.23, + 5.18, + 5.16, + 5.26, + 5.34, + 5.37, + 5.34, + 5.21, + 5.1000000000000005, + 5.03, + 5.0600000000000005, + 5.08, + 4.99, + 4.86, + 4.71, + 4.55, + 4.44, + 4.37, + 4.32, + 4.25, + 4.15, + 4.05, + 3.87, + 3.68, + 3.47, + 3.3200000000000003, + 3.22, + 3.11, + 2.98, + 2.81, + 2.63, + 2.44, + 2.29, + 2.13, + 2.07, + 2.02, + 1.98, + 2.0, + 2.0300000000000002, + 2.1, + 2.22, + 2.42, + 2.62, + 2.7600000000000002, + 2.82, + 2.8000000000000003, + 2.7600000000000002, + 2.7600000000000002, + 2.7800000000000002, + 2.79, + 2.81, + 2.71, + 2.68, + 2.83, + 3.0500000000000003, + 3.44, + 3.85, + 4.23, + 4.61, + 4.88, + 4.94, + 4.88, + 4.54, + 4.15, + 3.75, + 3.38, + 3.08, + 2.92, + 3.09, + 3.5, + 3.88, + 4.12, + 4.05, + 3.83, + 3.65, + 3.48, + 3.27, + 3.0500000000000003, + 2.83, + 2.61, + 2.32, + 2.05, + 1.84, + 1.72, + 1.67, + 1.68, + 1.71, + 1.7, + 1.68, + 1.61, + 1.54, + 1.53, + 1.55, + 1.62, + 1.81, + 2.07, + 2.36, + 2.48, + 2.45, + 2.38, + 2.2600000000000002, + 2.19, + 2.16, + 2.2, + 2.2600000000000002, + 2.21, + 1.98, + 1.68, + 1.31, + 0.9500000000000001, + 0.79, + 0.74, + 0.92, + 1.16, + 1.33, + 1.4000000000000001, + 1.27, + 0.96, + 0.64, + 0.36, + 0.39, + 0.6, + 0.73, + 0.96, + 1.1500000000000001, + 1.43, + 1.74, + 1.85, + 1.78, + 1.5, + 1.02, + 0.58, + 0.29, + 0.17, + 0.32, + 0.72, + 1.16, + 1.48 + ], + [ + 4.41, + 4.4, + 4.29, + 4.14, + 4.13, + 4.14, + 4.13, + 4.11, + 4.0600000000000005, + 3.99, + 3.89, + 3.7800000000000002, + 3.64, + 3.5, + 3.39, + 3.3000000000000003, + 3.2800000000000002, + 3.33, + 3.42, + 3.49, + 3.5, + 3.42, + 3.33, + 3.24, + 3.18, + 3.13, + 3.09, + 3.0500000000000003, + 3.0100000000000002, + 2.97, + 2.92, + 2.84, + 2.7600000000000002, + 2.66, + 2.57, + 2.49, + 2.46, + 2.45, + 2.45, + 2.44, + 2.42, + 2.43, + 2.42, + 2.4, + 2.33, + 2.27, + 2.25, + 2.2800000000000002, + 2.42, + 2.67, + 3.02, + 3.34, + 3.54, + 3.69, + 3.66, + 3.59, + 3.5300000000000002, + 3.47, + 3.47, + 3.36, + 3.3000000000000003, + 3.31, + 3.38, + 3.42, + 3.39, + 3.27, + 3.1, + 2.92, + 2.7600000000000002, + 2.61, + 2.48, + 2.39, + 2.3000000000000003, + 2.24, + 2.23, + 2.25, + 2.33, + 2.47, + 2.69, + 2.93, + 3.11, + 3.24, + 3.35, + 3.5500000000000003, + 3.81, + 4.07, + 4.26, + 4.42, + 4.5200000000000005, + 4.5200000000000005, + 4.38, + 4.3, + 4.39, + 4.58, + 4.74, + 4.84, + 4.91, + 4.97, + 5.05, + 5.16, + 5.29, + 5.42, + 5.53, + 5.59, + 5.58, + 5.57, + 5.6000000000000005, + 5.71, + 5.7700000000000005, + 5.76, + 5.75, + 5.76, + 5.8, + 5.82, + 5.79, + 5.75, + 5.74, + 5.79, + 5.84, + 5.8500000000000005, + 5.82, + 5.7, + 5.47, + 5.1000000000000005, + 4.75, + 4.21, + 3.61, + 3.09, + 2.49, + 1.98, + 1.46, + 1.04, + 0.8, + 0.78, + 1.01, + 1.32, + 1.56, + 1.6600000000000001, + 1.73, + 1.79, + 1.8800000000000001, + 1.98, + 1.94, + 1.9000000000000001, + 1.9000000000000001, + 1.92, + 2.18, + 2.61, + 3.56, + 4.8, + 5.76, + 6.4, + 6.82, + 7.0600000000000005, + 7.21, + 7.16, + 6.99, + 6.76, + 6.49, + 6.3100000000000005, + 6.36, + 6.5, + 6.58, + 6.48, + 6.29, + 5.98, + 5.69, + 5.48, + 5.2700000000000005, + 4.99, + 4.78, + 4.73, + 4.86, + 4.96, + 4.9, + 4.75, + 4.71, + 4.72, + 4.79, + 4.92, + 5.0, + 5.11, + 5.0600000000000005, + 4.87, + 4.5, + 4.2, + 4.05, + 3.93, + 3.9, + 3.94, + 3.99, + 4.04, + 3.93, + 3.92, + 3.87, + 3.87, + 3.8000000000000003, + 3.79, + 4.07, + 4.3500000000000005, + 4.6000000000000005, + 4.69, + 4.65, + 4.69, + 4.8100000000000005, + 5.08, + 5.38, + 5.57, + 5.63, + 5.5200000000000005, + 5.47, + 5.45, + 5.49, + 5.58, + 5.68, + 5.66, + 5.6000000000000005, + 5.49, + 5.45, + 5.47, + 5.42, + 5.33, + 5.17, + 5.01, + 4.9, + 4.8100000000000005, + 4.74, + 4.7, + 4.67, + 4.62, + 4.51, + 4.37, + 4.16, + 3.96, + 3.7800000000000002, + 3.63, + 3.49, + 3.31, + 3.13, + 2.93, + 2.73, + 2.54, + 2.38, + 2.2600000000000002, + 2.2, + 2.15, + 2.16, + 2.22, + 2.29, + 2.42, + 2.6, + 2.73, + 2.81, + 2.79, + 2.69, + 2.64, + 2.62, + 2.67, + 2.7600000000000002, + 2.7800000000000002, + 2.75, + 2.73, + 2.8000000000000003, + 3.0300000000000002, + 3.34, + 3.74, + 4.2, + 4.58, + 4.78, + 4.8500000000000005, + 4.6000000000000005, + 4.25, + 3.83, + 3.44, + 3.16, + 2.94, + 2.86, + 3.06, + 3.47, + 3.89, + 4.0, + 3.86, + 3.65, + 3.47, + 3.31, + 3.15, + 2.93, + 2.72, + 2.5, + 2.2600000000000002, + 2.0, + 1.77, + 1.6400000000000001, + 1.61, + 1.6400000000000001, + 1.6500000000000001, + 1.62, + 1.5, + 1.37, + 1.33, + 1.33, + 1.43, + 1.6, + 1.86, + 2.24, + 2.5100000000000002, + 2.63, + 2.59, + 2.47, + 2.34, + 2.21, + 2.16, + 2.17, + 2.22, + 2.21, + 2.0300000000000002, + 1.7, + 1.31, + 0.9400000000000001, + 0.71, + 0.71, + 0.86, + 1.1, + 1.31, + 1.37, + 1.25, + 0.89, + 0.39, + 0.14, + 0.1, + 0.34, + 0.74, + 0.98, + 1.24, + 1.52, + 1.73, + 1.87, + 1.83, + 1.6, + 1.27, + 0.92, + 0.61, + 0.48, + 0.55, + 0.85, + 1.24, + 1.56 + ], + [ + 4.41, + 4.38, + 4.25, + 4.1, + 4.0600000000000005, + 4.08, + 4.09, + 4.07, + 4.04, + 3.98, + 3.9, + 3.79, + 3.65, + 3.52, + 3.41, + 3.33, + 3.3200000000000003, + 3.37, + 3.45, + 3.52, + 3.52, + 3.45, + 3.35, + 3.27, + 3.2, + 3.16, + 3.1, + 3.0500000000000003, + 2.99, + 2.92, + 2.86, + 2.79, + 2.71, + 2.64, + 2.56, + 2.5500000000000003, + 2.52, + 2.52, + 2.52, + 2.49, + 2.48, + 2.46, + 2.44, + 2.38, + 2.3000000000000003, + 2.24, + 2.22, + 2.29, + 2.46, + 2.73, + 3.0700000000000003, + 3.4, + 3.67, + 3.81, + 3.89, + 3.81, + 3.71, + 3.65, + 3.5300000000000002, + 3.41, + 3.2800000000000002, + 3.2800000000000002, + 3.25, + 3.27, + 3.2600000000000002, + 3.15, + 3.0100000000000002, + 2.86, + 2.71, + 2.57, + 2.45, + 2.35, + 2.32, + 2.33, + 2.33, + 2.37, + 2.46, + 2.64, + 2.87, + 3.15, + 3.33, + 3.45, + 3.5700000000000003, + 3.75, + 4.0, + 4.12, + 4.29, + 4.46, + 4.59, + 4.54, + 4.4, + 4.3500000000000005, + 4.44, + 4.65, + 4.84, + 4.93, + 4.96, + 5.0200000000000005, + 5.09, + 5.19, + 5.32, + 5.45, + 5.5600000000000005, + 5.61, + 5.61, + 5.6000000000000005, + 5.66, + 5.76, + 5.8500000000000005, + 5.86, + 5.83, + 5.84, + 5.86, + 5.88, + 5.83, + 5.78, + 5.79, + 5.84, + 5.91, + 5.95, + 5.93, + 5.84, + 5.63, + 5.44, + 5.09, + 4.71, + 4.1, + 3.39, + 2.7800000000000002, + 2.17, + 1.6300000000000001, + 1.16, + 0.88, + 0.88, + 1.08, + 1.3800000000000001, + 1.61, + 1.7, + 1.77, + 1.8900000000000001, + 2.04, + 2.1, + 2.05, + 1.99, + 1.92, + 1.92, + 1.93, + 2.4, + 3.38, + 4.62, + 5.72, + 6.38, + 6.74, + 6.98, + 7.0600000000000005, + 7.01, + 6.82, + 6.59, + 6.38, + 6.25, + 6.25, + 6.34, + 6.390000000000001, + 6.29, + 6.11, + 5.87, + 5.64, + 5.5600000000000005, + 5.36, + 5.16, + 4.97, + 4.99, + 5.12, + 5.15, + 5.1000000000000005, + 5.07, + 5.03, + 5.01, + 5.07, + 5.11, + 5.17, + 5.23, + 5.18, + 4.89, + 4.48, + 4.14, + 3.91, + 3.8200000000000003, + 3.7800000000000002, + 3.85, + 3.98, + 4.0600000000000005, + 4.1, + 4.09, + 4.17, + 4.18, + 4.25, + 4.25, + 4.28, + 4.51, + 4.66, + 4.72, + 4.7, + 4.73, + 4.89, + 5.17, + 5.45, + 5.66, + 5.76, + 5.78, + 5.74, + 5.78, + 5.8100000000000005, + 5.92, + 6.01, + 6.05, + 5.99, + 5.95, + 5.9, + 5.83, + 5.78, + 5.62, + 5.46, + 5.3, + 5.18, + 5.08, + 5.03, + 5.03, + 5.03, + 4.99, + 4.91, + 4.76, + 4.57, + 4.36, + 4.16, + 3.97, + 3.75, + 3.5700000000000003, + 3.36, + 3.15, + 2.91, + 2.72, + 2.6, + 2.49, + 2.4, + 2.36, + 2.4, + 2.46, + 2.56, + 2.7, + 2.82, + 2.92, + 2.87, + 2.75, + 2.6, + 2.47, + 2.48, + 2.56, + 2.67, + 2.75, + 2.73, + 2.74, + 2.83, + 3.08, + 3.39, + 3.77, + 4.22, + 4.53, + 4.72, + 4.61, + 4.32, + 3.86, + 3.39, + 3.09, + 2.85, + 2.74, + 2.74, + 2.97, + 3.38, + 3.69, + 3.68, + 3.56, + 3.45, + 3.29, + 3.16, + 3.0, + 2.82, + 2.61, + 2.37, + 2.13, + 1.85, + 1.62, + 1.5, + 1.49, + 1.57, + 1.6, + 1.49, + 1.31, + 1.18, + 1.11, + 1.16, + 1.3, + 1.54, + 1.93, + 2.32, + 2.66, + 2.7600000000000002, + 2.72, + 2.6, + 2.5, + 2.36, + 2.19, + 2.17, + 2.19, + 2.19, + 2.12, + 1.85, + 1.45, + 1.09, + 0.8, + 0.73, + 0.84, + 1.03, + 1.26, + 1.3900000000000001, + 1.27, + 0.93, + 0.41000000000000003, + -0.05, + -0.07, + 0.11, + 0.52, + 0.9400000000000001, + 1.21, + 1.41, + 1.62, + 1.77, + 1.75, + 1.6, + 1.33, + 1.04, + 0.77, + 0.64, + 0.6900000000000001, + 0.9400000000000001, + 1.3, + 1.57 + ], + [ + 4.42, + 4.38, + 4.21, + 4.0200000000000005, + 3.98, + 4.01, + 4.0200000000000005, + 4.0200000000000005, + 3.99, + 3.95, + 3.87, + 3.7600000000000002, + 3.63, + 3.5, + 3.39, + 3.34, + 3.34, + 3.38, + 3.46, + 3.5, + 3.49, + 3.42, + 3.3200000000000003, + 3.25, + 3.21, + 3.17, + 3.12, + 3.0500000000000003, + 2.95, + 2.87, + 2.77, + 2.7, + 2.64, + 2.58, + 2.59, + 2.58, + 2.59, + 2.6, + 2.56, + 2.5300000000000002, + 2.48, + 2.45, + 2.4, + 2.33, + 2.2600000000000002, + 2.2, + 2.22, + 2.33, + 2.5300000000000002, + 2.83, + 3.17, + 3.48, + 3.75, + 3.9, + 3.97, + 3.93, + 3.83, + 3.68, + 3.56, + 3.37, + 3.24, + 3.14, + 3.09, + 3.11, + 3.1, + 3.0300000000000002, + 2.9, + 2.77, + 2.64, + 2.54, + 2.45, + 2.4, + 2.41, + 2.45, + 2.48, + 2.5300000000000002, + 2.64, + 2.83, + 3.1, + 3.38, + 3.58, + 3.7, + 3.81, + 3.99, + 4.11, + 4.22, + 4.2700000000000005, + 4.42, + 4.53, + 4.5, + 4.42, + 4.42, + 4.5, + 4.69, + 4.89, + 5.01, + 5.03, + 5.04, + 5.11, + 5.21, + 5.33, + 5.45, + 5.5600000000000005, + 5.63, + 5.64, + 5.63, + 5.68, + 5.8, + 5.9, + 5.9, + 5.87, + 5.88, + 5.91, + 5.92, + 5.89, + 5.83, + 5.84, + 5.89, + 5.96, + 6.01, + 6.03, + 5.95, + 5.79, + 5.62, + 5.47, + 5.08, + 4.54, + 3.8200000000000003, + 3.0500000000000003, + 2.43, + 1.84, + 1.36, + 1.06, + 1.03, + 1.24, + 1.55, + 1.75, + 1.83, + 1.9000000000000001, + 2.04, + 2.13, + 2.09, + 2.06, + 1.98, + 1.9100000000000001, + 1.83, + 1.85, + 2.24, + 3.22, + 4.51, + 5.61, + 6.26, + 6.62, + 6.8, + 6.87, + 6.7700000000000005, + 6.58, + 6.33, + 6.12, + 6.0600000000000005, + 6.09, + 6.140000000000001, + 6.12, + 6.03, + 5.82, + 5.67, + 5.65, + 5.58, + 5.49, + 5.3, + 5.24, + 5.26, + 5.33, + 5.36, + 5.41, + 5.38, + 5.3, + 5.2700000000000005, + 5.21, + 5.19, + 5.25, + 5.3, + 5.16, + 4.8100000000000005, + 4.43, + 4.09, + 3.89, + 3.81, + 3.7800000000000002, + 3.83, + 3.98, + 4.15, + 4.2, + 4.23, + 4.32, + 4.47, + 4.54, + 4.59, + 4.63, + 4.71, + 4.84, + 4.84, + 4.8100000000000005, + 4.79, + 4.92, + 5.13, + 5.34, + 5.57, + 5.71, + 5.83, + 5.95, + 6.01, + 6.13, + 6.24, + 6.34, + 6.38, + 6.390000000000001, + 6.34, + 6.2700000000000005, + 6.19, + 6.04, + 5.88, + 5.72, + 5.55, + 5.38, + 5.26, + 5.26, + 5.28, + 5.3100000000000005, + 5.28, + 5.21, + 5.07, + 4.9, + 4.7, + 4.49, + 4.24, + 4.01, + 3.8000000000000003, + 3.58, + 3.3000000000000003, + 3.06, + 2.83, + 2.71, + 2.64, + 2.57, + 2.58, + 2.64, + 2.75, + 2.87, + 2.96, + 3.0700000000000003, + 3.0500000000000003, + 2.93, + 2.72, + 2.49, + 2.36, + 2.36, + 2.46, + 2.59, + 2.68, + 2.73, + 2.74, + 2.89, + 3.15, + 3.52, + 3.9, + 4.24, + 4.54, + 4.58, + 4.43, + 4.01, + 3.5, + 3.0500000000000003, + 2.75, + 2.6, + 2.54, + 2.61, + 2.88, + 3.19, + 3.3000000000000003, + 3.31, + 3.25, + 3.18, + 3.2, + 3.0700000000000003, + 2.9, + 2.72, + 2.46, + 2.21, + 1.93, + 1.6500000000000001, + 1.4000000000000001, + 1.28, + 1.36, + 1.48, + 1.5, + 1.3800000000000001, + 1.19, + 1.06, + 0.99, + 1.03, + 1.19, + 1.48, + 1.8900000000000001, + 2.36, + 2.7, + 2.85, + 2.81, + 2.7800000000000002, + 2.68, + 2.5500000000000003, + 2.38, + 2.14, + 2.13, + 2.18, + 2.12, + 2.0, + 1.67, + 1.3, + 1.02, + 0.84, + 0.84, + 1.0, + 1.19, + 1.37, + 1.34, + 1.02, + 0.5700000000000001, + 0.06, + -0.22, + -0.03, + 0.32, + 0.74, + 1.01, + 1.21, + 1.4000000000000001, + 1.54, + 1.58, + 1.44, + 1.22, + 0.9500000000000001, + 0.78, + 0.68, + 0.74, + 0.98, + 1.28, + 1.5 + ], + [ + 4.42, + 4.36, + 4.15, + 3.94, + 3.89, + 3.91, + 3.92, + 3.93, + 3.91, + 3.87, + 3.8000000000000003, + 3.69, + 3.5700000000000003, + 3.45, + 3.38, + 3.33, + 3.33, + 3.38, + 3.43, + 3.45, + 3.42, + 3.34, + 3.2600000000000002, + 3.21, + 3.18, + 3.15, + 3.1, + 3.0100000000000002, + 2.9, + 2.7800000000000002, + 2.69, + 2.61, + 2.5500000000000003, + 2.56, + 2.57, + 2.63, + 2.65, + 2.62, + 2.58, + 2.5100000000000002, + 2.45, + 2.4, + 2.35, + 2.2800000000000002, + 2.2, + 2.19, + 2.24, + 2.4, + 2.66, + 2.96, + 3.3000000000000003, + 3.6, + 3.79, + 3.94, + 3.94, + 3.91, + 3.75, + 3.6, + 3.42, + 3.23, + 3.08, + 2.96, + 2.95, + 2.97, + 2.96, + 2.9, + 2.7600000000000002, + 2.62, + 2.58, + 2.5500000000000003, + 2.5300000000000002, + 2.56, + 2.58, + 2.63, + 2.68, + 2.77, + 2.88, + 3.08, + 3.34, + 3.56, + 3.7600000000000002, + 3.86, + 3.97, + 4.08, + 4.19, + 4.23, + 4.26, + 4.2700000000000005, + 4.33, + 4.41, + 4.4, + 4.43, + 4.54, + 4.71, + 4.89, + 5.0200000000000005, + 5.04, + 5.0600000000000005, + 5.13, + 5.23, + 5.3500000000000005, + 5.47, + 5.55, + 5.63, + 5.66, + 5.65, + 5.68, + 5.8100000000000005, + 5.92, + 5.91, + 5.8500000000000005, + 5.8500000000000005, + 5.92, + 5.94, + 5.94, + 5.91, + 5.89, + 5.93, + 5.99, + 6.05, + 6.08, + 6.03, + 5.89, + 5.7700000000000005, + 5.65, + 5.43, + 4.88, + 4.18, + 3.41, + 2.67, + 2.08, + 1.6, + 1.3, + 1.25, + 1.46, + 1.74, + 1.92, + 1.98, + 2.04, + 2.12, + 2.08, + 2.05, + 2.0100000000000002, + 1.94, + 1.83, + 1.75, + 1.85, + 2.22, + 3.15, + 4.44, + 5.45, + 6.08, + 6.390000000000001, + 6.55, + 6.57, + 6.46, + 6.26, + 6.0, + 5.84, + 5.8100000000000005, + 5.91, + 5.98, + 5.92, + 5.7700000000000005, + 5.59, + 5.5200000000000005, + 5.54, + 5.57, + 5.5, + 5.41, + 5.36, + 5.43, + 5.5, + 5.61, + 5.66, + 5.65, + 5.5600000000000005, + 5.43, + 5.34, + 5.2700000000000005, + 5.3, + 5.29, + 5.09, + 4.7700000000000005, + 4.41, + 4.15, + 4.05, + 3.97, + 3.97, + 3.99, + 4.12, + 4.28, + 4.3500000000000005, + 4.37, + 4.43, + 4.59, + 4.7, + 4.75, + 4.84, + 4.93, + 4.97, + 4.94, + 4.87, + 4.84, + 4.88, + 5.0200000000000005, + 5.19, + 5.34, + 5.55, + 5.75, + 5.97, + 6.18, + 6.33, + 6.49, + 6.6000000000000005, + 6.66, + 6.67, + 6.640000000000001, + 6.57, + 6.42, + 6.26, + 6.140000000000001, + 5.98, + 5.76, + 5.57, + 5.46, + 5.47, + 5.51, + 5.55, + 5.53, + 5.44, + 5.33, + 5.17, + 4.98, + 4.75, + 4.5, + 4.26, + 4.04, + 3.77, + 3.48, + 3.13, + 2.91, + 2.75, + 2.68, + 2.65, + 2.68, + 2.87, + 3.0100000000000002, + 3.14, + 3.23, + 3.23, + 3.13, + 2.92, + 2.64, + 2.42, + 2.33, + 2.31, + 2.4, + 2.52, + 2.59, + 2.66, + 2.77, + 2.92, + 3.21, + 3.59, + 3.98, + 4.32, + 4.55, + 4.58, + 4.28, + 3.81, + 3.24, + 2.79, + 2.54, + 2.47, + 2.44, + 2.57, + 2.77, + 2.95, + 3.0, + 2.88, + 2.87, + 3.0300000000000002, + 3.06, + 2.98, + 2.81, + 2.59, + 2.33, + 2.0, + 1.72, + 1.3900000000000001, + 1.1400000000000001, + 1.05, + 1.1400000000000001, + 1.33, + 1.37, + 1.27, + 1.1, + 0.98, + 0.96, + 0.97, + 1.09, + 1.3800000000000001, + 1.79, + 2.29, + 2.64, + 2.8000000000000003, + 2.81, + 2.8000000000000003, + 2.87, + 2.74, + 2.47, + 2.22, + 2.0100000000000002, + 2.0300000000000002, + 2.1, + 1.99, + 1.84, + 1.53, + 1.24, + 1.05, + 0.9500000000000001, + 1.03, + 1.19, + 1.32, + 1.37, + 1.18, + 0.74, + 0.29, + -0.06, + -0.05, + 0.29, + 0.61, + 0.88, + 1.04, + 1.24, + 1.31, + 1.33, + 1.2, + 0.97, + 0.8200000000000001, + 0.7000000000000001, + 0.68, + 0.78, + 0.93, + 1.1400000000000001, + 1.34 + ], + [ + 4.41, + 4.34, + 4.1, + 3.85, + 3.79, + 3.8000000000000003, + 3.81, + 3.81, + 3.8000000000000003, + 3.7600000000000002, + 3.69, + 3.6, + 3.48, + 3.4, + 3.33, + 3.31, + 3.3200000000000003, + 3.34, + 3.37, + 3.37, + 3.3200000000000003, + 3.2600000000000002, + 3.19, + 3.15, + 3.13, + 3.11, + 3.04, + 2.94, + 2.81, + 2.69, + 2.61, + 2.5300000000000002, + 2.5100000000000002, + 2.5100000000000002, + 2.56, + 2.62, + 2.65, + 2.62, + 2.57, + 2.49, + 2.42, + 2.37, + 2.32, + 2.25, + 2.2, + 2.21, + 2.31, + 2.5300000000000002, + 2.8000000000000003, + 3.14, + 3.46, + 3.68, + 3.86, + 3.88, + 3.88, + 3.75, + 3.6, + 3.42, + 3.23, + 3.0700000000000003, + 2.93, + 2.84, + 2.84, + 2.85, + 2.84, + 2.75, + 2.6, + 2.52, + 2.5300000000000002, + 2.61, + 2.7, + 2.75, + 2.83, + 2.88, + 2.96, + 3.0500000000000003, + 3.21, + 3.39, + 3.5, + 3.72, + 3.87, + 3.96, + 4.01, + 4.11, + 4.19, + 4.21, + 4.14, + 4.1, + 4.13, + 4.19, + 4.28, + 4.3500000000000005, + 4.48, + 4.63, + 4.82, + 4.92, + 4.98, + 5.04, + 5.12, + 5.25, + 5.37, + 5.47, + 5.5600000000000005, + 5.63, + 5.67, + 5.68, + 5.71, + 5.82, + 5.93, + 5.91, + 5.83, + 5.82, + 5.88, + 5.96, + 5.99, + 5.95, + 5.91, + 5.93, + 5.98, + 6.0600000000000005, + 6.1000000000000005, + 6.08, + 6.01, + 5.91, + 5.79, + 5.6000000000000005, + 5.22, + 4.5200000000000005, + 3.77, + 3.0300000000000002, + 2.37, + 1.9000000000000001, + 1.6, + 1.58, + 1.7, + 1.96, + 2.1, + 2.12, + 2.13, + 2.11, + 2.05, + 1.98, + 1.95, + 1.8900000000000001, + 1.77, + 1.74, + 1.81, + 2.27, + 3.17, + 4.24, + 5.25, + 5.82, + 6.1000000000000005, + 6.19, + 6.18, + 6.09, + 5.88, + 5.71, + 5.61, + 5.64, + 5.82, + 5.92, + 5.87, + 5.65, + 5.44, + 5.37, + 5.46, + 5.5200000000000005, + 5.44, + 5.37, + 5.4, + 5.48, + 5.61, + 5.73, + 5.82, + 5.8, + 5.76, + 5.63, + 5.48, + 5.4, + 5.3100000000000005, + 5.24, + 5.07, + 4.75, + 4.5, + 4.42, + 4.34, + 4.34, + 4.3, + 4.3100000000000005, + 4.39, + 4.45, + 4.51, + 4.5, + 4.55, + 4.65, + 4.75, + 4.84, + 4.94, + 4.96, + 4.96, + 4.96, + 4.88, + 4.86, + 4.89, + 4.95, + 5.0600000000000005, + 5.17, + 5.33, + 5.6000000000000005, + 5.92, + 6.2, + 6.46, + 6.640000000000001, + 6.78, + 6.8500000000000005, + 6.88, + 6.86, + 6.76, + 6.6000000000000005, + 6.46, + 6.34, + 6.2, + 5.98, + 5.78, + 5.69, + 5.69, + 5.75, + 5.7700000000000005, + 5.74, + 5.67, + 5.55, + 5.41, + 5.23, + 5.01, + 4.79, + 4.53, + 4.28, + 4.0, + 3.59, + 3.24, + 2.95, + 2.79, + 2.63, + 2.59, + 2.69, + 2.89, + 3.23, + 3.38, + 3.41, + 3.33, + 3.13, + 2.81, + 2.56, + 2.4, + 2.31, + 2.35, + 2.4, + 2.43, + 2.5100000000000002, + 2.59, + 2.71, + 2.97, + 3.2600000000000002, + 3.65, + 4.05, + 4.41, + 4.63, + 4.59, + 4.24, + 3.63, + 3.0300000000000002, + 2.58, + 2.41, + 2.38, + 2.43, + 2.5, + 2.64, + 2.75, + 2.65, + 2.52, + 2.59, + 2.7800000000000002, + 2.87, + 2.81, + 2.68, + 2.46, + 2.16, + 1.83, + 1.48, + 1.16, + 0.84, + 0.76, + 0.86, + 1.05, + 1.17, + 1.06, + 0.9500000000000001, + 0.9, + 0.9400000000000001, + 1.02, + 1.09, + 1.35, + 1.74, + 2.2, + 2.56, + 2.67, + 2.7, + 2.7800000000000002, + 2.86, + 2.82, + 2.5300000000000002, + 2.22, + 2.0, + 1.9000000000000001, + 1.96, + 1.99, + 1.86, + 1.71, + 1.48, + 1.28, + 1.21, + 1.18, + 1.26, + 1.36, + 1.37, + 1.26, + 0.96, + 0.52, + 0.27, + 0.21, + 0.38, + 0.6900000000000001, + 0.87, + 1.04, + 1.11, + 1.18, + 1.01, + 0.8200000000000001, + 0.6900000000000001, + 0.58, + 0.61, + 0.67, + 0.71, + 0.77, + 0.88, + 0.9500000000000001 + ], + [ + 4.37, + 4.32, + 4.0200000000000005, + 3.73, + 3.67, + 3.68, + 3.67, + 3.68, + 3.66, + 3.63, + 3.58, + 3.49, + 3.42, + 3.34, + 3.3000000000000003, + 3.2800000000000002, + 3.2800000000000002, + 3.29, + 3.29, + 3.27, + 3.24, + 3.17, + 3.12, + 3.09, + 3.0700000000000003, + 3.02, + 2.95, + 2.82, + 2.7, + 2.6, + 2.52, + 2.48, + 2.45, + 2.45, + 2.5100000000000002, + 2.56, + 2.59, + 2.6, + 2.5300000000000002, + 2.46, + 2.4, + 2.35, + 2.31, + 2.27, + 2.27, + 2.3000000000000003, + 2.46, + 2.67, + 2.99, + 3.31, + 3.5700000000000003, + 3.79, + 3.89, + 3.89, + 3.72, + 3.59, + 3.42, + 3.23, + 3.1, + 2.95, + 2.85, + 2.7800000000000002, + 2.72, + 2.72, + 2.71, + 2.59, + 2.5100000000000002, + 2.5100000000000002, + 2.56, + 2.71, + 2.86, + 2.97, + 3.0700000000000003, + 3.16, + 3.23, + 3.31, + 3.48, + 3.54, + 3.65, + 3.8000000000000003, + 3.95, + 4.0, + 4.03, + 4.0600000000000005, + 4.12, + 4.14, + 4.03, + 3.95, + 3.99, + 4.0200000000000005, + 4.11, + 4.23, + 4.38, + 4.54, + 4.73, + 4.84, + 4.92, + 5.0, + 5.14, + 5.28, + 5.4, + 5.5, + 5.57, + 5.64, + 5.69, + 5.7, + 5.75, + 5.87, + 5.95, + 5.91, + 5.83, + 5.8500000000000005, + 5.9, + 6.0, + 6.0200000000000005, + 5.95, + 5.89, + 5.88, + 5.94, + 6.03, + 6.11, + 6.16, + 6.11, + 6.03, + 5.93, + 5.71, + 5.36, + 4.84, + 4.09, + 3.44, + 2.8000000000000003, + 2.2800000000000002, + 2.04, + 1.92, + 2.06, + 2.18, + 2.24, + 2.24, + 2.21, + 2.17, + 2.06, + 1.95, + 1.9000000000000001, + 1.85, + 1.79, + 1.73, + 1.94, + 2.34, + 3.11, + 4.18, + 4.97, + 5.49, + 5.73, + 5.78, + 5.75, + 5.63, + 5.54, + 5.42, + 5.44, + 5.61, + 5.83, + 5.97, + 5.9, + 5.62, + 5.33, + 5.24, + 5.3500000000000005, + 5.4, + 5.33, + 5.26, + 5.3100000000000005, + 5.45, + 5.59, + 5.75, + 5.84, + 5.89, + 5.8500000000000005, + 5.82, + 5.67, + 5.48, + 5.3500000000000005, + 5.25, + 5.0600000000000005, + 4.86, + 4.79, + 4.76, + 4.79, + 4.7700000000000005, + 4.73, + 4.68, + 4.67, + 4.71, + 4.65, + 4.63, + 4.68, + 4.7700000000000005, + 4.87, + 4.96, + 4.97, + 4.97, + 4.92, + 4.91, + 4.96, + 4.99, + 5.01, + 5.09, + 5.09, + 5.15, + 5.24, + 5.5, + 5.86, + 6.21, + 6.5, + 6.69, + 6.86, + 6.95, + 7.0, + 6.99, + 6.890000000000001, + 6.76, + 6.62, + 6.51, + 6.37, + 6.18, + 5.98, + 5.9, + 5.92, + 5.97, + 5.97, + 5.94, + 5.86, + 5.76, + 5.63, + 5.47, + 5.3100000000000005, + 5.09, + 4.8500000000000005, + 4.58, + 4.15, + 3.73, + 3.2800000000000002, + 2.99, + 2.79, + 2.62, + 2.48, + 2.59, + 2.93, + 3.3000000000000003, + 3.5700000000000003, + 3.5700000000000003, + 3.34, + 3.0, + 2.7, + 2.5, + 2.37, + 2.38, + 2.38, + 2.36, + 2.38, + 2.43, + 2.5, + 2.7600000000000002, + 3.02, + 3.35, + 3.74, + 4.11, + 4.47, + 4.67, + 4.58, + 4.13, + 3.44, + 2.7600000000000002, + 2.32, + 2.2, + 2.23, + 2.3000000000000003, + 2.34, + 2.44, + 2.43, + 2.35, + 2.2800000000000002, + 2.32, + 2.5, + 2.64, + 2.6, + 2.48, + 2.29, + 1.99, + 1.6600000000000001, + 1.31, + 0.93, + 0.62, + 0.4, + 0.52, + 0.7000000000000001, + 0.77, + 0.77, + 0.6900000000000001, + 0.76, + 0.9, + 1.05, + 1.22, + 1.41, + 1.8, + 2.23, + 2.5100000000000002, + 2.62, + 2.61, + 2.69, + 2.69, + 2.65, + 2.5300000000000002, + 2.22, + 2.0, + 1.92, + 1.92, + 1.96, + 1.9100000000000001, + 1.79, + 1.6600000000000001, + 1.51, + 1.44, + 1.43, + 1.41, + 1.41, + 1.42, + 1.27, + 1.06, + 0.8200000000000001, + 0.55, + 0.52, + 0.65, + 0.73, + 0.9, + 1.03, + 1.08, + 0.9, + 0.66, + 0.37, + 0.23, + 0.3, + 0.42, + 0.56, + 0.5700000000000001, + 0.51, + 0.44, + 0.49 + ], + [ + 4.34, + 4.24, + 3.94, + 3.64, + 3.54, + 3.54, + 3.54, + 3.5300000000000002, + 3.5100000000000002, + 3.49, + 3.45, + 3.39, + 3.3200000000000003, + 3.27, + 3.24, + 3.23, + 3.22, + 3.22, + 3.21, + 3.18, + 3.14, + 3.1, + 3.06, + 3.02, + 2.98, + 2.93, + 2.82, + 2.69, + 2.56, + 2.47, + 2.43, + 2.4, + 2.37, + 2.37, + 2.4, + 2.46, + 2.5100000000000002, + 2.5100000000000002, + 2.49, + 2.43, + 2.39, + 2.35, + 2.36, + 2.37, + 2.39, + 2.49, + 2.62, + 2.87, + 3.16, + 3.44, + 3.71, + 3.9, + 4.0, + 3.83, + 3.63, + 3.41, + 3.24, + 3.09, + 2.96, + 2.87, + 2.7800000000000002, + 2.71, + 2.63, + 2.57, + 2.5500000000000003, + 2.5500000000000003, + 2.58, + 2.58, + 2.71, + 2.85, + 3.0100000000000002, + 3.16, + 3.27, + 3.39, + 3.41, + 3.48, + 3.54, + 3.62, + 3.69, + 3.83, + 3.96, + 3.99, + 3.95, + 3.96, + 3.97, + 3.95, + 3.96, + 3.9, + 3.91, + 3.95, + 4.01, + 4.17, + 4.34, + 4.57, + 4.74, + 4.8500000000000005, + 4.92, + 5.0600000000000005, + 5.19, + 5.34, + 5.46, + 5.5200000000000005, + 5.58, + 5.65, + 5.7, + 5.78, + 5.8500000000000005, + 5.92, + 5.98, + 5.97, + 5.91, + 5.92, + 6.0, + 6.04, + 6.01, + 5.93, + 5.82, + 5.8, + 5.86, + 5.97, + 6.11, + 6.21, + 6.24, + 6.15, + 5.96, + 5.7700000000000005, + 5.4, + 4.9, + 4.37, + 3.74, + 3.24, + 2.75, + 2.44, + 2.36, + 2.36, + 2.41, + 2.4, + 2.34, + 2.31, + 2.2600000000000002, + 2.14, + 2.04, + 1.95, + 1.9100000000000001, + 1.83, + 1.97, + 2.12, + 2.5500000000000003, + 3.27, + 3.99, + 4.74, + 5.09, + 5.26, + 5.33, + 5.2700000000000005, + 5.2, + 5.15, + 5.16, + 5.28, + 5.5600000000000005, + 5.86, + 6.0600000000000005, + 5.95, + 5.61, + 5.21, + 5.0600000000000005, + 5.16, + 5.26, + 5.21, + 5.12, + 5.24, + 5.4, + 5.61, + 5.78, + 5.9, + 5.95, + 5.91, + 5.88, + 5.8, + 5.57, + 5.36, + 5.24, + 5.16, + 5.08, + 5.08, + 5.15, + 5.21, + 5.19, + 5.14, + 5.03, + 4.98, + 4.91, + 4.84, + 4.8, + 4.8500000000000005, + 4.93, + 5.03, + 5.11, + 5.1000000000000005, + 5.01, + 4.96, + 5.03, + 5.16, + 5.26, + 5.34, + 5.36, + 5.36, + 5.28, + 5.34, + 5.5, + 5.83, + 6.2, + 6.46, + 6.68, + 6.8, + 6.94, + 7.0200000000000005, + 7.03, + 7.01, + 6.890000000000001, + 6.79, + 6.69, + 6.55, + 6.34, + 6.16, + 6.1000000000000005, + 6.11, + 6.15, + 6.16, + 6.12, + 6.05, + 5.93, + 5.84, + 5.76, + 5.62, + 5.41, + 5.17, + 4.79, + 4.3500000000000005, + 3.8000000000000003, + 3.33, + 2.98, + 2.7800000000000002, + 2.61, + 2.47, + 2.52, + 2.94, + 3.42, + 3.69, + 3.65, + 3.27, + 2.89, + 2.62, + 2.46, + 2.46, + 2.44, + 2.35, + 2.32, + 2.37, + 2.39, + 2.5500000000000003, + 2.8000000000000003, + 3.11, + 3.44, + 3.79, + 4.16, + 4.47, + 4.65, + 4.46, + 3.87, + 3.13, + 2.42, + 1.9000000000000001, + 1.8, + 1.92, + 1.99, + 2.05, + 2.12, + 2.16, + 2.14, + 2.04, + 2.16, + 2.33, + 2.41, + 2.38, + 2.2600000000000002, + 2.09, + 1.83, + 1.49, + 1.17, + 0.79, + 0.34, + 0.13, + 0.06, + 0.2, + 0.34, + 0.3, + 0.35000000000000003, + 0.52, + 0.8, + 1.08, + 1.31, + 1.62, + 1.94, + 2.25, + 2.54, + 2.56, + 2.5300000000000002, + 2.47, + 2.47, + 2.42, + 2.31, + 2.18, + 1.98, + 1.93, + 1.95, + 1.96, + 1.8900000000000001, + 1.81, + 1.68, + 1.6400000000000001, + 1.6400000000000001, + 1.62, + 1.52, + 1.47, + 1.34, + 1.25, + 1.11, + 0.93, + 0.84, + 0.79, + 0.7000000000000001, + 0.74, + 0.8, + 0.91, + 0.92, + 0.67, + 0.24, + -0.08, + -0.23, + -0.09, + 0.15, + 0.31, + 0.39, + 0.27, + 0.07, + 0.05 + ], + [ + 4.25, + 4.23, + 3.85, + 3.49, + 3.43, + 3.42, + 3.41, + 3.4, + 3.38, + 3.36, + 3.3200000000000003, + 3.27, + 3.22, + 3.17, + 3.16, + 3.15, + 3.15, + 3.14, + 3.12, + 3.09, + 3.06, + 3.02, + 2.98, + 2.93, + 2.88, + 2.79, + 2.69, + 2.54, + 2.41, + 2.36, + 2.33, + 2.31, + 2.2800000000000002, + 2.27, + 2.29, + 2.35, + 2.41, + 2.44, + 2.42, + 2.4, + 2.38, + 2.39, + 2.44, + 2.5100000000000002, + 2.58, + 2.67, + 2.83, + 3.04, + 3.27, + 3.5500000000000003, + 3.7800000000000002, + 4.01, + 3.91, + 3.75, + 3.48, + 3.25, + 3.08, + 2.93, + 2.82, + 2.75, + 2.72, + 2.64, + 2.58, + 2.5300000000000002, + 2.54, + 2.64, + 2.72, + 2.79, + 2.86, + 2.98, + 3.14, + 3.24, + 3.39, + 3.46, + 3.5100000000000002, + 3.52, + 3.5700000000000003, + 3.6, + 3.65, + 3.75, + 3.89, + 3.89, + 3.81, + 3.7800000000000002, + 3.7800000000000002, + 3.8000000000000003, + 3.83, + 3.84, + 3.87, + 3.93, + 4.03, + 4.18, + 4.41, + 4.65, + 4.83, + 4.94, + 5.07, + 5.18, + 5.34, + 5.47, + 5.5200000000000005, + 5.57, + 5.61, + 5.67, + 5.74, + 5.84, + 5.94, + 6.0, + 6.01, + 5.97, + 5.97, + 6.01, + 6.0600000000000005, + 6.04, + 6.0, + 5.88, + 5.74, + 5.74, + 5.78, + 5.91, + 6.09, + 6.28, + 6.36, + 6.25, + 6.04, + 5.73, + 5.37, + 4.9, + 4.4, + 3.95, + 3.46, + 3.13, + 2.86, + 2.68, + 2.66, + 2.64, + 2.56, + 2.48, + 2.47, + 2.43, + 2.35, + 2.21, + 2.17, + 2.09, + 2.19, + 2.29, + 2.56, + 2.92, + 3.38, + 4.03, + 4.45, + 4.72, + 4.7700000000000005, + 4.82, + 4.88, + 4.8500000000000005, + 4.84, + 4.96, + 5.13, + 5.5200000000000005, + 5.91, + 6.09, + 6.04, + 5.57, + 5.04, + 4.9, + 4.99, + 5.08, + 5.0600000000000005, + 5.11, + 5.23, + 5.48, + 5.7, + 5.91, + 6.04, + 6.0600000000000005, + 6.0200000000000005, + 5.91, + 5.8, + 5.63, + 5.42, + 5.26, + 5.22, + 5.25, + 5.34, + 5.47, + 5.5, + 5.5200000000000005, + 5.37, + 5.28, + 5.15, + 5.08, + 5.0200000000000005, + 4.97, + 4.99, + 5.07, + 5.15, + 5.23, + 5.25, + 5.13, + 5.09, + 5.26, + 5.46, + 5.59, + 5.71, + 5.72, + 5.68, + 5.58, + 5.5, + 5.64, + 5.88, + 6.19, + 6.46, + 6.61, + 6.74, + 6.87, + 6.98, + 7.05, + 7.05, + 7.03, + 6.95, + 6.88, + 6.72, + 6.55, + 6.390000000000001, + 6.3, + 6.33, + 6.36, + 6.37, + 6.32, + 6.21, + 6.1000000000000005, + 6.08, + 6.04, + 5.9, + 5.71, + 5.39, + 5.0200000000000005, + 4.5200000000000005, + 3.94, + 3.37, + 3.0, + 2.77, + 2.6, + 2.5, + 2.61, + 2.94, + 3.45, + 3.7600000000000002, + 3.5100000000000002, + 3.15, + 2.77, + 2.56, + 2.5500000000000003, + 2.5300000000000002, + 2.41, + 2.3000000000000003, + 2.33, + 2.37, + 2.45, + 2.58, + 2.79, + 3.1, + 3.44, + 3.8000000000000003, + 4.2, + 4.51, + 4.5600000000000005, + 4.25, + 3.56, + 2.73, + 1.94, + 1.47, + 1.28, + 1.45, + 1.6400000000000001, + 1.79, + 1.87, + 1.98, + 1.99, + 2.0300000000000002, + 2.09, + 2.19, + 2.2600000000000002, + 2.18, + 2.07, + 1.8800000000000001, + 1.62, + 1.36, + 1.05, + 0.65, + 0.17, + -0.3, + -0.38, + -0.37, + -0.31, + -0.18, + -0.02, + 0.26, + 0.7000000000000001, + 1.08, + 1.44, + 1.76, + 2.0300000000000002, + 2.32, + 2.35, + 2.41, + 2.35, + 2.2600000000000002, + 2.14, + 2.09, + 2.05, + 1.93, + 1.87, + 1.85, + 1.87, + 1.81, + 1.76, + 1.6300000000000001, + 1.61, + 1.6300000000000001, + 1.72, + 1.6400000000000001, + 1.54, + 1.36, + 1.24, + 1.17, + 1.09, + 1.07, + 1.02, + 0.85, + 0.7000000000000001, + 0.5700000000000001, + 0.6, + 0.68, + 0.67, + 0.48, + 0.01, + -0.46, + -0.51, + -0.47000000000000003, + -0.18, + 0.11, + 0.21, + 0.17, + 0.07, + -0.16 + ], + [ + 4.17, + 4.0600000000000005, + 3.73, + 3.45, + 3.33, + 3.31, + 3.3000000000000003, + 3.2800000000000002, + 3.25, + 3.22, + 3.19, + 3.14, + 3.08, + 3.0500000000000003, + 3.04, + 3.0500000000000003, + 3.0500000000000003, + 3.04, + 3.0100000000000002, + 2.99, + 2.95, + 2.91, + 2.86, + 2.81, + 2.74, + 2.66, + 2.54, + 2.38, + 2.32, + 2.2600000000000002, + 2.2600000000000002, + 2.24, + 2.21, + 2.18, + 2.2, + 2.25, + 2.31, + 2.35, + 2.37, + 2.36, + 2.39, + 2.46, + 2.54, + 2.66, + 2.7600000000000002, + 2.87, + 2.99, + 3.14, + 3.34, + 3.5300000000000002, + 3.8000000000000003, + 3.85, + 3.79, + 3.52, + 3.2600000000000002, + 3.08, + 2.91, + 2.77, + 2.66, + 2.59, + 2.59, + 2.6, + 2.5500000000000003, + 2.56, + 2.66, + 2.7800000000000002, + 2.86, + 2.95, + 2.97, + 3.04, + 3.15, + 3.2600000000000002, + 3.37, + 3.49, + 3.54, + 3.54, + 3.5300000000000002, + 3.54, + 3.5300000000000002, + 3.62, + 3.7, + 3.68, + 3.66, + 3.64, + 3.66, + 3.73, + 3.7600000000000002, + 3.8000000000000003, + 3.81, + 3.9, + 4.0200000000000005, + 4.22, + 4.46, + 4.72, + 4.95, + 5.14, + 5.2700000000000005, + 5.42, + 5.5600000000000005, + 5.59, + 5.62, + 5.62, + 5.65, + 5.68, + 5.75, + 5.84, + 5.95, + 5.98, + 5.94, + 5.93, + 5.92, + 6.0, + 5.99, + 6.01, + 5.97, + 5.86, + 5.78, + 5.71, + 5.76, + 5.86, + 6.09, + 6.34, + 6.42, + 6.34, + 6.08, + 5.75, + 5.34, + 4.86, + 4.41, + 4.0, + 3.65, + 3.37, + 3.25, + 3.11, + 2.94, + 2.91, + 2.79, + 2.74, + 2.7, + 2.71, + 2.64, + 2.58, + 2.49, + 2.5500000000000003, + 2.62, + 2.82, + 3.0700000000000003, + 3.35, + 3.71, + 4.07, + 4.38, + 4.41, + 4.39, + 4.38, + 4.49, + 4.66, + 4.7700000000000005, + 4.88, + 5.2, + 5.5200000000000005, + 5.92, + 6.19, + 5.96, + 5.53, + 5.03, + 4.72, + 4.8100000000000005, + 4.94, + 4.98, + 5.0600000000000005, + 5.32, + 5.59, + 5.84, + 6.0600000000000005, + 6.23, + 6.22, + 6.12, + 5.98, + 5.8500000000000005, + 5.68, + 5.46, + 5.3100000000000005, + 5.2700000000000005, + 5.3500000000000005, + 5.51, + 5.61, + 5.71, + 5.6000000000000005, + 5.49, + 5.3100000000000005, + 5.21, + 5.14, + 5.1000000000000005, + 5.09, + 5.11, + 5.19, + 5.2700000000000005, + 5.36, + 5.37, + 5.33, + 5.3500000000000005, + 5.48, + 5.69, + 5.89, + 5.96, + 6.0600000000000005, + 5.96, + 5.86, + 5.78, + 5.79, + 6.0200000000000005, + 6.29, + 6.49, + 6.61, + 6.72, + 6.84, + 6.95, + 7.04, + 7.08, + 7.08, + 7.07, + 7.0, + 6.91, + 6.74, + 6.62, + 6.58, + 6.58, + 6.61, + 6.61, + 6.5, + 6.390000000000001, + 6.36, + 6.3500000000000005, + 6.3, + 6.2, + 5.92, + 5.61, + 5.2, + 4.72, + 4.1, + 3.45, + 2.94, + 2.71, + 2.57, + 2.48, + 2.62, + 3.0, + 3.42, + 3.54, + 3.37, + 2.91, + 2.59, + 2.57, + 2.59, + 2.52, + 2.39, + 2.38, + 2.38, + 2.48, + 2.52, + 2.6, + 2.77, + 3.02, + 3.37, + 3.8200000000000003, + 4.25, + 4.54, + 4.53, + 4.11, + 3.2800000000000002, + 2.32, + 1.54, + 0.93, + 0.9, + 1.05, + 1.37, + 1.6, + 1.8, + 1.9100000000000001, + 2.0100000000000002, + 2.0300000000000002, + 2.07, + 2.14, + 2.07, + 1.98, + 1.8, + 1.62, + 1.43, + 1.2, + 0.96, + 0.53, + -0.04, + -0.54, + -0.92, + -0.93, + -0.93, + -0.75, + -0.41000000000000003, + 0.1, + 0.64, + 1.1, + 1.52, + 1.81, + 2.09, + 2.11, + 2.13, + 2.09, + 2.06, + 1.8900000000000001, + 1.74, + 1.69, + 1.67, + 1.67, + 1.6300000000000001, + 1.61, + 1.58, + 1.54, + 1.42, + 1.3800000000000001, + 1.4000000000000001, + 1.48, + 1.54, + 1.58, + 1.3800000000000001, + 1.2, + 1.1400000000000001, + 1.09, + 1.1500000000000001, + 1.18, + 1.07, + 0.88, + 0.63, + 0.43, + 0.37, + 0.47000000000000003, + 0.51, + 0.31, + 0.0, + -0.38, + -0.74, + -0.6, + -0.44, + -0.12, + 0.18, + 0.29, + 0.23, + 0.13 + ], + [ + 4.05, + 4.0600000000000005, + 3.66, + 3.3000000000000003, + 3.23, + 3.21, + 3.18, + 3.16, + 3.12, + 3.09, + 3.0500000000000003, + 2.99, + 2.94, + 2.92, + 2.92, + 2.93, + 2.94, + 2.92, + 2.9, + 2.87, + 2.84, + 2.77, + 2.71, + 2.65, + 2.59, + 2.5300000000000002, + 2.42, + 2.36, + 2.27, + 2.2600000000000002, + 2.25, + 2.22, + 2.16, + 2.12, + 2.13, + 2.17, + 2.23, + 2.29, + 2.32, + 2.36, + 2.44, + 2.54, + 2.69, + 2.82, + 2.93, + 3.02, + 3.09, + 3.19, + 3.3000000000000003, + 3.47, + 3.61, + 3.71, + 3.54, + 3.2600000000000002, + 3.0700000000000003, + 2.92, + 2.77, + 2.62, + 2.52, + 2.45, + 2.44, + 2.48, + 2.5300000000000002, + 2.61, + 2.73, + 2.83, + 2.96, + 2.99, + 3.02, + 3.09, + 3.17, + 3.24, + 3.34, + 3.47, + 3.56, + 3.52, + 3.49, + 3.45, + 3.39, + 3.43, + 3.5100000000000002, + 3.5700000000000003, + 3.5700000000000003, + 3.59, + 3.67, + 3.73, + 3.8000000000000003, + 3.81, + 3.83, + 3.87, + 4.04, + 4.24, + 4.5200000000000005, + 4.8100000000000005, + 5.1000000000000005, + 5.3500000000000005, + 5.5200000000000005, + 5.68, + 5.71, + 5.72, + 5.67, + 5.65, + 5.69, + 5.7, + 5.69, + 5.7700000000000005, + 5.82, + 5.8, + 5.75, + 5.69, + 5.73, + 5.78, + 5.9, + 5.95, + 5.99, + 5.95, + 5.8500000000000005, + 5.8100000000000005, + 5.7700000000000005, + 5.89, + 6.1000000000000005, + 6.34, + 6.5, + 6.390000000000001, + 6.13, + 5.78, + 5.3500000000000005, + 4.89, + 4.45, + 4.03, + 3.72, + 3.61, + 3.61, + 3.61, + 3.46, + 3.27, + 3.16, + 3.02, + 3.0, + 3.0300000000000002, + 3.0, + 2.97, + 2.99, + 3.0300000000000002, + 3.1, + 3.33, + 3.56, + 3.79, + 4.04, + 4.29, + 4.41, + 4.3100000000000005, + 4.09, + 4.09, + 4.21, + 4.49, + 4.8, + 5.01, + 5.3100000000000005, + 5.67, + 5.99, + 6.04, + 5.96, + 5.4, + 4.87, + 4.66, + 4.68, + 4.74, + 4.82, + 5.05, + 5.37, + 5.67, + 5.92, + 6.19, + 6.37, + 6.390000000000001, + 6.23, + 6.05, + 5.9, + 5.73, + 5.45, + 5.2700000000000005, + 5.26, + 5.3500000000000005, + 5.49, + 5.69, + 5.68, + 5.62, + 5.41, + 5.24, + 5.13, + 5.09, + 5.0600000000000005, + 5.08, + 5.17, + 5.2700000000000005, + 5.41, + 5.51, + 5.59, + 5.57, + 5.55, + 5.69, + 5.86, + 5.98, + 6.12, + 6.15, + 6.2, + 6.0600000000000005, + 5.98, + 6.0600000000000005, + 6.21, + 6.42, + 6.6000000000000005, + 6.67, + 6.74, + 6.83, + 6.94, + 7.01, + 7.0600000000000005, + 7.11, + 7.12, + 7.12, + 7.05, + 6.95, + 6.86, + 6.83, + 6.83, + 6.8500000000000005, + 6.7700000000000005, + 6.7, + 6.65, + 6.62, + 6.640000000000001, + 6.61, + 6.41, + 6.15, + 5.79, + 5.38, + 4.83, + 4.19, + 3.47, + 2.87, + 2.48, + 2.33, + 2.33, + 2.52, + 2.94, + 3.3000000000000003, + 3.45, + 3.12, + 2.67, + 2.5300000000000002, + 2.52, + 2.57, + 2.5300000000000002, + 2.48, + 2.46, + 2.54, + 2.64, + 2.66, + 2.67, + 2.81, + 3.0100000000000002, + 3.36, + 3.87, + 4.3100000000000005, + 4.59, + 4.57, + 4.0, + 3.14, + 2.16, + 1.19, + 0.78, + 0.51, + 0.87, + 1.21, + 1.56, + 1.8, + 1.96, + 2.07, + 2.07, + 2.07, + 2.0, + 1.9000000000000001, + 1.73, + 1.53, + 1.32, + 1.16, + 1.0, + 0.79, + 0.45, + -0.18, + -0.81, + -1.17, + -1.47, + -1.42, + -1.32, + -0.79, + -0.11, + 0.51, + 1.09, + 1.44, + 1.8, + 1.87, + 1.87, + 1.82, + 1.75, + 1.6, + 1.41, + 1.26, + 1.23, + 1.29, + 1.34, + 1.34, + 1.29, + 1.21, + 1.12, + 1.06, + 1.07, + 1.1300000000000001, + 1.24, + 1.33, + 1.29, + 1.17, + 1.11, + 1.04, + 1.12, + 1.22, + 1.22, + 1.1300000000000001, + 0.92, + 0.6, + 0.41000000000000003, + 0.32, + 0.29, + 0.37, + 0.38, + 0.15, + -0.16, + -0.45, + -0.6900000000000001, + -0.48, + -0.24, + 0.15, + 0.52, + 0.53, + 0.41000000000000003 + ], + [ + 3.94, + 3.84, + 3.5100000000000002, + 3.25, + 3.14, + 3.1, + 3.0700000000000003, + 3.0300000000000002, + 2.99, + 2.96, + 2.91, + 2.86, + 2.81, + 2.79, + 2.81, + 2.82, + 2.83, + 2.81, + 2.7800000000000002, + 2.75, + 2.69, + 2.63, + 2.56, + 2.5100000000000002, + 2.5, + 2.46, + 2.43, + 2.36, + 2.34, + 2.31, + 2.2800000000000002, + 2.23, + 2.16, + 2.09, + 2.08, + 2.11, + 2.18, + 2.24, + 2.32, + 2.41, + 2.52, + 2.68, + 2.83, + 2.96, + 3.0700000000000003, + 3.1, + 3.15, + 3.17, + 3.22, + 3.29, + 3.43, + 3.43, + 3.3000000000000003, + 3.1, + 2.92, + 2.7600000000000002, + 2.61, + 2.5, + 2.4, + 2.36, + 2.36, + 2.4, + 2.5, + 2.59, + 2.71, + 2.84, + 2.95, + 3.04, + 3.11, + 3.14, + 3.17, + 3.21, + 3.31, + 3.46, + 3.5100000000000002, + 3.47, + 3.44, + 3.39, + 3.36, + 3.35, + 3.43, + 3.54, + 3.6, + 3.66, + 3.74, + 3.8200000000000003, + 3.88, + 3.88, + 3.87, + 3.94, + 4.04, + 4.28, + 4.5600000000000005, + 4.9, + 5.25, + 5.51, + 5.75, + 5.84, + 5.86, + 5.78, + 5.7, + 5.71, + 5.75, + 5.7, + 5.62, + 5.59, + 5.59, + 5.54, + 5.44, + 5.38, + 5.44, + 5.55, + 5.7700000000000005, + 5.92, + 6.05, + 6.09, + 6.01, + 5.92, + 5.89, + 5.91, + 6.11, + 6.38, + 6.47, + 6.42, + 6.19, + 5.8500000000000005, + 5.44, + 4.96, + 4.48, + 4.05, + 3.7, + 3.73, + 3.97, + 4.0200000000000005, + 4.0, + 3.77, + 3.5300000000000002, + 3.35, + 3.25, + 3.27, + 3.3200000000000003, + 3.34, + 3.43, + 3.42, + 3.47, + 3.6, + 3.89, + 4.14, + 4.34, + 4.53, + 4.5600000000000005, + 4.36, + 4.0200000000000005, + 3.85, + 4.0600000000000005, + 4.32, + 4.68, + 5.08, + 5.43, + 5.79, + 5.93, + 5.99, + 5.64, + 5.19, + 4.72, + 4.45, + 4.46, + 4.5200000000000005, + 4.71, + 4.99, + 5.3100000000000005, + 5.63, + 5.95, + 6.26, + 6.48, + 6.47, + 6.32, + 6.09, + 5.88, + 5.6000000000000005, + 5.37, + 5.22, + 5.15, + 5.25, + 5.4, + 5.53, + 5.63, + 5.49, + 5.29, + 5.09, + 4.98, + 4.92, + 4.9, + 4.95, + 5.1000000000000005, + 5.3, + 5.48, + 5.66, + 5.7700000000000005, + 5.8, + 5.76, + 5.79, + 5.9, + 6.0, + 6.09, + 6.21, + 6.21, + 6.19, + 6.2, + 6.26, + 6.42, + 6.59, + 6.69, + 6.74, + 6.78, + 6.84, + 6.9, + 6.96, + 7.03, + 7.1000000000000005, + 7.18, + 7.22, + 7.2, + 7.11, + 7.05, + 7.03, + 7.04, + 6.98, + 6.93, + 6.86, + 6.87, + 6.92, + 6.96, + 6.84, + 6.66, + 6.3500000000000005, + 5.98, + 5.47, + 4.91, + 4.19, + 3.39, + 2.69, + 2.23, + 1.97, + 2.0, + 2.2600000000000002, + 2.7600000000000002, + 3.21, + 3.2, + 3.02, + 2.65, + 2.39, + 2.5, + 2.61, + 2.5500000000000003, + 2.52, + 2.57, + 2.67, + 2.72, + 2.77, + 2.8000000000000003, + 2.9, + 3.13, + 3.46, + 3.9, + 4.36, + 4.61, + 4.51, + 4.14, + 3.23, + 2.18, + 1.35, + 0.63, + 0.64, + 0.75, + 1.19, + 1.6, + 1.82, + 2.02, + 2.02, + 2.05, + 1.97, + 1.8800000000000001, + 1.72, + 1.5, + 1.25, + 1.01, + 0.8300000000000001, + 0.73, + 0.59, + 0.25, + -0.24, + -0.86, + -1.4000000000000001, + -1.6400000000000001, + -1.8800000000000001, + -1.6300000000000001, + -1.28, + -0.48, + 0.34, + 0.85, + 1.3, + 1.5, + 1.62, + 1.61, + 1.52, + 1.41, + 1.21, + 1.04, + 0.87, + 0.87, + 1.0, + 1.06, + 1.08, + 0.99, + 0.87, + 0.73, + 0.74, + 0.77, + 0.88, + 1.01, + 1.11, + 1.1, + 1.08, + 1.01, + 1.03, + 1.1300000000000001, + 1.18, + 1.23, + 1.1500000000000001, + 0.9500000000000001, + 0.76, + 0.55, + 0.37, + 0.29, + 0.29, + 0.4, + 0.44, + 0.17, + -0.13, + -0.36, + -0.49, + -0.17, + 0.18, + 0.58, + 0.86, + 0.53 + ], + [ + 3.83, + 3.84, + 3.45, + 3.11, + 3.04, + 3.0, + 2.96, + 2.92, + 2.88, + 2.84, + 2.79, + 2.75, + 2.71, + 2.7, + 2.7, + 2.73, + 2.72, + 2.69, + 2.65, + 2.6, + 2.54, + 2.47, + 2.41, + 2.43, + 2.43, + 2.47, + 2.47, + 2.45, + 2.43, + 2.39, + 2.34, + 2.2600000000000002, + 2.15, + 2.08, + 2.05, + 2.09, + 2.17, + 2.2600000000000002, + 2.39, + 2.5, + 2.66, + 2.81, + 2.95, + 3.08, + 3.12, + 3.16, + 3.13, + 3.13, + 3.09, + 3.0700000000000003, + 3.13, + 3.18, + 3.0700000000000003, + 2.91, + 2.74, + 2.57, + 2.45, + 2.37, + 2.33, + 2.33, + 2.35, + 2.42, + 2.49, + 2.59, + 2.69, + 2.82, + 2.96, + 3.12, + 3.24, + 3.21, + 3.16, + 3.18, + 3.23, + 3.38, + 3.5, + 3.5, + 3.45, + 3.45, + 3.42, + 3.42, + 3.5, + 3.59, + 3.67, + 3.74, + 3.84, + 3.91, + 3.96, + 3.97, + 3.97, + 4.0, + 4.12, + 4.3100000000000005, + 4.62, + 4.98, + 5.32, + 5.65, + 5.84, + 5.98, + 5.92, + 5.8100000000000005, + 5.74, + 5.7700000000000005, + 5.75, + 5.65, + 5.55, + 5.45, + 5.3500000000000005, + 5.24, + 5.15, + 5.15, + 5.21, + 5.51, + 5.74, + 5.99, + 6.18, + 6.21, + 6.18, + 6.07, + 5.99, + 6.0, + 6.13, + 6.3, + 6.44, + 6.41, + 6.24, + 5.96, + 5.57, + 5.1000000000000005, + 4.59, + 4.0600000000000005, + 3.69, + 3.66, + 4.07, + 4.44, + 4.38, + 4.26, + 3.92, + 3.59, + 3.5, + 3.48, + 3.5300000000000002, + 3.62, + 3.69, + 3.71, + 3.65, + 3.72, + 4.0, + 4.3100000000000005, + 4.5600000000000005, + 4.75, + 4.76, + 4.45, + 4.1, + 3.94, + 3.96, + 4.26, + 4.55, + 5.05, + 5.51, + 5.79, + 5.94, + 5.73, + 5.43, + 4.9, + 4.41, + 4.25, + 4.21, + 4.37, + 4.57, + 4.83, + 5.17, + 5.51, + 5.87, + 6.22, + 6.47, + 6.49, + 6.2700000000000005, + 6.0200000000000005, + 5.69, + 5.42, + 5.2, + 5.09, + 5.0600000000000005, + 5.08, + 5.22, + 5.38, + 5.43, + 5.38, + 5.15, + 4.91, + 4.78, + 4.71, + 4.7, + 4.75, + 4.95, + 5.24, + 5.51, + 5.75, + 5.92, + 5.92, + 5.89, + 5.89, + 5.92, + 5.98, + 6.03, + 6.140000000000001, + 6.23, + 6.29, + 6.36, + 6.46, + 6.62, + 6.72, + 6.8, + 6.8100000000000005, + 6.8, + 6.79, + 6.82, + 6.88, + 6.97, + 7.09, + 7.21, + 7.3, + 7.2700000000000005, + 7.22, + 7.15, + 7.15, + 7.12, + 7.1000000000000005, + 6.99, + 6.95, + 7.05, + 7.21, + 7.2, + 7.1000000000000005, + 6.88, + 6.59, + 6.09, + 5.54, + 4.87, + 4.13, + 3.3000000000000003, + 2.49, + 1.93, + 1.62, + 1.58, + 1.96, + 2.45, + 2.85, + 3.04, + 2.79, + 2.54, + 2.41, + 2.48, + 2.49, + 2.5100000000000002, + 2.52, + 2.62, + 2.71, + 2.7800000000000002, + 2.77, + 2.82, + 2.98, + 3.22, + 3.5700000000000003, + 3.99, + 4.32, + 4.49, + 4.51, + 4.18, + 3.56, + 2.5300000000000002, + 1.56, + 1.0, + 0.68, + 0.89, + 1.21, + 1.55, + 1.83, + 1.82, + 1.8800000000000001, + 1.79, + 1.77, + 1.6500000000000001, + 1.51, + 1.26, + 0.96, + 0.73, + 0.55, + 0.47000000000000003, + 0.39, + 0.17, + -0.26, + -0.81, + -1.27, + -1.71, + -1.83, + -1.97, + -1.4000000000000001, + -0.85, + -0.02, + 0.63, + 1.03, + 1.24, + 1.3800000000000001, + 1.3900000000000001, + 1.37, + 1.22, + 1.1, + 0.9, + 0.8300000000000001, + 0.86, + 0.91, + 1.0, + 0.9400000000000001, + 0.8300000000000001, + 0.62, + 0.52, + 0.43, + 0.53, + 0.66, + 0.88, + 1.0, + 1.08, + 1.04, + 0.99, + 0.98, + 0.97, + 1.05, + 1.08, + 1.09, + 1.03, + 0.92, + 0.74, + 0.48, + 0.27, + 0.23, + 0.37, + 0.53, + 0.56, + 0.24, + -0.04, + -0.12, + -0.09, + 0.33, + 0.75, + 0.84, + 0.67 + ], + [ + 3.7, + 3.62, + 3.3200000000000003, + 3.08, + 2.96, + 2.92, + 2.88, + 2.84, + 2.79, + 2.75, + 2.71, + 2.66, + 2.63, + 2.61, + 2.62, + 2.63, + 2.61, + 2.58, + 2.52, + 2.45, + 2.4, + 2.33, + 2.35, + 2.36, + 2.45, + 2.52, + 2.5300000000000002, + 2.54, + 2.5, + 2.46, + 2.38, + 2.2800000000000002, + 2.18, + 2.09, + 2.08, + 2.13, + 2.22, + 2.36, + 2.49, + 2.64, + 2.7800000000000002, + 2.91, + 3.04, + 3.08, + 3.14, + 3.08, + 3.08, + 3.0, + 2.95, + 2.89, + 2.86, + 2.88, + 2.83, + 2.7, + 2.54, + 2.42, + 2.31, + 2.29, + 2.31, + 2.35, + 2.42, + 2.49, + 2.5500000000000003, + 2.61, + 2.7, + 2.82, + 3.0300000000000002, + 3.25, + 3.29, + 3.3000000000000003, + 3.21, + 3.11, + 3.19, + 3.35, + 3.48, + 3.56, + 3.5500000000000003, + 3.5700000000000003, + 3.54, + 3.52, + 3.59, + 3.67, + 3.75, + 3.85, + 3.95, + 4.0200000000000005, + 4.04, + 4.04, + 4.04, + 4.0600000000000005, + 4.15, + 4.36, + 4.63, + 4.99, + 5.39, + 5.67, + 5.92, + 5.96, + 5.92, + 5.8100000000000005, + 5.73, + 5.7, + 5.66, + 5.57, + 5.45, + 5.33, + 5.16, + 5.01, + 4.97, + 4.99, + 5.25, + 5.54, + 5.86, + 6.12, + 6.2700000000000005, + 6.37, + 6.28, + 6.18, + 6.0600000000000005, + 6.01, + 6.09, + 6.21, + 6.33, + 6.38, + 6.28, + 6.09, + 5.72, + 5.24, + 4.66, + 4.0, + 3.58, + 3.67, + 4.0600000000000005, + 4.5600000000000005, + 4.79, + 4.59, + 4.33, + 3.99, + 3.7, + 3.67, + 3.71, + 3.8200000000000003, + 3.96, + 3.87, + 3.7, + 3.79, + 4.08, + 4.42, + 4.72, + 4.92, + 4.94, + 4.73, + 4.38, + 4.16, + 4.19, + 4.29, + 4.65, + 5.04, + 5.55, + 5.88, + 5.74, + 5.57, + 5.09, + 4.57, + 4.21, + 3.98, + 4.05, + 4.23, + 4.43, + 4.65, + 4.94, + 5.3, + 5.71, + 6.12, + 6.36, + 6.32, + 6.11, + 5.7700000000000005, + 5.44, + 5.14, + 4.94, + 4.89, + 4.92, + 4.94, + 5.0, + 5.14, + 5.29, + 5.19, + 5.01, + 4.7700000000000005, + 4.58, + 4.5, + 4.47, + 4.57, + 4.8100000000000005, + 5.13, + 5.47, + 5.76, + 5.95, + 6.03, + 5.99, + 5.97, + 5.97, + 5.98, + 6.04, + 6.11, + 6.24, + 6.37, + 6.46, + 6.61, + 6.69, + 6.82, + 6.83, + 6.84, + 6.74, + 6.67, + 6.66, + 6.72, + 6.84, + 7.0200000000000005, + 7.19, + 7.29, + 7.3, + 7.24, + 7.18, + 7.18, + 7.16, + 7.08, + 6.99, + 7.04, + 7.17, + 7.3500000000000005, + 7.49, + 7.38, + 7.17, + 6.72, + 6.17, + 5.48, + 4.76, + 3.96, + 3.09, + 2.29, + 1.6600000000000001, + 1.31, + 1.3, + 1.58, + 2.12, + 2.54, + 2.63, + 2.54, + 2.35, + 2.23, + 2.2800000000000002, + 2.36, + 2.33, + 2.42, + 2.57, + 2.74, + 2.77, + 2.71, + 2.79, + 3.0, + 3.2800000000000002, + 3.65, + 3.98, + 4.2, + 4.36, + 4.43, + 4.26, + 3.7, + 2.89, + 1.9100000000000001, + 1.22, + 0.9500000000000001, + 0.9500000000000001, + 1.24, + 1.55, + 1.55, + 1.51, + 1.4000000000000001, + 1.3800000000000001, + 1.35, + 1.33, + 1.19, + 0.9500000000000001, + 0.72, + 0.51, + 0.42, + 0.4, + 0.37, + 0.26, + -0.05, + -0.45, + -0.9500000000000001, + -1.26, + -1.6400000000000001, + -1.56, + -1.49, + -0.79, + -0.21, + 0.49, + 0.9400000000000001, + 1.21, + 1.32, + 1.41, + 1.42, + 1.37, + 1.26, + 1.18, + 1.1500000000000001, + 1.17, + 1.18, + 1.16, + 1.07, + 0.86, + 0.64, + 0.38, + 0.34, + 0.32, + 0.64, + 0.86, + 1.1, + 1.17, + 1.09, + 0.96, + 0.8300000000000001, + 0.72, + 0.77, + 0.85, + 0.9500000000000001, + 1.04, + 0.97, + 0.81, + 0.51, + 0.16, + 0.07, + 0.29, + 0.56, + 0.67, + 0.63, + 0.35000000000000003, + 0.2, + 0.27, + 0.49, + 0.85, + 1.07, + 0.72 + ], + [ + 3.6, + 3.6, + 3.27, + 2.97, + 2.9, + 2.86, + 2.83, + 2.7800000000000002, + 2.74, + 2.69, + 2.65, + 2.61, + 2.58, + 2.56, + 2.5500000000000003, + 2.54, + 2.52, + 2.47, + 2.4, + 2.36, + 2.3000000000000003, + 2.31, + 2.3000000000000003, + 2.39, + 2.48, + 2.5300000000000002, + 2.59, + 2.56, + 2.54, + 2.48, + 2.41, + 2.32, + 2.22, + 2.16, + 2.16, + 2.22, + 2.34, + 2.48, + 2.62, + 2.7600000000000002, + 2.86, + 2.97, + 2.98, + 3.0300000000000002, + 2.95, + 2.93, + 2.87, + 2.83, + 2.74, + 2.67, + 2.65, + 2.63, + 2.6, + 2.52, + 2.41, + 2.32, + 2.27, + 2.3000000000000003, + 2.34, + 2.43, + 2.5, + 2.57, + 2.62, + 2.63, + 2.68, + 2.84, + 3.0500000000000003, + 3.24, + 3.38, + 3.33, + 3.25, + 3.15, + 3.09, + 3.3000000000000003, + 3.5100000000000002, + 3.5700000000000003, + 3.6, + 3.6, + 3.58, + 3.6, + 3.68, + 3.77, + 3.87, + 3.97, + 4.09, + 4.14, + 4.12, + 4.1, + 4.08, + 4.08, + 4.21, + 4.36, + 4.64, + 4.97, + 5.33, + 5.67, + 5.82, + 5.9, + 5.83, + 5.72, + 5.64, + 5.57, + 5.49, + 5.41, + 5.32, + 5.22, + 5.07, + 4.9, + 4.84, + 5.03, + 5.28, + 5.69, + 6.04, + 6.24, + 6.4, + 6.42, + 6.37, + 6.21, + 6.05, + 6.0, + 5.99, + 6.11, + 6.24, + 6.32, + 6.33, + 6.13, + 5.78, + 5.2700000000000005, + 4.57, + 3.94, + 3.56, + 3.54, + 4.19, + 4.7700000000000005, + 4.98, + 4.96, + 4.68, + 4.36, + 4.0200000000000005, + 3.81, + 3.87, + 4.0, + 4.04, + 4.01, + 3.85, + 3.8200000000000003, + 4.15, + 4.55, + 4.87, + 5.11, + 5.18, + 5.05, + 4.82, + 4.65, + 4.58, + 4.65, + 4.8, + 5.28, + 5.73, + 5.72, + 5.58, + 5.2, + 4.76, + 4.3, + 3.91, + 3.81, + 3.89, + 4.08, + 4.26, + 4.43, + 4.65, + 5.03, + 5.5200000000000005, + 5.92, + 6.13, + 6.11, + 5.8100000000000005, + 5.48, + 5.11, + 4.78, + 4.64, + 4.59, + 4.65, + 4.75, + 4.79, + 4.9, + 4.98, + 5.04, + 4.8100000000000005, + 4.57, + 4.39, + 4.25, + 4.24, + 4.36, + 4.63, + 5.0, + 5.37, + 5.7, + 5.95, + 6.0600000000000005, + 6.08, + 6.07, + 6.04, + 6.04, + 6.0600000000000005, + 6.15, + 6.25, + 6.36, + 6.49, + 6.57, + 6.68, + 6.72, + 6.78, + 6.7, + 6.5600000000000005, + 6.46, + 6.42, + 6.5, + 6.66, + 6.87, + 7.11, + 7.2700000000000005, + 7.3, + 7.25, + 7.23, + 7.21, + 7.15, + 7.09, + 7.0600000000000005, + 7.07, + 7.3100000000000005, + 7.55, + 7.68, + 7.72, + 7.390000000000001, + 6.88, + 6.16, + 5.34, + 4.53, + 3.71, + 2.84, + 2.02, + 1.42, + 1.08, + 1.04, + 1.3800000000000001, + 1.85, + 2.22, + 2.35, + 2.29, + 2.1, + 2.05, + 2.04, + 2.04, + 2.0300000000000002, + 2.21, + 2.49, + 2.65, + 2.7600000000000002, + 2.7600000000000002, + 2.79, + 3.02, + 3.34, + 3.64, + 3.91, + 4.15, + 4.32, + 4.4, + 4.32, + 3.86, + 2.92, + 2.02, + 1.37, + 1.01, + 1.04, + 1.24, + 1.32, + 1.28, + 1.05, + 0.8, + 0.79, + 0.88, + 0.93, + 0.86, + 0.7000000000000001, + 0.51, + 0.4, + 0.44, + 0.49, + 0.5700000000000001, + 0.5700000000000001, + 0.45, + 0.18, + -0.15, + -0.58, + -0.79, + -1.02, + -0.86, + -0.63, + 0.0, + 0.59, + 1.06, + 1.3800000000000001, + 1.49, + 1.61, + 1.6300000000000001, + 1.6500000000000001, + 1.59, + 1.61, + 1.62, + 1.6400000000000001, + 1.6500000000000001, + 1.56, + 1.42, + 1.1500000000000001, + 0.85, + 0.58, + 0.35000000000000003, + 0.53, + 0.72, + 1.1, + 1.35, + 1.31, + 1.19, + 0.93, + 0.65, + 0.56, + 0.48, + 0.65, + 0.8300000000000001, + 0.92, + 0.92, + 0.72, + 0.34, + 0.01, + -0.07, + 0.08, + 0.48, + 0.74, + 0.73, + 0.66, + 0.48, + 0.51, + 0.75, + 1.07, + 1.17, + 1.0 + ], + [ + 3.49, + 3.44, + 3.19, + 2.97, + 2.87, + 2.83, + 2.79, + 2.75, + 2.71, + 2.67, + 2.63, + 2.59, + 2.5500000000000003, + 2.52, + 2.49, + 2.47, + 2.44, + 2.39, + 2.35, + 2.3000000000000003, + 2.31, + 2.31, + 2.35, + 2.42, + 2.48, + 2.5500000000000003, + 2.56, + 2.5500000000000003, + 2.5100000000000002, + 2.47, + 2.42, + 2.36, + 2.3000000000000003, + 2.2600000000000002, + 2.27, + 2.35, + 2.47, + 2.6, + 2.73, + 2.8000000000000003, + 2.89, + 2.83, + 2.84, + 2.73, + 2.68, + 2.64, + 2.62, + 2.59, + 2.5300000000000002, + 2.49, + 2.44, + 2.47, + 2.45, + 2.42, + 2.37, + 2.32, + 2.33, + 2.35, + 2.41, + 2.48, + 2.5500000000000003, + 2.62, + 2.62, + 2.63, + 2.67, + 2.79, + 3.02, + 3.24, + 3.35, + 3.39, + 3.2800000000000002, + 3.16, + 3.17, + 3.29, + 3.47, + 3.5500000000000003, + 3.59, + 3.6, + 3.62, + 3.68, + 3.7600000000000002, + 3.88, + 3.99, + 4.13, + 4.24, + 4.23, + 4.21, + 4.15, + 4.12, + 4.18, + 4.2700000000000005, + 4.41, + 4.58, + 4.92, + 5.26, + 5.5200000000000005, + 5.72, + 5.75, + 5.72, + 5.63, + 5.5200000000000005, + 5.42, + 5.2700000000000005, + 5.17, + 5.15, + 5.1000000000000005, + 4.98, + 4.8500000000000005, + 4.92, + 5.0600000000000005, + 5.46, + 5.8500000000000005, + 6.19, + 6.4, + 6.49, + 6.51, + 6.4, + 6.23, + 6.09, + 5.95, + 5.98, + 6.03, + 6.15, + 6.3100000000000005, + 6.26, + 6.07, + 5.69, + 5.11, + 4.49, + 3.95, + 3.6, + 3.8200000000000003, + 4.29, + 4.92, + 5.2700000000000005, + 5.22, + 5.07, + 4.66, + 4.2, + 4.03, + 3.96, + 4.05, + 4.12, + 4.03, + 3.87, + 3.96, + 4.3, + 4.71, + 5.05, + 5.3, + 5.46, + 5.42, + 5.32, + 5.21, + 5.12, + 5.13, + 5.29, + 5.6000000000000005, + 5.7, + 5.67, + 5.28, + 4.8500000000000005, + 4.44, + 3.99, + 3.73, + 3.59, + 3.71, + 3.95, + 4.1, + 4.15, + 4.38, + 4.8, + 5.24, + 5.62, + 5.8500000000000005, + 5.76, + 5.51, + 5.15, + 4.8, + 4.47, + 4.24, + 4.23, + 4.3100000000000005, + 4.4, + 4.51, + 4.54, + 4.67, + 4.63, + 4.55, + 4.32, + 4.15, + 4.04, + 3.98, + 4.11, + 4.4, + 4.79, + 5.21, + 5.58, + 5.9, + 6.11, + 6.19, + 6.21, + 6.16, + 6.12, + 6.15, + 6.17, + 6.2700000000000005, + 6.34, + 6.41, + 6.47, + 6.5, + 6.5200000000000005, + 6.51, + 6.47, + 6.32, + 6.17, + 6.17, + 6.28, + 6.46, + 6.74, + 7.0200000000000005, + 7.2700000000000005, + 7.34, + 7.3, + 7.26, + 7.2, + 7.16, + 7.1000000000000005, + 7.09, + 7.26, + 7.48, + 7.76, + 7.97, + 7.930000000000001, + 7.7, + 7.05, + 6.140000000000001, + 5.22, + 4.26, + 3.38, + 2.5100000000000002, + 1.74, + 1.19, + 0.87, + 0.91, + 1.2, + 1.71, + 2.11, + 2.23, + 2.16, + 2.0, + 1.84, + 1.79, + 1.71, + 1.78, + 1.94, + 2.24, + 2.5500000000000003, + 2.67, + 2.77, + 2.87, + 3.09, + 3.3200000000000003, + 3.54, + 3.8200000000000003, + 4.12, + 4.37, + 4.5200000000000005, + 4.43, + 3.75, + 2.86, + 1.97, + 1.28, + 1.05, + 0.99, + 1.1, + 1.1400000000000001, + 0.9400000000000001, + 0.51, + 0.31, + 0.15, + 0.37, + 0.62, + 0.66, + 0.56, + 0.43, + 0.4, + 0.45, + 0.62, + 0.78, + 0.99, + 1.07, + 1.04, + 0.87, + 0.5, + 0.23, + -0.11, + -0.23, + -0.09, + 0.26, + 0.78, + 1.32, + 1.5, + 1.68, + 1.72, + 1.81, + 1.8, + 1.83, + 1.85, + 1.96, + 2.02, + 2.0300000000000002, + 1.99, + 1.78, + 1.56, + 1.22, + 0.93, + 0.78, + 0.8200000000000001, + 1.12, + 1.47, + 1.5, + 1.48, + 1.18, + 0.87, + 0.62, + 0.42, + 0.46, + 0.59, + 0.76, + 0.84, + 0.79, + 0.5700000000000001, + 0.25, + -0.06, + -0.19, + 0.01, + 0.3, + 0.59, + 0.73, + 0.62, + 0.55, + 0.66, + 0.92, + 1.27, + 1.5, + 1.25 + ], + [ + 3.45, + 3.42, + 3.17, + 2.92, + 2.86, + 2.82, + 2.79, + 2.75, + 2.71, + 2.67, + 2.63, + 2.6, + 2.5500000000000003, + 2.5, + 2.46, + 2.43, + 2.39, + 2.35, + 2.31, + 2.32, + 2.34, + 2.36, + 2.4, + 2.42, + 2.47, + 2.49, + 2.5100000000000002, + 2.5, + 2.47, + 2.45, + 2.44, + 2.41, + 2.38, + 2.36, + 2.38, + 2.46, + 2.56, + 2.67, + 2.71, + 2.77, + 2.67, + 2.61, + 2.46, + 2.34, + 2.32, + 2.3000000000000003, + 2.37, + 2.38, + 2.39, + 2.36, + 2.39, + 2.41, + 2.43, + 2.44, + 2.41, + 2.4, + 2.4, + 2.42, + 2.46, + 2.5, + 2.56, + 2.59, + 2.6, + 2.59, + 2.61, + 2.77, + 2.96, + 3.18, + 3.34, + 3.36, + 3.3200000000000003, + 3.23, + 3.22, + 3.36, + 3.5, + 3.6, + 3.64, + 3.69, + 3.74, + 3.81, + 3.9, + 4.0, + 4.1, + 4.22, + 4.3, + 4.33, + 4.25, + 4.21, + 4.23, + 4.29, + 4.36, + 4.44, + 4.62, + 4.86, + 5.14, + 5.36, + 5.5200000000000005, + 5.64, + 5.62, + 5.57, + 5.46, + 5.29, + 5.15, + 4.99, + 4.94, + 5.01, + 4.97, + 5.0200000000000005, + 5.07, + 5.33, + 5.64, + 6.09, + 6.44, + 6.58, + 6.65, + 6.6000000000000005, + 6.46, + 6.32, + 6.140000000000001, + 6.07, + 6.03, + 6.04, + 6.08, + 6.140000000000001, + 6.1000000000000005, + 5.83, + 5.4, + 4.89, + 4.43, + 4.0200000000000005, + 3.94, + 4.1, + 4.63, + 5.21, + 5.47, + 5.51, + 5.33, + 5.0, + 4.58, + 4.21, + 4.17, + 4.12, + 4.14, + 4.03, + 3.99, + 4.08, + 4.45, + 4.94, + 5.3, + 5.5600000000000005, + 5.72, + 5.7700000000000005, + 5.72, + 5.68, + 5.66, + 5.63, + 5.78, + 5.7700000000000005, + 5.8100000000000005, + 5.43, + 4.98, + 4.59, + 4.18, + 3.84, + 3.5300000000000002, + 3.47, + 3.5100000000000002, + 3.75, + 3.93, + 4.0, + 4.12, + 4.47, + 4.88, + 5.24, + 5.45, + 5.41, + 5.12, + 4.8, + 4.48, + 4.16, + 3.93, + 3.8000000000000003, + 3.9, + 4.0, + 4.04, + 4.0600000000000005, + 4.15, + 4.21, + 4.1, + 4.01, + 3.88, + 3.79, + 3.77, + 3.84, + 4.12, + 4.5600000000000005, + 4.99, + 5.42, + 5.79, + 6.1000000000000005, + 6.29, + 6.3, + 6.3, + 6.29, + 6.3100000000000005, + 6.32, + 6.33, + 6.3500000000000005, + 6.34, + 6.32, + 6.2700000000000005, + 6.26, + 6.21, + 6.17, + 6.05, + 5.95, + 5.96, + 6.08, + 6.29, + 6.6000000000000005, + 7.01, + 7.29, + 7.3500000000000005, + 7.32, + 7.22, + 7.17, + 7.1000000000000005, + 7.0600000000000005, + 7.2, + 7.42, + 7.71, + 8.03, + 8.23, + 8.26, + 7.930000000000001, + 7.32, + 6.3100000000000005, + 5.09, + 4.04, + 3.02, + 2.16, + 1.45, + 0.9400000000000001, + 0.75, + 0.78, + 1.17, + 1.6500000000000001, + 2.11, + 2.32, + 2.18, + 1.95, + 1.76, + 1.57, + 1.5, + 1.49, + 1.73, + 2.0, + 2.29, + 2.56, + 2.68, + 2.87, + 3.02, + 3.14, + 3.35, + 3.66, + 4.01, + 4.42, + 4.63, + 4.3500000000000005, + 3.74, + 2.74, + 1.77, + 1.28, + 0.99, + 1.01, + 1.03, + 0.99, + 0.73, + 0.34, + -0.21, + -0.15, + 0.04, + 0.41000000000000003, + 0.6900000000000001, + 0.63, + 0.48, + 0.43, + 0.47000000000000003, + 0.63, + 0.96, + 1.25, + 1.61, + 1.8, + 1.6500000000000001, + 1.53, + 1.01, + 0.73, + 0.38, + 0.3, + 0.52, + 0.92, + 1.25, + 1.52, + 1.58, + 1.67, + 1.71, + 1.78, + 1.79, + 1.8800000000000001, + 1.99, + 2.14, + 2.2, + 2.18, + 2.06, + 1.84, + 1.59, + 1.28, + 1.1500000000000001, + 1.24, + 1.51, + 1.6, + 1.6500000000000001, + 1.37, + 1.06, + 0.76, + 0.55, + 0.46, + 0.54, + 0.66, + 0.8, + 0.81, + 0.6900000000000001, + 0.52, + 0.31, + 0.06, + -0.1, + -0.03, + 0.17, + 0.39, + 0.51, + 0.46, + 0.55, + 0.67, + 1.12, + 1.55, + 1.69, + 1.6600000000000001 + ], + [ + 3.39, + 3.34, + 3.14, + 2.94, + 2.86, + 2.83, + 2.8000000000000003, + 2.77, + 2.73, + 2.7, + 2.66, + 2.62, + 2.57, + 2.52, + 2.46, + 2.41, + 2.37, + 2.32, + 2.31, + 2.32, + 2.35, + 2.39, + 2.39, + 2.4, + 2.41, + 2.42, + 2.44, + 2.44, + 2.45, + 2.46, + 2.46, + 2.48, + 2.45, + 2.44, + 2.46, + 2.5100000000000002, + 2.6, + 2.61, + 2.64, + 2.5100000000000002, + 2.4, + 2.2, + 2.02, + 2.0, + 1.96, + 2.09, + 2.18, + 2.29, + 2.35, + 2.39, + 2.42, + 2.46, + 2.5100000000000002, + 2.5100000000000002, + 2.49, + 2.47, + 2.44, + 2.45, + 2.46, + 2.49, + 2.52, + 2.54, + 2.5500000000000003, + 2.54, + 2.6, + 2.73, + 2.94, + 3.14, + 3.29, + 3.34, + 3.29, + 3.24, + 3.3000000000000003, + 3.44, + 3.59, + 3.7, + 3.7800000000000002, + 3.88, + 3.94, + 4.0, + 4.07, + 4.09, + 4.17, + 4.25, + 4.32, + 4.2700000000000005, + 4.22, + 4.24, + 4.3100000000000005, + 4.39, + 4.45, + 4.53, + 4.64, + 4.86, + 5.03, + 5.23, + 5.34, + 5.48, + 5.57, + 5.5200000000000005, + 5.45, + 5.3100000000000005, + 5.15, + 5.0, + 4.93, + 4.99, + 5.18, + 5.2700000000000005, + 5.41, + 5.64, + 5.99, + 6.41, + 6.65, + 6.8100000000000005, + 6.83, + 6.79, + 6.62, + 6.46, + 6.3100000000000005, + 6.23, + 6.12, + 6.0, + 5.95, + 5.89, + 5.7700000000000005, + 5.41, + 5.0, + 4.62, + 4.25, + 4.22, + 4.22, + 4.51, + 4.96, + 5.45, + 5.7700000000000005, + 5.78, + 5.68, + 5.37, + 5.0, + 4.66, + 4.43, + 4.38, + 4.26, + 4.24, + 4.2, + 4.36, + 4.68, + 5.15, + 5.59, + 5.8500000000000005, + 5.99, + 6.04, + 5.99, + 5.97, + 5.93, + 5.99, + 5.93, + 5.96, + 5.6000000000000005, + 5.2, + 4.7700000000000005, + 4.4, + 4.05, + 3.73, + 3.49, + 3.34, + 3.43, + 3.63, + 3.8000000000000003, + 3.84, + 3.96, + 4.15, + 4.49, + 4.82, + 5.03, + 4.95, + 4.71, + 4.44, + 4.16, + 3.89, + 3.64, + 3.52, + 3.49, + 3.56, + 3.54, + 3.59, + 3.62, + 3.66, + 3.62, + 3.58, + 3.61, + 3.5500000000000003, + 3.5500000000000003, + 3.64, + 3.86, + 4.26, + 4.71, + 5.15, + 5.58, + 5.95, + 6.22, + 6.3500000000000005, + 6.390000000000001, + 6.43, + 6.47, + 6.5, + 6.44, + 6.38, + 6.29, + 6.17, + 6.11, + 5.98, + 5.97, + 5.94, + 5.86, + 5.7700000000000005, + 5.79, + 5.9, + 6.13, + 6.54, + 6.96, + 7.25, + 7.36, + 7.22, + 7.11, + 7.05, + 7.0, + 7.0600000000000005, + 7.22, + 7.54, + 7.95, + 8.32, + 8.61, + 8.59, + 8.33, + 7.6000000000000005, + 6.53, + 5.25, + 3.81, + 2.75, + 1.84, + 1.19, + 0.81, + 0.62, + 0.79, + 1.1500000000000001, + 1.73, + 2.25, + 2.42, + 2.33, + 2.04, + 1.75, + 1.51, + 1.28, + 1.37, + 1.54, + 1.82, + 2.06, + 2.29, + 2.5, + 2.66, + 2.81, + 2.93, + 3.06, + 3.38, + 3.88, + 4.32, + 4.55, + 4.38, + 3.63, + 2.66, + 1.76, + 1.1400000000000001, + 1.03, + 1.08, + 1.09, + 1.03, + 0.81, + 0.38, + 0.0, + -0.3, + 0.07, + 0.56, + 0.8300000000000001, + 0.86, + 0.73, + 0.59, + 0.62, + 0.78, + 1.05, + 1.44, + 1.81, + 2.0100000000000002, + 2.11, + 1.81, + 1.53, + 1.11, + 0.78, + 0.58, + 0.58, + 0.8300000000000001, + 1.07, + 1.24, + 1.3, + 1.37, + 1.44, + 1.49, + 1.56, + 1.6600000000000001, + 1.86, + 2.04, + 2.17, + 2.19, + 2.1, + 1.94, + 1.6500000000000001, + 1.41, + 1.37, + 1.5, + 1.6, + 1.69, + 1.47, + 1.16, + 0.8300000000000001, + 0.54, + 0.42, + 0.44, + 0.51, + 0.71, + 0.77, + 0.72, + 0.61, + 0.55, + 0.4, + 0.24, + 0.1, + 0.03, + 0.15, + 0.34, + 0.4, + 0.48, + 0.5, + 0.88, + 1.34, + 1.69, + 1.93, + 1.78 + ], + [ + 3.37, + 3.34, + 3.13, + 2.92, + 2.86, + 2.85, + 2.82, + 2.8000000000000003, + 2.7600000000000002, + 2.73, + 2.69, + 2.65, + 2.61, + 2.5500000000000003, + 2.48, + 2.41, + 2.35, + 2.31, + 2.29, + 2.31, + 2.34, + 2.35, + 2.35, + 2.35, + 2.34, + 2.38, + 2.4, + 2.43, + 2.46, + 2.48, + 2.52, + 2.52, + 2.49, + 2.46, + 2.45, + 2.49, + 2.5, + 2.5100000000000002, + 2.37, + 2.23, + 2.02, + 1.8, + 1.75, + 1.71, + 1.83, + 1.97, + 2.15, + 2.32, + 2.4, + 2.48, + 2.5100000000000002, + 2.56, + 2.58, + 2.58, + 2.54, + 2.48, + 2.45, + 2.44, + 2.46, + 2.49, + 2.52, + 2.52, + 2.5100000000000002, + 2.54, + 2.59, + 2.73, + 2.92, + 3.15, + 3.31, + 3.3200000000000003, + 3.2600000000000002, + 3.27, + 3.35, + 3.5100000000000002, + 3.69, + 3.83, + 3.98, + 4.07, + 4.13, + 4.17, + 4.16, + 4.18, + 4.2, + 4.26, + 4.21, + 4.16, + 4.15, + 4.19, + 4.36, + 4.48, + 4.58, + 4.67, + 4.76, + 4.91, + 5.05, + 5.14, + 5.2700000000000005, + 5.37, + 5.46, + 5.49, + 5.44, + 5.41, + 5.2700000000000005, + 5.14, + 5.08, + 5.19, + 5.36, + 5.54, + 5.72, + 5.95, + 6.3, + 6.59, + 6.87, + 6.94, + 7.0200000000000005, + 6.91, + 6.7700000000000005, + 6.55, + 6.42, + 6.25, + 6.1000000000000005, + 5.89, + 5.65, + 5.5600000000000005, + 5.39, + 5.07, + 4.69, + 4.34, + 4.29, + 4.29, + 4.58, + 4.88, + 5.3100000000000005, + 5.7700000000000005, + 6.0, + 6.07, + 5.98, + 5.78, + 5.44, + 5.15, + 4.89, + 4.72, + 4.64, + 4.62, + 4.63, + 4.72, + 5.05, + 5.43, + 5.82, + 6.1000000000000005, + 6.23, + 6.16, + 6.11, + 5.95, + 5.93, + 5.92, + 5.95, + 5.7, + 5.3500000000000005, + 4.9, + 4.49, + 4.23, + 3.97, + 3.69, + 3.46, + 3.34, + 3.33, + 3.54, + 3.7600000000000002, + 3.8000000000000003, + 3.8200000000000003, + 3.98, + 4.11, + 4.38, + 4.54, + 4.49, + 4.2700000000000005, + 4.0200000000000005, + 3.84, + 3.61, + 3.42, + 3.29, + 3.24, + 3.23, + 3.21, + 3.18, + 3.19, + 3.14, + 3.15, + 3.17, + 3.22, + 3.3200000000000003, + 3.34, + 3.44, + 3.66, + 3.96, + 4.38, + 4.8, + 5.24, + 5.7, + 6.04, + 6.2700000000000005, + 6.390000000000001, + 6.53, + 6.63, + 6.62, + 6.57, + 6.41, + 6.22, + 6.11, + 6.0, + 5.91, + 5.84, + 5.8100000000000005, + 5.74, + 5.67, + 5.64, + 5.7700000000000005, + 6.0200000000000005, + 6.41, + 6.87, + 7.18, + 7.17, + 7.07, + 6.96, + 6.9, + 6.93, + 7.0, + 7.24, + 7.58, + 8.13, + 8.68, + 8.96, + 9.05, + 8.67, + 7.98, + 6.8, + 5.3500000000000005, + 3.9, + 2.52, + 1.6400000000000001, + 1.08, + 0.71, + 0.62, + 0.76, + 1.2, + 1.78, + 2.38, + 2.68, + 2.48, + 2.18, + 1.83, + 1.51, + 1.34, + 1.31, + 1.51, + 1.69, + 1.86, + 1.97, + 2.15, + 2.36, + 2.5, + 2.64, + 2.81, + 3.17, + 3.65, + 4.19, + 4.48, + 4.2700000000000005, + 3.65, + 2.61, + 1.67, + 1.11, + 0.93, + 1.06, + 1.21, + 1.2, + 1.1300000000000001, + 0.79, + 0.42, + 0.25, + 0.34, + 0.8200000000000001, + 1.18, + 1.21, + 1.11, + 0.99, + 0.97, + 1.09, + 1.21, + 1.52, + 1.6600000000000001, + 1.8800000000000001, + 1.8800000000000001, + 1.74, + 1.58, + 1.32, + 0.99, + 0.71, + 0.62, + 0.64, + 0.87, + 0.96, + 1.06, + 1.04, + 1.12, + 1.1300000000000001, + 1.2, + 1.36, + 1.57, + 1.83, + 1.99, + 2.02, + 1.97, + 1.73, + 1.49, + 1.37, + 1.37, + 1.49, + 1.62, + 1.47, + 1.22, + 0.88, + 0.54, + 0.33, + 0.22, + 0.27, + 0.38, + 0.53, + 0.64, + 0.59, + 0.5, + 0.46, + 0.48, + 0.35000000000000003, + 0.23, + 0.18, + 0.33, + 0.49, + 0.5700000000000001, + 0.62, + 0.77, + 1.11, + 1.48, + 1.83, + 1.87, + 1.82 + ], + [ + 3.35, + 3.3000000000000003, + 3.12, + 2.94, + 2.87, + 2.87, + 2.85, + 2.83, + 2.8000000000000003, + 2.77, + 2.74, + 2.69, + 2.64, + 2.58, + 2.5100000000000002, + 2.44, + 2.36, + 2.31, + 2.2800000000000002, + 2.2800000000000002, + 2.3000000000000003, + 2.31, + 2.31, + 2.31, + 2.33, + 2.37, + 2.42, + 2.48, + 2.5100000000000002, + 2.54, + 2.5500000000000003, + 2.5300000000000002, + 2.48, + 2.41, + 2.38, + 2.35, + 2.35, + 2.23, + 2.1, + 1.92, + 1.7, + 1.6300000000000001, + 1.57, + 1.67, + 1.81, + 1.99, + 2.21, + 2.36, + 2.48, + 2.54, + 2.58, + 2.61, + 2.63, + 2.61, + 2.5300000000000002, + 2.47, + 2.42, + 2.42, + 2.5, + 2.54, + 2.56, + 2.5500000000000003, + 2.5300000000000002, + 2.54, + 2.58, + 2.7, + 2.96, + 3.21, + 3.33, + 3.36, + 3.3200000000000003, + 3.33, + 3.43, + 3.59, + 3.77, + 3.96, + 4.1, + 4.21, + 4.25, + 4.24, + 4.23, + 4.24, + 4.26, + 4.21, + 4.16, + 4.04, + 4.0200000000000005, + 4.21, + 4.4, + 4.61, + 4.75, + 4.8100000000000005, + 4.89, + 5.0, + 5.13, + 5.18, + 5.24, + 5.34, + 5.41, + 5.45, + 5.48, + 5.46, + 5.44, + 5.33, + 5.3, + 5.39, + 5.5, + 5.66, + 5.88, + 6.15, + 6.390000000000001, + 6.68, + 6.84, + 6.95, + 6.99, + 6.94, + 6.69, + 6.45, + 6.25, + 6.08, + 5.87, + 5.59, + 5.38, + 5.21, + 5.0600000000000005, + 4.89, + 4.5600000000000005, + 4.4, + 4.3500000000000005, + 4.62, + 4.91, + 5.29, + 5.71, + 6.03, + 6.25, + 6.3, + 6.25, + 6.0600000000000005, + 5.8100000000000005, + 5.54, + 5.33, + 5.15, + 5.0600000000000005, + 5.05, + 5.1000000000000005, + 5.2, + 5.41, + 5.74, + 5.99, + 6.22, + 6.23, + 6.17, + 5.89, + 5.73, + 5.62, + 5.62, + 5.58, + 5.38, + 4.99, + 4.54, + 4.3100000000000005, + 4.11, + 3.89, + 3.64, + 3.45, + 3.31, + 3.3200000000000003, + 3.43, + 3.62, + 3.75, + 3.7800000000000002, + 3.8000000000000003, + 3.9, + 3.97, + 4.09, + 4.0, + 3.7800000000000002, + 3.67, + 3.5, + 3.36, + 3.21, + 3.12, + 3.0700000000000003, + 3.0500000000000003, + 2.99, + 2.92, + 2.83, + 2.8000000000000003, + 2.7600000000000002, + 2.81, + 2.87, + 2.99, + 3.15, + 3.2800000000000002, + 3.5100000000000002, + 3.8000000000000003, + 4.0600000000000005, + 4.45, + 4.94, + 5.41, + 5.84, + 6.140000000000001, + 6.38, + 6.57, + 6.71, + 6.75, + 6.63, + 6.44, + 6.22, + 6.07, + 5.97, + 5.93, + 5.84, + 5.74, + 5.68, + 5.62, + 5.62, + 5.72, + 5.97, + 6.3100000000000005, + 6.73, + 6.91, + 6.93, + 6.8100000000000005, + 6.71, + 6.76, + 6.82, + 6.98, + 7.22, + 7.7, + 8.3, + 8.94, + 9.44, + 9.41, + 9.06, + 8.22, + 7.05, + 5.5200000000000005, + 3.9, + 2.57, + 1.61, + 1.04, + 0.74, + 0.63, + 0.78, + 1.17, + 1.87, + 2.52, + 2.82, + 2.72, + 2.3000000000000003, + 1.9100000000000001, + 1.6, + 1.42, + 1.43, + 1.58, + 1.6600000000000001, + 1.6400000000000001, + 1.67, + 1.67, + 1.86, + 2.13, + 2.3000000000000003, + 2.59, + 2.96, + 3.5, + 4.04, + 4.3100000000000005, + 4.19, + 3.5100000000000002, + 2.5500000000000003, + 1.58, + 0.91, + 0.77, + 0.9, + 1.18, + 1.41, + 1.42, + 1.3800000000000001, + 1.04, + 0.89, + 0.96, + 1.19, + 1.5, + 1.62, + 1.5, + 1.3800000000000001, + 1.34, + 1.28, + 1.4000000000000001, + 1.27, + 1.3800000000000001, + 1.4000000000000001, + 1.41, + 1.51, + 1.48, + 1.3900000000000001, + 1.18, + 0.85, + 0.61, + 0.6900000000000001, + 0.8200000000000001, + 0.99, + 1.03, + 1.03, + 0.9, + 0.89, + 0.84, + 0.99, + 1.25, + 1.51, + 1.6600000000000001, + 1.71, + 1.57, + 1.3800000000000001, + 1.23, + 1.1300000000000001, + 1.24, + 1.41, + 1.34, + 1.17, + 0.89, + 0.58, + 0.33, + 0.16, + 0.08, + 0.08, + 0.19, + 0.31, + 0.42, + 0.49, + 0.44, + 0.46, + 0.47000000000000003, + 0.4, + 0.3, + 0.39, + 0.55, + 0.6900000000000001, + 0.81, + 0.8300000000000001, + 1.0, + 1.23, + 1.55, + 1.6400000000000001, + 1.6, + 1.57 + ], + [ + 3.33, + 3.29, + 3.11, + 2.92, + 2.88, + 2.88, + 2.87, + 2.86, + 2.84, + 2.81, + 2.7800000000000002, + 2.73, + 2.68, + 2.61, + 2.54, + 2.47, + 2.39, + 2.33, + 2.29, + 2.2800000000000002, + 2.2800000000000002, + 2.29, + 2.3000000000000003, + 2.32, + 2.36, + 2.42, + 2.48, + 2.52, + 2.5500000000000003, + 2.5500000000000003, + 2.5300000000000002, + 2.48, + 2.39, + 2.31, + 2.21, + 2.18, + 2.08, + 1.97, + 1.83, + 1.6500000000000001, + 1.6, + 1.54, + 1.59, + 1.7, + 1.85, + 2.04, + 2.22, + 2.39, + 2.5100000000000002, + 2.58, + 2.61, + 2.64, + 2.65, + 2.62, + 2.5500000000000003, + 2.45, + 2.42, + 2.46, + 2.5500000000000003, + 2.65, + 2.67, + 2.63, + 2.6, + 2.56, + 2.57, + 2.75, + 3.0, + 3.24, + 3.39, + 3.41, + 3.39, + 3.41, + 3.5, + 3.64, + 3.79, + 3.98, + 4.18, + 4.2700000000000005, + 4.3, + 4.28, + 4.24, + 4.25, + 4.26, + 4.23, + 4.0200000000000005, + 3.89, + 4.01, + 4.21, + 4.51, + 4.7700000000000005, + 4.88, + 4.95, + 4.96, + 5.03, + 5.13, + 5.2, + 5.23, + 5.3, + 5.36, + 5.44, + 5.47, + 5.5, + 5.48, + 5.5, + 5.48, + 5.5200000000000005, + 5.62, + 5.69, + 5.9, + 6.11, + 6.34, + 6.53, + 6.69, + 6.8, + 6.8500000000000005, + 6.71, + 6.42, + 6.140000000000001, + 5.87, + 5.71, + 5.54, + 5.3100000000000005, + 5.13, + 4.99, + 4.88, + 4.74, + 4.69, + 4.54, + 4.69, + 4.94, + 5.33, + 5.71, + 6.0200000000000005, + 6.3100000000000005, + 6.46, + 6.5200000000000005, + 6.43, + 6.26, + 6.04, + 5.82, + 5.65, + 5.55, + 5.46, + 5.45, + 5.49, + 5.6000000000000005, + 5.74, + 5.8500000000000005, + 6.04, + 6.01, + 6.01, + 5.76, + 5.51, + 5.2700000000000005, + 5.16, + 5.17, + 5.13, + 4.96, + 4.59, + 4.37, + 4.24, + 4.08, + 3.86, + 3.66, + 3.49, + 3.36, + 3.2600000000000002, + 3.35, + 3.44, + 3.5700000000000003, + 3.72, + 3.74, + 3.68, + 3.73, + 3.67, + 3.56, + 3.45, + 3.33, + 3.25, + 3.12, + 3.0500000000000003, + 2.99, + 2.97, + 2.95, + 2.88, + 2.77, + 2.67, + 2.56, + 2.52, + 2.5, + 2.59, + 2.71, + 2.9, + 3.17, + 3.4, + 3.63, + 3.89, + 4.19, + 4.64, + 5.15, + 5.61, + 6.03, + 6.33, + 6.6000000000000005, + 6.79, + 6.82, + 6.74, + 6.46, + 6.16, + 5.99, + 5.91, + 5.86, + 5.8100000000000005, + 5.71, + 5.64, + 5.61, + 5.71, + 5.8100000000000005, + 5.95, + 6.2700000000000005, + 6.48, + 6.65, + 6.57, + 6.46, + 6.48, + 6.5600000000000005, + 6.73, + 6.93, + 7.3, + 7.8100000000000005, + 8.51, + 9.24, + 9.69, + 9.76, + 9.26, + 8.35, + 7.09, + 5.54, + 3.94, + 2.59, + 1.6600000000000001, + 1.1300000000000001, + 0.8200000000000001, + 0.75, + 0.86, + 1.25, + 1.8900000000000001, + 2.67, + 3.06, + 2.82, + 2.37, + 1.94, + 1.61, + 1.48, + 1.58, + 1.6400000000000001, + 1.6300000000000001, + 1.49, + 1.25, + 1.22, + 1.25, + 1.55, + 2.0, + 2.32, + 2.81, + 3.34, + 3.84, + 4.15, + 3.95, + 3.37, + 2.4, + 1.43, + 0.75, + 0.47000000000000003, + 0.7000000000000001, + 1.04, + 1.41, + 1.6600000000000001, + 1.6500000000000001, + 1.6, + 1.44, + 1.47, + 1.62, + 1.76, + 1.81, + 1.6500000000000001, + 1.5, + 1.25, + 1.18, + 0.99, + 0.89, + 0.8200000000000001, + 0.84, + 1.02, + 1.17, + 1.36, + 1.42, + 1.25, + 1.0, + 0.8300000000000001, + 0.89, + 1.11, + 1.36, + 1.35, + 1.24, + 1.03, + 0.66, + 0.58, + 0.58, + 0.84, + 1.11, + 1.26, + 1.2, + 1.07, + 0.99, + 0.86, + 0.91, + 1.04, + 1.06, + 0.97, + 0.78, + 0.53, + 0.32, + 0.19, + 0.05, + 0.0, + -0.03, + -0.02, + 0.1, + 0.28, + 0.36, + 0.52, + 0.54, + 0.53, + 0.47000000000000003, + 0.41000000000000003, + 0.5, + 0.65, + 0.81, + 0.84, + 0.87, + 1.02, + 1.23, + 1.34, + 1.27, + 1.19, + 1.1 + ], + [ + 3.3000000000000003, + 3.2600000000000002, + 3.1, + 2.93, + 2.88, + 2.89, + 2.89, + 2.88, + 2.87, + 2.84, + 2.81, + 2.7600000000000002, + 2.7, + 2.64, + 2.56, + 2.49, + 2.43, + 2.37, + 2.32, + 2.3000000000000003, + 2.29, + 2.29, + 2.32, + 2.36, + 2.43, + 2.5, + 2.54, + 2.5500000000000003, + 2.54, + 2.49, + 2.45, + 2.36, + 2.2600000000000002, + 2.13, + 2.04, + 1.95, + 1.85, + 1.77, + 1.6400000000000001, + 1.59, + 1.55, + 1.57, + 1.6500000000000001, + 1.73, + 1.86, + 2.02, + 2.18, + 2.36, + 2.5, + 2.58, + 2.64, + 2.67, + 2.7, + 2.67, + 2.62, + 2.54, + 2.5, + 2.5500000000000003, + 2.67, + 2.77, + 2.8000000000000003, + 2.7600000000000002, + 2.68, + 2.62, + 2.66, + 2.82, + 3.0500000000000003, + 3.27, + 3.41, + 3.44, + 3.45, + 3.48, + 3.5300000000000002, + 3.59, + 3.74, + 3.91, + 4.11, + 4.26, + 4.28, + 4.23, + 4.19, + 4.2, + 4.22, + 4.09, + 3.88, + 3.83, + 3.94, + 4.2700000000000005, + 4.61, + 4.84, + 4.97, + 4.95, + 4.9, + 4.95, + 5.03, + 5.09, + 5.09, + 5.17, + 5.26, + 5.33, + 5.38, + 5.42, + 5.46, + 5.48, + 5.55, + 5.6000000000000005, + 5.61, + 5.68, + 5.83, + 6.0200000000000005, + 6.12, + 6.25, + 6.45, + 6.58, + 6.55, + 6.3500000000000005, + 6.04, + 5.71, + 5.47, + 5.29, + 5.2, + 5.18, + 5.0200000000000005, + 4.91, + 4.82, + 4.84, + 4.79, + 4.92, + 5.0600000000000005, + 5.3500000000000005, + 5.73, + 6.03, + 6.32, + 6.51, + 6.65, + 6.66, + 6.58, + 6.41, + 6.21, + 6.03, + 5.91, + 5.8100000000000005, + 5.75, + 5.73, + 5.78, + 5.82, + 5.72, + 5.7700000000000005, + 5.6000000000000005, + 5.5600000000000005, + 5.42, + 5.19, + 4.94, + 4.71, + 4.72, + 4.74, + 4.74, + 4.5600000000000005, + 4.42, + 4.3, + 4.28, + 4.2, + 3.98, + 3.75, + 3.62, + 3.5300000000000002, + 3.37, + 3.22, + 3.3000000000000003, + 3.37, + 3.52, + 3.68, + 3.63, + 3.5100000000000002, + 3.44, + 3.33, + 3.22, + 3.15, + 3.06, + 2.99, + 2.93, + 2.92, + 2.92, + 2.92, + 2.87, + 2.75, + 2.61, + 2.47, + 2.34, + 2.32, + 2.36, + 2.5, + 2.69, + 2.97, + 3.27, + 3.5100000000000002, + 3.71, + 4.0, + 4.38, + 4.88, + 5.41, + 5.8500000000000005, + 6.28, + 6.6000000000000005, + 6.83, + 6.91, + 6.76, + 6.45, + 6.08, + 5.7700000000000005, + 5.73, + 5.74, + 5.7, + 5.63, + 5.59, + 5.68, + 5.7700000000000005, + 5.91, + 6.05, + 6.140000000000001, + 6.34, + 6.28, + 6.18, + 6.16, + 6.21, + 6.38, + 6.6000000000000005, + 6.93, + 7.390000000000001, + 8.01, + 8.78, + 9.46, + 9.88, + 9.84, + 9.290000000000001, + 8.290000000000001, + 6.91, + 5.38, + 3.9, + 2.58, + 1.74, + 1.22, + 1.05, + 0.98, + 1.09, + 1.45, + 2.13, + 2.9, + 3.23, + 3.0100000000000002, + 2.37, + 1.83, + 1.49, + 1.37, + 1.47, + 1.6, + 1.51, + 1.27, + 0.99, + 0.72, + 0.79, + 1.1, + 1.58, + 2.14, + 2.63, + 3.12, + 3.62, + 3.7, + 3.5300000000000002, + 3.0100000000000002, + 2.15, + 1.31, + 0.64, + 0.33, + 0.45, + 0.91, + 1.37, + 1.6400000000000001, + 1.69, + 1.73, + 1.77, + 1.76, + 1.8, + 1.8800000000000001, + 1.7, + 1.51, + 1.07, + 0.8200000000000001, + 0.5, + 0.3, + 0.21, + 0.13, + 0.38, + 0.61, + 0.92, + 1.17, + 1.28, + 1.21, + 1.11, + 1.1300000000000001, + 1.25, + 1.59, + 1.73, + 1.75, + 1.51, + 1.05, + 0.62, + 0.14, + 0.16, + 0.39, + 0.66, + 0.77, + 0.72, + 0.64, + 0.55, + 0.58, + 0.65, + 0.65, + 0.61, + 0.5, + 0.31, + 0.16, + 0.07, + -0.01, + -0.03, + -0.1, + -0.13, + -0.15, + -0.14, + 0.02, + 0.22, + 0.37, + 0.56, + 0.56, + 0.48, + 0.43, + 0.51, + 0.66, + 0.72, + 0.73, + 0.8, + 0.93, + 1.08, + 1.11, + 0.98, + 0.78, + 0.64 + ], + [ + 3.2800000000000002, + 3.24, + 3.08, + 2.92, + 2.88, + 2.89, + 2.89, + 2.89, + 2.88, + 2.87, + 2.83, + 2.7800000000000002, + 2.72, + 2.64, + 2.57, + 2.5100000000000002, + 2.45, + 2.42, + 2.38, + 2.35, + 2.33, + 2.33, + 2.36, + 2.42, + 2.5, + 2.5500000000000003, + 2.56, + 2.54, + 2.45, + 2.39, + 2.31, + 2.22, + 2.11, + 1.98, + 1.8900000000000001, + 1.8, + 1.74, + 1.6600000000000001, + 1.62, + 1.58, + 1.58, + 1.62, + 1.6500000000000001, + 1.71, + 1.81, + 1.94, + 2.11, + 2.29, + 2.47, + 2.6, + 2.66, + 2.72, + 2.75, + 2.77, + 2.73, + 2.69, + 2.66, + 2.68, + 2.8000000000000003, + 2.9, + 2.92, + 2.91, + 2.85, + 2.81, + 2.85, + 2.94, + 3.14, + 3.3000000000000003, + 3.4, + 3.47, + 3.5100000000000002, + 3.52, + 3.5, + 3.5300000000000002, + 3.59, + 3.7800000000000002, + 3.98, + 4.15, + 4.23, + 4.17, + 4.13, + 4.15, + 4.17, + 4.04, + 3.87, + 3.81, + 3.97, + 4.3100000000000005, + 4.63, + 4.8500000000000005, + 4.91, + 4.83, + 4.76, + 4.75, + 4.87, + 4.92, + 4.94, + 5.01, + 5.11, + 5.2, + 5.26, + 5.34, + 5.39, + 5.45, + 5.5200000000000005, + 5.5200000000000005, + 5.5200000000000005, + 5.63, + 5.78, + 5.87, + 5.9, + 5.98, + 6.13, + 6.26, + 6.19, + 5.99, + 5.65, + 5.3500000000000005, + 5.11, + 5.0, + 5.03, + 5.0600000000000005, + 5.09, + 4.98, + 4.95, + 4.97, + 5.19, + 5.3100000000000005, + 5.54, + 5.84, + 6.07, + 6.34, + 6.53, + 6.69, + 6.73, + 6.71, + 6.65, + 6.5200000000000005, + 6.32, + 6.17, + 6.04, + 5.94, + 5.86, + 5.8500000000000005, + 5.84, + 5.64, + 5.51, + 5.21, + 5.03, + 4.83, + 4.69, + 4.5600000000000005, + 4.32, + 4.34, + 4.38, + 4.49, + 4.5, + 4.44, + 4.3500000000000005, + 4.36, + 4.43, + 4.38, + 4.19, + 3.98, + 3.89, + 3.75, + 3.5, + 3.29, + 3.09, + 3.17, + 3.41, + 3.5700000000000003, + 3.59, + 3.47, + 3.34, + 3.24, + 3.18, + 3.12, + 3.0, + 2.92, + 2.88, + 2.88, + 2.91, + 2.95, + 2.92, + 2.83, + 2.65, + 2.45, + 2.29, + 2.21, + 2.25, + 2.38, + 2.56, + 2.7600000000000002, + 3.06, + 3.33, + 3.54, + 3.7600000000000002, + 4.13, + 4.67, + 5.2, + 5.72, + 6.17, + 6.59, + 6.86, + 6.92, + 6.76, + 6.390000000000001, + 5.93, + 5.62, + 5.53, + 5.58, + 5.59, + 5.55, + 5.6000000000000005, + 5.69, + 5.82, + 5.95, + 6.05, + 6.15, + 6.09, + 6.01, + 5.88, + 5.86, + 5.96, + 6.140000000000001, + 6.49, + 6.890000000000001, + 7.5200000000000005, + 8.28, + 9.03, + 9.69, + 9.96, + 9.71, + 9.11, + 8.0, + 6.640000000000001, + 5.15, + 3.7, + 2.62, + 1.78, + 1.37, + 1.2, + 1.32, + 1.45, + 1.75, + 2.42, + 3.13, + 3.46, + 3.0300000000000002, + 2.31, + 1.59, + 1.11, + 0.99, + 1.08, + 1.26, + 1.28, + 1.07, + 0.85, + 0.5700000000000001, + 0.55, + 0.88, + 1.43, + 1.99, + 2.34, + 2.83, + 3.0, + 3.0500000000000003, + 2.84, + 2.32, + 1.87, + 1.18, + 0.61, + 0.32, + 0.39, + 0.8200000000000001, + 1.29, + 1.55, + 1.6400000000000001, + 1.7, + 1.79, + 1.83, + 1.84, + 1.74, + 1.55, + 1.11, + 0.68, + 0.17, + -0.15, + -0.4, + -0.52, + -0.37, + -0.11, + 0.31, + 0.66, + 0.87, + 0.9400000000000001, + 1.04, + 1.08, + 1.24, + 1.53, + 1.73, + 1.74, + 1.69, + 1.41, + 0.93, + 0.39, + -0.09, + -0.24, + 0.0, + 0.3, + 0.41000000000000003, + 0.36, + 0.28, + 0.26, + 0.3, + 0.27, + 0.22, + 0.12, + -0.03, + -0.17, + -0.29, + -0.32, + -0.3, + -0.27, + -0.23, + -0.26, + -0.28, + -0.31, + -0.35000000000000003, + -0.16, + 0.03, + 0.23, + 0.33, + 0.25, + 0.34, + 0.43, + 0.55, + 0.59, + 0.64, + 0.72, + 0.87, + 1.04, + 1.02, + 0.87, + 0.59, + 0.32 + ], + [ + 3.25, + 3.23, + 3.0700000000000003, + 2.9, + 2.86, + 2.87, + 2.88, + 2.89, + 2.88, + 2.87, + 2.84, + 2.7800000000000002, + 2.7, + 2.63, + 2.5500000000000003, + 2.49, + 2.47, + 2.45, + 2.44, + 2.42, + 2.4, + 2.4, + 2.42, + 2.48, + 2.5500000000000003, + 2.58, + 2.57, + 2.49, + 2.39, + 2.29, + 2.2, + 2.14, + 2.04, + 1.97, + 1.8800000000000001, + 1.81, + 1.75, + 1.68, + 1.6500000000000001, + 1.61, + 1.61, + 1.6, + 1.61, + 1.6400000000000001, + 1.72, + 1.85, + 2.0300000000000002, + 2.22, + 2.42, + 2.57, + 2.65, + 2.73, + 2.77, + 2.81, + 2.84, + 2.81, + 2.81, + 2.83, + 2.87, + 2.97, + 3.04, + 3.02, + 3.06, + 3.0500000000000003, + 3.0500000000000003, + 3.14, + 3.24, + 3.35, + 3.45, + 3.5100000000000002, + 3.5500000000000003, + 3.54, + 3.5100000000000002, + 3.49, + 3.5300000000000002, + 3.67, + 3.89, + 4.09, + 4.18, + 4.22, + 4.17, + 4.23, + 4.26, + 4.18, + 4.0200000000000005, + 3.86, + 4.01, + 4.3, + 4.61, + 4.8, + 4.82, + 4.75, + 4.67, + 4.66, + 4.78, + 4.8500000000000005, + 4.89, + 4.95, + 5.07, + 5.16, + 5.28, + 5.37, + 5.48, + 5.54, + 5.53, + 5.53, + 5.53, + 5.65, + 5.78, + 5.8500000000000005, + 5.78, + 5.8100000000000005, + 5.89, + 5.95, + 5.91, + 5.69, + 5.4, + 5.15, + 4.95, + 4.94, + 4.99, + 5.09, + 5.14, + 5.09, + 5.0600000000000005, + 5.28, + 5.5, + 5.83, + 6.07, + 6.22, + 6.42, + 6.5600000000000005, + 6.71, + 6.75, + 6.73, + 6.640000000000001, + 6.53, + 6.46, + 6.3100000000000005, + 6.16, + 6.0200000000000005, + 5.89, + 5.76, + 5.72, + 5.54, + 5.32, + 4.93, + 4.62, + 4.38, + 4.18, + 4.11, + 3.98, + 3.98, + 4.05, + 4.29, + 4.45, + 4.53, + 4.53, + 4.48, + 4.57, + 4.63, + 4.59, + 4.42, + 4.28, + 4.16, + 3.96, + 3.67, + 3.3000000000000003, + 3.06, + 3.04, + 3.2800000000000002, + 3.52, + 3.54, + 3.47, + 3.35, + 3.31, + 3.27, + 3.16, + 3.04, + 2.9, + 2.84, + 2.83, + 2.86, + 2.97, + 3.0100000000000002, + 2.93, + 2.75, + 2.52, + 2.33, + 2.22, + 2.22, + 2.33, + 2.44, + 2.63, + 2.84, + 3.11, + 3.36, + 3.6, + 3.98, + 4.5200000000000005, + 5.08, + 5.62, + 6.11, + 6.5600000000000005, + 6.8500000000000005, + 6.9, + 6.72, + 6.3100000000000005, + 5.8500000000000005, + 5.55, + 5.42, + 5.45, + 5.47, + 5.46, + 5.53, + 5.71, + 5.84, + 5.94, + 6.03, + 6.05, + 5.99, + 5.84, + 5.71, + 5.64, + 5.74, + 5.95, + 6.3, + 6.88, + 7.640000000000001, + 8.49, + 9.31, + 9.85, + 9.9, + 9.56, + 8.71, + 7.65, + 6.34, + 4.87, + 3.61, + 2.5300000000000002, + 1.83, + 1.42, + 1.4000000000000001, + 1.52, + 1.74, + 2.05, + 2.59, + 3.2800000000000002, + 3.45, + 2.91, + 2.06, + 1.23, + 0.61, + 0.31, + 0.46, + 0.66, + 0.86, + 0.98, + 0.79, + 0.6900000000000001, + 0.63, + 1.0, + 1.54, + 1.76, + 2.11, + 2.19, + 2.33, + 2.23, + 1.96, + 1.77, + 1.41, + 1.09, + 0.68, + 0.35000000000000003, + 0.42, + 0.81, + 1.27, + 1.55, + 1.67, + 1.71, + 1.78, + 1.82, + 1.75, + 1.6500000000000001, + 1.48, + 1.03, + 0.5, + -0.01, + -0.41000000000000003, + -0.64, + -0.84, + -0.67, + -0.36, + 0.08, + 0.4, + 0.5700000000000001, + 0.61, + 0.66, + 0.86, + 1.12, + 1.33, + 1.26, + 1.23, + 0.93, + 0.79, + 0.67, + 0.15, + -0.08, + -0.27, + -0.15, + 0.14, + 0.23, + 0.18, + 0.09, + 0.09, + 0.01, + -0.05, + -0.22, + -0.38, + -0.53, + -0.6900000000000001, + -0.8, + -0.85, + -0.75, + -0.63, + -0.49, + -0.36, + -0.4, + -0.48, + -0.5700000000000001, + -0.6, + -0.41000000000000003, + -0.26, + -0.15, + 0.02, + 0.12, + 0.32, + 0.45, + 0.49, + 0.54, + 0.65, + 0.84, + 1.0, + 1.01, + 0.88, + 0.66, + 0.2 + ], + [ + 3.24, + 3.2, + 3.0500000000000003, + 2.89, + 2.84, + 2.86, + 2.86, + 2.87, + 2.87, + 2.85, + 2.82, + 2.7600000000000002, + 2.68, + 2.59, + 2.5100000000000002, + 2.46, + 2.45, + 2.48, + 2.48, + 2.5, + 2.49, + 2.48, + 2.49, + 2.5300000000000002, + 2.56, + 2.59, + 2.56, + 2.48, + 2.41, + 2.3000000000000003, + 2.2600000000000002, + 2.19, + 2.14, + 2.07, + 1.98, + 1.92, + 1.81, + 1.74, + 1.6600000000000001, + 1.61, + 1.58, + 1.55, + 1.55, + 1.58, + 1.6600000000000001, + 1.8, + 1.97, + 2.17, + 2.36, + 2.49, + 2.59, + 2.66, + 2.72, + 2.77, + 2.83, + 2.9, + 2.9, + 2.9, + 2.93, + 2.96, + 3.02, + 3.11, + 3.16, + 3.25, + 3.2600000000000002, + 3.3000000000000003, + 3.38, + 3.46, + 3.5500000000000003, + 3.6, + 3.63, + 3.63, + 3.64, + 3.59, + 3.62, + 3.73, + 3.9, + 4.11, + 4.25, + 4.28, + 4.34, + 4.41, + 4.43, + 4.3500000000000005, + 4.11, + 3.93, + 3.91, + 4.16, + 4.53, + 4.71, + 4.8100000000000005, + 4.8, + 4.74, + 4.82, + 4.87, + 4.9, + 4.92, + 4.97, + 5.09, + 5.22, + 5.3500000000000005, + 5.49, + 5.61, + 5.72, + 5.72, + 5.74, + 5.76, + 5.83, + 5.98, + 5.97, + 5.89, + 5.82, + 5.9, + 5.9, + 5.87, + 5.65, + 5.42, + 5.17, + 5.1000000000000005, + 5.0600000000000005, + 5.17, + 5.25, + 5.24, + 5.19, + 5.22, + 5.45, + 5.91, + 6.25, + 6.49, + 6.63, + 6.66, + 6.7700000000000005, + 6.76, + 6.73, + 6.58, + 6.390000000000001, + 6.2700000000000005, + 6.17, + 6.09, + 5.95, + 5.8, + 5.5600000000000005, + 5.41, + 5.24, + 5.08, + 4.7700000000000005, + 4.37, + 4.08, + 3.83, + 3.83, + 3.77, + 3.7600000000000002, + 3.8000000000000003, + 3.98, + 4.28, + 4.57, + 4.7, + 4.75, + 4.76, + 4.8100000000000005, + 4.8500000000000005, + 4.79, + 4.62, + 4.49, + 4.36, + 4.16, + 3.79, + 3.38, + 3.0500000000000003, + 2.99, + 3.17, + 3.42, + 3.5300000000000002, + 3.46, + 3.38, + 3.35, + 3.37, + 3.27, + 3.08, + 2.92, + 2.7800000000000002, + 2.72, + 2.7800000000000002, + 2.91, + 3.06, + 3.0500000000000003, + 2.89, + 2.66, + 2.42, + 2.27, + 2.24, + 2.23, + 2.33, + 2.44, + 2.65, + 2.93, + 3.19, + 3.48, + 3.87, + 4.38, + 4.95, + 5.53, + 6.05, + 6.5, + 6.76, + 6.8500000000000005, + 6.66, + 6.2700000000000005, + 5.84, + 5.49, + 5.36, + 5.3500000000000005, + 5.2700000000000005, + 5.28, + 5.44, + 5.64, + 5.8, + 5.9, + 5.92, + 5.94, + 5.94, + 5.79, + 5.69, + 5.65, + 5.64, + 5.8500000000000005, + 6.21, + 6.86, + 7.7, + 8.65, + 9.450000000000001, + 9.85, + 9.83, + 9.25, + 8.41, + 7.34, + 6.0600000000000005, + 4.7, + 3.43, + 2.5100000000000002, + 1.8, + 1.45, + 1.44, + 1.69, + 1.92, + 2.12, + 2.65, + 3.17, + 3.19, + 2.68, + 1.75, + 0.84, + 0.12, + -0.32, + -0.28, + 0.04, + 0.4, + 0.7000000000000001, + 0.9, + 0.81, + 0.99, + 1.32, + 1.6, + 1.8, + 1.68, + 1.74, + 1.6600000000000001, + 1.52, + 1.4000000000000001, + 1.28, + 1.17, + 0.96, + 0.67, + 0.41000000000000003, + 0.43, + 0.85, + 1.32, + 1.6300000000000001, + 1.75, + 1.86, + 1.87, + 1.78, + 1.72, + 1.71, + 1.56, + 1.21, + 0.66, + 0.26, + -0.12, + -0.41000000000000003, + -0.55, + -0.72, + -0.39, + -0.02, + 0.29, + 0.4, + 0.4, + 0.4, + 0.58, + 0.77, + 0.72, + 0.55, + 0.11, + -0.08, + -0.02, + 0.04, + 0.18, + -0.06, + -0.1, + -0.01, + 0.0, + 0.07, + 0.08, + -0.01, + -0.06, + -0.14, + -0.34, + -0.55, + -0.76, + -0.92, + -1.11, + -1.24, + -1.31, + -1.22, + -1.02, + -0.78, + -0.5700000000000001, + -0.48, + -0.58, + -0.64, + -0.74, + -0.68, + -0.53, + -0.39, + -0.2, + 0.04, + 0.27, + 0.35000000000000003, + 0.38, + 0.39, + 0.49, + 0.66, + 0.79, + 0.91, + 0.8300000000000001, + 0.64, + 0.16 + ], + [ + 3.21, + 3.19, + 3.02, + 2.84, + 2.82, + 2.83, + 2.84, + 2.85, + 2.85, + 2.83, + 2.79, + 2.73, + 2.64, + 2.54, + 2.47, + 2.42, + 2.43, + 2.47, + 2.54, + 2.58, + 2.6, + 2.59, + 2.57, + 2.58, + 2.6, + 2.62, + 2.6, + 2.58, + 2.5100000000000002, + 2.48, + 2.42, + 2.36, + 2.31, + 2.19, + 2.1, + 1.97, + 1.85, + 1.74, + 1.6400000000000001, + 1.57, + 1.53, + 1.52, + 1.52, + 1.56, + 1.68, + 1.81, + 1.98, + 2.14, + 2.31, + 2.44, + 2.52, + 2.59, + 2.64, + 2.71, + 2.81, + 2.9, + 2.96, + 2.95, + 2.92, + 2.94, + 2.97, + 3.0700000000000003, + 3.23, + 3.3200000000000003, + 3.41, + 3.46, + 3.52, + 3.61, + 3.68, + 3.71, + 3.7600000000000002, + 3.8200000000000003, + 3.84, + 3.8200000000000003, + 3.8000000000000003, + 3.85, + 4.0, + 4.15, + 4.3, + 4.41, + 4.48, + 4.5, + 4.5200000000000005, + 4.38, + 4.09, + 3.84, + 3.81, + 4.01, + 4.38, + 4.66, + 4.79, + 4.9, + 4.96, + 5.0, + 4.99, + 4.99, + 4.93, + 4.97, + 5.08, + 5.21, + 5.3500000000000005, + 5.51, + 5.69, + 5.82, + 5.95, + 5.98, + 6.0600000000000005, + 6.15, + 6.16, + 6.11, + 6.0600000000000005, + 6.0200000000000005, + 6.05, + 6.08, + 6.04, + 5.87, + 5.6000000000000005, + 5.42, + 5.34, + 5.38, + 5.45, + 5.5200000000000005, + 5.49, + 5.33, + 5.34, + 5.71, + 6.2, + 6.65, + 6.88, + 6.890000000000001, + 6.890000000000001, + 6.82, + 6.75, + 6.57, + 6.32, + 6.04, + 5.86, + 5.78, + 5.69, + 5.5600000000000005, + 5.3100000000000005, + 5.05, + 4.76, + 4.62, + 4.48, + 4.19, + 3.96, + 3.65, + 3.6, + 3.62, + 3.77, + 3.8000000000000003, + 3.8200000000000003, + 4.0600000000000005, + 4.34, + 4.65, + 4.9, + 4.95, + 4.99, + 5.03, + 5.0200000000000005, + 4.86, + 4.73, + 4.62, + 4.53, + 4.32, + 3.96, + 3.56, + 3.16, + 2.98, + 3.14, + 3.33, + 3.45, + 3.42, + 3.34, + 3.31, + 3.33, + 3.38, + 3.19, + 2.92, + 2.75, + 2.6, + 2.65, + 2.84, + 3.04, + 3.15, + 3.0700000000000003, + 2.82, + 2.5500000000000003, + 2.34, + 2.19, + 2.16, + 2.13, + 2.23, + 2.38, + 2.67, + 3.02, + 3.3000000000000003, + 3.64, + 4.15, + 4.73, + 5.3100000000000005, + 5.95, + 6.4, + 6.7, + 6.7700000000000005, + 6.65, + 6.28, + 5.8100000000000005, + 5.45, + 5.26, + 5.13, + 5.05, + 5.07, + 5.24, + 5.49, + 5.68, + 5.76, + 5.78, + 5.79, + 5.79, + 5.84, + 5.7700000000000005, + 5.76, + 5.78, + 5.86, + 6.25, + 6.8, + 7.67, + 8.67, + 9.42, + 9.83, + 9.6, + 9.02, + 8.15, + 7.11, + 5.8500000000000005, + 4.49, + 3.3000000000000003, + 2.37, + 1.79, + 1.45, + 1.52, + 1.79, + 1.98, + 2.16, + 2.45, + 2.88, + 2.96, + 2.33, + 1.54, + 0.7000000000000001, + -0.16, + -0.55, + -0.72, + -0.43, + -0.01, + 0.43, + 0.79, + 1.01, + 1.2, + 1.56, + 1.83, + 1.78, + 1.6, + 1.32, + 1.22, + 1.12, + 1.05, + 0.99, + 0.9400000000000001, + 0.84, + 0.56, + 0.37, + 0.5, + 0.87, + 1.33, + 1.69, + 1.83, + 1.93, + 1.8800000000000001, + 1.76, + 1.67, + 1.71, + 1.59, + 1.28, + 0.86, + 0.47000000000000003, + 0.37, + 0.11, + -0.16, + -0.31, + -0.31, + 0.06, + 0.36, + 0.45, + 0.4, + 0.42, + 0.43, + 0.45, + 0.26, + -0.2, + -0.74, + -0.85, + -0.76, + -0.42, + -0.13, + -0.09, + -0.12, + -0.24, + -0.26, + -0.25, + -0.27, + -0.18, + -0.24, + -0.32, + -0.55, + -0.8, + -0.99, + -1.1300000000000001, + -1.26, + -1.44, + -1.44, + -1.45, + -1.24, + -1.0, + -0.8, + -0.64, + -0.6, + -0.67, + -0.59, + -0.58, + -0.52, + -0.38, + -0.22, + 0.06, + 0.2, + 0.24, + 0.22, + 0.21, + 0.22, + 0.33, + 0.47000000000000003, + 0.54, + 0.61, + 0.4, + 0.06 + ], + [ + 3.18, + 3.13, + 2.98, + 2.83, + 2.79, + 2.8000000000000003, + 2.8000000000000003, + 2.81, + 2.81, + 2.79, + 2.75, + 2.68, + 2.58, + 2.5, + 2.42, + 2.4, + 2.42, + 2.5, + 2.59, + 2.69, + 2.73, + 2.71, + 2.69, + 2.66, + 2.68, + 2.68, + 2.7, + 2.7, + 2.67, + 2.65, + 2.57, + 2.5100000000000002, + 2.37, + 2.25, + 2.1, + 1.96, + 1.84, + 1.72, + 1.6300000000000001, + 1.57, + 1.52, + 1.53, + 1.56, + 1.6500000000000001, + 1.74, + 1.8900000000000001, + 2.0300000000000002, + 2.17, + 2.31, + 2.43, + 2.5, + 2.58, + 2.62, + 2.7, + 2.8000000000000003, + 2.9, + 2.97, + 2.97, + 2.94, + 2.95, + 2.99, + 3.0700000000000003, + 3.25, + 3.39, + 3.48, + 3.5700000000000003, + 3.63, + 3.71, + 3.73, + 3.79, + 3.86, + 3.96, + 4.0, + 4.01, + 3.99, + 3.99, + 4.07, + 4.21, + 4.36, + 4.49, + 4.51, + 4.53, + 4.41, + 4.22, + 4.0200000000000005, + 3.7800000000000002, + 3.73, + 4.0200000000000005, + 4.34, + 4.63, + 4.8, + 4.94, + 5.08, + 5.08, + 5.05, + 4.94, + 4.88, + 4.97, + 5.0600000000000005, + 5.22, + 5.3500000000000005, + 5.53, + 5.72, + 5.92, + 6.07, + 6.2, + 6.29, + 6.3100000000000005, + 6.25, + 6.16, + 6.08, + 6.15, + 6.22, + 6.3, + 6.28, + 6.13, + 5.84, + 5.62, + 5.51, + 5.58, + 5.65, + 5.7700000000000005, + 5.71, + 5.51, + 5.6000000000000005, + 5.97, + 6.47, + 6.94, + 7.08, + 7.03, + 6.87, + 6.72, + 6.54, + 6.24, + 5.93, + 5.58, + 5.34, + 5.21, + 5.16, + 4.98, + 4.74, + 4.39, + 4.07, + 3.99, + 3.89, + 3.83, + 3.61, + 3.49, + 3.45, + 3.63, + 3.83, + 3.97, + 4.01, + 4.1, + 4.39, + 4.73, + 4.97, + 5.12, + 5.18, + 5.21, + 5.12, + 4.93, + 4.75, + 4.68, + 4.63, + 4.5, + 4.23, + 3.81, + 3.46, + 3.16, + 3.04, + 3.23, + 3.31, + 3.2800000000000002, + 3.18, + 3.14, + 3.31, + 3.37, + 3.34, + 3.0700000000000003, + 2.74, + 2.58, + 2.5300000000000002, + 2.7600000000000002, + 3.0500000000000003, + 3.2, + 3.22, + 2.98, + 2.67, + 2.39, + 2.18, + 2.02, + 1.95, + 1.94, + 2.08, + 2.33, + 2.68, + 3.09, + 3.43, + 3.7800000000000002, + 4.37, + 5.07, + 5.74, + 6.3, + 6.57, + 6.74, + 6.61, + 6.2700000000000005, + 5.74, + 5.32, + 5.05, + 4.91, + 4.83, + 4.82, + 4.99, + 5.26, + 5.46, + 5.5600000000000005, + 5.58, + 5.58, + 5.67, + 5.74, + 5.87, + 5.9, + 5.95, + 6.07, + 6.23, + 6.7700000000000005, + 7.5200000000000005, + 8.45, + 9.32, + 9.57, + 9.41, + 8.68, + 7.8500000000000005, + 6.65, + 5.48, + 4.14, + 2.94, + 2.2, + 1.6400000000000001, + 1.49, + 1.6, + 1.81, + 1.95, + 2.06, + 2.34, + 2.58, + 2.48, + 2.18, + 1.51, + 0.76, + 0.09, + -0.54, + -0.62, + -0.59, + -0.28, + 0.18, + 0.54, + 0.89, + 1.31, + 1.72, + 1.9100000000000001, + 1.83, + 1.53, + 1.2, + 0.87, + 0.79, + 0.76, + 0.72, + 0.7000000000000001, + 0.5700000000000001, + 0.46, + 0.39, + 0.47000000000000003, + 0.86, + 1.28, + 1.47, + 1.68, + 1.6400000000000001, + 1.68, + 1.51, + 1.44, + 1.4000000000000001, + 1.37, + 1.04, + 0.65, + 0.52, + 0.48, + 0.51, + 0.2, + 0.05, + 0.08, + 0.24, + 0.54, + 0.6900000000000001, + 0.67, + 0.62, + 0.66, + 0.49, + 0.15, + -0.45, + -0.79, + -1.1500000000000001, + -0.98, + -0.68, + -0.6, + -0.46, + -0.5700000000000001, + -0.72, + -0.78, + -0.79, + -0.7000000000000001, + -0.59, + -0.53, + -0.63, + -0.75, + -1.0, + -1.1300000000000001, + -1.18, + -1.2, + -1.19, + -1.29, + -1.2, + -1.18, + -1.03, + -0.89, + -0.78, + -0.68, + -0.5700000000000001, + -0.47000000000000003, + -0.41000000000000003, + -0.37, + -0.35000000000000003, + -0.19, + -0.04, + 0.05, + 0.11, + 0.06, + 0.06, + 0.08, + 0.05, + 0.15, + 0.19, + 0.22, + 0.15, + -0.09 + ], + [ + 3.12, + 3.11, + 2.95, + 2.7800000000000002, + 2.7600000000000002, + 2.77, + 2.77, + 2.7800000000000002, + 2.77, + 2.75, + 2.7, + 2.63, + 2.54, + 2.46, + 2.4, + 2.39, + 2.43, + 2.5300000000000002, + 2.67, + 2.7800000000000002, + 2.87, + 2.87, + 2.83, + 2.8000000000000003, + 2.7800000000000002, + 2.7800000000000002, + 2.79, + 2.77, + 2.7800000000000002, + 2.7, + 2.64, + 2.49, + 2.35, + 2.19, + 2.0300000000000002, + 1.92, + 1.81, + 1.73, + 1.6600000000000001, + 1.61, + 1.58, + 1.59, + 1.6600000000000001, + 1.75, + 1.86, + 1.98, + 2.1, + 2.22, + 2.33, + 2.45, + 2.5500000000000003, + 2.63, + 2.69, + 2.74, + 2.82, + 2.93, + 2.98, + 2.98, + 3.0100000000000002, + 3.0300000000000002, + 3.08, + 3.19, + 3.29, + 3.41, + 3.5, + 3.56, + 3.64, + 3.67, + 3.73, + 3.79, + 3.9, + 4.0200000000000005, + 4.12, + 4.12, + 4.11, + 4.14, + 4.17, + 4.29, + 4.45, + 4.46, + 4.47, + 4.4, + 4.23, + 4.04, + 3.85, + 3.77, + 3.83, + 4.07, + 4.43, + 4.66, + 4.78, + 4.95, + 5.0600000000000005, + 5.09, + 4.98, + 4.87, + 4.93, + 5.0, + 5.18, + 5.3100000000000005, + 5.45, + 5.61, + 5.8100000000000005, + 6.0200000000000005, + 6.2, + 6.3500000000000005, + 6.4, + 6.3500000000000005, + 6.21, + 6.05, + 6.04, + 6.17, + 6.3500000000000005, + 6.46, + 6.48, + 6.24, + 5.96, + 5.64, + 5.51, + 5.47, + 5.64, + 5.7700000000000005, + 5.8100000000000005, + 5.8, + 5.8500000000000005, + 6.22, + 6.74, + 7.0, + 7.07, + 6.92, + 6.66, + 6.38, + 6.09, + 5.7700000000000005, + 5.38, + 4.98, + 4.72, + 4.55, + 4.44, + 4.33, + 4.07, + 3.74, + 3.6, + 3.46, + 3.5100000000000002, + 3.5, + 3.42, + 3.3200000000000003, + 3.39, + 3.61, + 3.87, + 4.0200000000000005, + 4.11, + 4.19, + 4.39, + 4.74, + 5.07, + 5.2, + 5.34, + 5.36, + 5.2700000000000005, + 5.03, + 4.7700000000000005, + 4.66, + 4.69, + 4.62, + 4.43, + 4.24, + 3.84, + 3.36, + 3.11, + 2.95, + 3.02, + 3.0, + 2.87, + 2.94, + 3.17, + 3.43, + 3.38, + 3.24, + 2.88, + 2.56, + 2.54, + 2.69, + 2.95, + 3.23, + 3.21, + 3.06, + 2.75, + 2.44, + 2.18, + 1.95, + 1.83, + 1.76, + 1.81, + 2.04, + 2.4, + 2.84, + 3.23, + 3.5700000000000003, + 4.01, + 4.7700000000000005, + 5.54, + 6.05, + 6.43, + 6.5600000000000005, + 6.57, + 6.13, + 5.59, + 5.11, + 4.8, + 4.67, + 4.59, + 4.61, + 4.74, + 4.94, + 5.17, + 5.3, + 5.32, + 5.3500000000000005, + 5.46, + 5.66, + 5.84, + 6.05, + 6.12, + 6.2, + 6.3500000000000005, + 6.59, + 7.3100000000000005, + 8.21, + 8.97, + 9.370000000000001, + 8.94, + 8.25, + 7.01, + 5.94, + 4.63, + 3.38, + 2.41, + 1.71, + 1.42, + 1.33, + 1.47, + 1.67, + 1.84, + 1.9000000000000001, + 2.04, + 2.18, + 2.19, + 1.8800000000000001, + 1.59, + 1.02, + 0.38, + -0.1, + -0.42, + -0.5, + -0.41000000000000003, + -0.15, + 0.24, + 0.68, + 1.19, + 1.6, + 1.86, + 1.78, + 1.44, + 1.0, + 0.62, + 0.41000000000000003, + 0.4, + 0.41000000000000003, + 0.38, + 0.39, + 0.36, + 0.34, + 0.51, + 0.73, + 0.9, + 1.1, + 1.08, + 1.1400000000000001, + 1.08, + 1.0, + 1.01, + 1.0, + 0.85, + 0.55, + 0.38, + 0.31, + 0.37, + 0.43, + 0.51, + 0.39, + 0.43, + 0.65, + 0.8300000000000001, + 0.93, + 1.01, + 1.04, + 1.05, + 0.84, + 0.43, + -0.01, + -0.52, + -0.68, + -0.77, + -0.8300000000000001, + -0.85, + -0.9400000000000001, + -1.06, + -1.12, + -1.18, + -1.1400000000000001, + -0.99, + -0.97, + -0.9, + -0.9400000000000001, + -1.05, + -1.16, + -1.19, + -1.11, + -0.96, + -0.8200000000000001, + -0.76, + -0.78, + -0.79, + -0.8200000000000001, + -0.79, + -0.75, + -0.66, + -0.52, + -0.45, + -0.37, + -0.38, + -0.39, + -0.31, + -0.2, + -0.07, + -0.02, + 0.03, + 0.11, + 0.09, + 0.1, + 0.0, + 0.04, + -0.02, + -0.07, + -0.19 + ], + [ + 3.08, + 3.0500000000000003, + 2.92, + 2.79, + 2.73, + 2.74, + 2.74, + 2.74, + 2.73, + 2.7, + 2.66, + 2.58, + 2.5, + 2.43, + 2.38, + 2.38, + 2.44, + 2.5500000000000003, + 2.71, + 2.88, + 2.96, + 3.02, + 2.98, + 2.93, + 2.88, + 2.85, + 2.8000000000000003, + 2.81, + 2.74, + 2.68, + 2.5500000000000003, + 2.41, + 2.2600000000000002, + 2.1, + 1.99, + 1.8900000000000001, + 1.82, + 1.77, + 1.73, + 1.69, + 1.67, + 1.7, + 1.79, + 1.9000000000000001, + 1.97, + 2.06, + 2.16, + 2.24, + 2.35, + 2.45, + 2.58, + 2.66, + 2.74, + 2.7800000000000002, + 2.84, + 2.9, + 2.96, + 3.04, + 3.09, + 3.15, + 3.2, + 3.25, + 3.33, + 3.4, + 3.46, + 3.5, + 3.54, + 3.6, + 3.66, + 3.75, + 3.9, + 4.05, + 4.13, + 4.17, + 4.2, + 4.25, + 4.33, + 4.42, + 4.4, + 4.38, + 4.3, + 4.2, + 4.0600000000000005, + 3.86, + 3.75, + 3.7600000000000002, + 3.9, + 4.23, + 4.53, + 4.65, + 4.71, + 4.87, + 5.05, + 5.03, + 4.93, + 4.92, + 4.96, + 5.18, + 5.36, + 5.51, + 5.62, + 5.75, + 5.94, + 6.13, + 6.32, + 6.44, + 6.46, + 6.34, + 6.12, + 5.92, + 6.0, + 6.19, + 6.42, + 6.57, + 6.47, + 6.28, + 5.83, + 5.47, + 5.26, + 5.2, + 5.39, + 5.64, + 5.82, + 5.88, + 6.09, + 6.47, + 6.76, + 6.94, + 6.88, + 6.63, + 6.32, + 5.97, + 5.6000000000000005, + 5.25, + 4.82, + 4.43, + 4.0600000000000005, + 3.91, + 3.74, + 3.64, + 3.44, + 3.3200000000000003, + 3.16, + 3.23, + 3.24, + 3.27, + 3.23, + 3.23, + 3.31, + 3.54, + 3.83, + 4.05, + 4.14, + 4.22, + 4.43, + 4.71, + 5.0200000000000005, + 5.28, + 5.42, + 5.5600000000000005, + 5.42, + 5.16, + 4.86, + 4.62, + 4.6000000000000005, + 4.66, + 4.7, + 4.62, + 4.22, + 3.62, + 3.0500000000000003, + 2.75, + 2.6, + 2.57, + 2.5500000000000003, + 2.68, + 2.97, + 3.24, + 3.42, + 3.21, + 2.98, + 2.65, + 2.46, + 2.59, + 2.82, + 3.02, + 3.17, + 3.0, + 2.74, + 2.47, + 2.19, + 1.98, + 1.81, + 1.77, + 1.75, + 1.83, + 2.2, + 2.61, + 2.99, + 3.35, + 3.8000000000000003, + 4.42, + 5.16, + 5.82, + 6.12, + 6.37, + 6.29, + 5.99, + 5.39, + 4.82, + 4.57, + 4.42, + 4.41, + 4.39, + 4.48, + 4.66, + 4.87, + 5.01, + 5.04, + 5.07, + 5.24, + 5.5, + 5.79, + 6.0200000000000005, + 6.24, + 6.28, + 6.33, + 6.54, + 6.98, + 7.86, + 8.72, + 8.78, + 8.47, + 7.15, + 5.95, + 4.62, + 3.44, + 2.34, + 1.44, + 1.03, + 0.84, + 0.92, + 1.1, + 1.31, + 1.44, + 1.6, + 1.7, + 1.77, + 1.7, + 1.6500000000000001, + 1.46, + 1.21, + 0.61, + 0.15, + -0.27, + -0.48, + -0.54, + -0.42, + -0.07, + 0.39, + 0.86, + 1.37, + 1.56, + 1.51, + 1.24, + 0.75, + 0.35000000000000003, + 0.16, + 0.1, + 0.16, + 0.18, + 0.29, + 0.32, + 0.38, + 0.41000000000000003, + 0.44, + 0.5, + 0.49, + 0.44, + 0.51, + 0.46, + 0.59, + 0.6, + 0.6, + 0.44, + 0.31, + 0.16, + 0.15, + 0.26, + 0.36, + 0.51, + 0.7000000000000001, + 0.81, + 0.9500000000000001, + 1.05, + 1.1500000000000001, + 1.18, + 1.35, + 1.27, + 1.21, + 0.76, + 0.4, + 0.08, + -0.15, + -0.37, + -0.63, + -0.8, + -1.02, + -1.08, + -1.1500000000000001, + -1.1300000000000001, + -1.03, + -1.02, + -0.98, + -1.1, + -1.12, + -1.19, + -1.17, + -1.1500000000000001, + -0.88, + -0.65, + -0.44, + -0.26, + -0.33, + -0.37, + -0.48, + -0.55, + -0.5700000000000001, + -0.55, + -0.53, + -0.47000000000000003, + -0.44, + -0.47000000000000003, + -0.42, + -0.35000000000000003, + -0.17, + 0.01, + 0.11, + 0.28, + 0.31, + 0.35000000000000003, + 0.26, + 0.14, + 0.0, + -0.11, + -0.2, + -0.25 + ], + [ + 3.09, + 3.0700000000000003, + 2.92, + 2.74, + 2.72, + 2.72, + 2.71, + 2.71, + 2.69, + 2.67, + 2.62, + 2.54, + 2.47, + 2.41, + 2.37, + 2.38, + 2.44, + 2.56, + 2.73, + 2.9, + 3.0700000000000003, + 3.1, + 3.1, + 3.0100000000000002, + 2.94, + 2.82, + 2.77, + 2.69, + 2.64, + 2.54, + 2.42, + 2.3000000000000003, + 2.16, + 2.06, + 1.96, + 1.8900000000000001, + 1.86, + 1.82, + 1.79, + 1.77, + 1.77, + 1.82, + 1.95, + 2.05, + 2.09, + 2.13, + 2.19, + 2.24, + 2.31, + 2.41, + 2.5100000000000002, + 2.63, + 2.7, + 2.77, + 2.8000000000000003, + 2.85, + 2.96, + 3.08, + 3.17, + 3.24, + 3.29, + 3.31, + 3.34, + 3.38, + 3.4, + 3.41, + 3.44, + 3.5, + 3.59, + 3.73, + 3.89, + 4.05, + 4.15, + 4.2, + 4.25, + 4.3500000000000005, + 4.45, + 4.46, + 4.38, + 4.26, + 4.14, + 4.03, + 3.9, + 3.8000000000000003, + 3.7600000000000002, + 3.81, + 4.07, + 4.36, + 4.59, + 4.68, + 4.71, + 4.79, + 4.97, + 5.0200000000000005, + 4.95, + 4.92, + 5.1000000000000005, + 5.34, + 5.54, + 5.71, + 5.79, + 5.88, + 6.03, + 6.22, + 6.4, + 6.5200000000000005, + 6.51, + 6.33, + 6.08, + 5.92, + 5.94, + 6.23, + 6.48, + 6.49, + 6.42, + 6.01, + 5.59, + 5.23, + 4.92, + 5.07, + 5.18, + 5.55, + 5.83, + 6.03, + 6.26, + 6.51, + 6.73, + 6.7, + 6.54, + 6.25, + 5.88, + 5.58, + 5.19, + 4.8100000000000005, + 4.38, + 3.94, + 3.64, + 3.37, + 3.2800000000000002, + 3.1, + 3.06, + 2.94, + 3.0100000000000002, + 3.0700000000000003, + 3.12, + 3.14, + 3.17, + 3.16, + 3.27, + 3.5, + 3.79, + 4.04, + 4.17, + 4.24, + 4.4, + 4.7, + 5.0200000000000005, + 5.28, + 5.49, + 5.58, + 5.59, + 5.25, + 4.9, + 4.6000000000000005, + 4.5, + 4.65, + 4.87, + 4.86, + 4.5600000000000005, + 3.88, + 3.09, + 2.56, + 2.33, + 2.19, + 2.2, + 2.33, + 2.67, + 3.0100000000000002, + 3.14, + 3.22, + 3.0, + 2.66, + 2.5100000000000002, + 2.45, + 2.65, + 2.83, + 2.92, + 2.9, + 2.75, + 2.5, + 2.27, + 2.05, + 1.96, + 1.8900000000000001, + 1.84, + 1.83, + 1.95, + 2.36, + 2.74, + 3.08, + 3.47, + 4.1, + 4.75, + 5.3, + 5.8, + 6.01, + 6.140000000000001, + 5.73, + 5.16, + 4.66, + 4.3, + 4.25, + 4.25, + 4.25, + 4.28, + 4.43, + 4.64, + 4.75, + 4.75, + 4.8, + 5.0200000000000005, + 5.32, + 5.63, + 5.95, + 6.15, + 6.3, + 6.29, + 6.3100000000000005, + 6.82, + 7.47, + 7.96, + 8.28, + 7.140000000000001, + 5.89, + 4.48, + 3.15, + 2.05, + 1.0, + 0.41000000000000003, + 0.1, + 0.1, + 0.27, + 0.51, + 0.72, + 0.9400000000000001, + 1.12, + 1.27, + 1.27, + 1.26, + 1.29, + 1.31, + 0.97, + 0.62, + 0.09, + -0.32, + -0.63, + -0.78, + -0.65, + -0.36, + 0.03, + 0.51, + 0.8200000000000001, + 1.08, + 1.1500000000000001, + 0.92, + 0.65, + 0.28, + 0.08, + 0.12, + 0.12, + 0.24, + 0.28, + 0.35000000000000003, + 0.4, + 0.32, + 0.17, + 0.17, + 0.02, + 0.13, + 0.08, + 0.29, + 0.39, + 0.51, + 0.47000000000000003, + 0.32, + 0.21, + 0.18, + 0.19, + 0.22, + 0.33, + 0.52, + 0.8, + 1.05, + 1.11, + 1.1300000000000001, + 1.08, + 1.12, + 1.1500000000000001, + 1.28, + 0.97, + 0.81, + 0.49, + 0.38, + 0.18, + 0.01, + -0.23, + -0.51, + -0.62, + -0.72, + -0.74, + -0.6900000000000001, + -0.66, + -0.68, + -0.77, + -0.92, + -1.06, + -0.98, + -0.97, + -0.71, + -0.55, + -0.29, + -0.08, + -0.04, + 0.02, + -0.11, + -0.2, + -0.32, + -0.38, + -0.45, + -0.5, + -0.45, + -0.43, + -0.35000000000000003, + -0.27, + -0.11, + 0.16, + 0.38, + 0.5700000000000001, + 0.66, + 0.6900000000000001, + 0.63, + 0.43, + 0.23, + -0.03, + -0.22, + -0.36, + -0.4 + ], + [ + 3.1, + 3.0500000000000003, + 2.92, + 2.7800000000000002, + 2.72, + 2.71, + 2.7, + 2.68, + 2.66, + 2.63, + 2.58, + 2.52, + 2.45, + 2.39, + 2.37, + 2.38, + 2.43, + 2.54, + 2.73, + 2.93, + 3.08, + 3.2, + 3.13, + 3.0500000000000003, + 2.86, + 2.73, + 2.6, + 2.52, + 2.43, + 2.35, + 2.27, + 2.17, + 2.1, + 2.0300000000000002, + 1.97, + 1.93, + 1.9000000000000001, + 1.87, + 1.86, + 1.83, + 1.85, + 1.96, + 2.1, + 2.15, + 2.19, + 2.18, + 2.21, + 2.24, + 2.2600000000000002, + 2.34, + 2.42, + 2.5300000000000002, + 2.63, + 2.69, + 2.73, + 2.84, + 2.99, + 3.13, + 3.24, + 3.3000000000000003, + 3.3200000000000003, + 3.3200000000000003, + 3.33, + 3.35, + 3.35, + 3.33, + 3.37, + 3.42, + 3.5700000000000003, + 3.69, + 3.86, + 4.08, + 4.13, + 4.2, + 4.2700000000000005, + 4.41, + 4.49, + 4.49, + 4.3500000000000005, + 4.17, + 4.07, + 3.97, + 3.88, + 3.85, + 3.88, + 4.03, + 4.23, + 4.53, + 4.75, + 4.73, + 4.69, + 4.84, + 5.0, + 4.99, + 4.93, + 5.0200000000000005, + 5.19, + 5.45, + 5.69, + 5.79, + 5.88, + 5.96, + 6.07, + 6.26, + 6.46, + 6.5600000000000005, + 6.51, + 6.34, + 6.04, + 5.8500000000000005, + 5.95, + 6.2, + 6.33, + 6.41, + 6.1000000000000005, + 5.74, + 5.34, + 4.94, + 4.99, + 5.07, + 5.41, + 5.71, + 5.97, + 6.2, + 6.37, + 6.5600000000000005, + 6.5600000000000005, + 6.390000000000001, + 6.05, + 5.65, + 5.3100000000000005, + 5.01, + 4.76, + 4.3500000000000005, + 3.98, + 3.58, + 3.25, + 3.1, + 2.95, + 2.89, + 2.7800000000000002, + 2.82, + 2.88, + 2.99, + 3.04, + 3.12, + 3.16, + 3.19, + 3.2800000000000002, + 3.46, + 3.77, + 4.0200000000000005, + 4.13, + 4.21, + 4.38, + 4.67, + 5.0, + 5.3100000000000005, + 5.5, + 5.63, + 5.47, + 5.28, + 4.8100000000000005, + 4.44, + 4.42, + 4.58, + 4.86, + 5.08, + 4.79, + 4.11, + 3.25, + 2.54, + 2.11, + 1.93, + 1.85, + 2.0100000000000002, + 2.31, + 2.64, + 2.93, + 3.08, + 3.15, + 2.86, + 2.52, + 2.5300000000000002, + 2.5300000000000002, + 2.72, + 2.79, + 2.84, + 2.77, + 2.59, + 2.36, + 2.24, + 2.16, + 2.1, + 2.02, + 1.92, + 1.9100000000000001, + 2.12, + 2.5100000000000002, + 2.85, + 3.2800000000000002, + 3.71, + 4.2700000000000005, + 4.76, + 5.2, + 5.67, + 5.68, + 5.58, + 5.01, + 4.41, + 4.19, + 4.09, + 4.11, + 4.1, + 4.15, + 4.2700000000000005, + 4.44, + 4.53, + 4.5200000000000005, + 4.57, + 4.76, + 5.1000000000000005, + 5.46, + 5.79, + 6.08, + 6.22, + 6.24, + 6.3, + 6.44, + 6.76, + 7.25, + 6.57, + 5.76, + 4.33, + 2.91, + 1.8, + 0.68, + -0.05, + -0.59, + -0.6900000000000001, + -0.6, + -0.42, + -0.13, + 0.14, + 0.4, + 0.61, + 0.76, + 0.84, + 0.89, + 0.9, + 0.86, + 0.72, + 0.31, + -0.11, + -0.47000000000000003, + -0.89, + -0.9400000000000001, + -0.92, + -0.65, + -0.32, + -0.04, + 0.23, + 0.49, + 0.68, + 0.76, + 0.61, + 0.44, + 0.34, + 0.31, + 0.36, + 0.33, + 0.33, + 0.38, + 0.36, + 0.32, + 0.27, + 0.06, + 0.17, + 0.07, + 0.21, + 0.33, + 0.51, + 0.63, + 0.48, + 0.28, + 0.12, + 0.16, + 0.23, + 0.22, + 0.32, + 0.54, + 0.8300000000000001, + 1.07, + 1.17, + 1.05, + 0.88, + 0.78, + 0.76, + 0.64, + 0.52, + 0.32, + 0.25, + 0.24, + 0.26, + 0.11, + 0.0, + -0.14, + -0.2, + -0.22, + -0.23, + -0.21, + -0.22, + -0.22, + -0.35000000000000003, + -0.51, + -0.55, + -0.56, + -0.37, + -0.2, + -0.07, + 0.06, + 0.07, + 0.14, + 0.09, + 0.07, + -0.07, + -0.17, + -0.27, + -0.37, + -0.33, + -0.29, + -0.16, + -0.03, + 0.11, + 0.34, + 0.5700000000000001, + 0.8200000000000001, + 1.01, + 0.99, + 0.97, + 0.72, + 0.51, + 0.14, + -0.14, + -0.4, + -0.61, + -0.51 + ], + [ + 3.12, + 3.12, + 2.94, + 2.74, + 2.72, + 2.72, + 2.7, + 2.67, + 2.65, + 2.62, + 2.57, + 2.5, + 2.44, + 2.4, + 2.37, + 2.37, + 2.41, + 2.54, + 2.71, + 2.92, + 3.11, + 3.14, + 3.14, + 2.92, + 2.73, + 2.5300000000000002, + 2.37, + 2.29, + 2.21, + 2.17, + 2.12, + 2.09, + 2.06, + 2.0300000000000002, + 1.99, + 1.96, + 1.93, + 1.9100000000000001, + 1.8900000000000001, + 1.8800000000000001, + 1.93, + 2.02, + 2.12, + 2.23, + 2.19, + 2.2, + 2.22, + 2.24, + 2.2600000000000002, + 2.2800000000000002, + 2.37, + 2.46, + 2.5500000000000003, + 2.61, + 2.7, + 2.85, + 3.0, + 3.17, + 3.25, + 3.29, + 3.31, + 3.27, + 3.2800000000000002, + 3.31, + 3.33, + 3.33, + 3.33, + 3.46, + 3.5700000000000003, + 3.7, + 3.81, + 3.96, + 4.05, + 4.11, + 4.2, + 4.32, + 4.46, + 4.41, + 4.26, + 4.13, + 4.05, + 4.0, + 3.95, + 3.98, + 4.11, + 4.26, + 4.46, + 4.66, + 4.76, + 4.79, + 4.7700000000000005, + 4.86, + 4.93, + 4.98, + 5.0, + 5.0600000000000005, + 5.3100000000000005, + 5.57, + 5.74, + 5.83, + 5.88, + 5.95, + 6.08, + 6.28, + 6.46, + 6.53, + 6.47, + 6.22, + 5.93, + 5.75, + 5.7700000000000005, + 6.0, + 6.16, + 6.07, + 5.86, + 5.53, + 5.11, + 5.08, + 5.08, + 5.39, + 5.75, + 5.98, + 6.2, + 6.3, + 6.43, + 6.43, + 6.29, + 5.92, + 5.38, + 4.9, + 4.53, + 4.3, + 4.07, + 3.83, + 3.47, + 3.19, + 2.97, + 2.83, + 2.79, + 2.75, + 2.72, + 2.71, + 2.85, + 2.96, + 3.0700000000000003, + 3.16, + 3.23, + 3.25, + 3.3000000000000003, + 3.43, + 3.68, + 3.95, + 4.09, + 4.15, + 4.2700000000000005, + 4.6000000000000005, + 4.98, + 5.28, + 5.53, + 5.49, + 5.3500000000000005, + 5.01, + 4.59, + 4.36, + 4.24, + 4.44, + 4.83, + 5.05, + 5.01, + 4.3500000000000005, + 3.37, + 2.56, + 2.0, + 1.6500000000000001, + 1.53, + 1.6, + 1.9100000000000001, + 2.27, + 2.63, + 3.0, + 3.13, + 3.13, + 2.85, + 2.62, + 2.69, + 2.74, + 2.87, + 2.91, + 2.84, + 2.71, + 2.58, + 2.48, + 2.4, + 2.35, + 2.22, + 2.0300000000000002, + 1.97, + 2.12, + 2.39, + 2.74, + 3.0700000000000003, + 3.42, + 3.79, + 4.16, + 4.53, + 4.9, + 5.3100000000000005, + 5.13, + 4.83, + 4.41, + 4.03, + 3.96, + 3.99, + 4.01, + 4.01, + 4.14, + 4.32, + 4.38, + 4.32, + 4.34, + 4.53, + 4.8500000000000005, + 5.25, + 5.66, + 6.01, + 6.21, + 6.17, + 6.09, + 5.82, + 5.83, + 5.45, + 4.97, + 3.89, + 2.66, + 1.6300000000000001, + 0.5700000000000001, + -0.17, + -0.88, + -1.09, + -1.1400000000000001, + -1.05, + -0.86, + -0.61, + -0.3, + -0.05, + 0.21, + 0.37, + 0.53, + 0.56, + 0.5700000000000001, + 0.48, + 0.28, + 0.0, + -0.26, + -0.5700000000000001, + -0.8, + -1.06, + -0.9400000000000001, + -0.81, + -0.5700000000000001, + -0.45, + -0.22, + 0.04, + 0.33, + 0.65, + 0.73, + 0.68, + 0.66, + 0.66, + 0.62, + 0.46, + 0.3, + 0.33, + 0.39, + 0.5, + 0.54, + 0.6, + 0.5700000000000001, + 0.52, + 0.48, + 0.53, + 0.71, + 0.64, + 0.44, + 0.14, + -0.1, + -0.1, + 0.06, + 0.22, + 0.33, + 0.55, + 0.87, + 1.1, + 1.12, + 0.98, + 0.64, + 0.35000000000000003, + 0.2, + 0.0, + -0.11, + -0.3, + -0.13, + -0.01, + 0.04, + 0.03, + -0.03, + -0.01, + 0.04, + 0.12, + 0.17, + 0.18, + 0.21, + 0.25, + 0.24, + 0.13, + 0.04, + 0.09, + 0.2, + 0.23, + 0.34, + 0.19, + 0.14, + 0.11, + 0.12, + 0.03, + -0.02, + -0.14, + -0.21, + -0.18, + -0.1, + 0.02, + 0.21, + 0.36, + 0.53, + 0.71, + 0.88, + 1.04, + 1.08, + 1.11, + 0.85, + 0.65, + 0.27, + -0.04, + -0.34, + -0.63, + -0.65, + -0.61 + ], + [ + 3.15, + 3.09, + 2.95, + 2.8000000000000003, + 2.74, + 2.72, + 2.7, + 2.68, + 2.65, + 2.61, + 2.56, + 2.5, + 2.45, + 2.4, + 2.38, + 2.38, + 2.43, + 2.5300000000000002, + 2.72, + 2.9, + 3.02, + 3.09, + 2.94, + 2.7600000000000002, + 2.5300000000000002, + 2.3000000000000003, + 2.19, + 2.08, + 2.06, + 2.0300000000000002, + 2.0300000000000002, + 2.05, + 2.05, + 2.04, + 2.0100000000000002, + 1.97, + 1.94, + 1.92, + 1.9000000000000001, + 1.9000000000000001, + 1.93, + 1.99, + 2.1, + 2.14, + 2.17, + 2.21, + 2.24, + 2.25, + 2.25, + 2.29, + 2.34, + 2.43, + 2.5100000000000002, + 2.58, + 2.67, + 2.8000000000000003, + 2.98, + 3.09, + 3.14, + 3.18, + 3.18, + 3.19, + 3.24, + 3.29, + 3.36, + 3.37, + 3.45, + 3.5300000000000002, + 3.67, + 3.74, + 3.85, + 3.89, + 4.01, + 4.0200000000000005, + 4.14, + 4.23, + 4.29, + 4.2700000000000005, + 4.16, + 4.07, + 4.05, + 4.05, + 4.08, + 4.2, + 4.33, + 4.49, + 4.66, + 4.75, + 4.8, + 4.7700000000000005, + 4.73, + 4.76, + 4.9, + 4.96, + 5.03, + 5.21, + 5.46, + 5.65, + 5.8, + 5.8500000000000005, + 5.8500000000000005, + 5.89, + 6.03, + 6.21, + 6.38, + 6.47, + 6.3500000000000005, + 6.11, + 5.79, + 5.55, + 5.67, + 5.8100000000000005, + 5.92, + 5.8500000000000005, + 5.72, + 5.4, + 5.33, + 5.25, + 5.44, + 5.75, + 5.96, + 6.19, + 6.2, + 6.22, + 6.15, + 6.0600000000000005, + 5.74, + 5.14, + 4.5600000000000005, + 3.97, + 3.6, + 3.46, + 3.31, + 3.13, + 2.91, + 2.77, + 2.64, + 2.64, + 2.64, + 2.66, + 2.66, + 2.74, + 2.89, + 3.0300000000000002, + 3.15, + 3.2600000000000002, + 3.35, + 3.35, + 3.3200000000000003, + 3.41, + 3.65, + 3.89, + 4.0200000000000005, + 4.0600000000000005, + 4.18, + 4.44, + 4.84, + 5.24, + 5.36, + 5.42, + 5.18, + 4.8, + 4.5200000000000005, + 4.21, + 4.15, + 4.22, + 4.61, + 5.0600000000000005, + 5.0, + 4.49, + 3.58, + 2.59, + 1.9100000000000001, + 1.44, + 1.2, + 1.27, + 1.48, + 1.8900000000000001, + 2.29, + 2.77, + 3.18, + 3.2, + 3.12, + 2.96, + 2.85, + 2.93, + 3.04, + 3.0500000000000003, + 2.99, + 2.87, + 2.7800000000000002, + 2.7, + 2.63, + 2.5300000000000002, + 2.36, + 2.2, + 2.09, + 2.15, + 2.37, + 2.6, + 2.83, + 3.1, + 3.31, + 3.5300000000000002, + 3.81, + 4.08, + 4.51, + 4.82, + 4.66, + 4.36, + 4.0600000000000005, + 3.81, + 3.84, + 3.9, + 3.93, + 4.04, + 4.15, + 4.2, + 4.15, + 4.11, + 4.25, + 4.62, + 5.07, + 5.59, + 5.99, + 6.11, + 6.0200000000000005, + 5.36, + 4.89, + 4.2700000000000005, + 3.73, + 3.0100000000000002, + 2.08, + 1.28, + 0.44, + -0.22, + -0.81, + -1.09, + -1.2, + -1.2, + -1.16, + -1.04, + -0.81, + -0.54, + -0.26, + 0.0, + 0.23, + 0.35000000000000003, + 0.37, + 0.31, + 0.14, + -0.07, + -0.23, + -0.36, + -0.56, + -0.68, + -0.78, + -0.8200000000000001, + -0.66, + -0.56, + -0.41000000000000003, + -0.34, + -0.09, + 0.28, + 0.58, + 0.8200000000000001, + 0.91, + 0.97, + 1.02, + 0.88, + 0.66, + 0.48, + 0.29, + 0.58, + 0.78, + 0.99, + 1.23, + 1.07, + 0.98, + 0.72, + 0.64, + 0.56, + 0.53, + 0.26, + -0.14, + -0.33, + -0.36, + -0.18, + 0.14, + 0.38, + 0.67, + 0.93, + 1.1, + 1.11, + 0.75, + 0.39, + 0.05, + -0.29, + -0.4, + -0.68, + -0.51, + -0.4, + -0.17, + -0.12, + -0.11, + -0.14, + -0.03, + 0.16, + 0.28, + 0.4, + 0.46, + 0.55, + 0.66, + 0.72, + 0.73, + 0.59, + 0.6, + 0.5, + 0.52, + 0.38, + 0.22, + 0.15, + 0.05, + 0.01, + -0.06, + -0.14, + -0.18, + -0.15, + -0.01, + 0.11, + 0.29, + 0.42, + 0.5700000000000001, + 0.71, + 0.81, + 0.9, + 0.89, + 0.88, + 0.71, + 0.55, + 0.24, + -0.05, + -0.3, + -0.56, + -0.67, + -0.77, + -0.61 + ], + [ + 3.16, + 3.16, + 2.97, + 2.77, + 2.74, + 2.73, + 2.71, + 2.68, + 2.65, + 2.61, + 2.57, + 2.5100000000000002, + 2.46, + 2.42, + 2.4, + 2.42, + 2.47, + 2.6, + 2.74, + 2.86, + 2.96, + 2.89, + 2.77, + 2.56, + 2.33, + 2.18, + 2.05, + 2.0100000000000002, + 1.98, + 1.99, + 2.0100000000000002, + 2.0300000000000002, + 2.06, + 2.05, + 2.0100000000000002, + 1.97, + 1.93, + 1.9100000000000001, + 1.8900000000000001, + 1.8800000000000001, + 1.8900000000000001, + 1.9100000000000001, + 1.99, + 2.04, + 2.14, + 2.22, + 2.25, + 2.2600000000000002, + 2.2800000000000002, + 2.3000000000000003, + 2.35, + 2.41, + 2.48, + 2.5500000000000003, + 2.62, + 2.72, + 2.84, + 2.92, + 2.98, + 3.02, + 3.0700000000000003, + 3.16, + 3.22, + 3.36, + 3.44, + 3.5100000000000002, + 3.5700000000000003, + 3.7, + 3.84, + 3.89, + 3.96, + 4.0200000000000005, + 4.1, + 4.15, + 4.18, + 4.2, + 4.2, + 4.15, + 4.05, + 4.05, + 4.12, + 4.17, + 4.26, + 4.38, + 4.51, + 4.67, + 4.78, + 4.86, + 4.8100000000000005, + 4.75, + 4.61, + 4.55, + 4.74, + 4.95, + 5.13, + 5.34, + 5.53, + 5.72, + 5.8100000000000005, + 5.8500000000000005, + 5.83, + 5.8, + 5.86, + 6.03, + 6.2, + 6.29, + 6.26, + 6.0200000000000005, + 5.73, + 5.6000000000000005, + 5.6000000000000005, + 5.76, + 5.84, + 5.86, + 5.76, + 5.68, + 5.6000000000000005, + 5.63, + 5.7700000000000005, + 5.9, + 6.08, + 6.04, + 5.96, + 5.76, + 5.58, + 5.3100000000000005, + 4.8, + 4.22, + 3.5700000000000003, + 3.0300000000000002, + 2.7800000000000002, + 2.61, + 2.6, + 2.45, + 2.43, + 2.33, + 2.39, + 2.43, + 2.52, + 2.6, + 2.63, + 2.72, + 2.9, + 3.13, + 3.24, + 3.37, + 3.44, + 3.43, + 3.4, + 3.43, + 3.62, + 3.86, + 3.99, + 3.96, + 4.0, + 4.26, + 4.63, + 4.97, + 5.24, + 5.25, + 5.16, + 4.8500000000000005, + 4.48, + 4.25, + 3.99, + 4.12, + 4.39, + 4.8500000000000005, + 5.08, + 4.6000000000000005, + 3.72, + 2.75, + 1.9100000000000001, + 1.36, + 1.06, + 1.0, + 1.23, + 1.54, + 2.02, + 2.5, + 2.98, + 3.3200000000000003, + 3.31, + 3.25, + 3.16, + 3.09, + 3.2, + 3.25, + 3.14, + 3.0, + 2.93, + 2.89, + 2.8000000000000003, + 2.66, + 2.5300000000000002, + 2.37, + 2.27, + 2.2600000000000002, + 2.35, + 2.44, + 2.5300000000000002, + 2.7, + 2.85, + 2.98, + 3.09, + 3.44, + 3.83, + 4.3100000000000005, + 4.65, + 4.43, + 4.08, + 3.9, + 3.75, + 3.75, + 3.79, + 3.83, + 3.92, + 3.97, + 3.91, + 3.89, + 4.0200000000000005, + 4.37, + 4.98, + 5.55, + 5.94, + 6.04, + 5.32, + 4.49, + 3.5500000000000003, + 2.64, + 2.06, + 1.26, + 0.75, + 0.09, + -0.34, + -0.8300000000000001, + -1.04, + -1.07, + -1.11, + -1.1, + -1.11, + -1.07, + -0.9, + -0.64, + -0.36, + -0.06, + 0.17, + 0.22, + 0.23, + 0.04, + -0.15, + -0.33, + -0.5, + -0.58, + -0.63, + -0.65, + -0.55, + -0.5, + -0.38, + -0.26, + -0.16, + -0.05, + 0.09, + 0.36, + 0.66, + 0.88, + 1.05, + 1.19, + 1.3, + 1.28, + 1.05, + 0.8200000000000001, + 0.78, + 0.84, + 1.12, + 1.44, + 1.44, + 1.5, + 1.07, + 0.71, + 0.42, + 0.23, + 0.12, + -0.03, + -0.22, + -0.43, + -0.38, + -0.13, + 0.16, + 0.53, + 0.8, + 0.98, + 1.09, + 0.85, + 0.55, + 0.18, + -0.2, + -0.35000000000000003, + -0.61, + -0.62, + -0.6, + -0.35000000000000003, + -0.11, + -0.07, + -0.15, + -0.1, + 0.03, + 0.19, + 0.35000000000000003, + 0.42, + 0.53, + 0.64, + 0.79, + 0.96, + 0.91, + 0.88, + 0.7000000000000001, + 0.64, + 0.54, + 0.43, + 0.33, + 0.2, + 0.08, + -0.06, + -0.15, + -0.28, + -0.25, + -0.15, + 0.0, + 0.19, + 0.3, + 0.38, + 0.49, + 0.61, + 0.66, + 0.6, + 0.51, + 0.33, + 0.17, + -0.02, + -0.22, + -0.36, + -0.56, + -0.6, + -0.72, + -0.7000000000000001, + -0.66 + ], + [ + 3.18, + 3.13, + 2.98, + 2.82, + 2.75, + 2.74, + 2.71, + 2.68, + 2.66, + 2.62, + 2.58, + 2.5300000000000002, + 2.48, + 2.45, + 2.45, + 2.48, + 2.58, + 2.68, + 2.77, + 2.86, + 2.8000000000000003, + 2.72, + 2.56, + 2.37, + 2.24, + 2.1, + 2.04, + 2.0, + 1.98, + 1.97, + 1.99, + 2.02, + 2.04, + 2.0300000000000002, + 2.0, + 1.95, + 1.92, + 1.8900000000000001, + 1.8800000000000001, + 1.8800000000000001, + 1.87, + 1.8800000000000001, + 1.9000000000000001, + 2.02, + 2.12, + 2.21, + 2.27, + 2.29, + 2.3000000000000003, + 2.33, + 2.36, + 2.41, + 2.45, + 2.5, + 2.52, + 2.6, + 2.67, + 2.7600000000000002, + 2.84, + 2.92, + 3.0700000000000003, + 3.2, + 3.34, + 3.47, + 3.5700000000000003, + 3.65, + 3.75, + 3.87, + 3.95, + 4.0200000000000005, + 4.0600000000000005, + 4.16, + 4.23, + 4.32, + 4.26, + 4.19, + 4.14, + 4.04, + 4.03, + 4.13, + 4.23, + 4.32, + 4.42, + 4.5200000000000005, + 4.64, + 4.7700000000000005, + 4.89, + 4.89, + 4.8500000000000005, + 4.61, + 4.41, + 4.42, + 4.55, + 4.91, + 5.23, + 5.41, + 5.57, + 5.69, + 5.79, + 5.8100000000000005, + 5.79, + 5.71, + 5.61, + 5.69, + 5.86, + 6.03, + 6.12, + 6.0, + 5.8, + 5.64, + 5.71, + 5.83, + 5.89, + 5.96, + 5.95, + 5.97, + 5.89, + 5.95, + 5.86, + 5.9, + 5.78, + 5.64, + 5.34, + 4.97, + 4.7, + 4.32, + 3.86, + 3.29, + 2.73, + 2.38, + 2.09, + 2.09, + 2.0300000000000002, + 2.07, + 2.02, + 2.1, + 2.15, + 2.3000000000000003, + 2.43, + 2.49, + 2.5500000000000003, + 2.7, + 2.91, + 3.09, + 3.27, + 3.4, + 3.52, + 3.5100000000000002, + 3.45, + 3.47, + 3.62, + 3.8200000000000003, + 3.89, + 3.87, + 3.83, + 3.97, + 4.33, + 4.71, + 4.96, + 5.13, + 5.09, + 4.98, + 4.68, + 4.37, + 4.15, + 3.99, + 4.38, + 4.87, + 5.03, + 4.76, + 3.91, + 2.87, + 2.0300000000000002, + 1.42, + 1.08, + 0.99, + 1.08, + 1.3900000000000001, + 1.75, + 2.27, + 2.7600000000000002, + 3.21, + 3.52, + 3.5100000000000002, + 3.46, + 3.43, + 3.43, + 3.42, + 3.29, + 3.16, + 3.08, + 3.0, + 2.92, + 2.81, + 2.72, + 2.6, + 2.49, + 2.44, + 2.4, + 2.4, + 2.37, + 2.37, + 2.49, + 2.52, + 2.61, + 2.75, + 3.3000000000000003, + 3.94, + 4.41, + 4.7, + 4.4, + 4.04, + 3.83, + 3.62, + 3.5, + 3.45, + 3.54, + 3.65, + 3.69, + 3.71, + 3.86, + 4.3, + 4.91, + 5.61, + 6.05, + 5.62, + 4.7700000000000005, + 3.58, + 2.22, + 1.53, + 0.58, + 0.27, + -0.28, + -0.45, + -0.78, + -0.91, + -1.0, + -0.97, + -0.9500000000000001, + -0.98, + -1.07, + -1.06, + -0.9500000000000001, + -0.73, + -0.4, + -0.13, + 0.02, + 0.09, + -0.06, + -0.24, + -0.41000000000000003, + -0.6, + -0.6900000000000001, + -0.81, + -0.76, + -0.68, + -0.48, + -0.23, + -0.11, + 0.06, + 0.16, + 0.3, + 0.43, + 0.5700000000000001, + 0.77, + 0.93, + 1.09, + 1.34, + 1.53, + 1.55, + 1.5, + 1.29, + 1.26, + 1.18, + 1.3900000000000001, + 1.43, + 1.56, + 1.32, + 0.98, + 0.52, + 0.0, + -0.17, + -0.33, + -0.3, + -0.17, + -0.16, + -0.03, + 0.18, + 0.45, + 0.7000000000000001, + 0.86, + 0.98, + 0.8, + 0.6, + 0.29, + -0.02, + -0.13, + -0.27, + -0.44, + -0.53, + -0.47000000000000003, + -0.24, + -0.09, + 0.05, + 0.01, + 0.03, + 0.12, + 0.21, + 0.25, + 0.22, + 0.28, + 0.4, + 0.58, + 0.79, + 0.86, + 0.79, + 0.68, + 0.63, + 0.58, + 0.51, + 0.47000000000000003, + 0.27, + 0.15, + -0.02, + -0.19, + -0.23, + -0.31, + -0.16, + 0.0, + 0.15, + 0.18, + 0.25, + 0.32, + 0.39, + 0.35000000000000003, + 0.21, + -0.05, + -0.29, + -0.44, + -0.62, + -0.5700000000000001, + -0.62, + -0.5700000000000001, + -0.5700000000000001, + -0.59, + -0.65, + -0.63 + ], + [ + 3.2, + 3.18, + 2.99, + 2.8000000000000003, + 2.7600000000000002, + 2.74, + 2.71, + 2.68, + 2.66, + 2.63, + 2.59, + 2.54, + 2.5100000000000002, + 2.49, + 2.5100000000000002, + 2.59, + 2.69, + 2.75, + 2.82, + 2.75, + 2.67, + 2.5300000000000002, + 2.37, + 2.2800000000000002, + 2.18, + 2.11, + 2.07, + 2.02, + 1.97, + 1.95, + 1.96, + 1.98, + 2.0, + 2.0, + 1.97, + 1.93, + 1.8900000000000001, + 1.87, + 1.8900000000000001, + 1.9000000000000001, + 1.9100000000000001, + 1.9000000000000001, + 1.94, + 2.0100000000000002, + 2.13, + 2.24, + 2.29, + 2.32, + 2.33, + 2.35, + 2.37, + 2.4, + 2.43, + 2.44, + 2.47, + 2.5, + 2.6, + 2.72, + 2.81, + 2.93, + 3.09, + 3.31, + 3.49, + 3.59, + 3.7, + 3.81, + 3.92, + 3.98, + 4.04, + 4.0600000000000005, + 4.09, + 4.21, + 4.33, + 4.32, + 4.25, + 4.16, + 4.05, + 4.0200000000000005, + 4.1, + 4.22, + 4.36, + 4.46, + 4.55, + 4.64, + 4.73, + 4.84, + 4.94, + 4.96, + 4.72, + 4.44, + 4.29, + 4.2, + 4.5600000000000005, + 4.96, + 5.25, + 5.46, + 5.5600000000000005, + 5.62, + 5.7, + 5.78, + 5.74, + 5.58, + 5.48, + 5.37, + 5.53, + 5.89, + 6.04, + 6.08, + 5.93, + 5.83, + 5.83, + 5.87, + 5.92, + 5.98, + 6.08, + 6.0, + 6.03, + 5.7700000000000005, + 5.65, + 5.41, + 5.2, + 4.88, + 4.43, + 4.09, + 3.75, + 3.44, + 3.1, + 2.63, + 2.3000000000000003, + 1.96, + 1.82, + 1.75, + 1.81, + 1.81, + 1.86, + 1.9100000000000001, + 2.04, + 2.18, + 2.29, + 2.37, + 2.49, + 2.64, + 2.83, + 3.0100000000000002, + 3.21, + 3.44, + 3.5500000000000003, + 3.5700000000000003, + 3.5100000000000002, + 3.46, + 3.56, + 3.72, + 3.8000000000000003, + 3.7, + 3.63, + 3.72, + 3.98, + 4.3500000000000005, + 4.67, + 4.9, + 5.05, + 5.04, + 4.96, + 4.65, + 4.3100000000000005, + 4.23, + 4.42, + 4.84, + 5.15, + 4.83, + 4.07, + 3.09, + 2.2, + 1.59, + 1.29, + 1.16, + 1.16, + 1.33, + 1.6500000000000001, + 2.05, + 2.58, + 3.0700000000000003, + 3.5100000000000002, + 3.8000000000000003, + 3.7600000000000002, + 3.7600000000000002, + 3.71, + 3.66, + 3.47, + 3.29, + 3.17, + 3.0700000000000003, + 2.99, + 2.95, + 2.88, + 2.83, + 2.74, + 2.63, + 2.57, + 2.48, + 2.39, + 2.33, + 2.29, + 2.24, + 2.17, + 2.35, + 2.68, + 3.5, + 4.37, + 4.68, + 4.8500000000000005, + 4.39, + 3.91, + 3.5, + 3.02, + 2.96, + 3.09, + 3.2800000000000002, + 3.5100000000000002, + 3.61, + 3.81, + 4.24, + 5.04, + 5.78, + 6.04, + 5.7, + 4.5600000000000005, + 3.0100000000000002, + 1.98, + 0.8, + 0.35000000000000003, + -0.27, + -0.35000000000000003, + -0.49, + -0.54, + -0.62, + -0.61, + -0.65, + -0.63, + -0.75, + -0.84, + -0.93, + -0.85, + -0.61, + -0.39, + -0.18, + -0.09, + -0.15, + -0.32, + -0.44, + -0.65, + -0.71, + -0.8200000000000001, + -0.85, + -0.9, + -0.68, + -0.4, + -0.15, + 0.09, + 0.23, + 0.39, + 0.54, + 0.73, + 0.84, + 0.87, + 0.96, + 1.08, + 1.31, + 1.5, + 1.6300000000000001, + 1.57, + 1.56, + 1.32, + 1.28, + 1.2, + 1.26, + 1.21, + 1.08, + 0.76, + 0.31, + -0.07, + -0.49, + -0.47000000000000003, + -0.33, + -0.08, + 0.28, + 0.45, + 0.6, + 0.76, + 0.77, + 0.84, + 0.66, + 0.49, + 0.23, + -0.02, + -0.05, + -0.05, + -0.2, + -0.32, + -0.48, + -0.48, + -0.33, + -0.11, + -0.01, + 0.1, + 0.1, + 0.15, + 0.15, + 0.0, + -0.05, + -0.08, + 0.02, + 0.31, + 0.53, + 0.71, + 0.7000000000000001, + 0.66, + 0.61, + 0.55, + 0.54, + 0.38, + 0.26, + 0.11, + 0.02, + -0.05, + -0.08, + -0.05, + -0.04, + 0.11, + 0.18, + 0.2, + 0.2, + 0.25, + 0.24, + 0.16, + -0.15, + -0.47000000000000003, + -0.72, + -0.97, + -0.89, + -0.88, + -0.66, + -0.53, + -0.43, + -0.38, + -0.51, + -0.61 + ], + [ + 3.21, + 3.16, + 3.0, + 2.83, + 2.7600000000000002, + 2.74, + 2.71, + 2.68, + 2.66, + 2.63, + 2.6, + 2.56, + 2.54, + 2.5300000000000002, + 2.59, + 2.67, + 2.74, + 2.82, + 2.72, + 2.65, + 2.5, + 2.36, + 2.29, + 2.23, + 2.19, + 2.16, + 2.09, + 2.0300000000000002, + 1.96, + 1.9000000000000001, + 1.8900000000000001, + 1.9000000000000001, + 1.92, + 1.93, + 1.9100000000000001, + 1.8900000000000001, + 1.86, + 1.87, + 1.8900000000000001, + 1.95, + 1.97, + 1.96, + 1.98, + 2.05, + 2.15, + 2.25, + 2.32, + 2.35, + 2.37, + 2.39, + 2.39, + 2.41, + 2.41, + 2.44, + 2.46, + 2.5300000000000002, + 2.66, + 2.7800000000000002, + 2.86, + 2.97, + 3.2, + 3.42, + 3.59, + 3.71, + 3.84, + 3.97, + 4.0, + 4.0600000000000005, + 4.0600000000000005, + 4.0600000000000005, + 4.14, + 4.26, + 4.3100000000000005, + 4.2700000000000005, + 4.2, + 4.1, + 4.0600000000000005, + 4.08, + 4.2, + 4.39, + 4.5200000000000005, + 4.6000000000000005, + 4.67, + 4.72, + 4.79, + 4.92, + 5.0200000000000005, + 4.91, + 4.66, + 4.4, + 4.15, + 4.3500000000000005, + 4.65, + 5.04, + 5.34, + 5.47, + 5.53, + 5.55, + 5.59, + 5.66, + 5.7, + 5.61, + 5.47, + 5.43, + 5.61, + 5.91, + 6.25, + 6.32, + 6.2, + 6.07, + 5.92, + 5.9, + 5.84, + 5.88, + 5.84, + 5.84, + 5.54, + 5.24, + 4.91, + 4.57, + 4.28, + 3.92, + 3.58, + 3.29, + 3.0500000000000003, + 2.89, + 2.61, + 2.35, + 2.05, + 1.83, + 1.68, + 1.6600000000000001, + 1.69, + 1.72, + 1.75, + 1.83, + 1.94, + 2.08, + 2.18, + 2.2800000000000002, + 2.41, + 2.57, + 2.71, + 2.93, + 3.17, + 3.41, + 3.59, + 3.6, + 3.5100000000000002, + 3.45, + 3.45, + 3.5500000000000003, + 3.59, + 3.5300000000000002, + 3.41, + 3.43, + 3.66, + 3.97, + 4.3100000000000005, + 4.61, + 4.93, + 5.15, + 5.1000000000000005, + 4.96, + 4.6000000000000005, + 4.32, + 4.49, + 4.82, + 5.0200000000000005, + 4.95, + 4.22, + 3.27, + 2.41, + 1.86, + 1.54, + 1.3900000000000001, + 1.36, + 1.3900000000000001, + 1.61, + 1.97, + 2.42, + 2.99, + 3.49, + 3.8000000000000003, + 3.99, + 3.94, + 3.94, + 3.77, + 3.56, + 3.35, + 3.17, + 3.0700000000000003, + 3.0100000000000002, + 2.98, + 3.0, + 2.95, + 2.89, + 2.81, + 2.75, + 2.67, + 2.56, + 2.48, + 2.29, + 2.12, + 1.98, + 1.95, + 2.33, + 2.99, + 3.92, + 4.79, + 4.8100000000000005, + 4.69, + 4.0200000000000005, + 3.2, + 2.74, + 2.45, + 2.62, + 3.02, + 3.3000000000000003, + 3.54, + 3.79, + 4.37, + 5.15, + 6.07, + 6.5200000000000005, + 6.13, + 5.07, + 3.75, + 2.29, + 1.43, + 0.64, + 0.28, + 0.02, + -0.01, + 0.03, + 0.03, + 0.05, + 0.03, + -0.05, + -0.15, + -0.32, + -0.4, + -0.32, + -0.16, + -0.06, + -0.01, + -0.11, + -0.27, + -0.35000000000000003, + -0.52, + -0.61, + -0.73, + -0.75, + -0.81, + -0.77, + -0.65, + -0.35000000000000003, + -0.07, + 0.13, + 0.29, + 0.45, + 0.68, + 0.85, + 0.96, + 0.9500000000000001, + 0.8200000000000001, + 0.89, + 1.04, + 1.25, + 1.33, + 1.36, + 1.29, + 1.1400000000000001, + 0.9500000000000001, + 0.78, + 0.8200000000000001, + 0.8200000000000001, + 0.81, + 0.7000000000000001, + 0.37, + 0.06, + -0.22, + -0.35000000000000003, + -0.13, + 0.24, + 0.56, + 0.8, + 0.9, + 0.79, + 0.73, + 0.48, + 0.3, + 0.03, + -0.22, + -0.24, + -0.19, + -0.16, + -0.19, + -0.4, + -0.62, + -0.62, + -0.58, + -0.36, + -0.15, + -0.04, + 0.07, + 0.08, + 0.0, + -0.1, + -0.19, + -0.21, + -0.11, + 0.11, + 0.46, + 0.67, + 0.67, + 0.65, + 0.52, + 0.44, + 0.32, + 0.17, + 0.08, + -0.01, + 0.03, + 0.15, + 0.22, + 0.37, + 0.38, + 0.36, + 0.35000000000000003, + 0.26, + 0.24, + 0.26, + 0.25, + 0.08, + -0.21, + -0.56, + -0.89, + -0.97, + -1.04, + -0.8200000000000001, + -0.65, + -0.45, + -0.26, + -0.3, + -0.38, + -0.52 + ], + [ + 3.22, + 3.2, + 3.0100000000000002, + 2.8000000000000003, + 2.75, + 2.74, + 2.71, + 2.68, + 2.66, + 2.63, + 2.6, + 2.57, + 2.5500000000000003, + 2.56, + 2.61, + 2.67, + 2.75, + 2.7, + 2.62, + 2.48, + 2.33, + 2.27, + 2.22, + 2.21, + 2.21, + 2.16, + 2.1, + 2.0100000000000002, + 1.9100000000000001, + 1.84, + 1.79, + 1.8, + 1.81, + 1.82, + 1.84, + 1.83, + 1.83, + 1.85, + 1.93, + 2.0, + 2.04, + 2.04, + 2.04, + 2.08, + 2.18, + 2.2800000000000002, + 2.35, + 2.39, + 2.43, + 2.46, + 2.46, + 2.45, + 2.46, + 2.48, + 2.54, + 2.69, + 2.82, + 2.94, + 3.02, + 3.14, + 3.34, + 3.54, + 3.7, + 3.81, + 3.94, + 3.98, + 4.04, + 4.0600000000000005, + 4.05, + 4.1, + 4.18, + 4.25, + 4.2700000000000005, + 4.23, + 4.16, + 4.14, + 4.18, + 4.25, + 4.42, + 4.59, + 4.7, + 4.7700000000000005, + 4.76, + 4.8, + 4.87, + 4.99, + 5.07, + 5.01, + 4.74, + 4.45, + 4.44, + 4.6000000000000005, + 4.9, + 5.22, + 5.4, + 5.47, + 5.47, + 5.41, + 5.48, + 5.59, + 5.68, + 5.8100000000000005, + 5.75, + 5.83, + 6.01, + 6.3100000000000005, + 6.61, + 6.65, + 6.57, + 6.21, + 6.0, + 5.74, + 5.64, + 5.49, + 5.41, + 5.15, + 4.76, + 4.38, + 3.94, + 3.67, + 3.33, + 3.1, + 2.91, + 2.72, + 2.67, + 2.5300000000000002, + 2.38, + 2.14, + 1.93, + 1.73, + 1.62, + 1.6, + 1.62, + 1.6500000000000001, + 1.68, + 1.74, + 1.87, + 2.0, + 2.1, + 2.2, + 2.35, + 2.52, + 2.69, + 2.87, + 3.15, + 3.45, + 3.61, + 3.62, + 3.52, + 3.37, + 3.33, + 3.3200000000000003, + 3.34, + 3.3200000000000003, + 3.22, + 3.21, + 3.35, + 3.62, + 3.91, + 4.36, + 4.82, + 5.12, + 5.29, + 5.09, + 4.78, + 4.5, + 4.41, + 4.67, + 4.88, + 4.75, + 4.33, + 3.43, + 2.59, + 2.04, + 1.76, + 1.59, + 1.48, + 1.49, + 1.61, + 1.8900000000000001, + 2.38, + 2.93, + 3.39, + 3.75, + 3.91, + 4.0, + 3.92, + 3.7800000000000002, + 3.56, + 3.33, + 3.16, + 3.02, + 2.97, + 3.0, + 3.0100000000000002, + 3.02, + 2.97, + 2.94, + 2.89, + 2.84, + 2.77, + 2.6, + 2.42, + 2.13, + 1.9000000000000001, + 1.76, + 1.8800000000000001, + 2.48, + 3.34, + 4.17, + 4.68, + 4.46, + 4.01, + 3.18, + 2.43, + 2.21, + 2.3000000000000003, + 2.69, + 3.15, + 3.45, + 3.84, + 4.42, + 5.45, + 6.44, + 7.140000000000001, + 7.140000000000001, + 6.28, + 5.09, + 3.63, + 2.49, + 1.67, + 1.12, + 0.73, + 0.52, + 0.58, + 0.76, + 0.77, + 0.84, + 0.76, + 0.72, + 0.5700000000000001, + 0.49, + 0.55, + 0.63, + 0.68, + 0.37, + 0.15, + -0.05, + -0.22, + -0.31, + -0.43, + -0.52, + -0.6, + -0.6, + -0.59, + -0.45, + -0.27, + -0.03, + 0.13, + 0.28, + 0.41000000000000003, + 0.62, + 0.81, + 0.88, + 0.72, + 0.58, + 0.49, + 0.59, + 0.8200000000000001, + 0.92, + 1.02, + 0.96, + 0.8300000000000001, + 0.5700000000000001, + 0.45, + 0.35000000000000003, + 0.53, + 0.67, + 0.65, + 0.59, + 0.31, + 0.17, + 0.08, + 0.21, + 0.51, + 0.74, + 0.92, + 0.86, + 0.72, + 0.36, + 0.09, + -0.2, + -0.49, + -0.5700000000000001, + -0.6, + -0.44, + -0.34, + -0.34, + -0.51, + -0.67, + -0.79, + -0.71, + -0.63, + -0.4, + -0.22, + -0.11, + -0.05, + -0.09, + -0.05, + -0.1, + -0.08, + 0.0, + 0.14, + 0.43, + 0.59, + 0.64, + 0.51, + 0.38, + 0.25, + 0.09, + 0.02, + -0.1, + -0.06, + 0.05, + 0.27, + 0.61, + 0.72, + 0.8200000000000001, + 0.67, + 0.43, + 0.3, + 0.21, + 0.24, + 0.31, + 0.18, + -0.04, + -0.37, + -0.56, + -0.7000000000000001, + -0.72, + -0.62, + -0.53, + -0.37, + -0.3, + -0.27, + -0.41000000000000003, + -0.53 + ], + [ + 3.25, + 3.19, + 3.0100000000000002, + 2.83, + 2.75, + 2.74, + 2.72, + 2.69, + 2.66, + 2.62, + 2.59, + 2.56, + 2.54, + 2.5500000000000003, + 2.57, + 2.63, + 2.6, + 2.5500000000000003, + 2.45, + 2.32, + 2.25, + 2.2, + 2.19, + 2.2, + 2.18, + 2.13, + 2.05, + 1.95, + 1.84, + 1.74, + 1.69, + 1.67, + 1.69, + 1.71, + 1.74, + 1.79, + 1.8, + 1.87, + 1.95, + 2.06, + 2.12, + 2.11, + 2.1, + 2.13, + 2.2, + 2.3000000000000003, + 2.37, + 2.44, + 2.49, + 2.54, + 2.56, + 2.54, + 2.54, + 2.58, + 2.69, + 2.84, + 3.02, + 3.13, + 3.22, + 3.33, + 3.46, + 3.65, + 3.75, + 3.87, + 3.91, + 3.93, + 4.01, + 4.05, + 4.08, + 4.14, + 4.19, + 4.22, + 4.23, + 4.21, + 4.21, + 4.32, + 4.38, + 4.49, + 4.64, + 4.79, + 4.88, + 4.87, + 4.87, + 4.86, + 4.92, + 5.05, + 5.15, + 5.1000000000000005, + 4.9, + 4.78, + 4.82, + 4.95, + 5.19, + 5.36, + 5.44, + 5.45, + 5.36, + 5.34, + 5.4, + 5.58, + 5.84, + 5.99, + 6.2, + 6.3, + 6.51, + 6.79, + 6.9, + 6.97, + 6.66, + 6.33, + 5.7700000000000005, + 5.44, + 5.12, + 4.92, + 4.66, + 4.3, + 3.93, + 3.5, + 3.2, + 2.94, + 2.73, + 2.58, + 2.47, + 2.43, + 2.37, + 2.27, + 2.12, + 1.97, + 1.78, + 1.6300000000000001, + 1.53, + 1.51, + 1.53, + 1.57, + 1.6, + 1.68, + 1.81, + 1.94, + 2.04, + 2.16, + 2.32, + 2.5100000000000002, + 2.71, + 2.93, + 3.23, + 3.5, + 3.66, + 3.66, + 3.5300000000000002, + 3.36, + 3.16, + 3.12, + 3.11, + 3.08, + 3.0700000000000003, + 3.0500000000000003, + 3.14, + 3.31, + 3.62, + 4.0200000000000005, + 4.58, + 5.07, + 5.2, + 5.15, + 4.84, + 4.55, + 4.42, + 4.41, + 4.57, + 4.57, + 4.14, + 3.5, + 2.7, + 2.15, + 1.85, + 1.68, + 1.56, + 1.5, + 1.59, + 1.9000000000000001, + 2.35, + 2.86, + 3.3200000000000003, + 3.5700000000000003, + 3.71, + 3.81, + 3.83, + 3.7, + 3.54, + 3.33, + 3.15, + 3.02, + 2.93, + 2.96, + 3.0, + 3.0100000000000002, + 3.02, + 3.0, + 2.96, + 2.93, + 2.86, + 2.75, + 2.49, + 2.19, + 1.8800000000000001, + 1.6300000000000001, + 1.54, + 1.77, + 2.66, + 3.47, + 4.04, + 4.21, + 3.72, + 3.1, + 2.4, + 2.0100000000000002, + 2.12, + 2.43, + 2.88, + 3.42, + 3.85, + 4.63, + 5.64, + 6.78, + 7.66, + 7.98, + 7.67, + 6.390000000000001, + 5.12, + 3.65, + 2.69, + 1.86, + 1.24, + 1.01, + 1.04, + 1.19, + 1.3800000000000001, + 1.41, + 1.53, + 1.45, + 1.45, + 1.3800000000000001, + 1.43, + 1.53, + 1.29, + 1.02, + 0.59, + 0.32, + 0.14, + 0.02, + -0.09, + -0.2, + -0.29, + -0.33, + -0.29, + -0.17, + -0.04, + 0.04, + 0.2, + 0.26, + 0.39, + 0.48, + 0.65, + 0.62, + 0.47000000000000003, + 0.25, + 0.13, + 0.28, + 0.45, + 0.73, + 0.8300000000000001, + 0.84, + 0.6900000000000001, + 0.47000000000000003, + 0.25, + 0.24, + 0.35000000000000003, + 0.5700000000000001, + 0.6900000000000001, + 0.63, + 0.51, + 0.39, + 0.43, + 0.52, + 0.66, + 0.8300000000000001, + 0.81, + 0.71, + 0.36, + -0.01, + -0.36, + -0.67, + -0.8200000000000001, + -0.9400000000000001, + -0.8200000000000001, + -0.6900000000000001, + -0.44, + -0.36, + -0.45, + -0.59, + -0.6900000000000001, + -0.72, + -0.63, + -0.56, + -0.37, + -0.27, + -0.2, + -0.12, + -0.07, + 0.08, + 0.1, + 0.09, + 0.21, + 0.32, + 0.47000000000000003, + 0.47000000000000003, + 0.37, + 0.25, + 0.11, + 0.06, + 0.01, + -0.07, + -0.08, + 0.09, + 0.36, + 0.68, + 0.97, + 0.92, + 0.71, + 0.43, + 0.19, + 0.14, + 0.3, + 0.38, + 0.42, + 0.24, + 0.06, + -0.12, + -0.24, + -0.26, + -0.4, + -0.4, + -0.44, + -0.45, + -0.45, + -0.53, + -0.53 + ], + [ + 3.27, + 3.23, + 3.0300000000000002, + 2.82, + 2.7600000000000002, + 2.75, + 2.73, + 2.69, + 2.66, + 2.61, + 2.57, + 2.5300000000000002, + 2.5100000000000002, + 2.49, + 2.5, + 2.48, + 2.45, + 2.39, + 2.3000000000000003, + 2.24, + 2.19, + 2.17, + 2.17, + 2.15, + 2.11, + 2.05, + 1.95, + 1.85, + 1.74, + 1.6500000000000001, + 1.58, + 1.56, + 1.57, + 1.61, + 1.67, + 1.73, + 1.81, + 1.8800000000000001, + 2.0, + 2.12, + 2.21, + 2.22, + 2.18, + 2.18, + 2.2600000000000002, + 2.34, + 2.42, + 2.49, + 2.57, + 2.65, + 2.67, + 2.65, + 2.67, + 2.73, + 2.84, + 2.96, + 3.13, + 3.24, + 3.33, + 3.42, + 3.5500000000000003, + 3.65, + 3.75, + 3.83, + 3.86, + 3.92, + 3.99, + 4.09, + 4.15, + 4.17, + 4.2, + 4.21, + 4.21, + 4.25, + 4.36, + 4.47, + 4.6000000000000005, + 4.7, + 4.8, + 4.93, + 4.94, + 4.93, + 4.92, + 4.92, + 5.01, + 5.13, + 5.21, + 5.18, + 5.14, + 5.11, + 5.16, + 5.28, + 5.38, + 5.43, + 5.46, + 5.43, + 5.36, + 5.34, + 5.48, + 5.79, + 6.05, + 6.2700000000000005, + 6.46, + 6.66, + 6.86, + 6.99, + 7.12, + 6.91, + 6.63, + 5.94, + 5.36, + 4.8, + 4.41, + 4.15, + 3.84, + 3.54, + 3.19, + 2.91, + 2.73, + 2.5500000000000003, + 2.45, + 2.33, + 2.27, + 2.23, + 2.11, + 2.0100000000000002, + 1.87, + 1.73, + 1.62, + 1.47, + 1.41, + 1.3900000000000001, + 1.44, + 1.49, + 1.54, + 1.6300000000000001, + 1.77, + 1.9100000000000001, + 2.02, + 2.14, + 2.31, + 2.5300000000000002, + 2.7600000000000002, + 3.04, + 3.31, + 3.5500000000000003, + 3.69, + 3.72, + 3.58, + 3.3200000000000003, + 3.11, + 2.97, + 2.94, + 2.99, + 2.98, + 2.99, + 3.0500000000000003, + 3.15, + 3.37, + 3.75, + 4.25, + 4.75, + 4.98, + 5.0, + 4.88, + 4.57, + 4.3, + 4.26, + 4.21, + 4.2, + 3.99, + 3.36, + 2.77, + 2.22, + 1.9100000000000001, + 1.71, + 1.56, + 1.48, + 1.61, + 1.9000000000000001, + 2.32, + 2.7800000000000002, + 3.15, + 3.36, + 3.48, + 3.56, + 3.64, + 3.62, + 3.48, + 3.33, + 3.14, + 2.98, + 2.9, + 2.89, + 2.93, + 2.96, + 2.97, + 2.93, + 2.9, + 2.89, + 2.86, + 2.79, + 2.58, + 2.3000000000000003, + 1.98, + 1.56, + 1.22, + 1.45, + 2.06, + 2.96, + 3.5500000000000003, + 3.69, + 3.4, + 2.81, + 2.31, + 1.98, + 1.95, + 2.2800000000000002, + 2.81, + 3.35, + 4.0200000000000005, + 4.8, + 5.7, + 6.8100000000000005, + 7.68, + 8.19, + 8.08, + 7.3, + 5.73, + 4.3, + 3.08, + 2.17, + 1.5, + 1.24, + 1.28, + 1.48, + 1.61, + 1.7, + 1.76, + 1.84, + 1.8, + 1.82, + 1.8900000000000001, + 1.93, + 1.78, + 1.4000000000000001, + 1.03, + 0.73, + 0.56, + 0.41000000000000003, + 0.31, + 0.16, + 0.06, + -0.02, + 0.05, + 0.14, + 0.27, + 0.33, + 0.4, + 0.45, + 0.45, + 0.52, + 0.5, + 0.47000000000000003, + 0.39, + 0.18, + 0.12, + 0.22, + 0.52, + 0.78, + 0.9, + 0.92, + 0.79, + 0.59, + 0.38, + 0.27, + 0.4, + 0.5700000000000001, + 0.7000000000000001, + 0.65, + 0.58, + 0.53, + 0.56, + 0.66, + 0.75, + 0.72, + 0.67, + 0.39, + 0.03, + -0.4, + -0.76, + -0.88, + -1.03, + -1.0, + -0.91, + -0.65, + -0.38, + -0.23, + -0.22, + -0.36, + -0.44, + -0.48, + -0.44, + -0.4, + -0.4, + -0.32, + -0.32, + -0.24, + -0.12, + 0.02, + 0.1, + 0.1, + 0.1, + 0.2, + 0.26, + 0.27, + 0.26, + 0.17, + 0.15, + 0.16, + 0.12, + 0.08, + 0.04, + 0.11, + 0.34, + 0.58, + 0.79, + 0.73, + 0.51, + 0.27, + 0.09, + 0.23, + 0.4, + 0.6, + 0.64, + 0.55, + 0.39, + 0.27, + 0.18, + -0.02, + -0.19, + -0.39, + -0.56, + -0.62, + -0.72, + -0.65, + -0.52 + ], + [ + 3.3000000000000003, + 3.24, + 3.0500000000000003, + 2.85, + 2.7800000000000002, + 2.77, + 2.74, + 2.7, + 2.66, + 2.61, + 2.5500000000000003, + 2.5, + 2.46, + 2.43, + 2.39, + 2.36, + 2.31, + 2.25, + 2.22, + 2.19, + 2.16, + 2.15, + 2.12, + 2.08, + 2.0300000000000002, + 1.94, + 1.85, + 1.76, + 1.6600000000000001, + 1.56, + 1.5, + 1.48, + 1.5, + 1.55, + 1.62, + 1.71, + 1.79, + 1.9100000000000001, + 2.0300000000000002, + 2.22, + 2.33, + 2.33, + 2.29, + 2.2800000000000002, + 2.33, + 2.42, + 2.5, + 2.59, + 2.68, + 2.77, + 2.81, + 2.82, + 2.87, + 2.92, + 2.94, + 3.0500000000000003, + 3.12, + 3.23, + 3.33, + 3.43, + 3.5300000000000002, + 3.63, + 3.7800000000000002, + 3.86, + 3.92, + 3.98, + 4.07, + 4.18, + 4.22, + 4.23, + 4.23, + 4.21, + 4.25, + 4.36, + 4.49, + 4.65, + 4.7700000000000005, + 4.83, + 4.91, + 4.93, + 4.93, + 4.94, + 4.94, + 4.99, + 5.08, + 5.22, + 5.3100000000000005, + 5.34, + 5.34, + 5.38, + 5.47, + 5.5, + 5.5, + 5.5, + 5.46, + 5.45, + 5.44, + 5.48, + 5.76, + 6.0600000000000005, + 6.28, + 6.48, + 6.57, + 6.75, + 6.86, + 7.0, + 6.83, + 6.63, + 6.01, + 5.3100000000000005, + 4.59, + 3.99, + 3.63, + 3.35, + 3.15, + 2.92, + 2.68, + 2.5300000000000002, + 2.4, + 2.35, + 2.2800000000000002, + 2.2600000000000002, + 2.19, + 2.09, + 1.97, + 1.78, + 1.6400000000000001, + 1.53, + 1.42, + 1.35, + 1.29, + 1.29, + 1.33, + 1.41, + 1.48, + 1.58, + 1.72, + 1.87, + 2.0, + 2.13, + 2.3000000000000003, + 2.5300000000000002, + 2.81, + 3.09, + 3.36, + 3.58, + 3.73, + 3.74, + 3.6, + 3.34, + 3.09, + 2.94, + 2.9, + 2.94, + 3.0100000000000002, + 3.04, + 3.0700000000000003, + 3.16, + 3.2600000000000002, + 3.54, + 3.96, + 4.37, + 4.71, + 4.86, + 4.8, + 4.6000000000000005, + 4.29, + 4.05, + 4.0, + 3.91, + 3.7, + 3.3200000000000003, + 2.72, + 2.32, + 2.0, + 1.75, + 1.57, + 1.48, + 1.59, + 1.92, + 2.32, + 2.7, + 2.99, + 3.17, + 3.2600000000000002, + 3.38, + 3.5, + 3.5100000000000002, + 3.44, + 3.27, + 3.0700000000000003, + 2.91, + 2.81, + 2.8000000000000003, + 2.85, + 2.88, + 2.81, + 2.77, + 2.68, + 2.67, + 2.7800000000000002, + 2.77, + 2.72, + 2.5100000000000002, + 2.17, + 1.71, + 1.32, + 1.4000000000000001, + 2.02, + 2.87, + 3.31, + 3.22, + 2.95, + 2.5, + 2.09, + 2.0100000000000002, + 2.0300000000000002, + 2.36, + 2.9, + 3.5100000000000002, + 4.18, + 4.82, + 5.7, + 6.41, + 7.19, + 7.67, + 7.63, + 6.92, + 5.5, + 3.99, + 2.71, + 1.86, + 1.34, + 1.16, + 1.35, + 1.51, + 1.56, + 1.61, + 1.57, + 1.6300000000000001, + 1.6400000000000001, + 1.6600000000000001, + 1.77, + 1.82, + 1.76, + 1.45, + 1.24, + 1.02, + 0.85, + 0.74, + 0.58, + 0.46, + 0.25, + 0.14, + 0.21, + 0.39, + 0.52, + 0.68, + 0.71, + 0.75, + 0.7000000000000001, + 0.6, + 0.56, + 0.53, + 0.45, + 0.44, + 0.39, + 0.48, + 0.77, + 0.97, + 1.1, + 1.07, + 0.97, + 0.87, + 0.72, + 0.59, + 0.61, + 0.75, + 0.8200000000000001, + 0.79, + 0.72, + 0.66, + 0.61, + 0.68, + 0.64, + 0.6, + 0.41000000000000003, + 0.13, + -0.27, + -0.7000000000000001, + -0.84, + -0.96, + -0.9, + -0.84, + -0.73, + -0.48, + -0.23, + -0.05, + -0.06, + -0.16, + -0.2, + -0.15, + -0.15, + -0.14, + -0.2, + -0.3, + -0.32, + -0.39, + -0.28, + -0.2, + -0.12, + -0.09, + -0.09, + -0.06, + 0.0, + 0.11, + 0.14, + 0.16, + 0.18, + 0.22, + 0.26, + 0.23, + 0.21, + 0.2, + 0.29, + 0.43, + 0.43, + 0.4, + 0.27, + 0.1, + 0.19, + 0.34, + 0.63, + 0.8200000000000001, + 0.78, + 0.6900000000000001, + 0.59, + 0.49, + 0.36, + 0.16, + -0.06, + -0.31, + -0.52, + -0.6900000000000001, + -0.75, + -0.7000000000000001, + -0.46 + ], + [ + 3.31, + 3.2600000000000002, + 3.06, + 2.86, + 2.8000000000000003, + 2.7800000000000002, + 2.75, + 2.71, + 2.66, + 2.61, + 2.5500000000000003, + 2.48, + 2.44, + 2.37, + 2.32, + 2.25, + 2.2, + 2.18, + 2.16, + 2.15, + 2.13, + 2.11, + 2.07, + 2.02, + 1.95, + 1.86, + 1.77, + 1.68, + 1.6, + 1.51, + 1.46, + 1.45, + 1.49, + 1.54, + 1.6300000000000001, + 1.72, + 1.8, + 1.9100000000000001, + 2.12, + 2.32, + 2.44, + 2.45, + 2.39, + 2.37, + 2.44, + 2.54, + 2.63, + 2.73, + 2.83, + 2.94, + 3.0, + 3.09, + 3.12, + 3.08, + 3.08, + 3.02, + 3.09, + 3.18, + 3.2800000000000002, + 3.38, + 3.49, + 3.66, + 3.8200000000000003, + 3.97, + 4.05, + 4.11, + 4.21, + 4.28, + 4.29, + 4.29, + 4.2700000000000005, + 4.26, + 4.33, + 4.46, + 4.64, + 4.79, + 4.8500000000000005, + 4.89, + 4.88, + 4.89, + 4.92, + 4.93, + 4.97, + 5.04, + 5.18, + 5.33, + 5.42, + 5.45, + 5.51, + 5.59, + 5.68, + 5.7, + 5.65, + 5.58, + 5.51, + 5.48, + 5.54, + 5.78, + 6.05, + 6.3, + 6.5, + 6.5, + 6.58, + 6.51, + 6.62, + 6.46, + 6.29, + 5.7700000000000005, + 5.09, + 4.41, + 3.69, + 3.2, + 2.86, + 2.7, + 2.58, + 2.45, + 2.35, + 2.23, + 2.15, + 2.15, + 2.2, + 2.18, + 2.14, + 2.0300000000000002, + 1.86, + 1.67, + 1.53, + 1.42, + 1.32, + 1.25, + 1.21, + 1.2, + 1.25, + 1.32, + 1.41, + 1.51, + 1.67, + 1.82, + 1.97, + 2.13, + 2.29, + 2.5100000000000002, + 2.79, + 3.08, + 3.36, + 3.58, + 3.73, + 3.7600000000000002, + 3.62, + 3.44, + 3.19, + 3.0100000000000002, + 2.97, + 2.97, + 3.04, + 3.09, + 3.14, + 3.21, + 3.3200000000000003, + 3.45, + 3.74, + 4.14, + 4.49, + 4.72, + 4.79, + 4.59, + 4.29, + 4.0200000000000005, + 3.85, + 3.75, + 3.5300000000000002, + 3.16, + 2.81, + 2.42, + 2.14, + 1.8800000000000001, + 1.59, + 1.48, + 1.6300000000000001, + 1.98, + 2.36, + 2.7, + 2.93, + 3.06, + 3.13, + 3.24, + 3.36, + 3.41, + 3.35, + 3.16, + 2.96, + 2.7800000000000002, + 2.68, + 2.67, + 2.72, + 2.77, + 2.71, + 2.5100000000000002, + 2.41, + 2.43, + 2.5500000000000003, + 2.8000000000000003, + 2.84, + 2.7600000000000002, + 2.49, + 2.04, + 1.68, + 1.68, + 2.31, + 2.95, + 3.17, + 3.0, + 2.58, + 2.23, + 2.12, + 2.06, + 2.2600000000000002, + 2.59, + 3.02, + 3.63, + 4.2, + 4.84, + 5.29, + 5.93, + 6.4, + 6.7700000000000005, + 6.69, + 5.88, + 4.5600000000000005, + 3.0100000000000002, + 1.86, + 1.04, + 0.76, + 0.86, + 1.12, + 1.35, + 1.3800000000000001, + 1.26, + 1.22, + 1.1500000000000001, + 1.16, + 1.21, + 1.32, + 1.3900000000000001, + 1.33, + 1.28, + 1.11, + 1.04, + 0.92, + 0.76, + 0.59, + 0.41000000000000003, + 0.16, + 0.06, + 0.12, + 0.37, + 0.61, + 0.79, + 0.9400000000000001, + 0.92, + 0.78, + 0.64, + 0.49, + 0.46, + 0.56, + 0.55, + 0.66, + 0.77, + 0.9500000000000001, + 1.1400000000000001, + 1.2, + 1.16, + 1.23, + 1.24, + 1.18, + 1.12, + 1.01, + 1.03, + 1.07, + 1.04, + 0.9500000000000001, + 0.8300000000000001, + 0.75, + 0.61, + 0.5700000000000001, + 0.44, + 0.25, + -0.02, + -0.43, + -0.63, + -0.77, + -0.7000000000000001, + -0.59, + -0.5700000000000001, + -0.46, + -0.36, + -0.16, + -0.02, + -0.04, + -0.08, + -0.07, + 0.0, + 0.06, + 0.04, + -0.05, + -0.19, + -0.35000000000000003, + -0.43, + -0.51, + -0.43, + -0.4, + -0.37, + -0.38, + -0.37, + -0.24, + -0.12, + 0.05, + 0.1, + 0.12, + 0.16, + 0.29, + 0.37, + 0.34, + 0.34, + 0.29, + 0.21, + 0.19, + 0.16, + 0.09, + 0.21, + 0.3, + 0.55, + 0.84, + 0.86, + 0.81, + 0.71, + 0.61, + 0.61, + 0.51, + 0.37, + 0.18, + -0.03, + -0.19, + -0.47000000000000003, + -0.58, + -0.58, + -0.33 + ], + [ + 3.3200000000000003, + 3.2800000000000002, + 3.08, + 2.88, + 2.81, + 2.8000000000000003, + 2.7600000000000002, + 2.72, + 2.67, + 2.61, + 2.56, + 2.49, + 2.43, + 2.36, + 2.2800000000000002, + 2.21, + 2.15, + 2.12, + 2.11, + 2.11, + 2.1, + 2.07, + 2.0300000000000002, + 1.98, + 1.9000000000000001, + 1.81, + 1.73, + 1.6500000000000001, + 1.57, + 1.51, + 1.47, + 1.47, + 1.5, + 1.57, + 1.6600000000000001, + 1.74, + 1.83, + 1.97, + 2.18, + 2.41, + 2.54, + 2.54, + 2.47, + 2.47, + 2.5500000000000003, + 2.67, + 2.79, + 2.89, + 3.0100000000000002, + 3.13, + 3.25, + 3.34, + 3.39, + 3.3200000000000003, + 3.13, + 3.06, + 3.0700000000000003, + 3.16, + 3.22, + 3.3200000000000003, + 3.46, + 3.64, + 3.84, + 4.01, + 4.14, + 4.22, + 4.29, + 4.33, + 4.37, + 4.37, + 4.33, + 4.32, + 4.4, + 4.58, + 4.75, + 4.83, + 4.87, + 4.74, + 4.73, + 4.8, + 4.83, + 4.8, + 4.84, + 5.08, + 5.25, + 5.41, + 5.5, + 5.5600000000000005, + 5.62, + 5.76, + 5.87, + 5.91, + 5.86, + 5.71, + 5.57, + 5.5600000000000005, + 5.73, + 5.99, + 6.3, + 6.53, + 6.53, + 6.53, + 6.32, + 6.25, + 5.95, + 5.7700000000000005, + 5.3, + 4.72, + 4.0600000000000005, + 3.36, + 2.87, + 2.45, + 2.23, + 2.14, + 2.13, + 2.12, + 2.07, + 2.0, + 1.96, + 2.02, + 2.1, + 2.13, + 2.09, + 1.98, + 1.81, + 1.6500000000000001, + 1.51, + 1.3900000000000001, + 1.3, + 1.22, + 1.18, + 1.16, + 1.2, + 1.27, + 1.35, + 1.45, + 1.6, + 1.78, + 1.96, + 2.12, + 2.29, + 2.48, + 2.73, + 3.0300000000000002, + 3.3000000000000003, + 3.54, + 3.68, + 3.73, + 3.71, + 3.52, + 3.35, + 3.18, + 3.02, + 3.0100000000000002, + 3.04, + 3.08, + 3.13, + 3.21, + 3.33, + 3.45, + 3.65, + 3.98, + 4.34, + 4.59, + 4.7, + 4.53, + 4.23, + 3.97, + 3.7800000000000002, + 3.5700000000000003, + 3.36, + 3.15, + 2.81, + 2.57, + 2.3000000000000003, + 1.95, + 1.6600000000000001, + 1.48, + 1.6300000000000001, + 2.1, + 2.5300000000000002, + 2.7600000000000002, + 2.91, + 2.99, + 3.02, + 3.09, + 3.17, + 3.2600000000000002, + 3.23, + 3.0500000000000003, + 2.83, + 2.64, + 2.48, + 2.48, + 2.6, + 2.66, + 2.59, + 2.39, + 2.16, + 2.17, + 2.4, + 2.69, + 2.98, + 3.0100000000000002, + 2.79, + 2.37, + 1.94, + 1.93, + 2.35, + 2.7600000000000002, + 2.99, + 2.83, + 2.46, + 2.36, + 2.2600000000000002, + 2.32, + 2.5, + 2.75, + 3.18, + 3.47, + 4.0200000000000005, + 4.38, + 4.79, + 5.21, + 5.62, + 5.93, + 5.78, + 4.92, + 3.49, + 2.0100000000000002, + 0.86, + 0.22, + 0.13, + 0.38, + 0.86, + 1.12, + 1.1400000000000001, + 1.0, + 0.87, + 0.79, + 0.81, + 0.86, + 0.89, + 0.96, + 0.93, + 0.88, + 0.9, + 0.86, + 0.72, + 0.5, + 0.32, + 0.06, + -0.1, + -0.2, + -0.1, + 0.15, + 0.42, + 0.5700000000000001, + 0.73, + 0.62, + 0.49, + 0.28, + 0.13, + 0.18, + 0.28, + 0.56, + 0.66, + 0.96, + 1.1500000000000001, + 1.27, + 1.3, + 1.33, + 1.44, + 1.6, + 1.6600000000000001, + 1.56, + 1.44, + 1.36, + 1.34, + 1.29, + 1.19, + 1.06, + 0.93, + 0.77, + 0.64, + 0.5, + 0.35000000000000003, + 0.07, + -0.18, + -0.37, + -0.36, + -0.24, + -0.28, + -0.29, + -0.38, + -0.37, + -0.27, + -0.21, + -0.14, + -0.12, + -0.09, + -0.02, + 0.07, + 0.07, + -0.01, + -0.15, + -0.33, + -0.5, + -0.59, + -0.54, + -0.51, + -0.55, + -0.56, + -0.53, + -0.39, + -0.19, + 0.0, + 0.03, + 0.01, + 0.06, + 0.19, + 0.36, + 0.42, + 0.35000000000000003, + 0.19, + 0.06, + -0.03, + -0.03, + 0.13, + 0.26, + 0.5, + 0.75, + 0.8200000000000001, + 0.8300000000000001, + 0.66, + 0.55, + 0.59, + 0.61, + 0.68, + 0.59, + 0.47000000000000003, + 0.34, + 0.1, + -0.17, + -0.42, + -0.46, + -0.32 + ], + [ + 3.33, + 3.2800000000000002, + 3.1, + 2.9, + 2.83, + 2.81, + 2.77, + 2.73, + 2.68, + 2.63, + 2.57, + 2.5100000000000002, + 2.44, + 2.37, + 2.29, + 2.22, + 2.17, + 2.12, + 2.11, + 2.09, + 2.08, + 2.05, + 2.0100000000000002, + 1.96, + 1.8800000000000001, + 1.8, + 1.72, + 1.6500000000000001, + 1.6, + 1.54, + 1.52, + 1.52, + 1.54, + 1.61, + 1.7, + 1.78, + 1.8900000000000001, + 2.05, + 2.29, + 2.52, + 2.62, + 2.59, + 2.5300000000000002, + 2.52, + 2.63, + 2.79, + 2.94, + 3.06, + 3.18, + 3.2800000000000002, + 3.42, + 3.5300000000000002, + 3.61, + 3.5300000000000002, + 3.31, + 3.17, + 3.16, + 3.1, + 3.16, + 3.23, + 3.38, + 3.5700000000000003, + 3.7600000000000002, + 3.97, + 4.11, + 4.24, + 4.3100000000000005, + 4.39, + 4.46, + 4.42, + 4.3, + 4.33, + 4.48, + 4.64, + 4.76, + 4.82, + 4.64, + 4.5200000000000005, + 4.5200000000000005, + 4.59, + 4.6000000000000005, + 4.5600000000000005, + 4.69, + 4.95, + 5.28, + 5.45, + 5.59, + 5.65, + 5.79, + 5.98, + 6.13, + 6.18, + 6.07, + 5.84, + 5.66, + 5.65, + 5.84, + 6.19, + 6.5, + 6.59, + 6.59, + 6.34, + 6.12, + 5.73, + 5.4, + 4.86, + 4.3500000000000005, + 3.73, + 3.0700000000000003, + 2.5100000000000002, + 2.1, + 1.84, + 1.71, + 1.72, + 1.81, + 1.87, + 1.8900000000000001, + 1.85, + 1.8900000000000001, + 1.96, + 2.08, + 2.12, + 2.07, + 1.96, + 1.8, + 1.6400000000000001, + 1.52, + 1.41, + 1.31, + 1.23, + 1.18, + 1.17, + 1.19, + 1.26, + 1.31, + 1.41, + 1.55, + 1.73, + 1.92, + 2.09, + 2.2600000000000002, + 2.44, + 2.66, + 2.93, + 3.22, + 3.44, + 3.61, + 3.71, + 3.7, + 3.61, + 3.44, + 3.2800000000000002, + 3.11, + 2.96, + 2.97, + 2.99, + 3.0300000000000002, + 3.14, + 3.27, + 3.42, + 3.62, + 3.88, + 4.17, + 4.43, + 4.47, + 4.3500000000000005, + 4.08, + 3.8200000000000003, + 3.58, + 3.37, + 3.2, + 3.0, + 2.88, + 2.65, + 2.34, + 1.99, + 1.67, + 1.49, + 1.68, + 2.2, + 2.68, + 2.89, + 2.92, + 2.91, + 2.88, + 2.89, + 2.97, + 3.08, + 3.1, + 2.96, + 2.73, + 2.5300000000000002, + 2.35, + 2.31, + 2.45, + 2.59, + 2.52, + 2.31, + 2.07, + 1.8900000000000001, + 2.13, + 2.62, + 2.97, + 3.14, + 2.92, + 2.46, + 1.95, + 1.72, + 1.86, + 2.35, + 2.63, + 2.64, + 2.72, + 2.62, + 2.67, + 2.7, + 2.88, + 3.1, + 3.14, + 3.41, + 3.4, + 3.69, + 3.93, + 4.3, + 4.89, + 5.22, + 5.12, + 4.2, + 2.74, + 1.3, + 0.18, + -0.22, + -0.29, + 0.18, + 0.68, + 1.0, + 1.01, + 0.86, + 0.7000000000000001, + 0.68, + 0.68, + 0.73, + 0.76, + 0.66, + 0.62, + 0.64, + 0.7000000000000001, + 0.65, + 0.48, + 0.23, + 0.0, + -0.18, + -0.29, + -0.38, + -0.24, + -0.07, + 0.0, + 0.15, + 0.1, + 0.04, + -0.18, + -0.37, + -0.29, + -0.24, + 0.1, + 0.39, + 0.76, + 1.09, + 1.4000000000000001, + 1.53, + 1.53, + 1.58, + 1.6300000000000001, + 1.79, + 1.86, + 1.71, + 1.6, + 1.51, + 1.48, + 1.4000000000000001, + 1.34, + 1.31, + 1.18, + 1.08, + 0.92, + 0.86, + 0.7000000000000001, + 0.5, + 0.26, + 0.18, + 0.24, + 0.2, + 0.13, + -0.15, + -0.37, + -0.49, + -0.47000000000000003, + -0.4, + -0.34, + -0.26, + -0.21, + -0.13, + -0.04, + 0.03, + 0.05, + -0.1, + -0.29, + -0.48, + -0.49, + -0.46, + -0.4, + -0.44, + -0.44, + -0.37, + -0.25, + 0.0, + 0.09, + 0.09, + -0.02, + 0.0, + 0.08, + 0.22, + 0.32, + 0.21, + 0.06, + -0.09, + -0.19, + -0.13, + 0.05, + 0.28, + 0.54, + 0.6900000000000001, + 0.76, + 0.61, + 0.42, + 0.34, + 0.39, + 0.58, + 0.67, + 0.68, + 0.5700000000000001, + 0.39, + 0.06, + -0.26, + -0.63, + -0.66, + -0.54 + ], + [ + 3.35, + 3.31, + 3.11, + 2.9, + 2.84, + 2.82, + 2.79, + 2.74, + 2.7, + 2.65, + 2.6, + 2.54, + 2.47, + 2.4, + 2.34, + 2.2800000000000002, + 2.23, + 2.2, + 2.16, + 2.14, + 2.1, + 2.06, + 2.02, + 1.95, + 1.8800000000000001, + 1.81, + 1.74, + 1.69, + 1.6400000000000001, + 1.61, + 1.58, + 1.57, + 1.59, + 1.6300000000000001, + 1.72, + 1.83, + 1.94, + 2.17, + 2.43, + 2.64, + 2.71, + 2.65, + 2.57, + 2.5500000000000003, + 2.66, + 2.86, + 3.02, + 3.18, + 3.3000000000000003, + 3.4, + 3.52, + 3.67, + 3.7600000000000002, + 3.72, + 3.6, + 3.43, + 3.24, + 3.16, + 3.04, + 3.11, + 3.21, + 3.39, + 3.63, + 3.83, + 4.05, + 4.19, + 4.34, + 4.46, + 4.5, + 4.36, + 4.23, + 4.25, + 4.44, + 4.59, + 4.7, + 4.58, + 4.39, + 4.24, + 4.23, + 4.37, + 4.38, + 4.4, + 4.5600000000000005, + 4.89, + 5.25, + 5.49, + 5.63, + 5.84, + 6.08, + 6.3, + 6.47, + 6.45, + 6.23, + 5.96, + 5.74, + 5.71, + 5.96, + 6.3100000000000005, + 6.5200000000000005, + 6.63, + 6.390000000000001, + 6.140000000000001, + 5.73, + 5.3100000000000005, + 4.74, + 4.16, + 3.56, + 2.96, + 2.36, + 1.8900000000000001, + 1.56, + 1.43, + 1.3900000000000001, + 1.54, + 1.6500000000000001, + 1.78, + 1.83, + 1.87, + 1.8900000000000001, + 2.0100000000000002, + 2.12, + 2.14, + 2.1, + 1.96, + 1.8, + 1.6500000000000001, + 1.53, + 1.41, + 1.31, + 1.24, + 1.18, + 1.17, + 1.2, + 1.25, + 1.31, + 1.37, + 1.49, + 1.6600000000000001, + 1.84, + 2.02, + 2.18, + 2.36, + 2.59, + 2.85, + 3.12, + 3.36, + 3.5300000000000002, + 3.65, + 3.67, + 3.59, + 3.5, + 3.33, + 3.14, + 2.99, + 2.83, + 2.83, + 2.9, + 3.04, + 3.25, + 3.44, + 3.6, + 3.83, + 4.0600000000000005, + 4.21, + 4.26, + 4.07, + 3.8200000000000003, + 3.5500000000000003, + 3.31, + 3.11, + 2.95, + 2.87, + 2.77, + 2.57, + 2.25, + 1.97, + 1.6500000000000001, + 1.52, + 1.79, + 2.3000000000000003, + 2.77, + 2.97, + 2.94, + 2.83, + 2.72, + 2.7, + 2.8000000000000003, + 2.92, + 2.92, + 2.82, + 2.66, + 2.46, + 2.29, + 2.22, + 2.3000000000000003, + 2.45, + 2.49, + 2.2600000000000002, + 1.87, + 1.69, + 1.79, + 2.3000000000000003, + 2.85, + 2.99, + 2.82, + 2.22, + 1.57, + 1.12, + 1.16, + 1.58, + 2.15, + 2.69, + 2.87, + 2.96, + 3.02, + 3.19, + 3.35, + 3.47, + 3.45, + 3.18, + 3.11, + 2.8000000000000003, + 3.0, + 3.41, + 4.05, + 4.6000000000000005, + 4.47, + 3.69, + 2.23, + 0.85, + 0.06, + -0.4, + -0.23, + 0.13, + 0.52, + 0.9, + 0.93, + 0.77, + 0.6900000000000001, + 0.65, + 0.74, + 0.78, + 0.66, + 0.55, + 0.45, + 0.5, + 0.59, + 0.54, + 0.39, + 0.17, + -0.05, + -0.12, + -0.26, + -0.26, + -0.27, + -0.28, + -0.32, + -0.38, + -0.44, + -0.53, + -0.77, + -0.6900000000000001, + -0.61, + -0.24, + 0.13, + 0.5, + 0.9, + 1.26, + 1.57, + 1.8, + 1.79, + 1.7, + 1.69, + 1.7, + 1.57, + 1.5, + 1.32, + 1.32, + 1.26, + 1.28, + 1.29, + 1.35, + 1.33, + 1.27, + 1.2, + 1.1500000000000001, + 1.12, + 0.93, + 0.87, + 0.8300000000000001, + 0.8300000000000001, + 0.77, + 0.49, + 0.12, + -0.27, + -0.4, + -0.53, + -0.47000000000000003, + -0.45, + -0.39, + -0.34, + -0.28, + -0.14, + 0.08, + 0.15, + 0.09, + -0.13, + -0.29, + -0.32, + -0.3, + -0.24, + -0.16, + -0.15, + 0.0, + 0.16, + 0.28, + 0.34, + 0.26, + 0.14, + 0.02, + 0.08, + 0.1, + 0.07, + 0.03, + -0.06, + -0.19, + -0.18, + -0.17, + -0.03, + 0.21, + 0.37, + 0.53, + 0.48, + 0.31, + 0.2, + 0.13, + 0.23, + 0.44, + 0.56, + 0.53, + 0.31, + -0.02, + -0.38, + -0.91, + -1.19, + -1.23, + -0.99 + ], + [ + 3.36, + 3.3000000000000003, + 3.12, + 2.93, + 2.85, + 2.83, + 2.8000000000000003, + 2.7600000000000002, + 2.72, + 2.67, + 2.62, + 2.56, + 2.49, + 2.44, + 2.39, + 2.36, + 2.33, + 2.3000000000000003, + 2.2600000000000002, + 2.21, + 2.15, + 2.09, + 2.0300000000000002, + 1.96, + 1.9000000000000001, + 1.83, + 1.78, + 1.73, + 1.7, + 1.67, + 1.6300000000000001, + 1.61, + 1.62, + 1.6600000000000001, + 1.74, + 1.85, + 2.04, + 2.29, + 2.58, + 2.7800000000000002, + 2.81, + 2.71, + 2.58, + 2.56, + 2.66, + 2.86, + 3.09, + 3.2800000000000002, + 3.43, + 3.59, + 3.68, + 3.83, + 3.95, + 3.95, + 3.86, + 3.66, + 3.43, + 3.15, + 3.0, + 2.89, + 2.98, + 3.16, + 3.4, + 3.7, + 3.95, + 4.18, + 4.37, + 4.47, + 4.41, + 4.3, + 4.17, + 4.12, + 4.29, + 4.46, + 4.39, + 4.3, + 4.1, + 3.91, + 4.08, + 4.24, + 4.36, + 4.39, + 4.58, + 4.98, + 5.28, + 5.5200000000000005, + 5.8, + 6.1000000000000005, + 6.45, + 6.75, + 6.82, + 6.66, + 6.38, + 6.0200000000000005, + 5.79, + 5.86, + 6.05, + 6.29, + 6.53, + 6.37, + 6.15, + 5.69, + 5.2700000000000005, + 4.8, + 4.19, + 3.5700000000000003, + 2.99, + 2.47, + 1.96, + 1.54, + 1.3800000000000001, + 1.28, + 1.42, + 1.54, + 1.72, + 1.83, + 1.9000000000000001, + 1.94, + 2.0, + 2.09, + 2.15, + 2.19, + 2.1, + 1.96, + 1.79, + 1.6400000000000001, + 1.5, + 1.3800000000000001, + 1.29, + 1.22, + 1.16, + 1.1400000000000001, + 1.17, + 1.21, + 1.28, + 1.34, + 1.42, + 1.58, + 1.74, + 1.9000000000000001, + 2.07, + 2.2600000000000002, + 2.49, + 2.79, + 3.06, + 3.2800000000000002, + 3.45, + 3.54, + 3.5700000000000003, + 3.5700000000000003, + 3.5, + 3.41, + 3.22, + 2.96, + 2.7800000000000002, + 2.67, + 2.7600000000000002, + 2.98, + 3.25, + 3.5100000000000002, + 3.69, + 3.83, + 3.97, + 4.08, + 4.0200000000000005, + 3.83, + 3.56, + 3.2800000000000002, + 3.02, + 2.82, + 2.69, + 2.64, + 2.49, + 2.2800000000000002, + 2.08, + 1.81, + 1.69, + 1.6300000000000001, + 1.76, + 2.31, + 2.84, + 2.96, + 2.89, + 2.65, + 2.48, + 2.42, + 2.5500000000000003, + 2.7, + 2.74, + 2.62, + 2.5, + 2.38, + 2.2, + 2.06, + 2.13, + 2.23, + 2.2800000000000002, + 2.11, + 1.6500000000000001, + 1.29, + 1.42, + 1.9000000000000001, + 2.42, + 2.74, + 2.42, + 1.78, + 0.9500000000000001, + 0.33, + 0.33, + 0.8200000000000001, + 1.78, + 2.56, + 2.95, + 3.11, + 3.23, + 3.45, + 3.7600000000000002, + 3.88, + 3.85, + 3.49, + 2.9, + 2.5500000000000003, + 2.2600000000000002, + 2.79, + 3.36, + 3.93, + 3.95, + 2.99, + 1.8, + 0.72, + -0.03, + -0.18, + -0.18, + -0.07, + 0.33, + 0.59, + 0.72, + 0.6900000000000001, + 0.61, + 0.7000000000000001, + 0.8, + 0.81, + 0.66, + 0.45, + 0.36, + 0.39, + 0.5, + 0.55, + 0.42, + 0.29, + 0.18, + 0.08, + -0.02, + -0.1, + -0.2, + -0.32, + -0.46, + -0.62, + -0.5700000000000001, + -0.73, + -0.67, + -0.66, + -0.37, + 0.03, + 0.38, + 0.75, + 0.97, + 1.31, + 1.6, + 1.74, + 1.8, + 1.6, + 1.42, + 1.22, + 1.09, + 0.92, + 0.8300000000000001, + 0.85, + 0.89, + 0.98, + 1.06, + 1.1500000000000001, + 1.22, + 1.12, + 1.1300000000000001, + 1.18, + 1.2, + 1.28, + 1.25, + 1.33, + 1.31, + 1.26, + 0.89, + 0.48, + 0.11, + -0.17, + -0.26, + -0.37, + -0.34, + -0.39, + -0.4, + -0.38, + -0.18, + 0.12, + 0.28, + 0.27, + 0.12, + -0.07, + -0.27, + -0.25, + -0.24, + -0.15, + 0.07, + 0.23, + 0.45, + 0.51, + 0.55, + 0.41000000000000003, + 0.31, + 0.21, + 0.11, + 0.02, + -0.07, + -0.1, + -0.12, + -0.07, + -0.08, + 0.02, + 0.07, + 0.13, + 0.27, + 0.24, + 0.18, + 0.09, + -0.01, + 0.06, + 0.22, + 0.35000000000000003, + 0.44, + 0.26, + -0.09, + -0.56, + -1.06, + -1.57, + -1.78, + -1.82, + -1.46 + ], + [ + 3.38, + 3.35, + 3.14, + 2.92, + 2.87, + 2.86, + 2.83, + 2.79, + 2.74, + 2.69, + 2.63, + 2.57, + 2.5100000000000002, + 2.46, + 2.43, + 2.42, + 2.41, + 2.38, + 2.35, + 2.2800000000000002, + 2.21, + 2.13, + 2.05, + 1.98, + 1.92, + 1.86, + 1.81, + 1.78, + 1.75, + 1.71, + 1.68, + 1.67, + 1.67, + 1.71, + 1.78, + 1.9000000000000001, + 2.1, + 2.4, + 2.71, + 2.92, + 2.89, + 2.77, + 2.62, + 2.5300000000000002, + 2.65, + 2.87, + 3.16, + 3.41, + 3.63, + 3.8200000000000003, + 3.94, + 4.05, + 4.09, + 4.15, + 4.05, + 3.86, + 3.52, + 3.19, + 2.92, + 2.7600000000000002, + 2.72, + 2.91, + 3.22, + 3.56, + 3.9, + 4.17, + 4.33, + 4.32, + 4.3100000000000005, + 4.17, + 4.08, + 4.14, + 4.21, + 4.18, + 4.11, + 3.97, + 3.77, + 3.92, + 4.09, + 4.34, + 4.49, + 4.61, + 4.84, + 5.09, + 5.39, + 5.67, + 6.0200000000000005, + 6.45, + 6.9, + 7.18, + 7.09, + 6.84, + 6.41, + 6.0600000000000005, + 5.95, + 5.96, + 6.13, + 6.32, + 6.21, + 6.08, + 5.63, + 5.16, + 4.73, + 4.26, + 3.74, + 3.12, + 2.66, + 2.22, + 1.84, + 1.58, + 1.41, + 1.47, + 1.55, + 1.72, + 1.86, + 1.94, + 2.0100000000000002, + 2.0300000000000002, + 2.08, + 2.12, + 2.18, + 2.15, + 2.08, + 1.92, + 1.76, + 1.61, + 1.45, + 1.34, + 1.27, + 1.2, + 1.1400000000000001, + 1.07, + 1.09, + 1.1400000000000001, + 1.2, + 1.27, + 1.36, + 1.49, + 1.6400000000000001, + 1.79, + 1.95, + 2.14, + 2.44, + 2.75, + 3.0300000000000002, + 3.23, + 3.36, + 3.44, + 3.49, + 3.5100000000000002, + 3.49, + 3.42, + 3.27, + 2.97, + 2.7, + 2.61, + 2.66, + 2.96, + 3.29, + 3.56, + 3.77, + 3.86, + 3.94, + 3.98, + 3.91, + 3.67, + 3.37, + 3.0700000000000003, + 2.7800000000000002, + 2.58, + 2.45, + 2.27, + 2.12, + 1.92, + 1.74, + 1.77, + 1.73, + 1.68, + 1.87, + 2.2, + 2.65, + 2.86, + 2.61, + 2.32, + 2.0300000000000002, + 2.0, + 2.22, + 2.45, + 2.45, + 2.36, + 2.32, + 2.25, + 2.0300000000000002, + 1.84, + 1.72, + 1.83, + 1.8900000000000001, + 1.68, + 1.32, + 0.93, + 0.92, + 1.47, + 2.0300000000000002, + 2.24, + 2.05, + 1.27, + 0.31, + -0.28, + -0.51, + 0.28, + 1.3900000000000001, + 2.29, + 2.86, + 3.0, + 3.17, + 3.54, + 3.95, + 4.2700000000000005, + 4.25, + 3.89, + 3.2, + 2.5300000000000002, + 2.29, + 2.36, + 3.04, + 3.5100000000000002, + 3.34, + 2.57, + 1.47, + 0.51, + 0.14, + -0.08, + -0.25, + -0.31, + -0.04, + 0.28, + 0.5, + 0.51, + 0.51, + 0.63, + 0.76, + 0.77, + 0.67, + 0.43, + 0.3, + 0.37, + 0.44, + 0.48, + 0.48, + 0.39, + 0.32, + 0.18, + 0.12, + -0.04, + -0.12, + -0.26, + -0.46, + -0.43, + -0.42, + -0.38, + -0.37, + -0.26, + 0.02, + 0.25, + 0.58, + 0.78, + 0.92, + 1.08, + 1.28, + 1.44, + 1.35, + 1.22, + 0.89, + 0.68, + 0.55, + 0.41000000000000003, + 0.51, + 0.5, + 0.72, + 0.77, + 0.93, + 1.01, + 0.9, + 0.81, + 0.73, + 0.84, + 0.97, + 1.11, + 1.31, + 1.4000000000000001, + 1.47, + 1.31, + 1.17, + 0.68, + 0.36, + 0.08, + -0.03, + -0.15, + -0.16, + -0.22, + -0.34, + -0.32, + -0.22, + 0.01, + 0.3, + 0.34, + 0.24, + 0.0, + -0.27, + -0.46, + -0.46, + -0.31, + -0.05, + 0.21, + 0.39, + 0.53, + 0.46, + 0.46, + 0.34, + 0.29, + 0.12, + -0.02, + -0.1, + -0.16, + -0.1, + 0.02, + 0.18, + 0.28, + 0.3, + 0.26, + 0.16, + 0.08, + -0.03, + -0.1, + -0.06, + 0.07, + 0.22, + 0.35000000000000003, + 0.34, + 0.04, + -0.4, + -0.88, + -1.41, + -1.67, + -2.08, + -1.84, + -1.6400000000000001 + ], + [ + 3.4, + 3.34, + 3.16, + 2.98, + 2.9, + 2.88, + 2.86, + 2.82, + 2.77, + 2.72, + 2.65, + 2.58, + 2.52, + 2.47, + 2.45, + 2.44, + 2.44, + 2.42, + 2.38, + 2.34, + 2.25, + 2.17, + 2.08, + 2.0100000000000002, + 1.93, + 1.87, + 1.84, + 1.81, + 1.78, + 1.75, + 1.73, + 1.72, + 1.74, + 1.78, + 1.84, + 1.95, + 2.16, + 2.48, + 2.79, + 2.95, + 2.98, + 2.81, + 2.63, + 2.56, + 2.63, + 2.94, + 3.2600000000000002, + 3.56, + 3.83, + 3.97, + 4.13, + 4.09, + 4.16, + 4.12, + 4.09, + 3.85, + 3.48, + 3.13, + 2.82, + 2.66, + 2.61, + 2.74, + 3.13, + 3.5, + 3.89, + 4.13, + 4.16, + 4.15, + 4.1, + 4.04, + 4.1, + 4.14, + 4.13, + 4.03, + 3.95, + 3.77, + 3.87, + 4.03, + 4.3500000000000005, + 4.63, + 4.8, + 4.93, + 5.1000000000000005, + 5.33, + 5.59, + 5.91, + 6.34, + 6.890000000000001, + 7.33, + 7.43, + 7.3100000000000005, + 6.84, + 6.41, + 6.16, + 6.0200000000000005, + 6.08, + 6.21, + 6.08, + 5.94, + 5.5200000000000005, + 5.0600000000000005, + 4.59, + 4.17, + 3.79, + 3.3000000000000003, + 2.89, + 2.52, + 2.2, + 1.92, + 1.71, + 1.67, + 1.68, + 1.8, + 1.93, + 2.02, + 2.08, + 2.11, + 2.12, + 2.12, + 2.14, + 2.14, + 2.11, + 2.0, + 1.86, + 1.73, + 1.58, + 1.45, + 1.35, + 1.27, + 1.21, + 1.11, + 1.03, + 0.97, + 1.02, + 1.09, + 1.16, + 1.25, + 1.37, + 1.52, + 1.6600000000000001, + 1.83, + 2.08, + 2.38, + 2.74, + 3.04, + 3.21, + 3.3200000000000003, + 3.37, + 3.42, + 3.45, + 3.45, + 3.37, + 3.19, + 2.95, + 2.66, + 2.5500000000000003, + 2.71, + 2.94, + 3.29, + 3.59, + 3.74, + 3.86, + 3.93, + 3.98, + 3.83, + 3.59, + 3.25, + 2.92, + 2.64, + 2.41, + 2.18, + 1.96, + 1.68, + 1.48, + 1.5, + 1.6500000000000001, + 1.85, + 1.82, + 1.8, + 2.1, + 2.41, + 2.37, + 2.21, + 1.78, + 1.44, + 1.54, + 1.82, + 2.06, + 2.15, + 2.12, + 2.11, + 1.93, + 1.71, + 1.42, + 1.23, + 1.24, + 1.32, + 1.32, + 0.9400000000000001, + 0.65, + 0.81, + 1.1, + 1.69, + 1.94, + 1.57, + 0.89, + -0.03, + -0.88, + -0.8, + -0.28, + 0.87, + 2.0100000000000002, + 2.41, + 2.64, + 2.94, + 3.39, + 3.95, + 4.4, + 4.38, + 3.99, + 3.42, + 2.66, + 2.3000000000000003, + 2.46, + 2.86, + 3.3000000000000003, + 3.29, + 2.5100000000000002, + 1.34, + 0.75, + 0.25, + -0.02, + -0.3, + -0.32, + -0.24, + 0.16, + 0.41000000000000003, + 0.38, + 0.35000000000000003, + 0.34, + 0.51, + 0.61, + 0.52, + 0.44, + 0.33, + 0.33, + 0.39, + 0.46, + 0.46, + 0.41000000000000003, + 0.3, + 0.16, + 0.04, + -0.06, + -0.13, + -0.19, + -0.18, + -0.17, + -0.17, + -0.09, + -0.13, + -0.01, + 0.09, + 0.27, + 0.44, + 0.56, + 0.67, + 0.76, + 0.8, + 0.86, + 0.8200000000000001, + 0.61, + 0.39, + 0.31, + 0.21, + 0.37, + 0.42, + 0.67, + 0.81, + 0.9500000000000001, + 1.02, + 0.93, + 0.72, + 0.48, + 0.32, + 0.3, + 0.46, + 0.67, + 0.93, + 1.09, + 1.1, + 1.06, + 0.8, + 0.6, + 0.2, + 0.04, + -0.15, + -0.11, + -0.14, + -0.07, + -0.13, + -0.24, + -0.15, + -0.02, + 0.12, + 0.27, + 0.23, + -0.01, + -0.3, + -0.58, + -0.6, + -0.41000000000000003, + -0.22, + 0.05, + 0.18, + 0.25, + 0.29, + 0.26, + 0.25, + 0.17, + 0.09, + -0.01, + -0.12, + -0.11, + -0.09, + 0.12, + 0.37, + 0.49, + 0.53, + 0.37, + 0.18, + -0.01, + -0.16, + -0.19, + -0.08, + 0.02, + 0.15, + 0.24, + 0.13, + -0.04, + -0.47000000000000003, + -0.87, + -1.08, + -1.3800000000000001, + -1.43, + -1.57, + -1.35 + ], + [ + 3.41, + 3.4, + 3.19, + 2.96, + 2.92, + 2.91, + 2.87, + 2.84, + 2.79, + 2.74, + 2.68, + 2.61, + 2.54, + 2.5, + 2.46, + 2.45, + 2.43, + 2.4, + 2.38, + 2.32, + 2.27, + 2.18, + 2.1, + 2.02, + 1.94, + 1.8900000000000001, + 1.85, + 1.83, + 1.81, + 1.79, + 1.78, + 1.79, + 1.82, + 1.86, + 1.9100000000000001, + 2.02, + 2.23, + 2.5100000000000002, + 2.8000000000000003, + 2.99, + 2.98, + 2.86, + 2.67, + 2.54, + 2.72, + 3.0100000000000002, + 3.35, + 3.68, + 3.81, + 4.04, + 3.98, + 3.96, + 3.88, + 3.9, + 3.8000000000000003, + 3.61, + 3.31, + 2.96, + 2.8000000000000003, + 2.66, + 2.64, + 2.86, + 3.16, + 3.59, + 3.91, + 4.05, + 4.07, + 4.08, + 4.0, + 4.14, + 4.17, + 4.22, + 4.16, + 4.1, + 3.96, + 4.0, + 4.09, + 4.34, + 4.7, + 4.9, + 5.0600000000000005, + 5.2, + 5.34, + 5.57, + 5.84, + 6.22, + 6.76, + 7.28, + 7.6000000000000005, + 7.7, + 7.28, + 6.83, + 6.46, + 6.18, + 6.12, + 6.16, + 5.99, + 5.8500000000000005, + 5.42, + 4.96, + 4.45, + 3.98, + 3.67, + 3.36, + 3.0500000000000003, + 2.75, + 2.52, + 2.2800000000000002, + 2.05, + 1.93, + 1.9000000000000001, + 1.92, + 2.0100000000000002, + 2.1, + 2.2, + 2.23, + 2.24, + 2.22, + 2.18, + 2.15, + 2.13, + 2.0300000000000002, + 1.92, + 1.82, + 1.71, + 1.6, + 1.49, + 1.4000000000000001, + 1.32, + 1.23, + 1.12, + 0.98, + 0.92, + 0.89, + 0.97, + 1.04, + 1.1300000000000001, + 1.22, + 1.35, + 1.5, + 1.71, + 1.97, + 2.36, + 2.7600000000000002, + 3.04, + 3.22, + 3.2800000000000002, + 3.3200000000000003, + 3.37, + 3.4, + 3.38, + 3.29, + 3.09, + 2.82, + 2.63, + 2.62, + 2.74, + 3.0300000000000002, + 3.29, + 3.52, + 3.7, + 3.8000000000000003, + 3.9, + 3.88, + 3.79, + 3.41, + 3.09, + 2.75, + 2.47, + 2.18, + 1.92, + 1.56, + 1.21, + 1.04, + 1.16, + 1.49, + 1.77, + 1.87, + 1.76, + 1.8, + 1.8900000000000001, + 1.92, + 1.61, + 1.21, + 1.04, + 1.01, + 1.42, + 1.76, + 1.85, + 1.83, + 1.71, + 1.55, + 1.23, + 0.87, + 0.72, + 0.71, + 0.89, + 1.01, + 0.97, + 0.85, + 0.8300000000000001, + 1.25, + 1.52, + 1.59, + 1.33, + 0.54, + -0.33, + -0.9, + -1.25, + -0.51, + 0.5, + 1.35, + 1.8900000000000001, + 2.22, + 2.54, + 3.13, + 3.79, + 4.05, + 4.04, + 3.69, + 3.1, + 2.73, + 2.44, + 2.5, + 3.0, + 3.52, + 3.5100000000000002, + 2.99, + 2.09, + 1.07, + 0.5700000000000001, + 0.13, + -0.14, + -0.32, + -0.04, + 0.29, + 0.37, + 0.28, + 0.07, + -0.03, + 0.07, + 0.23, + 0.32, + 0.3, + 0.29, + 0.3, + 0.35000000000000003, + 0.42, + 0.48, + 0.44, + 0.33, + 0.23, + 0.01, + -0.04, + -0.13, + -0.07, + 0.04, + 0.03, + 0.02, + -0.08, + -0.1, + -0.07, + -0.02, + 0.09, + 0.2, + 0.37, + 0.49, + 0.48, + 0.46, + 0.37, + 0.32, + 0.2, + 0.2, + 0.17, + 0.41000000000000003, + 0.52, + 0.75, + 0.9500000000000001, + 1.04, + 1.2, + 1.09, + 0.98, + 0.7000000000000001, + 0.33, + 0.12, + -0.03, + 0.01, + 0.24, + 0.43, + 0.59, + 0.55, + 0.45, + 0.25, + -0.02, + -0.22, + -0.38, + -0.46, + -0.36, + -0.23, + -0.07, + 0.04, + 0.08, + 0.03, + 0.05, + 0.08, + 0.18, + 0.23, + 0.06, + -0.26, + -0.45, + -0.47000000000000003, + -0.38, + -0.19, + -0.1, + -0.03, + 0.01, + 0.06, + 0.09, + 0.14, + 0.09, + 0.06, + 0.01, + -0.01, + -0.04, + 0.06, + 0.22, + 0.45, + 0.66, + 0.55, + 0.39, + 0.16, + -0.08, + -0.17, + -0.19, + -0.17, + -0.1, + -0.06, + -0.03, + -0.03, + -0.19, + -0.36, + -0.53, + -0.5700000000000001, + -0.65, + -0.7000000000000001, + -0.86, + -0.92 + ], + [ + 3.43, + 3.37, + 3.21, + 3.0300000000000002, + 2.96, + 2.93, + 2.9, + 2.85, + 2.81, + 2.75, + 2.69, + 2.63, + 2.57, + 2.5100000000000002, + 2.47, + 2.44, + 2.39, + 2.35, + 2.31, + 2.2800000000000002, + 2.22, + 2.18, + 2.09, + 2.0100000000000002, + 1.95, + 1.8900000000000001, + 1.86, + 1.85, + 1.83, + 1.83, + 1.83, + 1.85, + 1.9000000000000001, + 1.95, + 2.0, + 2.09, + 2.27, + 2.5500000000000003, + 2.82, + 2.98, + 3.02, + 2.87, + 2.68, + 2.62, + 2.7, + 3.0500000000000003, + 3.41, + 3.5500000000000003, + 3.7, + 3.7, + 3.71, + 3.62, + 3.5, + 3.52, + 3.46, + 3.29, + 3.0300000000000002, + 2.91, + 2.87, + 2.85, + 2.9, + 3.04, + 3.38, + 3.71, + 3.96, + 4.09, + 4.13, + 4.17, + 4.29, + 4.37, + 4.42, + 4.43, + 4.36, + 4.28, + 4.2700000000000005, + 4.3, + 4.44, + 4.69, + 4.91, + 5.08, + 5.2, + 5.34, + 5.55, + 5.79, + 6.13, + 6.62, + 7.15, + 7.6000000000000005, + 7.88, + 7.66, + 7.29, + 6.8100000000000005, + 6.45, + 6.22, + 6.140000000000001, + 5.91, + 5.72, + 5.32, + 4.86, + 4.3500000000000005, + 3.83, + 3.48, + 3.23, + 3.0300000000000002, + 2.83, + 2.67, + 2.54, + 2.37, + 2.16, + 2.06, + 2.0300000000000002, + 2.07, + 2.13, + 2.25, + 2.34, + 2.4, + 2.38, + 2.35, + 2.25, + 2.18, + 2.06, + 1.94, + 1.83, + 1.75, + 1.68, + 1.61, + 1.53, + 1.44, + 1.37, + 1.27, + 1.1500000000000001, + 0.99, + 0.86, + 0.85, + 0.85, + 0.92, + 0.99, + 1.05, + 1.1500000000000001, + 1.35, + 1.56, + 1.9000000000000001, + 2.3000000000000003, + 2.72, + 3.0700000000000003, + 3.19, + 3.24, + 3.2800000000000002, + 3.34, + 3.38, + 3.34, + 3.2, + 2.96, + 2.73, + 2.63, + 2.7, + 2.92, + 3.13, + 3.3000000000000003, + 3.47, + 3.6, + 3.71, + 3.7800000000000002, + 3.8200000000000003, + 3.45, + 3.12, + 2.71, + 2.44, + 2.09, + 1.82, + 1.46, + 1.05, + 0.74, + 0.5700000000000001, + 0.71, + 1.19, + 1.57, + 1.56, + 1.47, + 1.3800000000000001, + 1.3800000000000001, + 1.32, + 1.1500000000000001, + 0.87, + 0.58, + 0.81, + 1.1400000000000001, + 1.49, + 1.61, + 1.55, + 1.3800000000000001, + 1.11, + 0.75, + 0.5, + 0.33, + 0.47000000000000003, + 0.8, + 1.05, + 1.2, + 1.21, + 1.27, + 1.45, + 1.53, + 1.45, + 0.98, + 0.31, + -0.35000000000000003, + -1.04, + -0.98, + -0.73, + 0.2, + 1.0, + 1.52, + 1.85, + 2.35, + 2.94, + 3.3200000000000003, + 3.5300000000000002, + 3.36, + 2.97, + 2.67, + 2.5100000000000002, + 2.5, + 2.68, + 3.15, + 3.75, + 4.25, + 3.75, + 2.96, + 1.92, + 0.9400000000000001, + 0.39, + -0.02, + 0.02, + 0.2, + 0.38, + 0.43, + 0.18, + -0.19, + -0.29, + -0.25, + -0.08, + 0.11, + 0.19, + 0.24, + 0.25, + 0.31, + 0.4, + 0.49, + 0.5700000000000001, + 0.52, + 0.43, + 0.3, + 0.07, + 0.01, + 0.04, + 0.11, + 0.18, + 0.08, + -0.1, + -0.09, + -0.11, + -0.06, + 0.01, + 0.15, + 0.37, + 0.48, + 0.42, + 0.29, + 0.18, + 0.08, + 0.16, + 0.24, + 0.53, + 0.76, + 0.96, + 1.12, + 1.1400000000000001, + 1.22, + 1.1300000000000001, + 1.09, + 0.88, + 0.67, + 0.43, + 0.14, + 0.04, + -0.05, + 0.0, + 0.17, + 0.2, + 0.11, + -0.13, + -0.34, + -0.6, + -0.65, + -0.77, + -0.63, + -0.59, + -0.27, + -0.04, + 0.2, + 0.41000000000000003, + 0.34, + 0.22, + 0.17, + 0.22, + 0.21, + 0.11, + -0.1, + -0.25, + -0.3, + -0.24, + -0.16, + -0.18, + -0.16, + -0.12, + -0.06, + 0.07, + 0.13, + 0.12, + 0.08, + 0.09, + 0.11, + 0.1, + 0.17, + 0.32, + 0.55, + 0.51, + 0.44, + 0.24, + 0.02, + -0.06, + -0.13, + -0.17, + -0.2, + -0.24, + -0.27, + -0.3, + -0.25, + -0.25, + -0.31, + -0.26, + -0.25, + -0.01, + -0.23, + -0.28, + -0.59 + ], + [ + 3.45, + 3.45, + 3.23, + 3.0100000000000002, + 2.97, + 2.95, + 2.92, + 2.87, + 2.82, + 2.77, + 2.7, + 2.64, + 2.57, + 2.52, + 2.47, + 2.4, + 2.34, + 2.2800000000000002, + 2.22, + 2.18, + 2.15, + 2.1, + 2.06, + 2.0, + 1.94, + 1.9000000000000001, + 1.86, + 1.85, + 1.85, + 1.85, + 1.86, + 1.9000000000000001, + 1.97, + 2.0300000000000002, + 2.08, + 2.16, + 2.33, + 2.57, + 2.81, + 2.99, + 3.0100000000000002, + 2.93, + 2.72, + 2.58, + 2.77, + 3.0700000000000003, + 3.2600000000000002, + 3.4, + 3.43, + 3.35, + 3.36, + 3.27, + 3.3000000000000003, + 3.3000000000000003, + 3.25, + 3.08, + 2.99, + 3.02, + 3.1, + 3.17, + 3.22, + 3.36, + 3.58, + 3.83, + 4.08, + 4.16, + 4.24, + 4.41, + 4.63, + 4.64, + 4.71, + 4.63, + 4.5600000000000005, + 4.53, + 4.5600000000000005, + 4.61, + 4.74, + 4.92, + 5.08, + 5.2, + 5.3, + 5.46, + 5.72, + 6.07, + 6.5, + 6.98, + 7.51, + 7.91, + 7.9, + 7.71, + 7.18, + 6.69, + 6.32, + 6.13, + 5.82, + 5.59, + 5.22, + 4.79, + 4.28, + 3.73, + 3.35, + 3.0500000000000003, + 2.87, + 2.75, + 2.64, + 2.59, + 2.49, + 2.32, + 2.17, + 2.09, + 2.08, + 2.11, + 2.19, + 2.34, + 2.5, + 2.5, + 2.5300000000000002, + 2.4, + 2.29, + 2.13, + 1.97, + 1.83, + 1.72, + 1.6600000000000001, + 1.62, + 1.57, + 1.52, + 1.47, + 1.4000000000000001, + 1.32, + 1.19, + 1.04, + 0.91, + 0.8, + 0.79, + 0.78, + 0.81, + 0.85, + 1.0, + 1.18, + 1.49, + 1.8, + 2.2600000000000002, + 2.73, + 3.0, + 3.14, + 3.22, + 3.2600000000000002, + 3.33, + 3.37, + 3.29, + 3.1, + 2.86, + 2.66, + 2.63, + 2.87, + 3.1, + 3.22, + 3.31, + 3.41, + 3.5, + 3.6, + 3.68, + 3.38, + 3.02, + 2.52, + 2.15, + 1.75, + 1.47, + 1.12, + 0.79, + 0.49, + 0.2, + 0.12, + 0.33, + 0.71, + 1.08, + 1.21, + 1.04, + 0.89, + 0.9, + 0.86, + 0.73, + 0.56, + 0.41000000000000003, + 0.53, + 0.96, + 1.3900000000000001, + 1.45, + 1.37, + 1.1400000000000001, + 0.8, + 0.52, + 0.28, + 0.3, + 0.56, + 0.9, + 1.26, + 1.43, + 1.43, + 1.52, + 1.52, + 1.61, + 1.32, + 0.86, + 0.3, + -0.33, + -0.62, + -0.8300000000000001, + -0.34, + 0.22, + 0.92, + 1.3900000000000001, + 1.81, + 2.29, + 2.69, + 2.91, + 2.83, + 2.5300000000000002, + 2.23, + 2.13, + 2.13, + 2.2800000000000002, + 2.6, + 3.12, + 3.97, + 4.5, + 4.76, + 3.81, + 2.71, + 1.61, + 0.61, + 0.37, + 0.29, + 0.46, + 0.5700000000000001, + 0.45, + 0.13, + -0.16, + -0.35000000000000003, + -0.32, + -0.14, + 0.02, + 0.16, + 0.22, + 0.22, + 0.26, + 0.37, + 0.51, + 0.62, + 0.74, + 0.68, + 0.68, + 0.38, + 0.13, + 0.1, + 0.18, + 0.2, + 0.14, + 0.11, + 0.08, + 0.09, + 0.1, + 0.11, + 0.26, + 0.41000000000000003, + 0.49, + 0.45, + 0.25, + 0.13, + 0.16, + 0.24, + 0.56, + 0.93, + 1.11, + 1.41, + 1.26, + 1.26, + 1.11, + 1.0, + 0.84, + 0.6900000000000001, + 0.56, + 0.47000000000000003, + 0.39, + 0.3, + 0.2, + 0.11, + 0.08, + 0.04, + -0.1, + -0.4, + -0.7000000000000001, + -0.79, + -0.88, + -0.73, + -0.65, + -0.4, + -0.21, + 0.06, + 0.39, + 0.46, + 0.59, + 0.39, + 0.24, + 0.19, + 0.2, + 0.11, + -0.05, + -0.21, + -0.27, + -0.25, + -0.25, + -0.23, + -0.23, + -0.19, + -0.03, + 0.1, + 0.14, + 0.19, + 0.16, + 0.16, + 0.13, + 0.15, + 0.23, + 0.38, + 0.39, + 0.3, + 0.16, + -0.01, + -0.02, + -0.01, + -0.02, + -0.07, + -0.18, + -0.31, + -0.42, + -0.45, + -0.47000000000000003, + -0.45, + -0.41000000000000003, + -0.41000000000000003, + -0.17, + -0.13, + 0.05, + -0.3, + -0.51 + ], + [ + 3.48, + 3.42, + 3.2600000000000002, + 3.0700000000000003, + 3.0, + 2.97, + 2.94, + 2.89, + 2.83, + 2.77, + 2.71, + 2.64, + 2.57, + 2.5, + 2.43, + 2.36, + 2.27, + 2.19, + 2.14, + 2.08, + 2.06, + 2.0300000000000002, + 2.0100000000000002, + 1.99, + 1.95, + 1.9100000000000001, + 1.8900000000000001, + 1.87, + 1.86, + 1.86, + 1.8900000000000001, + 1.95, + 2.04, + 2.14, + 2.2, + 2.24, + 2.35, + 2.56, + 2.7800000000000002, + 2.94, + 3.0100000000000002, + 2.9, + 2.75, + 2.66, + 2.73, + 2.94, + 3.16, + 3.23, + 3.2600000000000002, + 3.22, + 3.12, + 3.18, + 3.23, + 3.27, + 3.19, + 3.1, + 3.09, + 3.18, + 3.38, + 3.47, + 3.5, + 3.59, + 3.7, + 3.89, + 4.0600000000000005, + 4.23, + 4.38, + 4.59, + 4.74, + 4.86, + 4.84, + 4.8100000000000005, + 4.74, + 4.73, + 4.76, + 4.83, + 4.94, + 5.09, + 5.21, + 5.3, + 5.41, + 5.59, + 5.92, + 6.4, + 6.91, + 7.42, + 7.8500000000000005, + 8.01, + 8.0, + 7.54, + 7.03, + 6.44, + 6.01, + 5.67, + 5.41, + 5.07, + 4.7, + 4.21, + 3.68, + 3.27, + 2.94, + 2.75, + 2.63, + 2.5300000000000002, + 2.49, + 2.43, + 2.34, + 2.19, + 2.07, + 2.02, + 2.0300000000000002, + 2.08, + 2.22, + 2.4, + 2.49, + 2.58, + 2.49, + 2.41, + 2.25, + 2.07, + 1.8800000000000001, + 1.7, + 1.61, + 1.57, + 1.54, + 1.51, + 1.49, + 1.47, + 1.43, + 1.37, + 1.27, + 1.1400000000000001, + 1.0, + 0.85, + 0.72, + 0.66, + 0.62, + 0.7000000000000001, + 0.81, + 1.12, + 1.43, + 1.82, + 2.25, + 2.64, + 2.95, + 3.1, + 3.21, + 3.3200000000000003, + 3.39, + 3.37, + 3.25, + 3.04, + 2.7800000000000002, + 2.63, + 2.77, + 3.0100000000000002, + 3.21, + 3.33, + 3.33, + 3.35, + 3.42, + 3.52, + 3.27, + 2.94, + 2.33, + 1.75, + 1.24, + 0.8200000000000001, + 0.46, + 0.17, + -0.04, + -0.2, + -0.3, + -0.28, + -0.09, + 0.28, + 0.62, + 0.73, + 0.67, + 0.58, + 0.46, + 0.43, + 0.34, + 0.11, + -0.02, + 0.27, + 0.79, + 1.11, + 1.33, + 1.22, + 0.97, + 0.72, + 0.43, + 0.31, + 0.42, + 0.67, + 1.04, + 1.3, + 1.33, + 1.34, + 1.32, + 1.43, + 1.47, + 1.37, + 0.92, + 0.41000000000000003, + -0.01, + -0.27, + -0.22, + 0.05, + 0.58, + 1.1, + 1.48, + 1.85, + 2.21, + 2.5100000000000002, + 2.5500000000000003, + 2.22, + 1.87, + 1.61, + 1.5, + 1.6300000000000001, + 1.78, + 2.09, + 2.7, + 3.72, + 4.8100000000000005, + 4.99, + 4.78, + 3.49, + 2.16, + 1.31, + 0.7000000000000001, + 0.67, + 0.79, + 0.77, + 0.58, + 0.26, + -0.06, + -0.23, + -0.24, + -0.14, + 0.0, + 0.12, + 0.16, + 0.2, + 0.23, + 0.32, + 0.49, + 0.63, + 0.73, + 0.88, + 0.73, + 0.64, + 0.31, + 0.09, + 0.15, + 0.23, + 0.24, + 0.33, + 0.34, + 0.37, + 0.3, + 0.21, + 0.24, + 0.34, + 0.42, + 0.33, + 0.24, + 0.21, + 0.26, + 0.46, + 0.75, + 0.99, + 1.32, + 1.23, + 1.25, + 1.04, + 0.93, + 0.79, + 0.58, + 0.48, + 0.41000000000000003, + 0.44, + 0.59, + 0.5700000000000001, + 0.46, + 0.29, + 0.09, + -0.03, + -0.23, + -0.47000000000000003, + -0.71, + -0.8300000000000001, + -0.73, + -0.59, + -0.39, + -0.16, + -0.06, + 0.1, + 0.23, + 0.42, + 0.42, + 0.37, + 0.22, + 0.11, + 0.12, + 0.06, + -0.06, + -0.24, + -0.37, + -0.36, + -0.32, + -0.26, + -0.21, + -0.09, + 0.0, + 0.08, + 0.13, + 0.17, + 0.19, + 0.16, + 0.11, + 0.14, + 0.2, + 0.3, + 0.25, + 0.14, + -0.08, + -0.04, + 0.08, + 0.15, + 0.17, + 0.04, + -0.16, + -0.32, + -0.47000000000000003, + -0.61, + -0.71, + -0.77, + -0.8200000000000001, + -0.8300000000000001, + -0.62, + -0.4, + -0.39, + -0.45, + -0.89 + ], + [ + 3.5, + 3.49, + 3.2800000000000002, + 3.0500000000000003, + 3.0, + 2.99, + 2.95, + 2.89, + 2.84, + 2.77, + 2.7, + 2.62, + 2.54, + 2.46, + 2.38, + 2.29, + 2.21, + 2.13, + 2.06, + 2.02, + 1.97, + 1.97, + 1.97, + 1.97, + 1.96, + 1.93, + 1.9100000000000001, + 1.8900000000000001, + 1.8800000000000001, + 1.8900000000000001, + 1.9100000000000001, + 2.0100000000000002, + 2.15, + 2.27, + 2.34, + 2.37, + 2.42, + 2.56, + 2.75, + 2.88, + 2.94, + 2.89, + 2.74, + 2.63, + 2.69, + 2.79, + 2.99, + 3.11, + 3.19, + 3.16, + 3.2, + 3.22, + 3.3000000000000003, + 3.36, + 3.33, + 3.22, + 3.24, + 3.41, + 3.5500000000000003, + 3.62, + 3.63, + 3.62, + 3.72, + 3.8200000000000003, + 4.0, + 4.22, + 4.43, + 4.66, + 4.86, + 4.94, + 4.97, + 4.92, + 4.87, + 4.87, + 4.91, + 4.98, + 5.07, + 5.16, + 5.28, + 5.37, + 5.48, + 5.73, + 6.18, + 6.73, + 7.36, + 7.87, + 8.07, + 8.17, + 7.8100000000000005, + 7.4, + 6.69, + 6.0600000000000005, + 5.57, + 5.12, + 4.84, + 4.55, + 4.12, + 3.64, + 3.21, + 2.84, + 2.65, + 2.56, + 2.46, + 2.38, + 2.32, + 2.27, + 2.16, + 2.0100000000000002, + 1.9100000000000001, + 1.92, + 1.96, + 2.06, + 2.2, + 2.35, + 2.49, + 2.47, + 2.41, + 2.33, + 2.2, + 2.02, + 1.79, + 1.6300000000000001, + 1.52, + 1.48, + 1.47, + 1.45, + 1.47, + 1.48, + 1.47, + 1.44, + 1.36, + 1.25, + 1.08, + 0.91, + 0.71, + 0.55, + 0.52, + 0.52, + 0.75, + 1.05, + 1.43, + 1.84, + 2.23, + 2.61, + 2.85, + 3.04, + 3.2, + 3.39, + 3.47, + 3.4, + 3.25, + 3.0, + 2.7800000000000002, + 2.74, + 2.85, + 3.14, + 3.35, + 3.33, + 3.3200000000000003, + 3.29, + 3.33, + 3.14, + 2.9, + 2.2600000000000002, + 1.52, + 0.87, + 0.23, + -0.22, + -0.66, + -0.85, + -0.9, + -0.9, + -0.79, + -0.67, + -0.46, + -0.13, + 0.21, + 0.39, + 0.43, + 0.35000000000000003, + 0.23, + 0.06, + -0.12, + -0.41000000000000003, + -0.36, + -0.21, + 0.3, + 0.84, + 1.05, + 1.11, + 0.99, + 0.78, + 0.6, + 0.46, + 0.53, + 0.77, + 0.99, + 1.06, + 1.06, + 0.97, + 0.96, + 1.21, + 1.37, + 1.23, + 1.04, + 0.48, + 0.16, + 0.01, + 0.18, + 0.46, + 0.9500000000000001, + 1.28, + 1.54, + 1.79, + 2.08, + 2.27, + 2.23, + 1.92, + 1.46, + 1.17, + 1.07, + 1.06, + 1.1500000000000001, + 1.34, + 2.13, + 3.16, + 4.5200000000000005, + 5.45, + 5.03, + 4.33, + 2.97, + 1.81, + 1.24, + 0.99, + 0.99, + 1.02, + 0.8, + 0.42, + 0.12, + -0.1, + -0.16, + -0.15, + -0.06, + 0.05, + 0.1, + 0.17, + 0.22, + 0.37, + 0.48, + 0.55, + 0.63, + 0.66, + 0.71, + 0.55, + 0.36, + 0.23, + 0.12, + 0.18, + 0.25, + 0.3, + 0.46, + 0.43, + 0.3, + 0.18, + 0.06, + 0.1, + 0.17, + 0.17, + 0.19, + 0.25, + 0.4, + 0.58, + 0.74, + 0.93, + 0.96, + 0.93, + 0.8200000000000001, + 0.67, + 0.63, + 0.6, + 0.47000000000000003, + 0.33, + 0.33, + 0.42, + 0.52, + 0.66, + 0.52, + 0.23, + 0.0, + -0.21, + -0.38, + -0.61, + -0.77, + -0.79, + -0.63, + -0.43, + -0.17, + -0.07, + 0.04, + 0.01, + -0.02, + 0.14, + 0.22, + 0.22, + 0.14, + 0.14, + 0.17, + 0.18, + 0.07, + -0.14, + -0.37, + -0.44, + -0.32, + -0.2, + -0.06, + 0.06, + 0.1, + 0.09, + 0.15, + 0.16, + 0.23, + 0.2, + 0.15, + 0.08, + 0.23, + 0.33, + 0.3, + 0.09, + 0.09, + 0.19, + 0.32, + 0.44, + 0.36, + 0.1, + -0.14, + -0.32, + -0.49, + -0.75, + -0.9500000000000001, + -1.09, + -1.26, + -1.18, + -1.11, + -0.8300000000000001, + -0.74, + -1.08, + -1.45 + ], + [ + 3.52, + 3.46, + 3.3000000000000003, + 3.1, + 3.02, + 2.99, + 2.95, + 2.89, + 2.84, + 2.7600000000000002, + 2.68, + 2.59, + 2.49, + 2.4, + 2.3000000000000003, + 2.22, + 2.14, + 2.07, + 2.0100000000000002, + 1.96, + 1.93, + 1.9100000000000001, + 1.95, + 1.97, + 1.97, + 1.96, + 1.94, + 1.92, + 1.92, + 1.92, + 1.98, + 2.08, + 2.24, + 2.43, + 2.5100000000000002, + 2.5100000000000002, + 2.5500000000000003, + 2.64, + 2.7800000000000002, + 2.86, + 2.88, + 2.82, + 2.71, + 2.64, + 2.63, + 2.79, + 2.9, + 3.13, + 3.23, + 3.29, + 3.37, + 3.39, + 3.47, + 3.5, + 3.5500000000000003, + 3.48, + 3.48, + 3.59, + 3.65, + 3.64, + 3.5300000000000002, + 3.5100000000000002, + 3.5700000000000003, + 3.71, + 3.96, + 4.2, + 4.49, + 4.74, + 4.92, + 5.05, + 5.05, + 5.03, + 4.99, + 4.99, + 5.03, + 5.09, + 5.11, + 5.13, + 5.2, + 5.32, + 5.54, + 5.93, + 6.44, + 7.140000000000001, + 7.75, + 8.11, + 8.3, + 7.96, + 7.61, + 6.93, + 6.28, + 5.67, + 5.1000000000000005, + 4.67, + 4.26, + 3.94, + 3.5500000000000003, + 3.16, + 2.77, + 2.56, + 2.47, + 2.39, + 2.3000000000000003, + 2.22, + 2.17, + 2.11, + 1.97, + 1.83, + 1.8, + 1.8, + 1.8900000000000001, + 1.99, + 2.16, + 2.32, + 2.38, + 2.37, + 2.34, + 2.2800000000000002, + 2.17, + 2.0, + 1.79, + 1.58, + 1.47, + 1.4000000000000001, + 1.37, + 1.37, + 1.3900000000000001, + 1.43, + 1.47, + 1.48, + 1.44, + 1.3, + 1.16, + 0.93, + 0.72, + 0.53, + 0.4, + 0.47000000000000003, + 0.66, + 1.01, + 1.43, + 1.8, + 2.19, + 2.49, + 2.74, + 2.93, + 3.17, + 3.37, + 3.5100000000000002, + 3.46, + 3.25, + 3.02, + 2.85, + 2.81, + 3.0100000000000002, + 3.2600000000000002, + 3.33, + 3.33, + 3.22, + 3.18, + 3.0, + 2.79, + 2.2600000000000002, + 1.56, + 0.77, + -0.04, + -0.6, + -1.19, + -1.5, + -1.71, + -1.67, + -1.47, + -1.28, + -1.04, + -0.78, + -0.44, + -0.1, + 0.19, + 0.32, + 0.28, + 0.12, + -0.1, + -0.46, + -0.59, + -0.77, + -0.51, + -0.23, + 0.37, + 0.89, + 1.05, + 1.1400000000000001, + 1.04, + 0.93, + 0.81, + 0.75, + 0.85, + 0.87, + 0.86, + 0.77, + 0.66, + 0.77, + 0.92, + 1.0, + 1.01, + 0.62, + 0.3, + 0.04, + -0.01, + 0.23, + 0.67, + 1.04, + 1.37, + 1.51, + 1.6, + 1.83, + 2.0300000000000002, + 1.98, + 1.7, + 1.34, + 1.01, + 0.8300000000000001, + 0.74, + 0.67, + 0.9, + 1.42, + 2.88, + 4.3100000000000005, + 5.09, + 5.43, + 4.46, + 3.5500000000000003, + 2.32, + 1.46, + 1.1500000000000001, + 1.1, + 1.1, + 1.02, + 0.68, + 0.33, + 0.14, + -0.02, + -0.04, + 0.02, + 0.08, + 0.15, + 0.18, + 0.31, + 0.44, + 0.42, + 0.46, + 0.39, + 0.37, + 0.48, + 0.5, + 0.45, + 0.37, + 0.27, + 0.13, + 0.15, + 0.14, + 0.23, + 0.28, + 0.19, + 0.02, + -0.07, + -0.08, + -0.06, + 0.04, + 0.11, + 0.34, + 0.51, + 0.63, + 0.72, + 0.68, + 0.65, + 0.5700000000000001, + 0.42, + 0.34, + 0.32, + 0.35000000000000003, + 0.41000000000000003, + 0.33, + 0.29, + 0.3, + 0.34, + 0.35000000000000003, + 0.23, + -0.04, + -0.33, + -0.53, + -0.71, + -0.89, + -0.99, + -0.97, + -0.67, + -0.35000000000000003, + -0.13, + 0.03, + -0.03, + -0.11, + -0.09, + -0.08, + 0.07, + 0.15, + 0.15, + 0.24, + 0.34, + 0.47000000000000003, + 0.37, + 0.07, + -0.2, + -0.38, + -0.32, + -0.1, + 0.11, + 0.25, + 0.32, + 0.28, + 0.22, + 0.31, + 0.37, + 0.29, + 0.2, + 0.24, + 0.36, + 0.49, + 0.51, + 0.47000000000000003, + 0.5, + 0.59, + 0.68, + 0.67, + 0.47000000000000003, + 0.19, + -0.12, + -0.35000000000000003, + -0.58, + -0.8200000000000001, + -1.07, + -1.27, + -1.37, + -1.47, + -1.28, + -1.08, + -1.32, + -1.71, + -2.1 + ], + [ + 3.54, + 3.52, + 3.3000000000000003, + 3.06, + 3.0100000000000002, + 2.98, + 2.94, + 2.89, + 2.82, + 2.74, + 2.65, + 2.54, + 2.44, + 2.33, + 2.23, + 2.14, + 2.07, + 2.02, + 1.96, + 1.93, + 1.9000000000000001, + 1.9100000000000001, + 1.94, + 1.98, + 2.0, + 1.99, + 1.98, + 1.97, + 1.97, + 2.0, + 2.06, + 2.19, + 2.37, + 2.5300000000000002, + 2.66, + 2.68, + 2.68, + 2.75, + 2.84, + 2.91, + 2.84, + 2.7600000000000002, + 2.68, + 2.62, + 2.73, + 2.88, + 3.09, + 3.33, + 3.38, + 3.47, + 3.47, + 3.5300000000000002, + 3.5100000000000002, + 3.58, + 3.5700000000000003, + 3.59, + 3.59, + 3.64, + 3.67, + 3.47, + 3.33, + 3.31, + 3.37, + 3.65, + 3.9, + 4.2700000000000005, + 4.58, + 4.82, + 5.01, + 5.09, + 5.12, + 5.11, + 5.11, + 5.11, + 5.13, + 5.09, + 5.03, + 5.01, + 5.03, + 5.25, + 5.69, + 6.21, + 6.93, + 7.58, + 8.05, + 8.35, + 8.05, + 7.73, + 7.0600000000000005, + 6.41, + 5.82, + 5.25, + 4.69, + 4.19, + 3.77, + 3.37, + 3.0700000000000003, + 2.7600000000000002, + 2.5300000000000002, + 2.41, + 2.32, + 2.24, + 2.15, + 2.08, + 2.0300000000000002, + 1.95, + 1.83, + 1.75, + 1.69, + 1.75, + 1.81, + 1.97, + 2.11, + 2.2600000000000002, + 2.34, + 2.34, + 2.3000000000000003, + 2.2600000000000002, + 2.19, + 2.02, + 1.8, + 1.61, + 1.42, + 1.32, + 1.22, + 1.2, + 1.22, + 1.28, + 1.3900000000000001, + 1.45, + 1.4000000000000001, + 1.3, + 1.1400000000000001, + 0.9500000000000001, + 0.72, + 0.5, + 0.37, + 0.35000000000000003, + 0.5700000000000001, + 0.9, + 1.3, + 1.73, + 2.05, + 2.34, + 2.56, + 2.7800000000000002, + 3.0300000000000002, + 3.3200000000000003, + 3.46, + 3.44, + 3.27, + 3.04, + 2.9, + 2.95, + 3.12, + 3.2800000000000002, + 3.36, + 3.19, + 3.0500000000000003, + 2.88, + 2.68, + 2.2800000000000002, + 1.69, + 0.9, + 0.0, + -0.68, + -1.31, + -1.75, + -2.13, + -2.23, + -2.17, + -1.94, + -1.6500000000000001, + -1.37, + -1.01, + -0.65, + -0.23, + 0.09, + 0.33, + 0.39, + 0.26, + -0.04, + -0.33, + -0.63, + -0.71, + -0.77, + -0.4, + 0.04, + 0.63, + 1.1300000000000001, + 1.24, + 1.3800000000000001, + 1.28, + 1.19, + 1.11, + 0.97, + 0.91, + 0.79, + 0.66, + 0.59, + 0.61, + 0.58, + 0.58, + 0.34, + 0.0, + -0.14, + -0.31, + -0.18, + 0.07, + 0.56, + 1.09, + 1.3, + 1.42, + 1.49, + 1.59, + 1.72, + 1.73, + 1.55, + 1.36, + 1.1400000000000001, + 0.9400000000000001, + 0.75, + 0.59, + 0.64, + 1.41, + 2.58, + 3.7800000000000002, + 4.78, + 4.63, + 4.3, + 3.27, + 2.43, + 1.56, + 1.04, + 1.02, + 1.18, + 1.1, + 0.93, + 0.68, + 0.52, + 0.39, + 0.31, + 0.31, + 0.33, + 0.33, + 0.31, + 0.37, + 0.33, + 0.33, + 0.16, + 0.1, + 0.18, + 0.3, + 0.49, + 0.66, + 0.55, + 0.45, + 0.26, + 0.03, + 0.03, + 0.0, + 0.06, + 0.11, + 0.04, + -0.01, + -0.03, + -0.02, + 0.02, + 0.24, + 0.44, + 0.65, + 0.75, + 0.58, + 0.44, + 0.34, + 0.28, + 0.13, + -0.03, + 0.02, + 0.12, + 0.21, + 0.31, + 0.22, + 0.09, + 0.02, + -0.12, + -0.28, + -0.52, + -0.77, + -0.93, + -1.1, + -1.19, + -1.3, + -1.06, + -0.81, + -0.35000000000000003, + -0.05, + -0.02, + -0.08, + -0.1, + -0.12, + -0.02, + 0.05, + 0.12, + 0.14, + 0.26, + 0.52, + 0.62, + 0.63, + 0.35000000000000003, + -0.08, + -0.29, + -0.26, + -0.06, + 0.26, + 0.49, + 0.58, + 0.58, + 0.48, + 0.51, + 0.44, + 0.4, + 0.32, + 0.35000000000000003, + 0.52, + 0.79, + 0.8300000000000001, + 0.9400000000000001, + 0.9500000000000001, + 1.01, + 0.97, + 0.79, + 0.56, + 0.22, + -0.1, + -0.42, + -0.67, + -0.93, + -1.1300000000000001, + -1.25, + -1.37, + -1.5, + -1.44, + -1.56, + -1.8, + -2.25, + -2.81 + ], + [ + 3.5500000000000003, + 3.49, + 3.31, + 3.1, + 3.0100000000000002, + 2.98, + 2.93, + 2.87, + 2.8000000000000003, + 2.71, + 2.61, + 2.49, + 2.37, + 2.25, + 2.15, + 2.07, + 2.0100000000000002, + 1.96, + 1.93, + 1.9100000000000001, + 1.9000000000000001, + 1.92, + 1.96, + 2.0, + 2.02, + 2.02, + 2.0100000000000002, + 2.0100000000000002, + 2.04, + 2.1, + 2.2, + 2.34, + 2.49, + 2.62, + 2.72, + 2.74, + 2.75, + 2.8000000000000003, + 2.89, + 2.89, + 2.84, + 2.73, + 2.64, + 2.7, + 2.82, + 3.0300000000000002, + 3.3200000000000003, + 3.4, + 3.47, + 3.45, + 3.46, + 3.42, + 3.33, + 3.37, + 3.39, + 3.4, + 3.44, + 3.5, + 3.5100000000000002, + 3.36, + 3.19, + 3.14, + 3.36, + 3.6, + 4.01, + 4.38, + 4.69, + 4.93, + 5.0600000000000005, + 5.14, + 5.17, + 5.19, + 5.2, + 5.22, + 5.13, + 4.99, + 4.89, + 4.8, + 4.94, + 5.33, + 5.88, + 6.72, + 7.44, + 7.97, + 8.38, + 8.09, + 7.79, + 7.1000000000000005, + 6.46, + 5.87, + 5.3100000000000005, + 4.78, + 4.28, + 3.74, + 3.2600000000000002, + 2.96, + 2.7, + 2.5, + 2.39, + 2.2800000000000002, + 2.18, + 2.1, + 2.0100000000000002, + 1.96, + 1.95, + 1.8900000000000001, + 1.82, + 1.74, + 1.73, + 1.75, + 1.86, + 1.97, + 2.12, + 2.2600000000000002, + 2.32, + 2.33, + 2.31, + 2.2800000000000002, + 2.21, + 2.09, + 1.8800000000000001, + 1.6500000000000001, + 1.44, + 1.2, + 1.07, + 0.9500000000000001, + 0.9500000000000001, + 1.05, + 1.18, + 1.3, + 1.31, + 1.2, + 1.07, + 0.9400000000000001, + 0.72, + 0.48, + 0.28, + 0.27, + 0.37, + 0.72, + 1.11, + 1.51, + 1.87, + 2.11, + 2.34, + 2.57, + 2.87, + 3.14, + 3.36, + 3.36, + 3.21, + 3.0300000000000002, + 2.98, + 3.04, + 3.22, + 3.38, + 3.22, + 3.04, + 2.79, + 2.57, + 2.2800000000000002, + 1.86, + 1.2, + 0.34, + -0.44, + -1.23, + -1.72, + -2.11, + -2.38, + -2.5, + -2.37, + -2.16, + -1.87, + -1.51, + -1.1500000000000001, + -0.68, + -0.28, + 0.13, + 0.42, + 0.64, + 0.63, + 0.27, + -0.06, + -0.34, + -0.49, + -0.58, + -0.54, + -0.05, + 0.54, + 0.9400000000000001, + 1.28, + 1.36, + 1.47, + 1.3800000000000001, + 1.3, + 1.17, + 0.98, + 0.84, + 0.68, + 0.58, + 0.4, + 0.32, + 0.06, + -0.27, + -0.39, + -0.55, + -0.5, + -0.39, + -0.05, + 0.44, + 0.86, + 1.17, + 1.21, + 1.28, + 1.35, + 1.41, + 1.45, + 1.47, + 1.3800000000000001, + 1.43, + 1.3, + 0.99, + 0.76, + 0.8200000000000001, + 1.37, + 2.22, + 3.2600000000000002, + 3.52, + 3.47, + 3.1, + 2.57, + 1.9000000000000001, + 1.35, + 0.91, + 0.81, + 0.96, + 1.18, + 1.07, + 1.04, + 0.9400000000000001, + 0.91, + 0.81, + 0.71, + 0.68, + 0.51, + 0.44, + 0.22, + 0.13, + -0.09, + -0.27, + -0.17, + -0.02, + 0.23, + 0.53, + 0.64, + 0.71, + 0.54, + 0.38, + 0.17, + 0.0, + -0.01, + -0.01, + 0.07, + 0.21, + 0.23, + 0.25, + 0.26, + 0.32, + 0.47000000000000003, + 0.6900000000000001, + 0.89, + 0.71, + 0.48, + 0.19, + -0.05, + -0.03, + -0.13, + -0.2, + -0.3, + -0.09, + 0.07, + 0.13, + 0.08, + -0.11, + -0.37, + -0.53, + -0.75, + -0.96, + -1.07, + -1.21, + -1.23, + -1.33, + -1.22, + -1.1, + -0.6900000000000001, + -0.28, + -0.08, + -0.02, + -0.05, + -0.05, + 0.04, + 0.17, + 0.19, + 0.12, + 0.15, + 0.2, + 0.41000000000000003, + 0.62, + 0.61, + 0.42, + 0.06, + -0.23, + -0.23, + 0.03, + 0.35000000000000003, + 0.66, + 0.84, + 0.72, + 0.65, + 0.48, + 0.41000000000000003, + 0.34, + 0.33, + 0.38, + 0.61, + 0.81, + 1.1, + 1.1400000000000001, + 1.29, + 1.21, + 1.01, + 0.8, + 0.53, + 0.19, + -0.21, + -0.56, + -0.9, + -1.1500000000000001, + -1.18, + -1.21, + -1.43, + -1.61, + -1.83, + -2.02, + -2.24, + -2.65, + -2.75 + ], + [ + 3.5700000000000003, + 3.54, + 3.3200000000000003, + 3.0700000000000003, + 3.0, + 2.97, + 2.91, + 2.85, + 2.77, + 2.67, + 2.56, + 2.44, + 2.31, + 2.19, + 2.08, + 2.0, + 1.94, + 1.9100000000000001, + 1.8900000000000001, + 1.8900000000000001, + 1.9000000000000001, + 1.94, + 1.99, + 2.02, + 2.04, + 2.04, + 2.04, + 2.06, + 2.11, + 2.21, + 2.36, + 2.48, + 2.56, + 2.66, + 2.71, + 2.73, + 2.72, + 2.7600000000000002, + 2.82, + 2.84, + 2.77, + 2.68, + 2.68, + 2.75, + 2.88, + 3.09, + 3.2600000000000002, + 3.35, + 3.35, + 3.3000000000000003, + 3.3000000000000003, + 3.24, + 3.19, + 3.16, + 3.19, + 3.13, + 3.2, + 3.3200000000000003, + 3.35, + 3.34, + 3.2, + 3.27, + 3.44, + 3.77, + 4.15, + 4.53, + 4.8500000000000005, + 5.0200000000000005, + 5.13, + 5.19, + 5.23, + 5.2700000000000005, + 5.3, + 5.23, + 5.04, + 4.88, + 4.69, + 4.74, + 5.05, + 5.53, + 6.33, + 7.15, + 7.82, + 8.31, + 8.11, + 7.8500000000000005, + 7.07, + 6.36, + 5.8, + 5.26, + 4.72, + 4.23, + 3.75, + 3.25, + 2.89, + 2.65, + 2.46, + 2.35, + 2.23, + 2.13, + 2.04, + 1.96, + 1.8900000000000001, + 1.92, + 1.93, + 1.94, + 1.8900000000000001, + 1.87, + 1.85, + 1.8900000000000001, + 1.97, + 2.04, + 2.15, + 2.24, + 2.3000000000000003, + 2.31, + 2.31, + 2.3000000000000003, + 2.2800000000000002, + 2.16, + 1.98, + 1.73, + 1.42, + 1.16, + 0.84, + 0.7000000000000001, + 0.63, + 0.71, + 0.9, + 1.04, + 1.12, + 1.07, + 1.05, + 0.97, + 0.75, + 0.49, + 0.27, + 0.16, + 0.29, + 0.52, + 0.91, + 1.28, + 1.61, + 1.84, + 2.08, + 2.36, + 2.65, + 2.93, + 3.13, + 3.18, + 3.06, + 2.98, + 2.96, + 3.15, + 3.36, + 3.24, + 3.09, + 2.75, + 2.48, + 2.24, + 1.97, + 1.5, + 0.85, + 0.09, + -0.7000000000000001, + -1.35, + -1.96, + -2.27, + -2.5, + -2.5, + -2.31, + -2.07, + -1.8, + -1.46, + -1.03, + -0.6, + -0.19, + 0.19, + 0.63, + 0.93, + 0.8300000000000001, + 0.58, + 0.16, + -0.1, + -0.28, + -0.38, + -0.37, + -0.15, + 0.31, + 0.67, + 0.92, + 1.1, + 1.18, + 1.29, + 1.23, + 1.16, + 1.0, + 0.86, + 0.72, + 0.44, + 0.23, + 0.0, + -0.27, + -0.46, + -0.63, + -0.62, + -0.56, + -0.45, + -0.22, + 0.19, + 0.56, + 0.76, + 0.8200000000000001, + 0.9, + 1.01, + 1.12, + 1.25, + 1.32, + 1.51, + 1.58, + 1.58, + 1.35, + 1.0, + 0.97, + 1.21, + 1.86, + 2.14, + 2.18, + 2.02, + 1.62, + 1.49, + 1.23, + 0.85, + 0.5700000000000001, + 0.48, + 0.64, + 0.87, + 1.16, + 1.19, + 1.33, + 1.27, + 1.1300000000000001, + 1.02, + 0.8300000000000001, + 0.68, + 0.32, + 0.06, + -0.27, + -0.58, + -0.5700000000000001, + -0.52, + -0.2, + 0.1, + 0.35000000000000003, + 0.52, + 0.5700000000000001, + 0.55, + 0.41000000000000003, + 0.32, + 0.16, + 0.05, + 0.06, + 0.12, + 0.28, + 0.51, + 0.59, + 0.67, + 0.74, + 0.8, + 0.99, + 0.9500000000000001, + 0.79, + 0.36, + -0.07, + -0.16, + -0.22, + -0.15, + -0.2, + -0.15, + -0.1, + 0.06, + 0.03, + -0.08, + -0.36, + -0.61, + -0.85, + -1.03, + -1.11, + -1.18, + -1.12, + -1.1500000000000001, + -1.03, + -0.9400000000000001, + -0.78, + -0.47000000000000003, + -0.22, + -0.04, + -0.01, + -0.02, + 0.07, + 0.28, + 0.33, + 0.36, + 0.25, + 0.12, + 0.15, + 0.19, + 0.35000000000000003, + 0.42, + 0.27, + 0.05, + -0.18, + -0.18, + 0.04, + 0.38, + 0.73, + 0.78, + 0.73, + 0.48, + 0.29, + 0.23, + 0.17, + 0.18, + 0.24, + 0.4, + 0.63, + 0.8300000000000001, + 1.07, + 1.1, + 1.07, + 0.87, + 0.67, + 0.41000000000000003, + 0.07, + -0.34, + -0.8300000000000001, + -1.23, + -1.36, + -1.4000000000000001, + -1.35, + -1.48, + -1.9000000000000001, + -2.3000000000000003, + -2.36, + -2.49, + -2.41, + -2.2600000000000002 + ], + [ + 3.58, + 3.5300000000000002, + 3.3200000000000003, + 3.09, + 2.99, + 2.95, + 2.89, + 2.82, + 2.72, + 2.63, + 2.52, + 2.39, + 2.2600000000000002, + 2.14, + 2.0300000000000002, + 1.94, + 1.8900000000000001, + 1.86, + 1.86, + 1.86, + 1.9100000000000001, + 1.96, + 2.0100000000000002, + 2.06, + 2.07, + 2.06, + 2.07, + 2.1, + 2.19, + 2.32, + 2.46, + 2.58, + 2.64, + 2.63, + 2.68, + 2.7, + 2.69, + 2.68, + 2.72, + 2.72, + 2.67, + 2.63, + 2.64, + 2.73, + 2.85, + 3.0, + 3.12, + 3.18, + 3.16, + 3.17, + 3.18, + 3.16, + 3.15, + 3.12, + 3.1, + 3.1, + 3.16, + 3.2800000000000002, + 3.38, + 3.37, + 3.42, + 3.49, + 3.65, + 3.95, + 4.34, + 4.72, + 4.98, + 5.15, + 5.21, + 5.24, + 5.3, + 5.3500000000000005, + 5.34, + 5.2, + 5.0200000000000005, + 4.78, + 4.72, + 4.91, + 5.3, + 6.0, + 6.7700000000000005, + 7.45, + 8.07, + 8.0, + 7.82, + 7.1000000000000005, + 6.33, + 5.63, + 5.03, + 4.55, + 4.05, + 3.62, + 3.18, + 2.83, + 2.58, + 2.38, + 2.27, + 2.15, + 2.04, + 1.95, + 1.8800000000000001, + 1.82, + 1.82, + 1.86, + 1.96, + 1.99, + 2.02, + 2.02, + 2.0300000000000002, + 2.08, + 2.09, + 2.14, + 2.16, + 2.21, + 2.2600000000000002, + 2.29, + 2.3000000000000003, + 2.32, + 2.32, + 2.2800000000000002, + 2.1, + 1.83, + 1.49, + 1.06, + 0.74, + 0.43, + 0.35000000000000003, + 0.39, + 0.55, + 0.76, + 0.87, + 0.98, + 1.03, + 0.98, + 0.8200000000000001, + 0.55, + 0.31, + 0.2, + 0.24, + 0.47000000000000003, + 0.76, + 1.12, + 1.3900000000000001, + 1.61, + 1.82, + 2.1, + 2.38, + 2.65, + 2.87, + 2.92, + 2.84, + 2.7800000000000002, + 2.95, + 3.16, + 3.19, + 3.11, + 2.72, + 2.37, + 2.12, + 1.9100000000000001, + 1.6300000000000001, + 1.22, + 0.64, + 0.04, + -0.63, + -1.22, + -1.76, + -2.2800000000000002, + -2.37, + -2.2600000000000002, + -2.0100000000000002, + -1.71, + -1.44, + -1.1400000000000001, + -0.74, + -0.37, + 0.01, + 0.37, + 0.78, + 0.97, + 0.9400000000000001, + 0.55, + 0.15, + -0.05, + -0.15, + -0.24, + -0.28, + -0.16, + -0.04, + 0.26, + 0.37, + 0.56, + 0.71, + 0.8300000000000001, + 0.96, + 0.92, + 0.93, + 0.8200000000000001, + 0.63, + 0.36, + 0.0, + -0.27, + -0.35000000000000003, + -0.47000000000000003, + -0.55, + -0.56, + -0.53, + -0.49, + -0.31, + -0.11, + 0.17, + 0.24, + 0.36, + 0.48, + 0.65, + 0.9400000000000001, + 1.11, + 1.33, + 1.51, + 1.6600000000000001, + 1.68, + 1.48, + 1.19, + 0.9500000000000001, + 1.09, + 1.17, + 1.2, + 1.03, + 0.68, + 0.63, + 0.59, + 0.5700000000000001, + 0.42, + 0.14, + -0.06, + 0.14, + 0.51, + 0.85, + 1.34, + 1.43, + 1.34, + 1.19, + 0.97, + 0.81, + 0.61, + 0.27, + -0.12, + -0.53, + -0.7000000000000001, + -0.79, + -0.5700000000000001, + -0.31, + -0.07, + 0.1, + 0.29, + 0.4, + 0.44, + 0.44, + 0.36, + 0.32, + 0.21, + 0.14, + 0.21, + 0.38, + 0.62, + 0.88, + 1.0, + 0.99, + 1.08, + 1.07, + 1.05, + 0.76, + 0.35000000000000003, + 0.03, + -0.11, + -0.03, + 0.11, + 0.17, + 0.28, + 0.29, + 0.27, + 0.15, + -0.2, + -0.48, + -0.81, + -1.01, + -1.1, + -1.1500000000000001, + -0.99, + -0.91, + -0.78, + -0.65, + -0.54, + -0.37, + -0.28, + -0.11, + -0.03, + -0.02, + 0.02, + 0.14, + 0.29, + 0.39, + 0.37, + 0.3, + 0.15, + 0.03, + 0.04, + 0.01, + 0.08, + 0.08, + -0.09, + -0.17, + -0.17, + -0.02, + 0.3, + 0.51, + 0.6, + 0.41000000000000003, + 0.15, + 0.07, + 0.02, + 0.03, + 0.0, + -0.02, + -0.05, + 0.15, + 0.29, + 0.5, + 0.63, + 0.63, + 0.64, + 0.49, + 0.34, + 0.01, + -0.45, + -0.97, + -1.42, + -1.6600000000000001, + -1.55, + -1.49, + -1.6500000000000001, + -2.09, + -2.41, + -2.59, + -2.21, + -1.8, + -1.49 + ], + [ + 3.59, + 3.5500000000000003, + 3.3200000000000003, + 3.0700000000000003, + 2.98, + 2.93, + 2.86, + 2.7800000000000002, + 2.68, + 2.58, + 2.47, + 2.35, + 2.22, + 2.1, + 1.98, + 1.8900000000000001, + 1.83, + 1.8, + 1.8, + 1.84, + 1.9000000000000001, + 1.97, + 2.04, + 2.08, + 2.1, + 2.1, + 2.12, + 2.19, + 2.3000000000000003, + 2.43, + 2.56, + 2.65, + 2.66, + 2.65, + 2.66, + 2.68, + 2.66, + 2.65, + 2.59, + 2.58, + 2.5500000000000003, + 2.54, + 2.58, + 2.67, + 2.77, + 2.88, + 3.0, + 3.0500000000000003, + 3.0700000000000003, + 3.12, + 3.14, + 3.14, + 3.12, + 3.1, + 3.13, + 3.3000000000000003, + 3.36, + 3.46, + 3.5500000000000003, + 3.58, + 3.62, + 3.67, + 3.83, + 4.13, + 4.5200000000000005, + 4.86, + 5.13, + 5.25, + 5.28, + 5.33, + 5.4, + 5.45, + 5.42, + 5.3100000000000005, + 5.12, + 4.96, + 5.0200000000000005, + 5.26, + 5.78, + 6.46, + 7.11, + 7.75, + 7.73, + 7.66, + 7.03, + 6.3100000000000005, + 5.55, + 4.8500000000000005, + 4.3, + 3.81, + 3.41, + 3.02, + 2.69, + 2.42, + 2.23, + 2.11, + 2.0, + 1.9000000000000001, + 1.82, + 1.78, + 1.71, + 1.68, + 1.7, + 1.84, + 1.95, + 2.06, + 2.1, + 2.13, + 2.16, + 2.16, + 2.17, + 2.16, + 2.15, + 2.18, + 2.22, + 2.25, + 2.2800000000000002, + 2.33, + 2.39, + 2.37, + 2.27, + 1.98, + 1.57, + 1.1400000000000001, + 0.66, + 0.36, + 0.13, + 0.15, + 0.26, + 0.45, + 0.63, + 0.77, + 0.92, + 0.9400000000000001, + 0.8200000000000001, + 0.61, + 0.41000000000000003, + 0.31, + 0.33, + 0.49, + 0.75, + 1.03, + 1.26, + 1.41, + 1.6, + 1.8, + 2.08, + 2.37, + 2.57, + 2.64, + 2.58, + 2.61, + 2.77, + 2.95, + 3.0, + 2.66, + 2.23, + 1.9100000000000001, + 1.68, + 1.51, + 1.26, + 0.87, + 0.42, + 0.01, + -0.3, + -0.85, + -1.34, + -1.76, + -1.92, + -1.75, + -1.41, + -1.11, + -0.9400000000000001, + -0.66, + -0.38, + -0.02, + 0.2, + 0.53, + 0.74, + 0.91, + 0.72, + 0.33, + 0.03, + -0.14, + -0.11, + -0.08, + -0.13, + -0.19, + -0.11, + -0.15, + 0.0, + 0.07, + 0.25, + 0.41000000000000003, + 0.55, + 0.71, + 0.73, + 0.78, + 0.62, + 0.2, + -0.19, + -0.37, + -0.44, + -0.35000000000000003, + -0.34, + -0.41000000000000003, + -0.44, + -0.4, + -0.32, + -0.22, + -0.2, + -0.09, + 0.01, + 0.18, + 0.42, + 0.72, + 1.12, + 1.32, + 1.42, + 1.56, + 1.56, + 1.4000000000000001, + 1.1400000000000001, + 0.92, + 0.84, + 0.8, + 0.54, + 0.2, + 0.03, + 0.02, + 0.15, + 0.24, + 0.08, + -0.26, + -0.45, + -0.45, + -0.01, + 0.61, + 1.05, + 1.32, + 1.21, + 0.9500000000000001, + 0.74, + 0.75, + 0.5700000000000001, + 0.36, + -0.04, + -0.32, + -0.54, + -0.52, + -0.36, + -0.23, + -0.14, + -0.01, + 0.13, + 0.27, + 0.36, + 0.38, + 0.36, + 0.34, + 0.35000000000000003, + 0.29, + 0.3, + 0.47000000000000003, + 0.67, + 0.93, + 1.0, + 1.03, + 1.06, + 1.09, + 0.98, + 0.72, + 0.44, + 0.2, + 0.14, + 0.29, + 0.46, + 0.6900000000000001, + 0.72, + 0.74, + 0.59, + 0.29, + -0.09, + -0.52, + -0.8200000000000001, + -1.07, + -1.1400000000000001, + -0.99, + -0.8200000000000001, + -0.6, + -0.44, + -0.35000000000000003, + -0.22, + -0.18, + -0.08, + -0.05, + 0.0, + 0.01, + 0.04, + 0.12, + 0.19, + 0.28, + 0.26, + 0.2, + 0.1, + -0.04, + -0.19, + -0.2, + -0.19, + -0.18, + -0.15, + -0.21, + -0.25, + -0.14, + -0.01, + 0.18, + 0.22, + 0.03, + -0.05, + -0.1, + -0.01, + 0.05, + -0.08, + -0.28, + -0.35000000000000003, + -0.39, + -0.23, + -0.15, + 0.05, + 0.25, + 0.34, + 0.5700000000000001, + 0.44, + 0.19, + -0.28, + -0.89, + -1.3900000000000001, + -1.6600000000000001, + -1.6400000000000001, + -1.51, + -1.6300000000000001, + -1.93, + -2.27, + -2.08, + -1.59, + -0.99, + -0.51 + ], + [ + 3.59, + 3.54, + 3.3200000000000003, + 3.0700000000000003, + 2.96, + 2.9, + 2.83, + 2.74, + 2.64, + 2.5300000000000002, + 2.42, + 2.3000000000000003, + 2.18, + 2.05, + 1.94, + 1.84, + 1.77, + 1.75, + 1.76, + 1.8, + 1.87, + 1.96, + 2.05, + 2.11, + 2.13, + 2.15, + 2.2, + 2.32, + 2.43, + 2.56, + 2.67, + 2.7, + 2.7, + 2.66, + 2.67, + 2.66, + 2.64, + 2.5500000000000003, + 2.48, + 2.38, + 2.33, + 2.43, + 2.52, + 2.64, + 2.75, + 2.85, + 2.96, + 3.02, + 3.08, + 3.11, + 3.12, + 3.11, + 3.08, + 3.09, + 3.2600000000000002, + 3.43, + 3.65, + 3.73, + 3.72, + 3.74, + 3.72, + 3.7800000000000002, + 3.97, + 4.2700000000000005, + 4.64, + 4.99, + 5.22, + 5.33, + 5.37, + 5.42, + 5.53, + 5.63, + 5.63, + 5.5600000000000005, + 5.42, + 5.38, + 5.45, + 5.74, + 6.24, + 6.7700000000000005, + 7.390000000000001, + 7.5, + 7.49, + 6.84, + 6.19, + 5.48, + 4.74, + 4.12, + 3.58, + 3.18, + 2.83, + 2.52, + 2.2600000000000002, + 2.02, + 1.86, + 1.78, + 1.7, + 1.6400000000000001, + 1.62, + 1.59, + 1.55, + 1.54, + 1.6400000000000001, + 1.79, + 1.96, + 2.07, + 2.11, + 2.14, + 2.17, + 2.18, + 2.19, + 2.17, + 2.17, + 2.18, + 2.2, + 2.21, + 2.2600000000000002, + 2.34, + 2.44, + 2.52, + 2.44, + 2.2, + 1.78, + 1.27, + 0.8, + 0.35000000000000003, + 0.13, + -0.04, + 0.05, + 0.16, + 0.33, + 0.54, + 0.7000000000000001, + 0.8200000000000001, + 0.76, + 0.65, + 0.5, + 0.41000000000000003, + 0.43, + 0.54, + 0.75, + 0.99, + 1.19, + 1.28, + 1.34, + 1.52, + 1.75, + 2.05, + 2.38, + 2.45, + 2.35, + 2.37, + 2.5500000000000003, + 2.73, + 2.54, + 2.15, + 1.73, + 1.3900000000000001, + 1.23, + 1.08, + 0.8200000000000001, + 0.43, + 0.13, + -0.06, + -0.22, + -0.37, + -0.8, + -1.0, + -1.1500000000000001, + -1.0, + -0.68, + -0.52, + -0.36, + -0.26, + 0.01, + 0.19, + 0.41000000000000003, + 0.48, + 0.65, + 0.63, + 0.41000000000000003, + 0.14, + -0.1, + -0.13, + -0.02, + 0.13, + 0.22, + 0.14, + 0.04, + -0.02, + -0.08, + -0.02, + 0.03, + 0.19, + 0.33, + 0.48, + 0.67, + 0.73, + 0.59, + 0.19, + -0.27, + -0.51, + -0.35000000000000003, + -0.18, + -0.15, + -0.21, + -0.24, + -0.18, + -0.19, + -0.18, + -0.22, + -0.2, + -0.1, + 0.02, + 0.26, + 0.5, + 0.88, + 1.12, + 1.22, + 1.23, + 1.23, + 1.19, + 0.96, + 0.91, + 0.84, + 0.56, + 0.2, + -0.15, + -0.32, + -0.21, + 0.04, + 0.09, + -0.08, + -0.44, + -0.76, + -0.75, + -0.45, + 0.16, + 0.64, + 0.88, + 0.86, + 0.61, + 0.7000000000000001, + 0.71, + 0.88, + 0.72, + 0.46, + 0.19, + 0.02, + 0.04, + 0.02, + 0.05, + -0.03, + -0.04, + 0.08, + 0.22, + 0.31, + 0.31, + 0.32, + 0.34, + 0.36, + 0.38, + 0.39, + 0.46, + 0.65, + 0.68, + 0.75, + 0.81, + 0.86, + 0.98, + 0.9, + 0.7000000000000001, + 0.45, + 0.32, + 0.32, + 0.42, + 0.62, + 0.8200000000000001, + 0.9500000000000001, + 0.9, + 0.75, + 0.42, + 0.04, + -0.39, + -0.74, + -0.97, + -1.05, + -0.9, + -0.61, + -0.37, + -0.3, + -0.2, + -0.21, + -0.17, + -0.08, + -0.03, + 0.01, + 0.03, + 0.05, + 0.09, + 0.14, + 0.17, + 0.17, + 0.12, + 0.03, + -0.16, + -0.28, + -0.33, + -0.3, + -0.26, + -0.23, + -0.25, + -0.3, + -0.38, + -0.29, + -0.1, + -0.09, + -0.1, + -0.17, + -0.03, + 0.13, + 0.14, + -0.01, + -0.26, + -0.43, + -0.49, + -0.51, + -0.42, + -0.3, + -0.03, + 0.4, + 0.63, + 0.8, + 0.56, + 0.09, + -0.51, + -1.1400000000000001, + -1.46, + -1.52, + -1.44, + -1.32, + -1.48, + -1.51, + -1.16, + -0.6, + 0.09, + 0.42 + ], + [ + 3.59, + 3.54, + 3.31, + 3.0500000000000003, + 2.94, + 2.88, + 2.8000000000000003, + 2.7, + 2.59, + 2.48, + 2.36, + 2.24, + 2.12, + 2.0, + 1.8900000000000001, + 1.79, + 1.72, + 1.69, + 1.69, + 1.74, + 1.81, + 1.92, + 2.0300000000000002, + 2.11, + 2.16, + 2.2, + 2.31, + 2.43, + 2.57, + 2.67, + 2.72, + 2.74, + 2.68, + 2.64, + 2.6, + 2.59, + 2.52, + 2.42, + 2.27, + 2.15, + 2.16, + 2.27, + 2.47, + 2.64, + 2.77, + 2.89, + 2.97, + 3.0300000000000002, + 3.08, + 3.1, + 3.1, + 3.0700000000000003, + 3.0500000000000003, + 3.15, + 3.33, + 3.59, + 3.8000000000000003, + 3.84, + 3.83, + 3.74, + 3.72, + 3.84, + 4.03, + 4.37, + 4.75, + 5.08, + 5.3, + 5.41, + 5.45, + 5.54, + 5.69, + 5.87, + 5.99, + 5.94, + 5.87, + 5.8100000000000005, + 5.84, + 6.1000000000000005, + 6.43, + 6.94, + 7.13, + 7.24, + 6.72, + 6.05, + 5.29, + 4.57, + 4.0, + 3.43, + 2.97, + 2.62, + 2.33, + 2.09, + 1.85, + 1.6400000000000001, + 1.52, + 1.49, + 1.44, + 1.43, + 1.43, + 1.43, + 1.41, + 1.48, + 1.59, + 1.75, + 1.92, + 2.02, + 2.07, + 2.08, + 2.1, + 2.18, + 2.21, + 2.23, + 2.24, + 2.22, + 2.22, + 2.21, + 2.23, + 2.33, + 2.49, + 2.62, + 2.67, + 2.43, + 2.0300000000000002, + 1.52, + 1.0, + 0.55, + 0.11, + -0.05, + -0.14, + -0.05, + 0.1, + 0.3, + 0.53, + 0.67, + 0.71, + 0.64, + 0.54, + 0.47000000000000003, + 0.46, + 0.54, + 0.71, + 0.92, + 1.08, + 1.1, + 1.11, + 1.16, + 1.41, + 1.8800000000000001, + 2.21, + 2.31, + 2.22, + 2.18, + 2.35, + 2.35, + 2.13, + 1.68, + 1.23, + 0.9500000000000001, + 0.79, + 0.64, + 0.35000000000000003, + 0.01, + -0.25, + -0.29, + -0.23, + -0.24, + -0.27, + -0.44, + -0.41000000000000003, + -0.29, + -0.17, + -0.02, + -0.04, + 0.06, + 0.2, + 0.37, + 0.33, + 0.34, + 0.33, + 0.25, + 0.18, + 0.01, + -0.08, + 0.0, + 0.21, + 0.51, + 0.68, + 0.78, + 0.59, + 0.41000000000000003, + 0.26, + 0.1, + 0.12, + 0.11, + 0.25, + 0.37, + 0.56, + 0.72, + 0.59, + 0.26, + -0.19, + -0.42, + -0.27, + -0.03, + 0.04, + -0.06, + -0.1, + -0.05, + -0.03, + -0.07, + -0.12, + -0.13, + -0.05, + 0.04, + 0.12, + 0.36, + 0.53, + 0.77, + 0.8, + 0.8, + 0.9, + 0.87, + 0.97, + 0.99, + 0.88, + 0.59, + 0.06, + -0.35000000000000003, + -0.48, + -0.33, + -0.06, + 0.06, + -0.14, + -0.5, + -0.84, + -0.89, + -0.65, + -0.34, + 0.14, + 0.33, + 0.31, + 0.54, + 0.64, + 1.04, + 1.25, + 1.34, + 1.17, + 0.88, + 0.74, + 0.5700000000000001, + 0.48, + 0.29, + 0.07, + -0.01, + 0.05, + 0.2, + 0.31, + 0.33, + 0.36, + 0.37, + 0.33, + 0.35000000000000003, + 0.34, + 0.41000000000000003, + 0.41000000000000003, + 0.44, + 0.4, + 0.45, + 0.68, + 0.8200000000000001, + 0.86, + 0.7000000000000001, + 0.51, + 0.39, + 0.27, + 0.23, + 0.38, + 0.51, + 0.68, + 0.68, + 0.58, + 0.39, + 0.04, + -0.23, + -0.5700000000000001, + -0.77, + -0.85, + -0.8300000000000001, + -0.54, + -0.42, + -0.35000000000000003, + -0.38, + -0.42, + -0.35000000000000003, + -0.26, + -0.09, + -0.01, + 0.03, + 0.06, + 0.12, + 0.19, + 0.21, + 0.22, + 0.17, + 0.09, + -0.07, + -0.19, + -0.23, + -0.25, + -0.21, + -0.22, + -0.24, + -0.36, + -0.45, + -0.31, + -0.12, + 0.08, + 0.1, + 0.09, + 0.21, + 0.33, + 0.31, + 0.16, + -0.05, + -0.22, + -0.24, + -0.33, + -0.36, + -0.24, + 0.07, + 0.5, + 0.85, + 1.02, + 0.92, + 0.46, + -0.09, + -0.71, + -1.18, + -1.28, + -1.11, + -0.96, + -0.7000000000000001, + -0.45, + -0.1, + 0.54, + 1.06, + 1.3 + ], + [ + 3.56, + 3.52, + 3.2800000000000002, + 3.02, + 2.91, + 2.85, + 2.7600000000000002, + 2.66, + 2.5500000000000003, + 2.43, + 2.31, + 2.19, + 2.07, + 1.95, + 1.83, + 1.73, + 1.6500000000000001, + 1.62, + 1.62, + 1.6600000000000001, + 1.73, + 1.84, + 1.98, + 2.1, + 2.18, + 2.2600000000000002, + 2.38, + 2.5100000000000002, + 2.63, + 2.68, + 2.72, + 2.66, + 2.6, + 2.52, + 2.48, + 2.44, + 2.37, + 2.22, + 2.05, + 1.97, + 2.0, + 2.21, + 2.46, + 2.67, + 2.82, + 2.92, + 2.99, + 3.0300000000000002, + 3.06, + 3.0700000000000003, + 3.0500000000000003, + 3.0300000000000002, + 3.08, + 3.19, + 3.45, + 3.71, + 3.8200000000000003, + 3.87, + 3.71, + 3.62, + 3.71, + 3.84, + 4.12, + 4.48, + 4.86, + 5.18, + 5.4, + 5.5, + 5.59, + 5.72, + 5.94, + 6.21, + 6.390000000000001, + 6.43, + 6.3100000000000005, + 6.09, + 6.08, + 6.09, + 6.4, + 6.54, + 6.73, + 6.42, + 5.88, + 5.13, + 4.3500000000000005, + 3.79, + 3.2600000000000002, + 2.82, + 2.42, + 2.1, + 1.84, + 1.6300000000000001, + 1.41, + 1.28, + 1.28, + 1.27, + 1.27, + 1.27, + 1.28, + 1.3, + 1.3800000000000001, + 1.45, + 1.58, + 1.73, + 1.85, + 1.96, + 1.98, + 1.99, + 2.09, + 2.18, + 2.2600000000000002, + 2.31, + 2.32, + 2.31, + 2.2600000000000002, + 2.22, + 2.22, + 2.3000000000000003, + 2.5, + 2.72, + 2.81, + 2.64, + 2.25, + 1.79, + 1.26, + 0.71, + 0.26, + -0.11, + -0.2, + -0.19, + -0.04, + 0.17, + 0.42, + 0.59, + 0.65, + 0.62, + 0.55, + 0.46, + 0.41000000000000003, + 0.44, + 0.55, + 0.77, + 0.9, + 0.9, + 0.81, + 0.85, + 1.2, + 1.68, + 2.11, + 2.22, + 2.0100000000000002, + 1.97, + 2.0300000000000002, + 2.0100000000000002, + 1.76, + 1.3, + 0.85, + 0.58, + 0.41000000000000003, + 0.23, + -0.04, + -0.37, + -0.58, + -0.5700000000000001, + -0.41000000000000003, + -0.28, + -0.19, + -0.13, + -0.08, + 0.01, + 0.14, + 0.15, + 0.14, + 0.25, + 0.39, + 0.34, + 0.25, + 0.02, + -0.07, + -0.04, + -0.05, + 0.03, + 0.11, + 0.18, + 0.41000000000000003, + 0.81, + 1.16, + 1.3, + 1.22, + 0.93, + 0.58, + 0.36, + 0.15, + 0.13, + 0.13, + 0.26, + 0.45, + 0.62, + 0.71, + 0.39, + 0.03, + -0.15, + -0.18, + 0.01, + 0.09, + -0.02, + -0.09, + -0.08, + -0.02, + -0.07, + -0.07, + -0.01, + 0.07, + 0.2, + 0.24, + 0.31, + 0.46, + 0.42, + 0.44, + 0.43, + 0.54, + 0.74, + 0.88, + 1.01, + 0.93, + 0.5700000000000001, + 0.01, + -0.45, + -0.58, + -0.47000000000000003, + -0.23, + -0.09, + -0.26, + -0.59, + -0.85, + -0.9500000000000001, + -0.8300000000000001, + -0.5700000000000001, + -0.37, + -0.17, + 0.09, + 0.32, + 0.76, + 1.19, + 1.58, + 1.7, + 1.7, + 1.45, + 1.23, + 1.02, + 0.75, + 0.44, + 0.15, + 0.01, + 0.06, + 0.21, + 0.36, + 0.48, + 0.49, + 0.44, + 0.38, + 0.26, + 0.25, + 0.26, + 0.27, + 0.23, + 0.19, + 0.23, + 0.47000000000000003, + 0.73, + 0.8, + 0.79, + 0.67, + 0.41000000000000003, + 0.17, + -0.06, + -0.17, + -0.02, + 0.08, + 0.18, + 0.17, + 0.07, + -0.05, + -0.26, + -0.29, + -0.5, + -0.7000000000000001, + -0.67, + -0.74, + -0.63, + -0.63, + -0.7000000000000001, + -0.74, + -0.68, + -0.42, + -0.19, + -0.06, + 0.0, + 0.05, + 0.15, + 0.25, + 0.34, + 0.35000000000000003, + 0.4, + 0.34, + 0.38, + 0.23, + 0.07, + 0.04, + -0.05, + -0.06, + -0.16, + -0.28, + -0.24, + -0.05, + 0.48, + 0.8200000000000001, + 0.81, + 0.8300000000000001, + 0.68, + 0.64, + 0.54, + 0.35000000000000003, + 0.19, + 0.14, + 0.08, + -0.01, + -0.09, + 0.05, + 0.33, + 0.64, + 1.0, + 1.08, + 0.98, + 0.8, + 0.25, + -0.22, + -0.67, + -0.85, + -0.67, + -0.3, + 0.1, + 0.43, + 0.84, + 1.28, + 1.59, + 1.8800000000000001 + ], + [ + 3.54, + 3.48, + 3.2600000000000002, + 3.0100000000000002, + 2.89, + 2.81, + 2.73, + 2.62, + 2.5, + 2.37, + 2.25, + 2.13, + 2.0100000000000002, + 1.8800000000000001, + 1.76, + 1.6500000000000001, + 1.58, + 1.55, + 1.56, + 1.57, + 1.6300000000000001, + 1.74, + 1.8900000000000001, + 2.06, + 2.18, + 2.2800000000000002, + 2.4, + 2.5300000000000002, + 2.57, + 2.62, + 2.57, + 2.52, + 2.42, + 2.34, + 2.31, + 2.27, + 2.17, + 2.0100000000000002, + 1.87, + 1.81, + 1.93, + 2.21, + 2.47, + 2.69, + 2.83, + 2.91, + 2.97, + 2.99, + 3.0300000000000002, + 3.02, + 3.02, + 3.0100000000000002, + 3.08, + 3.34, + 3.59, + 3.66, + 3.7800000000000002, + 3.67, + 3.5, + 3.5100000000000002, + 3.61, + 3.9, + 4.22, + 4.6000000000000005, + 4.98, + 5.3100000000000005, + 5.53, + 5.71, + 5.86, + 6.04, + 6.36, + 6.640000000000001, + 6.83, + 6.8500000000000005, + 6.5600000000000005, + 6.28, + 5.92, + 5.9, + 5.8500000000000005, + 5.99, + 5.8500000000000005, + 5.5200000000000005, + 4.88, + 4.1, + 3.5300000000000002, + 3.02, + 2.62, + 2.23, + 1.8800000000000001, + 1.59, + 1.36, + 1.1500000000000001, + 1.04, + 1.05, + 1.08, + 1.1300000000000001, + 1.1500000000000001, + 1.18, + 1.2, + 1.32, + 1.4000000000000001, + 1.51, + 1.6300000000000001, + 1.72, + 1.84, + 1.8900000000000001, + 1.9000000000000001, + 1.95, + 2.07, + 2.2, + 2.29, + 2.38, + 2.39, + 2.38, + 2.33, + 2.25, + 2.2, + 2.2600000000000002, + 2.45, + 2.72, + 2.84, + 2.73, + 2.38, + 1.94, + 1.43, + 0.87, + 0.31, + -0.07, + -0.28, + -0.25, + -0.13, + 0.1, + 0.35000000000000003, + 0.53, + 0.59, + 0.56, + 0.48, + 0.38, + 0.29, + 0.26, + 0.35000000000000003, + 0.54, + 0.71, + 0.72, + 0.61, + 0.72, + 1.05, + 1.62, + 2.07, + 1.98, + 1.76, + 1.57, + 1.62, + 1.72, + 1.46, + 1.07, + 0.65, + 0.3, + 0.12, + -0.05, + -0.3, + -0.61, + -0.75, + -0.78, + -0.63, + -0.43, + -0.27, + -0.14, + -0.04, + 0.08, + 0.19, + 0.21, + 0.34, + 0.45, + 0.58, + 0.52, + 0.17, + -0.1, + -0.32, + -0.28, + -0.08, + 0.14, + 0.27, + 0.34, + 0.49, + 0.8, + 1.29, + 1.51, + 1.49, + 1.1400000000000001, + 0.76, + 0.38, + 0.15, + 0.03, + 0.02, + 0.14, + 0.35000000000000003, + 0.6, + 0.7000000000000001, + 0.62, + 0.3, + -0.06, + -0.14, + -0.09, + -0.1, + -0.09, + -0.12, + -0.11, + -0.04, + -0.04, + 0.04, + 0.12, + 0.27, + 0.4, + 0.51, + 0.54, + 0.39, + 0.32, + 0.17, + 0.17, + 0.22, + 0.43, + 0.63, + 0.74, + 0.76, + 0.35000000000000003, + -0.06, + -0.44, + -0.7000000000000001, + -0.64, + -0.47000000000000003, + -0.44, + -0.52, + -0.76, + -0.98, + -1.0, + -0.91, + -0.72, + -0.55, + -0.32, + -0.06, + 0.26, + 0.72, + 1.08, + 1.44, + 1.71, + 1.6600000000000001, + 1.62, + 1.37, + 1.2, + 0.89, + 0.55, + 0.25, + 0.05, + 0.1, + 0.24, + 0.4, + 0.56, + 0.64, + 0.5700000000000001, + 0.42, + 0.27, + 0.18, + 0.19, + 0.26, + 0.22, + 0.16, + 0.23, + 0.32, + 0.59, + 0.84, + 0.9, + 0.84, + 0.59, + 0.16, + -0.2, + -0.49, + -0.48, + -0.39, + -0.32, + -0.29, + -0.34, + -0.37, + -0.19, + -0.17, + -0.21, + -0.42, + -0.81, + -0.9, + -1.0, + -1.03, + -1.02, + -1.05, + -0.93, + -0.62, + -0.3, + -0.15, + -0.08, + -0.01, + 0.12, + 0.26, + 0.39, + 0.48, + 0.59, + 0.78, + 0.8300000000000001, + 0.74, + 0.56, + 0.36, + 0.27, + 0.14, + 0.03, + -0.03, + 0.05, + 0.66, + 1.36, + 1.97, + 2.08, + 1.75, + 1.47, + 1.06, + 0.75, + 0.55, + 0.41000000000000003, + 0.35000000000000003, + 0.23, + 0.16, + 0.11, + 0.23, + 0.44, + 0.74, + 0.84, + 0.9400000000000001, + 1.02, + 0.8300000000000001, + 0.79, + 0.35000000000000003, + -0.01, + -0.13, + -0.05, + 0.37, + 0.76, + 1.08, + 1.27, + 1.4000000000000001, + 1.73, + 1.9100000000000001 + ], + [ + 3.5, + 3.48, + 3.23, + 2.97, + 2.86, + 2.7800000000000002, + 2.69, + 2.58, + 2.45, + 2.33, + 2.19, + 2.07, + 1.94, + 1.81, + 1.68, + 1.57, + 1.52, + 1.5, + 1.49, + 1.5, + 1.52, + 1.62, + 1.78, + 1.96, + 2.14, + 2.27, + 2.38, + 2.44, + 2.49, + 2.47, + 2.43, + 2.34, + 2.23, + 2.18, + 2.14, + 2.09, + 1.98, + 1.84, + 1.72, + 1.72, + 1.92, + 2.2, + 2.48, + 2.67, + 2.77, + 2.85, + 2.88, + 2.94, + 3.02, + 3.0300000000000002, + 3.06, + 3.06, + 3.2800000000000002, + 3.5300000000000002, + 3.65, + 3.69, + 3.5, + 3.39, + 3.38, + 3.41, + 3.66, + 4.0, + 4.34, + 4.73, + 5.14, + 5.48, + 5.78, + 6.03, + 6.2700000000000005, + 6.59, + 6.86, + 7.12, + 7.26, + 7.04, + 6.73, + 6.16, + 5.72, + 5.36, + 5.28, + 5.12, + 4.96, + 4.51, + 3.83, + 3.2600000000000002, + 2.7600000000000002, + 2.4, + 2.06, + 1.72, + 1.41, + 1.1500000000000001, + 0.96, + 0.8200000000000001, + 0.8300000000000001, + 0.87, + 0.96, + 1.04, + 1.12, + 1.1500000000000001, + 1.28, + 1.4000000000000001, + 1.53, + 1.6300000000000001, + 1.69, + 1.77, + 1.83, + 1.8800000000000001, + 1.8900000000000001, + 1.95, + 2.06, + 2.2, + 2.3000000000000003, + 2.38, + 2.43, + 2.42, + 2.38, + 2.3000000000000003, + 2.2, + 2.24, + 2.4, + 2.62, + 2.8000000000000003, + 2.67, + 2.38, + 1.9100000000000001, + 1.43, + 0.87, + 0.29, + -0.14, + -0.35000000000000003, + -0.33, + -0.19, + 0.01, + 0.26, + 0.42, + 0.44, + 0.41000000000000003, + 0.3, + 0.23, + 0.14, + 0.08, + 0.17, + 0.35000000000000003, + 0.5700000000000001, + 0.61, + 0.59, + 0.65, + 1.09, + 1.6600000000000001, + 1.87, + 1.76, + 1.34, + 1.1300000000000001, + 1.25, + 1.37, + 1.3900000000000001, + 1.04, + 0.5700000000000001, + 0.25, + -0.03, + -0.19, + -0.4, + -0.6, + -0.8, + -0.78, + -0.6900000000000001, + -0.47000000000000003, + -0.31, + -0.16, + -0.04, + 0.09, + 0.22, + 0.36, + 0.5, + 0.73, + 0.87, + 0.81, + 0.43, + -0.01, + -0.17, + -0.24, + 0.05, + 0.31, + 0.44, + 0.4, + 0.41000000000000003, + 0.63, + 0.98, + 1.37, + 1.3, + 1.04, + 0.67, + 0.29, + 0.09, + -0.05, + -0.03, + 0.09, + 0.34, + 0.62, + 0.78, + 0.7000000000000001, + 0.41000000000000003, + 0.01, + -0.29, + -0.33, + -0.25, + -0.2, + -0.11, + 0.02, + 0.09, + 0.2, + 0.24, + 0.3, + 0.45, + 0.5, + 0.65, + 0.47000000000000003, + 0.31, + 0.13, + -0.05, + -0.13, + -0.08, + -0.03, + 0.14, + 0.24, + 0.18, + 0.1, + -0.24, + -0.56, + -0.79, + -0.89, + -0.85, + -0.8, + -0.9, + -1.02, + -1.02, + -1.04, + -0.87, + -0.7000000000000001, + -0.48, + -0.27, + -0.05, + 0.28, + 0.51, + 0.84, + 1.07, + 1.28, + 1.41, + 1.32, + 1.3, + 1.1300000000000001, + 0.93, + 0.62, + 0.33, + 0.19, + 0.14, + 0.21, + 0.38, + 0.53, + 0.67, + 0.64, + 0.48, + 0.31, + 0.2, + 0.22, + 0.29, + 0.38, + 0.34, + 0.24, + 0.35000000000000003, + 0.49, + 0.75, + 1.0, + 0.97, + 0.8200000000000001, + 0.43, + -0.05, + -0.26, + -0.5, + -0.49, + -0.53, + -0.61, + -0.66, + -0.47000000000000003, + -0.24, + 0.02, + 0.02, + -0.39, + -0.84, + -1.2, + -1.32, + -1.34, + -1.31, + -1.22, + -1.03, + -0.8, + -0.51, + -0.31, + -0.27, + -0.17, + -0.03, + 0.15, + 0.28, + 0.43, + 0.59, + 0.89, + 0.99, + 0.97, + 0.79, + 0.59, + 0.49, + 0.35000000000000003, + 0.19, + 0.12, + 0.46, + 1.19, + 2.32, + 2.98, + 3.21, + 2.8000000000000003, + 2.13, + 1.44, + 0.9400000000000001, + 0.64, + 0.49, + 0.32, + 0.21, + 0.02, + 0.0, + 0.04, + 0.28, + 0.34, + 0.46, + 0.63, + 0.73, + 1.09, + 1.09, + 1.07, + 0.75, + 0.45, + 0.53, + 0.8, + 1.09, + 1.33, + 1.29, + 1.27, + 1.3800000000000001, + 1.6600000000000001 + ], + [ + 3.47, + 3.41, + 3.2, + 2.97, + 2.84, + 2.75, + 2.66, + 2.54, + 2.41, + 2.27, + 2.14, + 2.0100000000000002, + 1.87, + 1.74, + 1.61, + 1.52, + 1.49, + 1.48, + 1.48, + 1.45, + 1.46, + 1.51, + 1.6600000000000001, + 1.86, + 2.06, + 2.23, + 2.33, + 2.38, + 2.4, + 2.38, + 2.32, + 2.21, + 2.14, + 2.07, + 2.02, + 1.96, + 1.81, + 1.67, + 1.57, + 1.62, + 1.86, + 2.17, + 2.42, + 2.5500000000000003, + 2.67, + 2.71, + 2.8000000000000003, + 2.98, + 3.11, + 3.25, + 3.2600000000000002, + 3.43, + 3.59, + 3.8000000000000003, + 3.88, + 3.65, + 3.4, + 3.31, + 3.33, + 3.5300000000000002, + 3.86, + 4.15, + 4.51, + 4.9, + 5.32, + 5.74, + 6.1000000000000005, + 6.48, + 6.86, + 7.17, + 7.43, + 7.6000000000000005, + 7.46, + 7.23, + 6.62, + 6.0200000000000005, + 5.39, + 4.93, + 4.53, + 4.34, + 4.0200000000000005, + 3.5300000000000002, + 3.06, + 2.56, + 2.23, + 1.96, + 1.6600000000000001, + 1.3900000000000001, + 1.12, + 0.96, + 0.76, + 0.76, + 0.74, + 0.8200000000000001, + 0.91, + 1.02, + 1.12, + 1.28, + 1.4000000000000001, + 1.54, + 1.68, + 1.73, + 1.78, + 1.82, + 1.87, + 1.8900000000000001, + 1.9100000000000001, + 2.0, + 2.13, + 2.23, + 2.32, + 2.39, + 2.44, + 2.46, + 2.42, + 2.36, + 2.29, + 2.24, + 2.35, + 2.56, + 2.62, + 2.56, + 2.16, + 1.74, + 1.18, + 0.64, + 0.14, + -0.3, + -0.46, + -0.42, + -0.29, + -0.09, + 0.06, + 0.16, + 0.19, + 0.1, + 0.06, + 0.01, + -0.03, + -0.03, + 0.02, + 0.27, + 0.51, + 0.5700000000000001, + 0.53, + 0.72, + 1.1300000000000001, + 1.54, + 1.76, + 1.44, + 0.9500000000000001, + 0.78, + 0.98, + 1.32, + 1.4000000000000001, + 1.2, + 0.77, + 0.26, + -0.02, + -0.22, + -0.39, + -0.55, + -0.67, + -0.72, + -0.6, + -0.39, + -0.18, + -0.06, + 0.02, + 0.15, + 0.28, + 0.44, + 0.66, + 0.92, + 1.12, + 1.02, + 0.86, + 0.45, + 0.16, + 0.2, + 0.26, + 0.48, + 0.61, + 0.47000000000000003, + 0.3, + 0.44, + 0.7000000000000001, + 0.9400000000000001, + 1.0, + 0.79, + 0.45, + 0.27, + 0.05, + -0.09, + -0.07, + 0.1, + 0.37, + 0.63, + 0.77, + 0.71, + 0.34, + 0.01, + -0.28, + -0.41000000000000003, + -0.24, + -0.17, + 0.0, + 0.16, + 0.25, + 0.4, + 0.39, + 0.42, + 0.36, + 0.44, + 0.24, + 0.12, + -0.07, + -0.25, + -0.33, + -0.42, + -0.45, + -0.42, + -0.46, + -0.41000000000000003, + -0.34, + -0.39, + -0.54, + -0.84, + -1.1300000000000001, + -1.33, + -1.27, + -1.22, + -1.22, + -1.06, + -1.02, + -0.8300000000000001, + -0.71, + -0.54, + -0.32, + -0.14, + 0.07, + 0.22, + 0.42, + 0.54, + 0.73, + 0.89, + 1.0, + 1.03, + 1.04, + 0.99, + 0.8, + 0.6, + 0.37, + 0.21, + 0.14, + 0.14, + 0.23, + 0.41000000000000003, + 0.51, + 0.5700000000000001, + 0.46, + 0.3, + 0.21, + 0.22, + 0.35000000000000003, + 0.47000000000000003, + 0.5, + 0.39, + 0.3, + 0.43, + 0.63, + 0.85, + 1.06, + 0.92, + 0.76, + 0.46, + 0.14, + -0.07, + -0.29, + -0.51, + -0.68, + -0.65, + -0.5, + -0.09, + 0.21, + 0.07, + -0.38, + -0.9, + -1.29, + -1.45, + -1.42, + -1.3, + -1.1, + -1.02, + -0.76, + -0.67, + -0.5700000000000001, + -0.51, + -0.4, + -0.25, + -0.08, + 0.08, + 0.2, + 0.37, + 0.54, + 0.78, + 0.76, + 0.66, + 0.64, + 0.55, + 0.41000000000000003, + 0.22, + 0.21, + 0.61, + 1.46, + 2.62, + 3.6, + 3.54, + 3.31, + 2.36, + 1.56, + 0.9400000000000001, + 0.59, + 0.36, + 0.17, + -0.14, + -0.32, + -0.48, + -0.41000000000000003, + -0.41000000000000003, + -0.31, + -0.13, + 0.07, + 0.55, + 1.0, + 1.46, + 1.47, + 1.3, + 0.93, + 0.66, + 0.76, + 1.1, + 1.16, + 1.1300000000000001, + 1.01, + 0.96, + 1.1 + ], + [ + 3.43, + 3.42, + 3.17, + 2.91, + 2.81, + 2.73, + 2.62, + 2.5, + 2.37, + 2.23, + 2.09, + 1.96, + 1.83, + 1.69, + 1.58, + 1.52, + 1.5, + 1.52, + 1.51, + 1.48, + 1.44, + 1.51, + 1.59, + 1.82, + 2.02, + 2.19, + 2.3000000000000003, + 2.36, + 2.37, + 2.33, + 2.2600000000000002, + 2.19, + 2.1, + 2.05, + 1.99, + 1.86, + 1.69, + 1.49, + 1.3900000000000001, + 1.43, + 1.72, + 2.07, + 2.27, + 2.41, + 2.5, + 2.61, + 2.84, + 3.0700000000000003, + 3.3000000000000003, + 3.5100000000000002, + 3.67, + 3.8200000000000003, + 3.98, + 4.18, + 4.07, + 3.77, + 3.5300000000000002, + 3.44, + 3.5500000000000003, + 3.8200000000000003, + 4.1, + 4.39, + 4.69, + 5.1000000000000005, + 5.5600000000000005, + 6.0200000000000005, + 6.54, + 7.05, + 7.47, + 7.74, + 7.94, + 7.82, + 7.66, + 7.1000000000000005, + 6.5, + 5.75, + 5.07, + 4.49, + 3.99, + 3.5500000000000003, + 3.2, + 2.84, + 2.42, + 2.17, + 1.97, + 1.74, + 1.52, + 1.28, + 1.1500000000000001, + 0.98, + 0.92, + 0.8300000000000001, + 0.85, + 0.87, + 0.97, + 1.06, + 1.25, + 1.41, + 1.55, + 1.69, + 1.76, + 1.81, + 1.83, + 1.86, + 1.8800000000000001, + 1.8900000000000001, + 1.96, + 2.08, + 2.21, + 2.31, + 2.38, + 2.45, + 2.47, + 2.47, + 2.47, + 2.43, + 2.35, + 2.3000000000000003, + 2.31, + 2.39, + 2.5, + 2.24, + 1.87, + 1.28, + 0.75, + 0.28, + -0.2, + -0.46, + -0.5700000000000001, + -0.51, + -0.36, + -0.29, + -0.2, + -0.16, + -0.19, + -0.22, + -0.24, + -0.22, + -0.2, + -0.16, + -0.01, + 0.21, + 0.42, + 0.53, + 0.5700000000000001, + 0.7000000000000001, + 1.1, + 1.52, + 1.52, + 1.1500000000000001, + 0.78, + 0.66, + 0.91, + 1.37, + 1.6500000000000001, + 1.44, + 0.96, + 0.41000000000000003, + -0.06, + -0.27, + -0.39, + -0.51, + -0.61, + -0.66, + -0.55, + -0.3, + -0.04, + 0.06, + 0.11, + 0.14, + 0.28, + 0.42, + 0.65, + 0.8300000000000001, + 1.02, + 1.17, + 0.99, + 0.9, + 0.66, + 0.5, + 0.48, + 0.6, + 0.5700000000000001, + 0.54, + 0.42, + 0.35000000000000003, + 0.56, + 0.74, + 0.76, + 0.58, + 0.41000000000000003, + 0.24, + 0.09, + -0.08, + -0.12, + 0.06, + 0.31, + 0.5700000000000001, + 0.65, + 0.51, + 0.33, + 0.03, + -0.08, + 0.0, + 0.02, + 0.16, + 0.15, + 0.17, + 0.28, + 0.29, + 0.37, + 0.32, + 0.22, + 0.05, + -0.17, + -0.38, + -0.55, + -0.61, + -0.67, + -0.72, + -0.75, + -0.8200000000000001, + -0.89, + -0.98, + -0.89, + -0.86, + -1.04, + -1.3800000000000001, + -1.8800000000000001, + -2.0300000000000002, + -1.92, + -1.6400000000000001, + -1.29, + -1.04, + -0.63, + -0.47000000000000003, + -0.32, + -0.22, + -0.11, + 0.06, + 0.19, + 0.31, + 0.32, + 0.4, + 0.48, + 0.65, + 0.76, + 0.8200000000000001, + 0.79, + 0.71, + 0.59, + 0.37, + 0.24, + 0.09, + 0.05, + 0.03, + 0.06, + 0.18, + 0.33, + 0.3, + 0.26, + 0.18, + 0.1, + 0.15, + 0.31, + 0.45, + 0.47000000000000003, + 0.4, + 0.27, + 0.22, + 0.39, + 0.59, + 0.72, + 0.93, + 0.81, + 0.79, + 0.52, + 0.29, + -0.13, + -0.42, + -0.54, + -0.59, + -0.22, + 0.18, + 0.31, + 0.17, + -0.27, + -0.8300000000000001, + -1.1400000000000001, + -1.24, + -1.17, + -0.91, + -0.71, + -0.56, + -0.63, + -0.63, + -0.71, + -0.65, + -0.6, + -0.42, + -0.27, + -0.11, + -0.02, + 0.11, + 0.22, + 0.33, + 0.38, + 0.47000000000000003, + 0.51, + 0.51, + 0.36, + 0.23, + 0.24, + 0.53, + 1.44, + 2.31, + 2.93, + 3.2800000000000002, + 2.61, + 2.1, + 1.23, + 0.68, + 0.38, + 0.12, + -0.31, + -0.63, + -1.01, + -1.17, + -1.18, + -1.19, + -1.1, + -0.89, + -0.4, + 0.19, + 0.9400000000000001, + 1.49, + 1.74, + 1.49, + 1.12, + 0.75, + 0.51, + 0.78, + 0.99, + 0.9400000000000001, + 0.72, + 0.61, + 0.55 + ], + [ + 3.4, + 3.34, + 3.14, + 2.91, + 2.7800000000000002, + 2.69, + 2.59, + 2.47, + 2.33, + 2.19, + 2.06, + 1.92, + 1.79, + 1.68, + 1.58, + 1.54, + 1.55, + 1.59, + 1.57, + 1.54, + 1.53, + 1.55, + 1.7, + 1.85, + 2.06, + 2.22, + 2.33, + 2.39, + 2.39, + 2.34, + 2.2800000000000002, + 2.2, + 2.14, + 2.08, + 1.99, + 1.83, + 1.62, + 1.4000000000000001, + 1.23, + 1.33, + 1.54, + 1.9000000000000001, + 2.16, + 2.29, + 2.42, + 2.66, + 2.89, + 3.18, + 3.46, + 3.67, + 3.95, + 4.1, + 4.28, + 4.3, + 4.22, + 3.95, + 3.69, + 3.67, + 3.81, + 4.09, + 4.36, + 4.64, + 4.95, + 5.3100000000000005, + 5.8, + 6.38, + 7.03, + 7.63, + 7.99, + 8.22, + 8.08, + 7.97, + 7.46, + 6.94, + 6.19, + 5.43, + 4.78, + 4.15, + 3.61, + 3.0700000000000003, + 2.65, + 2.34, + 2.15, + 2.05, + 1.92, + 1.76, + 1.59, + 1.47, + 1.34, + 1.26, + 1.1500000000000001, + 1.09, + 1.04, + 1.08, + 1.1, + 1.26, + 1.43, + 1.55, + 1.68, + 1.74, + 1.8, + 1.82, + 1.83, + 1.87, + 1.8900000000000001, + 1.96, + 2.06, + 2.17, + 2.31, + 2.42, + 2.48, + 2.5100000000000002, + 2.5100000000000002, + 2.5100000000000002, + 2.54, + 2.5300000000000002, + 2.43, + 2.33, + 2.2800000000000002, + 2.2800000000000002, + 2.19, + 1.97, + 1.44, + 0.8, + 0.23, + -0.21, + -0.47000000000000003, + -0.67, + -0.68, + -0.5700000000000001, + -0.5, + -0.49, + -0.52, + -0.53, + -0.55, + -0.55, + -0.54, + -0.47000000000000003, + -0.39, + -0.28, + -0.13, + 0.1, + 0.35000000000000003, + 0.47000000000000003, + 0.52, + 0.8, + 1.16, + 1.44, + 1.42, + 1.1500000000000001, + 0.79, + 0.73, + 1.11, + 1.49, + 1.76, + 1.72, + 1.1, + 0.48, + 0.01, + -0.33, + -0.38, + -0.5, + -0.6, + -0.71, + -0.56, + -0.27, + 0.01, + 0.16, + 0.15, + 0.14, + 0.15, + 0.27, + 0.35000000000000003, + 0.51, + 0.7000000000000001, + 0.87, + 1.02, + 0.9500000000000001, + 0.85, + 0.54, + 0.39, + 0.33, + 0.48, + 0.46, + 0.47000000000000003, + 0.51, + 0.58, + 0.71, + 0.73, + 0.55, + 0.37, + 0.22, + 0.09, + -0.02, + -0.11, + 0.01, + 0.27, + 0.43, + 0.47000000000000003, + 0.37, + 0.21, + 0.19, + 0.3, + 0.51, + 0.6, + 0.56, + 0.39, + 0.17, + 0.12, + 0.12, + 0.21, + 0.2, + 0.1, + -0.15, + -0.41000000000000003, + -0.6900000000000001, + -0.77, + -0.81, + -0.87, + -0.91, + -0.97, + -1.05, + -1.21, + -1.28, + -1.36, + -1.33, + -1.6600000000000001, + -2.29, + -2.85, + -2.88, + -2.64, + -1.99, + -1.3900000000000001, + -0.68, + -0.15, + 0.16, + 0.24, + 0.26, + 0.29, + 0.35000000000000003, + 0.46, + 0.45, + 0.39, + 0.36, + 0.44, + 0.54, + 0.67, + 0.63, + 0.54, + 0.39, + 0.15, + -0.01, + -0.17, + -0.2, + -0.21, + -0.16, + -0.06, + 0.0, + 0.0, + 0.0, + -0.01, + -0.04, + 0.0, + 0.05, + 0.14, + 0.3, + 0.34, + 0.24, + 0.11, + 0.03, + -0.02, + 0.09, + 0.26, + 0.39, + 0.62, + 0.56, + 0.6, + 0.18, + -0.17, + -0.4, + -0.5, + -0.23, + 0.11, + 0.41000000000000003, + 0.54, + 0.34, + -0.11, + -0.49, + -0.75, + -0.81, + -0.64, + -0.41000000000000003, + -0.18, + -0.1, + -0.31, + -0.52, + -0.65, + -0.7000000000000001, + -0.59, + -0.48, + -0.29, + -0.17, + -0.04, + -0.01, + 0.09, + 0.1, + 0.21, + 0.33, + 0.46, + 0.49, + 0.44, + 0.31, + 0.31, + 0.64, + 0.98, + 1.6400000000000001, + 1.96, + 1.9000000000000001, + 1.67, + 1.12, + 0.64, + 0.35000000000000003, + 0.06, + -0.42, + -0.9, + -1.55, + -1.93, + -1.96, + -1.98, + -1.86, + -1.82, + -1.48, + -0.9, + -0.09, + 0.8, + 1.42, + 1.62, + 1.69, + 1.28, + 0.86, + 0.73, + 0.67, + 0.97, + 0.91, + 0.66, + 0.27, + -0.11 + ], + [ + 3.36, + 3.36, + 3.11, + 2.85, + 2.75, + 2.66, + 2.56, + 2.43, + 2.3000000000000003, + 2.17, + 2.0300000000000002, + 1.9000000000000001, + 1.77, + 1.6600000000000001, + 1.58, + 1.56, + 1.58, + 1.61, + 1.6400000000000001, + 1.6, + 1.61, + 1.69, + 1.81, + 1.97, + 2.14, + 2.27, + 2.39, + 2.42, + 2.43, + 2.39, + 2.32, + 2.25, + 2.19, + 2.13, + 2.04, + 1.8900000000000001, + 1.6600000000000001, + 1.43, + 1.28, + 1.25, + 1.53, + 1.82, + 2.08, + 2.2600000000000002, + 2.5100000000000002, + 2.7600000000000002, + 3.06, + 3.31, + 3.5500000000000003, + 3.7800000000000002, + 4.03, + 4.26, + 4.3500000000000005, + 4.39, + 4.15, + 3.91, + 3.7600000000000002, + 3.77, + 4.01, + 4.3100000000000005, + 4.65, + 4.94, + 5.2, + 5.57, + 6.07, + 6.78, + 7.51, + 8.040000000000001, + 8.45, + 8.290000000000001, + 8.120000000000001, + 7.63, + 7.19, + 6.51, + 5.8, + 5.13, + 4.49, + 3.97, + 3.4, + 2.92, + 2.47, + 2.21, + 2.15, + 2.1, + 2.0300000000000002, + 1.93, + 1.84, + 1.74, + 1.6600000000000001, + 1.56, + 1.46, + 1.36, + 1.34, + 1.34, + 1.42, + 1.51, + 1.62, + 1.72, + 1.77, + 1.79, + 1.78, + 1.79, + 1.82, + 1.86, + 1.96, + 2.07, + 2.18, + 2.31, + 2.42, + 2.5, + 2.5500000000000003, + 2.54, + 2.5500000000000003, + 2.58, + 2.64, + 2.6, + 2.5100000000000002, + 2.36, + 2.24, + 2.19, + 2.06, + 1.71, + 1.12, + 0.41000000000000003, + -0.22, + -0.58, + -0.76, + -0.8300000000000001, + -0.78, + -0.7000000000000001, + -0.6900000000000001, + -0.72, + -0.8, + -0.86, + -0.85, + -0.86, + -0.78, + -0.7000000000000001, + -0.55, + -0.43, + -0.21, + 0.0, + 0.23, + 0.4, + 0.62, + 0.89, + 1.26, + 1.55, + 1.58, + 1.32, + 1.11, + 1.12, + 1.27, + 1.6400000000000001, + 1.82, + 1.58, + 1.18, + 0.53, + 0.06, + -0.11, + -0.27, + -0.33, + -0.53, + -0.6, + -0.58, + -0.21, + 0.13, + 0.23, + 0.19, + 0.06, + 0.0, + -0.04, + -0.03, + 0.07, + 0.26, + 0.49, + 0.71, + 0.79, + 0.5700000000000001, + 0.28, + -0.03, + -0.09, + 0.1, + 0.34, + 0.49, + 0.61, + 0.72, + 0.8200000000000001, + 0.6900000000000001, + 0.51, + 0.27, + 0.15, + 0.11, + 0.01, + 0.04, + 0.14, + 0.22, + 0.33, + 0.33, + 0.21, + 0.19, + 0.36, + 0.63, + 0.88, + 1.1500000000000001, + 0.91, + 0.64, + 0.29, + 0.02, + 0.09, + 0.16, + 0.14, + 0.07, + -0.22, + -0.54, + -0.74, + -0.8300000000000001, + -0.89, + -0.97, + -1.01, + -1.06, + -1.1500000000000001, + -1.32, + -1.44, + -1.45, + -1.68, + -2.24, + -3.13, + -3.46, + -3.72, + -2.92, + -2.24, + -1.17, + -0.27, + 0.34, + 0.81, + 0.87, + 0.8300000000000001, + 0.75, + 0.75, + 0.71, + 0.64, + 0.52, + 0.45, + 0.47000000000000003, + 0.58, + 0.59, + 0.44, + 0.22, + -0.06, + -0.35000000000000003, + -0.52, + -0.6900000000000001, + -0.67, + -0.56, + -0.38, + -0.21, + -0.18, + -0.24, + -0.25, + -0.25, + -0.16, + -0.07, + 0.0, + 0.07, + 0.1, + 0.12, + 0.04, + -0.1, + -0.27, + -0.41000000000000003, + -0.52, + -0.39, + -0.25, + -0.04, + 0.12, + 0.03, + -0.14, + -0.39, + -0.5700000000000001, + -0.3, + 0.04, + 0.42, + 0.73, + 0.72, + 0.54, + 0.32, + 0.0, + -0.21, + -0.22, + -0.16, + 0.07, + 0.2, + 0.05, + -0.12, + -0.47000000000000003, + -0.66, + -0.6900000000000001, + -0.58, + -0.4, + -0.23, + -0.06, + 0.04, + 0.09, + 0.12, + 0.15, + 0.2, + 0.34, + 0.51, + 0.62, + 0.61, + 0.64, + 0.67, + 0.73, + 0.92, + 0.9500000000000001, + 1.0, + 0.75, + 0.61, + 0.27, + 0.23, + -0.01, + -0.41000000000000003, + -0.96, + -1.8800000000000001, + -2.64, + -2.87, + -2.84, + -2.49, + -2.37, + -2.1, + -1.8, + -1.19, + -0.27, + 0.48, + 1.07, + 1.41, + 1.48, + 1.59, + 1.27, + 1.08, + 1.23, + 1.3, + 1.22, + 0.74, + 0.11, + -0.62 + ], + [ + 3.3200000000000003, + 3.2600000000000002, + 3.0700000000000003, + 2.85, + 2.72, + 2.63, + 2.52, + 2.4, + 2.27, + 2.13, + 1.99, + 1.86, + 1.74, + 1.6300000000000001, + 1.55, + 1.52, + 1.54, + 1.59, + 1.6, + 1.6300000000000001, + 1.68, + 1.78, + 1.92, + 2.07, + 2.19, + 2.32, + 2.38, + 2.44, + 2.44, + 2.42, + 2.33, + 2.27, + 2.22, + 2.17, + 2.1, + 1.97, + 1.77, + 1.54, + 1.3900000000000001, + 1.3900000000000001, + 1.54, + 1.85, + 2.12, + 2.38, + 2.64, + 2.95, + 3.25, + 3.47, + 3.67, + 3.9, + 4.14, + 4.29, + 4.41, + 4.22, + 3.96, + 3.79, + 3.67, + 3.8200000000000003, + 4.15, + 4.5600000000000005, + 4.96, + 5.25, + 5.48, + 5.8, + 6.4, + 7.13, + 7.84, + 8.46, + 8.46, + 8.33, + 7.79, + 7.25, + 6.63, + 6.04, + 5.41, + 4.7700000000000005, + 4.2700000000000005, + 3.83, + 3.4, + 2.94, + 2.59, + 2.37, + 2.3000000000000003, + 2.3000000000000003, + 2.27, + 2.23, + 2.15, + 2.08, + 1.98, + 1.86, + 1.75, + 1.6500000000000001, + 1.62, + 1.67, + 1.75, + 1.79, + 1.85, + 1.8800000000000001, + 1.8900000000000001, + 1.84, + 1.78, + 1.75, + 1.78, + 1.8900000000000001, + 2.0300000000000002, + 2.18, + 2.31, + 2.43, + 2.49, + 2.54, + 2.54, + 2.5300000000000002, + 2.5300000000000002, + 2.62, + 2.68, + 2.71, + 2.5500000000000003, + 2.38, + 2.2800000000000002, + 2.2, + 2.02, + 1.6500000000000001, + 0.97, + 0.13, + -0.46, + -0.8200000000000001, + -0.98, + -0.99, + -0.97, + -0.91, + -0.91, + -0.99, + -1.07, + -1.1, + -1.1, + -1.03, + -0.98, + -0.81, + -0.67, + -0.4, + -0.23, + 0.01, + 0.19, + 0.43, + 0.6900000000000001, + 1.01, + 1.41, + 1.69, + 1.79, + 1.7, + 1.53, + 1.48, + 1.55, + 1.6400000000000001, + 1.6300000000000001, + 1.43, + 0.9400000000000001, + 0.48, + 0.17, + 0.1, + 0.03, + -0.03, + -0.24, + -0.49, + -0.34, + -0.06, + 0.21, + 0.35000000000000003, + 0.22, + -0.01, + -0.2, + -0.33, + -0.35000000000000003, + -0.28, + -0.11, + 0.18, + 0.37, + 0.4, + 0.23, + -0.2, + -0.59, + -0.5, + -0.29, + 0.12, + 0.5, + 0.6900000000000001, + 0.84, + 0.78, + 0.68, + 0.41000000000000003, + 0.12, + 0.03, + 0.07, + 0.16, + 0.23, + 0.24, + 0.21, + 0.15, + 0.09, + 0.12, + 0.23, + 0.43, + 0.76, + 1.11, + 1.1400000000000001, + 1.19, + 0.68, + 0.35000000000000003, + 0.1, + 0.08, + 0.04, + 0.07, + -0.2, + -0.43, + -0.71, + -0.89, + -1.0, + -1.05, + -1.08, + -1.12, + -1.1400000000000001, + -1.24, + -1.31, + -1.35, + -1.36, + -1.6500000000000001, + -2.37, + -3.0700000000000003, + -3.9, + -3.43, + -2.95, + -1.75, + -0.73, + 0.12, + 0.87, + 1.07, + 1.3, + 1.17, + 1.06, + 0.92, + 0.84, + 0.74, + 0.5700000000000001, + 0.51, + 0.54, + 0.56, + 0.44, + 0.22, + -0.12, + -0.45, + -0.6900000000000001, + -0.99, + -1.07, + -1.16, + -0.9, + -0.62, + -0.44, + -0.33, + -0.36, + -0.43, + -0.34, + -0.2, + -0.1, + -0.02, + -0.01, + -0.04, + -0.09, + -0.2, + -0.35000000000000003, + -0.58, + -0.8, + -0.92, + -0.99, + -0.71, + -0.62, + -0.41000000000000003, + -0.45, + -0.5, + -0.71, + -0.48, + -0.16, + 0.32, + 0.76, + 0.88, + 0.87, + 0.78, + 0.7000000000000001, + 0.54, + 0.36, + 0.28, + 0.27, + 0.3, + 0.2, + 0.06, + -0.29, + -0.59, + -0.77, + -0.79, + -0.62, + -0.33, + -0.1, + 0.11, + 0.13, + 0.2, + 0.17, + 0.19, + 0.21, + 0.35000000000000003, + 0.54, + 0.71, + 0.89, + 1.02, + 1.11, + 1.07, + 0.96, + 0.73, + 0.44, + 0.29, + 0.01, + 0.14, + 0.03, + -0.16, + -0.71, + -1.67, + -2.86, + -3.5, + -3.89, + -3.37, + -2.83, + -2.34, + -2.06, + -1.69, + -1.1300000000000001, + -0.55, + 0.11, + 0.53, + 0.81, + 1.18, + 1.46, + 1.71, + 1.69, + 1.86, + 1.94, + 1.84, + 1.09, + 0.14, + -0.74 + ], + [ + 3.27, + 3.27, + 3.0300000000000002, + 2.7800000000000002, + 2.68, + 2.59, + 2.48, + 2.36, + 2.22, + 2.09, + 1.95, + 1.82, + 1.69, + 1.57, + 1.49, + 1.45, + 1.46, + 1.51, + 1.56, + 1.6400000000000001, + 1.73, + 1.8800000000000001, + 2.0100000000000002, + 2.12, + 2.22, + 2.31, + 2.38, + 2.42, + 2.43, + 2.36, + 2.29, + 2.2, + 2.17, + 2.15, + 2.11, + 2.02, + 1.84, + 1.6500000000000001, + 1.53, + 1.5, + 1.67, + 1.93, + 2.21, + 2.5100000000000002, + 2.81, + 3.14, + 3.38, + 3.63, + 3.8200000000000003, + 4.03, + 4.18, + 4.32, + 4.25, + 4.0, + 3.84, + 3.68, + 3.75, + 3.98, + 4.36, + 4.89, + 5.3100000000000005, + 5.57, + 5.74, + 6.05, + 6.6000000000000005, + 7.38, + 8.15, + 8.44, + 8.57, + 8.08, + 7.48, + 6.79, + 6.08, + 5.51, + 4.96, + 4.47, + 4.04, + 3.71, + 3.4, + 3.08, + 2.79, + 2.62, + 2.59, + 2.61, + 2.63, + 2.59, + 2.52, + 2.42, + 2.2600000000000002, + 2.14, + 1.98, + 1.8800000000000001, + 1.8800000000000001, + 1.96, + 2.0, + 2.05, + 2.04, + 2.05, + 1.99, + 1.9000000000000001, + 1.78, + 1.7, + 1.76, + 1.9100000000000001, + 2.09, + 2.27, + 2.41, + 2.5, + 2.56, + 2.56, + 2.5100000000000002, + 2.43, + 2.42, + 2.5300000000000002, + 2.73, + 2.67, + 2.57, + 2.42, + 2.31, + 2.23, + 2.1, + 1.61, + 0.9, + 0.06, + -0.62, + -0.9500000000000001, + -1.09, + -1.16, + -1.1500000000000001, + -1.1500000000000001, + -1.16, + -1.23, + -1.27, + -1.31, + -1.26, + -1.18, + -1.06, + -0.88, + -0.6, + -0.29, + -0.06, + 0.12, + 0.31, + 0.51, + 0.76, + 1.08, + 1.43, + 1.78, + 1.9000000000000001, + 1.9000000000000001, + 1.82, + 1.73, + 1.72, + 1.6, + 1.44, + 1.1500000000000001, + 0.6900000000000001, + 0.33, + 0.07, + 0.13, + 0.32, + 0.21, + 0.06, + -0.06, + -0.11, + 0.16, + 0.42, + 0.47000000000000003, + 0.29, + 0.03, + -0.3, + -0.45, + -0.49, + -0.46, + -0.26, + -0.08, + 0.08, + 0.1, + -0.16, + -0.58, + -0.81, + -0.96, + -0.54, + -0.09, + 0.35000000000000003, + 0.77, + 0.81, + 0.77, + 0.6, + 0.32, + 0.1, + -0.05, + 0.03, + 0.25, + 0.37, + 0.3, + 0.13, + -0.07, + -0.15, + 0.0, + 0.21, + 0.48, + 0.72, + 0.85, + 1.0, + 0.75, + 0.56, + 0.11, + -0.06, + -0.19, + -0.19, + -0.41000000000000003, + -0.65, + -0.9, + -1.1, + -1.23, + -1.31, + -1.33, + -1.32, + -1.27, + -1.25, + -1.27, + -1.26, + -1.1500000000000001, + -1.01, + -1.1300000000000001, + -1.77, + -2.72, + -2.99, + -3.11, + -2.15, + -1.05, + -0.16, + 0.65, + 0.85, + 1.09, + 1.05, + 1.06, + 0.88, + 0.74, + 0.68, + 0.59, + 0.56, + 0.54, + 0.55, + 0.49, + 0.29, + -0.05, + -0.41000000000000003, + -0.65, + -0.93, + -1.1300000000000001, + -1.41, + -1.29, + -1.21, + -0.87, + -0.63, + -0.53, + -0.5, + -0.47000000000000003, + -0.39, + -0.29, + -0.17, + -0.14, + -0.15, + -0.22, + -0.34, + -0.45, + -0.62, + -0.8200000000000001, + -1.03, + -1.2, + -1.03, + -0.92, + -0.67, + -0.6900000000000001, + -0.58, + -0.6900000000000001, + -0.5700000000000001, + -0.39, + 0.06, + 0.63, + 0.91, + 1.0, + 0.93, + 0.91, + 0.8300000000000001, + 0.77, + 0.65, + 0.48, + 0.42, + 0.23, + 0.08, + -0.22, + -0.51, + -0.78, + -1.0, + -0.93, + -0.77, + -0.43, + -0.01, + 0.04, + 0.13, + 0.08, + 0.08, + 0.05, + 0.04, + 0.17, + 0.42, + 0.73, + 1.05, + 1.25, + 1.36, + 1.32, + 0.97, + 0.71, + 0.38, + 0.17, + 0.21, + 0.27, + 0.26, + 0.02, + -0.8, + -2.05, + -3.09, + -4.3, + -4.05, + -3.59, + -2.7600000000000002, + -2.04, + -1.6500000000000001, + -1.34, + -1.08, + -0.73, + -0.42, + -0.23, + 0.07, + 0.64, + 1.27, + 1.72, + 2.13, + 2.35, + 2.65, + 2.2, + 1.61, + 0.38, + -0.8 + ], + [ + 3.22, + 3.16, + 2.98, + 2.77, + 2.64, + 2.54, + 2.43, + 2.3000000000000003, + 2.17, + 2.0300000000000002, + 1.8900000000000001, + 1.76, + 1.62, + 1.51, + 1.43, + 1.3900000000000001, + 1.41, + 1.44, + 1.55, + 1.6500000000000001, + 1.82, + 1.98, + 2.1, + 2.19, + 2.2600000000000002, + 2.33, + 2.37, + 2.41, + 2.37, + 2.2800000000000002, + 2.16, + 2.06, + 2.05, + 2.07, + 2.08, + 2.04, + 1.92, + 1.77, + 1.6400000000000001, + 1.6400000000000001, + 1.75, + 2.0, + 2.29, + 2.62, + 2.97, + 3.24, + 3.5100000000000002, + 3.74, + 3.96, + 4.1, + 4.23, + 4.26, + 4.15, + 4.01, + 3.85, + 3.9, + 4.0600000000000005, + 4.32, + 4.7700000000000005, + 5.26, + 5.68, + 5.92, + 5.95, + 6.140000000000001, + 6.76, + 7.53, + 8.120000000000001, + 8.540000000000001, + 8.33, + 7.95, + 7.19, + 6.3500000000000005, + 5.66, + 4.98, + 4.54, + 4.16, + 3.88, + 3.64, + 3.42, + 3.22, + 3.0, + 2.88, + 2.89, + 2.98, + 3.0500000000000003, + 2.99, + 2.88, + 2.68, + 2.5, + 2.3000000000000003, + 2.14, + 2.05, + 2.06, + 2.13, + 2.23, + 2.22, + 2.2, + 2.15, + 2.08, + 1.92, + 1.74, + 1.68, + 1.75, + 1.9100000000000001, + 2.13, + 2.33, + 2.48, + 2.57, + 2.59, + 2.57, + 2.4, + 2.27, + 2.23, + 2.33, + 2.5, + 2.67, + 2.5500000000000003, + 2.42, + 2.35, + 2.29, + 2.06, + 1.6400000000000001, + 0.8200000000000001, + -0.11, + -0.72, + -1.01, + -1.1300000000000001, + -1.23, + -1.28, + -1.3, + -1.35, + -1.37, + -1.45, + -1.48, + -1.45, + -1.37, + -1.22, + -0.96, + -0.56, + -0.2, + 0.16, + 0.3, + 0.45, + 0.61, + 0.8, + 1.06, + 1.3800000000000001, + 1.6400000000000001, + 1.82, + 1.85, + 1.82, + 1.81, + 1.74, + 1.6600000000000001, + 1.43, + 1.06, + 0.68, + 0.15, + 0.09, + 0.02, + 0.34, + 0.51, + 0.44, + 0.3, + 0.34, + 0.46, + 0.6, + 0.68, + 0.5, + 0.18, + -0.08, + -0.29, + -0.37, + -0.36, + -0.31, + -0.21, + -0.13, + -0.14, + -0.32, + -0.64, + -1.0, + -0.97, + -0.84, + -0.37, + 0.21, + 0.52, + 0.8, + 0.71, + 0.56, + 0.33, + 0.08, + -0.03, + 0.01, + 0.24, + 0.46, + 0.45, + 0.13, + -0.16, + -0.2, + -0.13, + 0.2, + 0.46, + 0.45, + 0.48, + 0.36, + 0.22, + -0.11, + -0.4, + -0.53, + -0.6, + -0.7000000000000001, + -0.9500000000000001, + -1.19, + -1.43, + -1.49, + -1.57, + -1.59, + -1.58, + -1.51, + -1.36, + -1.25, + -1.18, + -1.09, + -0.71, + -0.41000000000000003, + -0.35000000000000003, + -0.75, + -1.53, + -2.23, + -2.06, + -1.47, + -0.58, + 0.44, + 0.61, + 0.65, + 0.6, + 0.5, + 0.44, + 0.33, + 0.3, + 0.32, + 0.39, + 0.5, + 0.56, + 0.5700000000000001, + 0.46, + 0.13, + -0.26, + -0.54, + -0.77, + -0.9400000000000001, + -1.16, + -1.23, + -1.3800000000000001, + -1.09, + -0.97, + -0.73, + -0.65, + -0.5700000000000001, + -0.51, + -0.44, + -0.37, + -0.32, + -0.31, + -0.35000000000000003, + -0.45, + -0.5700000000000001, + -0.68, + -0.81, + -0.93, + -1.09, + -1.02, + -0.93, + -0.63, + -0.45, + -0.46, + -0.51, + -0.49, + -0.44, + -0.21, + 0.23, + 0.66, + 1.01, + 1.04, + 0.91, + 0.81, + 0.74, + 0.59, + 0.46, + 0.33, + 0.17, + 0.01, + -0.28, + -0.53, + -0.76, + -0.99, + -1.09, + -1.17, + -0.93, + -0.62, + -0.36, + -0.12, + -0.14, + -0.17, + -0.13, + -0.18, + -0.12, + -0.04, + 0.27, + 0.71, + 1.04, + 1.26, + 1.28, + 1.11, + 0.87, + 0.56, + 0.37, + 0.34, + 0.43, + 0.54, + 0.7000000000000001, + 0.17, + -0.48, + -1.6400000000000001, + -3.0100000000000002, + -3.5300000000000002, + -3.79, + -3.0700000000000003, + -2.23, + -1.58, + -1.1400000000000001, + -1.09, + -1.1400000000000001, + -1.08, + -1.07, + -0.93, + -0.5700000000000001, + 0.0, + 0.92, + 1.6500000000000001, + 2.18, + 2.66, + 2.72, + 2.7, + 1.6600000000000001, + 0.58, + -0.62 + ], + [ + 3.16, + 3.16, + 2.93, + 2.68, + 2.58, + 2.49, + 2.37, + 2.24, + 2.11, + 1.97, + 1.84, + 1.7, + 1.58, + 1.48, + 1.41, + 1.3900000000000001, + 1.4000000000000001, + 1.48, + 1.56, + 1.74, + 1.9100000000000001, + 2.08, + 2.22, + 2.2600000000000002, + 2.3000000000000003, + 2.34, + 2.38, + 2.37, + 2.31, + 2.17, + 2.0, + 1.93, + 1.95, + 2.0100000000000002, + 2.08, + 2.08, + 2.0300000000000002, + 1.9100000000000001, + 1.78, + 1.73, + 1.82, + 2.0300000000000002, + 2.35, + 2.7, + 3.04, + 3.35, + 3.6, + 3.85, + 4.0200000000000005, + 4.17, + 4.22, + 4.24, + 4.19, + 4.1, + 4.11, + 4.29, + 4.48, + 4.74, + 5.14, + 5.63, + 6.0200000000000005, + 6.11, + 6.16, + 6.34, + 6.7700000000000005, + 7.51, + 8.18, + 8.31, + 8.27, + 7.69, + 6.97, + 6.13, + 5.2700000000000005, + 4.7, + 4.19, + 3.95, + 3.7800000000000002, + 3.62, + 3.49, + 3.3200000000000003, + 3.15, + 3.08, + 3.15, + 3.27, + 3.38, + 3.39, + 3.12, + 2.88, + 2.63, + 2.42, + 2.2600000000000002, + 2.14, + 2.2, + 2.29, + 2.33, + 2.36, + 2.31, + 2.25, + 2.11, + 1.9000000000000001, + 1.73, + 1.6500000000000001, + 1.72, + 1.9000000000000001, + 2.13, + 2.36, + 2.52, + 2.57, + 2.57, + 2.43, + 2.2800000000000002, + 2.06, + 1.93, + 2.05, + 2.2600000000000002, + 2.42, + 2.5300000000000002, + 2.43, + 2.37, + 2.3000000000000003, + 2.12, + 1.54, + 0.67, + -0.21, + -0.85, + -1.1, + -1.1500000000000001, + -1.19, + -1.27, + -1.33, + -1.3800000000000001, + -1.46, + -1.57, + -1.69, + -1.6600000000000001, + -1.6400000000000001, + -1.42, + -1.18, + -0.66, + -0.1, + 0.19, + 0.44, + 0.55, + 0.68, + 0.8200000000000001, + 0.97, + 1.21, + 1.42, + 1.57, + 1.61, + 1.6400000000000001, + 1.74, + 1.79, + 1.79, + 1.6600000000000001, + 1.3800000000000001, + 0.9500000000000001, + 0.56, + 0.15, + 0.36, + 0.5, + 0.79, + 0.91, + 0.8200000000000001, + 0.75, + 0.73, + 0.8, + 0.72, + 0.67, + 0.4, + 0.19, + 0.03, + -0.07, + -0.11, + -0.21, + -0.23, + -0.21, + -0.24, + -0.33, + -0.56, + -0.8300000000000001, + -1.03, + -0.9500000000000001, + -0.73, + -0.22, + 0.3, + 0.51, + 0.64, + 0.5, + 0.35000000000000003, + 0.11, + -0.06, + 0.03, + 0.29, + 0.5700000000000001, + 0.68, + 0.46, + 0.07, + -0.15, + -0.08, + 0.08, + 0.12, + 0.13, + -0.08, + -0.28, + -0.5, + -0.8300000000000001, + -0.9, + -1.05, + -1.0, + -1.1, + -1.34, + -1.69, + -1.72, + -1.68, + -1.6400000000000001, + -1.6500000000000001, + -1.61, + -1.49, + -1.3, + -1.04, + -0.86, + -0.54, + -0.16, + 0.43, + 0.73, + 0.27, + -0.34, + -1.1, + -1.42, + -0.99, + -0.26, + 0.16, + 0.4, + 0.29, + 0.03, + -0.01, + -0.13, + -0.11, + -0.05, + 0.08, + 0.32, + 0.47000000000000003, + 0.61, + 0.61, + 0.37, + 0.05, + -0.39, + -0.7000000000000001, + -0.78, + -0.88, + -0.91, + -0.96, + -0.87, + -0.77, + -0.63, + -0.62, + -0.54, + -0.56, + -0.49, + -0.46, + -0.43, + -0.44, + -0.43, + -0.49, + -0.59, + -0.7000000000000001, + -0.8, + -0.8, + -0.87, + -0.8200000000000001, + -0.77, + -0.5, + -0.22, + -0.22, + -0.2, + -0.29, + -0.3, + -0.25, + -0.16, + 0.23, + 0.66, + 0.96, + 1.06, + 0.97, + 0.76, + 0.55, + 0.28, + 0.08, + -0.05, + -0.23, + -0.43, + -0.67, + -0.8300000000000001, + -1.01, + -1.06, + -1.19, + -1.16, + -1.1500000000000001, + -0.9, + -0.72, + -0.54, + -0.48, + -0.35000000000000003, + -0.24, + -0.16, + -0.13, + 0.02, + 0.32, + 0.7000000000000001, + 1.03, + 1.18, + 1.01, + 0.79, + 0.58, + 0.33, + 0.37, + 0.39, + 0.56, + 0.72, + 0.62, + 0.43, + -0.26, + -0.9500000000000001, + -1.94, + -2.65, + -2.61, + -2.21, + -1.57, + -0.99, + -0.86, + -1.1, + -1.33, + -1.55, + -1.55, + -1.4000000000000001, + -1.07, + -0.27, + 0.56, + 1.43, + 2.12, + 2.45, + 2.7800000000000002, + 2.33, + 1.77, + 0.61, + -0.5 + ], + [ + 3.09, + 3.04, + 2.87, + 2.66, + 2.5300000000000002, + 2.43, + 2.31, + 2.18, + 2.05, + 1.93, + 1.8, + 1.68, + 1.56, + 1.47, + 1.45, + 1.45, + 1.5, + 1.57, + 1.69, + 1.83, + 2.0300000000000002, + 2.21, + 2.3000000000000003, + 2.34, + 2.35, + 2.35, + 2.35, + 2.33, + 2.2, + 2.0300000000000002, + 1.87, + 1.8, + 1.86, + 2.0, + 2.08, + 2.14, + 2.13, + 2.0100000000000002, + 1.8900000000000001, + 1.8, + 1.83, + 2.07, + 2.37, + 2.74, + 3.1, + 3.39, + 3.68, + 3.9, + 4.1, + 4.18, + 4.2, + 4.24, + 4.28, + 4.29, + 4.43, + 4.6000000000000005, + 4.82, + 5.07, + 5.42, + 5.83, + 6.12, + 6.3, + 6.33, + 6.47, + 6.94, + 7.5200000000000005, + 7.96, + 8.21, + 7.95, + 7.53, + 6.75, + 5.92, + 5.15, + 4.45, + 4.08, + 3.84, + 3.74, + 3.68, + 3.5500000000000003, + 3.41, + 3.2800000000000002, + 3.25, + 3.31, + 3.47, + 3.59, + 3.5100000000000002, + 3.3200000000000003, + 2.99, + 2.73, + 2.5100000000000002, + 2.33, + 2.3000000000000003, + 2.31, + 2.37, + 2.42, + 2.4, + 2.38, + 2.29, + 2.13, + 1.9000000000000001, + 1.68, + 1.6, + 1.6600000000000001, + 1.85, + 2.11, + 2.35, + 2.5, + 2.54, + 2.4, + 2.2600000000000002, + 2.04, + 1.82, + 1.68, + 1.67, + 1.93, + 2.2, + 2.32, + 2.42, + 2.41, + 2.41, + 2.09, + 1.51, + 0.61, + -0.38, + -0.9500000000000001, + -1.1400000000000001, + -1.16, + -1.12, + -1.1300000000000001, + -1.2, + -1.28, + -1.3900000000000001, + -1.57, + -1.67, + -1.83, + -1.6500000000000001, + -1.6300000000000001, + -1.21, + -0.81, + -0.27, + 0.21, + 0.39, + 0.5700000000000001, + 0.68, + 0.78, + 0.9400000000000001, + 1.04, + 1.25, + 1.36, + 1.44, + 1.54, + 1.6500000000000001, + 1.9000000000000001, + 2.0, + 2.04, + 1.93, + 1.55, + 1.18, + 0.86, + 0.79, + 0.98, + 1.24, + 1.29, + 1.32, + 1.05, + 0.8300000000000001, + 0.63, + 0.5, + 0.38, + 0.33, + 0.21, + 0.2, + 0.18, + 0.12, + 0.05, + -0.07, + -0.16, + -0.18, + -0.27, + -0.43, + -0.63, + -0.96, + -1.1400000000000001, + -0.96, + -0.67, + -0.16, + 0.27, + 0.39, + 0.43, + 0.23, + 0.05, + -0.07, + 0.01, + 0.3, + 0.77, + 0.92, + 0.77, + 0.44, + 0.02, + -0.11, + -0.24, + -0.28, + -0.41000000000000003, + -0.62, + -0.81, + -1.12, + -1.16, + -1.27, + -1.18, + -1.18, + -1.27, + -1.61, + -1.74, + -1.77, + -1.6, + -1.47, + -1.45, + -1.42, + -1.28, + -1.01, + -0.6900000000000001, + -0.3, + 0.07, + 0.63, + 1.25, + 1.3800000000000001, + 1.34, + 0.43, + -0.28, + -0.74, + -0.8300000000000001, + -0.43, + -0.18, + -0.01, + -0.05, + -0.15, + -0.27, + -0.26, + -0.21, + -0.1, + 0.1, + 0.31, + 0.49, + 0.5700000000000001, + 0.43, + 0.22, + -0.2, + -0.59, + -0.71, + -0.79, + -0.7000000000000001, + -0.63, + -0.53, + -0.31, + -0.27, + -0.16, + -0.19, + -0.29, + -0.28, + -0.36, + -0.36, + -0.43, + -0.44, + -0.43, + -0.47000000000000003, + -0.5700000000000001, + -0.65, + -0.65, + -0.65, + -0.5700000000000001, + -0.51, + -0.35000000000000003, + -0.1, + -0.08, + -0.02, + -0.12, + -0.13, + -0.11, + -0.09, + 0.05, + 0.23, + 0.68, + 1.03, + 1.17, + 1.1300000000000001, + 0.87, + 0.46, + 0.15, + -0.13, + -0.35000000000000003, + -0.56, + -0.81, + -0.96, + -1.11, + -1.02, + -1.06, + -1.01, + -1.06, + -1.05, + -1.12, + -0.92, + -0.86, + -0.62, + -0.4, + -0.22, + 0.0, + 0.04, + 0.17, + 0.39, + 0.71, + 0.99, + 1.03, + 0.93, + 0.6900000000000001, + 0.44, + 0.44, + 0.4, + 0.5700000000000001, + 0.6900000000000001, + 0.71, + 0.5700000000000001, + 0.29, + -0.06, + -0.61, + -0.97, + -1.48, + -1.5, + -1.29, + -0.97, + -0.73, + -0.8300000000000001, + -1.21, + -1.71, + -1.87, + -1.77, + -1.56, + -1.05, + -0.4, + 0.41000000000000003, + 1.2, + 1.68, + 2.13, + 2.1, + 1.95, + 1.32, + 0.6, + -0.34 + ], + [ + 3.0300000000000002, + 3.0100000000000002, + 2.8000000000000003, + 2.58, + 2.46, + 2.36, + 2.25, + 2.13, + 2.0100000000000002, + 1.9100000000000001, + 1.8, + 1.69, + 1.59, + 1.52, + 1.5, + 1.57, + 1.6500000000000001, + 1.75, + 1.87, + 2.02, + 2.19, + 2.33, + 2.43, + 2.43, + 2.4, + 2.37, + 2.31, + 2.22, + 2.06, + 1.8800000000000001, + 1.7, + 1.67, + 1.8, + 1.95, + 2.06, + 2.13, + 2.17, + 2.1, + 1.95, + 1.84, + 1.9000000000000001, + 2.07, + 2.38, + 2.74, + 3.09, + 3.43, + 3.7, + 3.96, + 4.1, + 4.19, + 4.23, + 4.26, + 4.3500000000000005, + 4.49, + 4.64, + 4.84, + 5.05, + 5.28, + 5.57, + 5.8500000000000005, + 6.15, + 6.38, + 6.5200000000000005, + 6.79, + 7.17, + 7.5200000000000005, + 7.8500000000000005, + 7.8500000000000005, + 7.69, + 7.17, + 6.54, + 5.74, + 5.0, + 4.41, + 4.0, + 3.84, + 3.8000000000000003, + 3.73, + 3.63, + 3.5, + 3.42, + 3.39, + 3.44, + 3.5500000000000003, + 3.62, + 3.6, + 3.3200000000000003, + 3.0300000000000002, + 2.7600000000000002, + 2.5500000000000003, + 2.47, + 2.45, + 2.45, + 2.47, + 2.46, + 2.42, + 2.4, + 2.35, + 2.15, + 1.8800000000000001, + 1.6500000000000001, + 1.5, + 1.56, + 1.76, + 2.04, + 2.33, + 2.48, + 2.36, + 2.21, + 2.0100000000000002, + 1.79, + 1.58, + 1.3900000000000001, + 1.42, + 1.56, + 1.87, + 2.13, + 2.3000000000000003, + 2.46, + 2.4, + 2.18, + 1.51, + 0.58, + -0.3, + -0.98, + -1.19, + -1.1300000000000001, + -1.04, + -0.92, + -0.91, + -0.96, + -1.09, + -1.19, + -1.4000000000000001, + -1.37, + -1.42, + -1.27, + -1.18, + -0.77, + -0.4, + 0.01, + 0.29, + 0.47000000000000003, + 0.65, + 0.85, + 1.01, + 1.19, + 1.33, + 1.47, + 1.56, + 1.6500000000000001, + 1.82, + 2.0100000000000002, + 2.22, + 2.33, + 2.27, + 2.13, + 1.67, + 1.44, + 1.27, + 1.43, + 1.51, + 1.67, + 1.42, + 1.1500000000000001, + 0.66, + 0.14, + -0.03, + -0.18, + -0.12, + 0.03, + 0.12, + 0.32, + 0.36, + 0.38, + 0.28, + 0.06, + -0.07, + -0.2, + -0.34, + -0.62, + -0.92, + -1.17, + -1.25, + -0.92, + -0.55, + -0.11, + 0.19, + 0.15, + 0.02, + -0.16, + -0.22, + -0.1, + 0.25, + 0.62, + 0.87, + 0.77, + 0.4, + 0.07, + -0.35000000000000003, + -0.5700000000000001, + -0.67, + -0.86, + -0.93, + -1.17, + -1.24, + -1.35, + -1.22, + -1.09, + -1.1, + -1.19, + -1.3900000000000001, + -1.6, + -1.43, + -1.18, + -1.09, + -1.1300000000000001, + -1.11, + -0.99, + -0.71, + -0.24, + 0.21, + 0.62, + 1.18, + 1.49, + 1.85, + 1.44, + 0.96, + 0.21, + -0.3, + -0.52, + -0.6, + -0.36, + -0.26, + -0.19, + -0.14, + -0.18, + -0.17, + -0.1, + -0.01, + 0.16, + 0.3, + 0.4, + 0.27, + 0.09, + -0.2, + -0.53, + -0.67, + -0.78, + -0.67, + -0.55, + -0.42, + -0.22, + -0.07, + 0.16, + 0.2, + 0.28, + 0.21, + 0.12, + 0.07, + -0.11, + -0.23, + -0.35000000000000003, + -0.37, + -0.38, + -0.43, + -0.44, + -0.42, + -0.34, + -0.26, + -0.18, + 0.0, + -0.04, + -0.03, + -0.12, + -0.18, + -0.05, + 0.12, + 0.17, + 0.27, + 0.52, + 0.87, + 1.21, + 1.45, + 1.34, + 0.99, + 0.5700000000000001, + 0.18, + -0.13, + -0.45, + -0.72, + -1.0, + -1.18, + -1.04, + -0.9400000000000001, + -0.77, + -0.68, + -0.72, + -0.81, + -0.88, + -0.98, + -0.77, + -0.59, + -0.37, + -0.18, + -0.06, + 0.06, + 0.12, + 0.23, + 0.49, + 0.76, + 0.9, + 0.97, + 0.87, + 0.79, + 0.75, + 0.75, + 0.85, + 0.87, + 0.87, + 0.49, + 0.08, + -0.23, + -0.45, + -0.68, + -0.61, + -0.76, + -0.72, + -0.64, + -0.71, + -1.0, + -1.59, + -1.97, + -1.96, + -1.79, + -1.3800000000000001, + -0.92, + -0.37, + 0.31, + 0.75, + 1.18, + 1.35, + 1.36, + 1.23, + 0.85, + 0.4, + -0.12 + ], + [ + 2.93, + 2.89, + 2.72, + 2.5300000000000002, + 2.4, + 2.3000000000000003, + 2.19, + 2.09, + 1.99, + 1.9000000000000001, + 1.83, + 1.73, + 1.6400000000000001, + 1.58, + 1.61, + 1.68, + 1.82, + 1.94, + 2.06, + 2.21, + 2.35, + 2.5, + 2.5300000000000002, + 2.5300000000000002, + 2.45, + 2.38, + 2.2600000000000002, + 2.12, + 1.94, + 1.72, + 1.59, + 1.53, + 1.67, + 1.9000000000000001, + 2.0300000000000002, + 2.13, + 2.17, + 2.14, + 2.02, + 1.93, + 1.94, + 2.09, + 2.33, + 2.7, + 3.08, + 3.4, + 3.71, + 3.94, + 4.12, + 4.21, + 4.28, + 4.3500000000000005, + 4.47, + 4.63, + 4.83, + 5.01, + 5.19, + 5.38, + 5.5600000000000005, + 5.8500000000000005, + 6.19, + 6.46, + 6.83, + 7.16, + 7.37, + 7.65, + 7.62, + 7.53, + 7.23, + 6.8100000000000005, + 6.16, + 5.5, + 4.82, + 4.28, + 3.97, + 3.88, + 3.85, + 3.8200000000000003, + 3.71, + 3.59, + 3.5100000000000002, + 3.5, + 3.5300000000000002, + 3.54, + 3.59, + 3.5100000000000002, + 3.29, + 2.98, + 2.72, + 2.63, + 2.59, + 2.56, + 2.58, + 2.5300000000000002, + 2.48, + 2.47, + 2.46, + 2.39, + 2.21, + 1.8900000000000001, + 1.55, + 1.4000000000000001, + 1.41, + 1.62, + 1.98, + 2.2600000000000002, + 2.33, + 2.25, + 2.0300000000000002, + 1.8, + 1.6400000000000001, + 1.3900000000000001, + 1.26, + 1.17, + 1.36, + 1.56, + 1.92, + 2.21, + 2.39, + 2.49, + 2.16, + 1.57, + 0.71, + -0.15, + -0.76, + -1.11, + -1.09, + -0.87, + -0.7000000000000001, + -0.48, + -0.46, + -0.47000000000000003, + -0.5700000000000001, + -0.6, + -0.63, + -0.63, + -0.63, + -0.62, + -0.6, + -0.33, + -0.14, + 0.16, + 0.39, + 0.6900000000000001, + 1.1, + 1.35, + 1.61, + 1.75, + 1.87, + 1.95, + 2.0100000000000002, + 2.13, + 2.23, + 2.38, + 2.38, + 2.38, + 2.12, + 1.87, + 1.52, + 1.42, + 1.45, + 1.61, + 1.52, + 1.35, + 0.85, + 0.23, + -0.21, + -0.6, + -0.56, + -0.4, + -0.16, + 0.16, + 0.4, + 0.6900000000000001, + 0.75, + 0.6, + 0.39, + 0.07, + -0.15, + -0.36, + -0.65, + -0.9400000000000001, + -1.22, + -1.25, + -1.1400000000000001, + -0.75, + -0.38, + -0.14, + -0.11, + -0.26, + -0.47000000000000003, + -0.48, + -0.34, + -0.05, + 0.2, + 0.37, + 0.26, + -0.01, + -0.25, + -0.5700000000000001, + -0.73, + -0.89, + -0.88, + -1.0, + -1.1, + -1.24, + -1.17, + -1.03, + -0.98, + -0.9500000000000001, + -0.98, + -1.0, + -1.04, + -0.8200000000000001, + -0.66, + -0.68, + -0.77, + -0.88, + -0.77, + -0.46, + -0.02, + 0.42, + 0.88, + 1.09, + 1.41, + 1.3800000000000001, + 1.2, + 0.85, + 0.44, + 0.02, + -0.23, + -0.37, + -0.42, + -0.3, + -0.19, + -0.11, + -0.03, + 0.0, + 0.03, + 0.1, + 0.18, + 0.26, + 0.16, + -0.02, + -0.39, + -0.7000000000000001, + -0.75, + -0.8200000000000001, + -0.71, + -0.56, + -0.44, + -0.3, + -0.16, + -0.01, + 0.23, + 0.48, + 0.59, + 0.77, + 0.7000000000000001, + 0.66, + 0.4, + -0.01, + -0.2, + -0.35000000000000003, + -0.35000000000000003, + -0.27, + -0.23, + -0.14, + -0.07, + -0.06, + 0.03, + -0.01, + -0.04, + -0.17, + -0.32, + -0.17, + 0.01, + 0.23, + 0.43, + 0.52, + 0.79, + 1.1, + 1.5, + 1.62, + 1.54, + 1.1400000000000001, + 0.64, + 0.24, + -0.09, + -0.42, + -0.8300000000000001, + -1.12, + -1.09, + -0.96, + -0.68, + -0.44, + -0.35000000000000003, + -0.27, + -0.41000000000000003, + -0.52, + -0.5700000000000001, + -0.51, + -0.35000000000000003, + -0.3, + -0.2, + -0.29, + -0.21, + -0.21, + -0.11, + 0.07, + 0.35000000000000003, + 0.77, + 0.9500000000000001, + 1.1500000000000001, + 1.19, + 1.08, + 1.11, + 1.04, + 1.1, + 0.8200000000000001, + 0.45, + -0.14, + -0.59, + -0.67, + -0.6, + -0.52, + -0.37, + -0.45, + -0.62, + -0.81, + -1.32, + -1.81, + -2.02, + -1.94, + -1.51, + -1.11, + -0.78, + -0.33, + 0.01, + 0.35000000000000003, + 0.59, + 0.6900000000000001, + 0.78, + 0.63, + 0.54, + 0.31, + 0.02 + ], + [ + 2.87, + 2.84, + 2.65, + 2.44, + 2.34, + 2.25, + 2.15, + 2.06, + 1.98, + 1.93, + 1.86, + 1.8, + 1.72, + 1.68, + 1.71, + 1.82, + 1.96, + 2.1, + 2.24, + 2.35, + 2.49, + 2.56, + 2.6, + 2.5500000000000003, + 2.48, + 2.33, + 2.18, + 2.0, + 1.84, + 1.6600000000000001, + 1.52, + 1.49, + 1.57, + 1.78, + 1.99, + 2.11, + 2.18, + 2.16, + 2.07, + 1.99, + 2.0100000000000002, + 2.11, + 2.34, + 2.64, + 3.02, + 3.38, + 3.67, + 3.93, + 4.12, + 4.26, + 4.3500000000000005, + 4.47, + 4.61, + 4.8, + 4.97, + 5.12, + 5.24, + 5.3, + 5.5, + 5.89, + 6.26, + 6.71, + 7.09, + 7.37, + 7.62, + 7.54, + 7.45, + 7.12, + 6.75, + 6.28, + 5.72, + 5.09, + 4.53, + 4.1, + 3.9, + 3.84, + 3.9, + 3.86, + 3.7800000000000002, + 3.68, + 3.62, + 3.59, + 3.5500000000000003, + 3.54, + 3.52, + 3.44, + 3.16, + 2.86, + 2.74, + 2.67, + 2.65, + 2.64, + 2.58, + 2.5300000000000002, + 2.5100000000000002, + 2.5300000000000002, + 2.5500000000000003, + 2.52, + 2.2600000000000002, + 1.84, + 1.49, + 1.22, + 1.26, + 1.52, + 1.86, + 2.14, + 2.24, + 2.15, + 1.95, + 1.83, + 1.6400000000000001, + 1.43, + 1.24, + 1.22, + 1.27, + 1.55, + 1.84, + 2.15, + 2.4, + 2.41, + 2.21, + 1.61, + 0.9500000000000001, + 0.17, + -0.45, + -0.78, + -0.89, + -0.7000000000000001, + -0.32, + -0.06, + 0.12, + 0.19, + 0.23, + 0.27, + 0.29, + 0.35000000000000003, + 0.27, + 0.19, + 0.01, + -0.15, + 0.02, + 0.14, + 0.45, + 0.85, + 1.31, + 1.8800000000000001, + 2.08, + 2.24, + 2.33, + 2.37, + 2.42, + 2.4, + 2.48, + 2.31, + 2.2800000000000002, + 2.04, + 1.82, + 1.53, + 1.25, + 1.1500000000000001, + 1.18, + 1.22, + 1.17, + 0.88, + 0.41000000000000003, + -0.08, + -0.47000000000000003, + -0.64, + -0.56, + -0.32, + 0.03, + 0.35000000000000003, + 0.68, + 0.9500000000000001, + 1.04, + 0.9400000000000001, + 0.61, + 0.29, + -0.02, + -0.3, + -0.61, + -0.93, + -1.09, + -1.17, + -1.07, + -0.86, + -0.54, + -0.36, + -0.35000000000000003, + -0.51, + -0.63, + -0.71, + -0.55, + -0.41000000000000003, + -0.22, + -0.27, + -0.39, + -0.46, + -0.67, + -0.63, + -0.74, + -0.71, + -0.71, + -0.78, + -0.87, + -0.97, + -0.93, + -0.91, + -0.9400000000000001, + -0.87, + -0.75, + -0.66, + -0.42, + -0.3, + -0.22, + -0.32, + -0.58, + -0.67, + -0.61, + -0.33, + 0.02, + 0.4, + 0.66, + 0.86, + 0.8200000000000001, + 0.7000000000000001, + 0.66, + 0.45, + 0.37, + 0.25, + 0.03, + -0.14, + -0.27, + -0.32, + -0.18, + -0.01, + 0.09, + 0.2, + 0.22, + 0.21, + 0.23, + 0.19, + 0.05, + -0.4, + -0.78, + -0.99, + -1.08, + -0.91, + -0.73, + -0.53, + -0.34, + -0.26, + -0.19, + -0.02, + 0.22, + 0.51, + 0.85, + 1.0, + 1.26, + 1.08, + 0.78, + 0.3, + -0.21, + -0.35000000000000003, + -0.29, + -0.19, + 0.01, + 0.1, + 0.08, + 0.07, + 0.02, + -0.04, + -0.13, + -0.3, + -0.25, + -0.12, + 0.1, + 0.32, + 0.46, + 0.59, + 0.81, + 1.16, + 1.46, + 1.68, + 1.51, + 1.09, + 0.59, + 0.19, + -0.15, + -0.55, + -0.9400000000000001, + -1.05, + -1.04, + -0.76, + -0.47000000000000003, + -0.28, + -0.11, + -0.05, + -0.03, + -0.14, + -0.12, + -0.08, + 0.0, + -0.02, + -0.21, + -0.26, + -0.47000000000000003, + -0.45, + -0.49, + -0.29, + 0.09, + 0.5, + 0.93, + 1.19, + 1.24, + 1.25, + 1.09, + 1.03, + 0.96, + 0.76, + 0.15, + -0.52, + -0.87, + -1.0, + -0.76, + -0.47000000000000003, + -0.32, + -0.31, + -0.48, + -0.86, + -1.3, + -1.74, + -1.8800000000000001, + -1.54, + -1.1300000000000001, + -0.84, + -0.54, + -0.37, + -0.13, + 0.06, + 0.21, + 0.41000000000000003, + 0.49, + 0.45, + 0.39, + 0.29, + 0.23 + ], + [ + 2.77, + 2.74, + 2.58, + 2.4, + 2.2800000000000002, + 2.2, + 2.12, + 2.05, + 1.99, + 1.94, + 1.92, + 1.87, + 1.83, + 1.79, + 1.84, + 1.95, + 2.1, + 2.24, + 2.36, + 2.46, + 2.54, + 2.59, + 2.59, + 2.54, + 2.39, + 2.2, + 2.0, + 1.83, + 1.7, + 1.6500000000000001, + 1.52, + 1.45, + 1.53, + 1.68, + 1.8900000000000001, + 2.09, + 2.17, + 2.16, + 2.08, + 2.09, + 2.1, + 2.2, + 2.37, + 2.65, + 2.99, + 3.33, + 3.63, + 3.9, + 4.13, + 4.29, + 4.43, + 4.58, + 4.78, + 4.93, + 5.05, + 5.14, + 5.11, + 5.19, + 5.51, + 5.91, + 6.5200000000000005, + 6.99, + 7.28, + 7.55, + 7.53, + 7.44, + 7.1000000000000005, + 6.71, + 6.21, + 5.67, + 5.13, + 4.58, + 4.13, + 3.84, + 3.7, + 3.73, + 3.79, + 3.85, + 3.79, + 3.8000000000000003, + 3.74, + 3.66, + 3.61, + 3.5300000000000002, + 3.5, + 3.3000000000000003, + 3.04, + 2.83, + 2.71, + 2.7, + 2.69, + 2.61, + 2.52, + 2.5, + 2.52, + 2.59, + 2.69, + 2.58, + 2.2600000000000002, + 1.8, + 1.33, + 1.1, + 1.1400000000000001, + 1.41, + 1.76, + 2.04, + 2.15, + 2.1, + 2.09, + 2.0, + 1.77, + 1.56, + 1.46, + 1.44, + 1.52, + 1.71, + 1.93, + 2.17, + 2.3000000000000003, + 2.3000000000000003, + 2.0300000000000002, + 1.6400000000000001, + 1.04, + 0.63, + 0.05, + -0.34, + -0.45, + -0.38, + -0.04, + 0.31, + 0.55, + 0.74, + 0.87, + 0.9500000000000001, + 1.07, + 1.17, + 1.26, + 1.05, + 0.8, + 0.5, + 0.32, + 0.43, + 0.58, + 1.0, + 1.58, + 2.04, + 2.36, + 2.45, + 2.54, + 2.56, + 2.52, + 2.52, + 2.33, + 2.2, + 1.84, + 1.56, + 1.32, + 1.03, + 0.84, + 0.7000000000000001, + 0.73, + 0.71, + 0.62, + 0.33, + 0.01, + -0.26, + -0.45, + -0.35000000000000003, + -0.25, + -0.01, + 0.32, + 0.66, + 0.97, + 1.1500000000000001, + 1.24, + 1.06, + 0.79, + 0.51, + 0.24, + -0.16, + -0.5, + -0.74, + -0.88, + -0.97, + -0.92, + -0.79, + -0.62, + -0.47000000000000003, + -0.45, + -0.55, + -0.63, + -0.65, + -0.63, + -0.49, + -0.49, + -0.54, + -0.67, + -0.79, + -0.7000000000000001, + -0.68, + -0.55, + -0.46, + -0.47000000000000003, + -0.5, + -0.64, + -0.73, + -0.76, + -0.77, + -0.84, + -0.86, + -0.63, + -0.33, + -0.16, + -0.02, + -0.03, + -0.16, + -0.38, + -0.41000000000000003, + -0.32, + -0.07, + 0.24, + 0.38, + 0.55, + 0.56, + 0.45, + 0.25, + 0.07, + 0.15, + 0.2, + 0.3, + 0.29, + 0.06, + -0.18, + -0.22, + -0.16, + 0.03, + 0.24, + 0.31, + 0.35000000000000003, + 0.29, + 0.16, + 0.07, + -0.27, + -0.6900000000000001, + -1.03, + -1.26, + -1.24, + -1.12, + -0.85, + -0.61, + -0.36, + -0.2, + -0.17, + -0.08, + 0.16, + 0.45, + 0.75, + 1.02, + 1.16, + 1.19, + 0.79, + 0.32, + -0.14, + -0.27, + -0.19, + 0.08, + 0.28, + 0.28, + 0.25, + 0.12, + 0.02, + -0.03, + -0.14, + -0.15, + -0.08, + 0.04, + 0.22, + 0.32, + 0.36, + 0.45, + 0.6, + 0.91, + 1.23, + 1.37, + 1.28, + 0.86, + 0.41000000000000003, + 0.01, + -0.35000000000000003, + -0.74, + -0.92, + -1.04, + -0.8300000000000001, + -0.56, + -0.39, + -0.23, + -0.1, + -0.02, + 0.07, + 0.11, + 0.17, + 0.32, + 0.34, + 0.32, + 0.16, + 0.01, + -0.18, + -0.47000000000000003, + -0.48, + -0.36, + -0.01, + 0.35000000000000003, + 0.75, + 0.93, + 1.03, + 1.0, + 0.89, + 0.8300000000000001, + 0.74, + 0.4, + -0.21, + -0.81, + -1.21, + -1.1300000000000001, + -0.8200000000000001, + -0.44, + -0.15, + -0.09, + -0.14, + -0.47000000000000003, + -0.92, + -1.3, + -1.3900000000000001, + -1.1, + -0.75, + -0.45, + -0.33, + -0.19, + -0.16, + -0.04, + 0.1, + 0.29, + 0.35000000000000003, + 0.39, + 0.25, + 0.2, + 0.14 + ], + [ + 2.73, + 2.69, + 2.5300000000000002, + 2.34, + 2.24, + 2.17, + 2.1, + 2.04, + 2.0, + 1.99, + 1.97, + 1.96, + 1.92, + 1.94, + 1.99, + 2.11, + 2.2600000000000002, + 2.39, + 2.5, + 2.5500000000000003, + 2.59, + 2.6, + 2.57, + 2.47, + 2.27, + 2.0100000000000002, + 1.71, + 1.57, + 1.51, + 1.5, + 1.53, + 1.46, + 1.45, + 1.61, + 1.84, + 2.05, + 2.22, + 2.22, + 2.17, + 2.16, + 2.25, + 2.35, + 2.48, + 2.71, + 3.0100000000000002, + 3.31, + 3.61, + 3.88, + 4.12, + 4.32, + 4.51, + 4.73, + 4.89, + 4.99, + 5.05, + 4.99, + 4.99, + 5.21, + 5.55, + 6.24, + 6.84, + 7.23, + 7.53, + 7.46, + 7.390000000000001, + 7.09, + 6.72, + 6.2, + 5.64, + 5.0600000000000005, + 4.46, + 4.04, + 3.71, + 3.5100000000000002, + 3.46, + 3.52, + 3.64, + 3.71, + 3.8000000000000003, + 3.81, + 3.8200000000000003, + 3.74, + 3.61, + 3.5300000000000002, + 3.36, + 3.16, + 2.94, + 2.75, + 2.72, + 2.74, + 2.67, + 2.56, + 2.47, + 2.44, + 2.5100000000000002, + 2.65, + 2.71, + 2.58, + 2.2, + 1.6600000000000001, + 1.21, + 0.97, + 1.03, + 1.36, + 1.71, + 1.93, + 2.05, + 2.16, + 2.19, + 2.08, + 1.8800000000000001, + 1.75, + 1.7, + 1.76, + 1.8900000000000001, + 1.93, + 2.05, + 2.11, + 2.05, + 1.97, + 1.6500000000000001, + 1.32, + 1.11, + 0.75, + 0.58, + 0.2, + -0.03, + 0.03, + 0.19, + 0.53, + 0.86, + 1.09, + 1.23, + 1.35, + 1.51, + 1.71, + 1.9000000000000001, + 1.92, + 1.57, + 1.23, + 0.9500000000000001, + 0.81, + 0.88, + 1.05, + 1.54, + 1.8800000000000001, + 2.12, + 2.21, + 2.27, + 2.32, + 2.2800000000000002, + 2.1, + 1.94, + 1.72, + 1.4000000000000001, + 1.12, + 0.84, + 0.66, + 0.46, + 0.37, + 0.32, + 0.3, + 0.15, + -0.02, + -0.21, + -0.32, + -0.23, + -0.11, + 0.06, + 0.28, + 0.52, + 0.85, + 1.1300000000000001, + 1.3, + 1.18, + 1.01, + 0.78, + 0.56, + 0.28, + -0.04, + -0.38, + -0.6, + -0.71, + -0.76, + -0.78, + -0.71, + -0.6, + -0.52, + -0.46, + -0.41000000000000003, + -0.46, + -0.45, + -0.42, + -0.39, + -0.38, + -0.43, + -0.56, + -0.65, + -0.61, + -0.56, + -0.45, + -0.33, + -0.29, + -0.38, + -0.53, + -0.63, + -0.68, + -0.6900000000000001, + -0.75, + -0.72, + -0.5, + -0.25, + -0.09, + -0.01, + -0.04, + -0.14, + -0.09, + -0.1, + 0.2, + 0.47000000000000003, + 0.63, + 0.75, + 0.66, + 0.61, + 0.35000000000000003, + 0.06, + -0.08, + -0.07, + 0.17, + 0.39, + 0.42, + 0.26, + 0.02, + -0.12, + -0.05, + 0.06, + 0.23, + 0.27, + 0.27, + 0.11, + -0.04, + -0.37, + -0.71, + -0.9400000000000001, + -1.26, + -1.27, + -1.27, + -1.19, + -1.01, + -0.68, + -0.42, + -0.22, + -0.15, + -0.09, + 0.06, + 0.28, + 0.44, + 0.66, + 0.72, + 0.71, + 0.5, + 0.07, + -0.07, + -0.17, + 0.1, + 0.38, + 0.48, + 0.5, + 0.38, + 0.26, + 0.16, + 0.09, + 0.07, + 0.1, + 0.12, + 0.21, + 0.24, + 0.22, + 0.21, + 0.19, + 0.33, + 0.54, + 0.8300000000000001, + 0.97, + 0.86, + 0.58, + 0.16, + -0.13, + -0.49, + -0.73, + -0.9400000000000001, + -0.81, + -0.6, + -0.45, + -0.31, + -0.24, + -0.15, + -0.05, + 0.02, + 0.15, + 0.29, + 0.45, + 0.58, + 0.58, + 0.65, + 0.48, + 0.3, + 0.0, + -0.24, + -0.13, + -0.01, + 0.32, + 0.4, + 0.56, + 0.64, + 0.63, + 0.7000000000000001, + 0.67, + 0.49, + 0.1, + -0.5, + -1.11, + -1.28, + -1.11, + -0.7000000000000001, + -0.26, + 0.08, + 0.34, + 0.3, + 0.2, + -0.25, + -0.7000000000000001, + -0.81, + -0.79, + -0.47000000000000003, + -0.22, + -0.06, + -0.08, + -0.06, + -0.08, + 0.02, + 0.08, + 0.12, + 0.04, + -0.1, + -0.17, + -0.2 + ], + [ + 2.65, + 2.63, + 2.48, + 2.3000000000000003, + 2.21, + 2.15, + 2.1, + 2.05, + 2.02, + 2.0100000000000002, + 2.0300000000000002, + 2.0300000000000002, + 2.05, + 2.08, + 2.18, + 2.3000000000000003, + 2.44, + 2.56, + 2.64, + 2.69, + 2.66, + 2.63, + 2.5500000000000003, + 2.41, + 2.14, + 1.77, + 1.47, + 1.27, + 1.26, + 1.34, + 1.4000000000000001, + 1.46, + 1.47, + 1.6300000000000001, + 1.87, + 2.16, + 2.33, + 2.34, + 2.29, + 2.3000000000000003, + 2.39, + 2.5100000000000002, + 2.65, + 2.83, + 3.08, + 3.33, + 3.6, + 3.86, + 4.11, + 4.36, + 4.62, + 4.82, + 4.92, + 4.96, + 4.83, + 4.8, + 4.97, + 5.22, + 5.91, + 6.61, + 7.140000000000001, + 7.54, + 7.47, + 7.36, + 6.99, + 6.61, + 6.18, + 5.66, + 5.0600000000000005, + 4.45, + 3.92, + 3.54, + 3.3200000000000003, + 3.24, + 3.23, + 3.34, + 3.48, + 3.62, + 3.71, + 3.84, + 3.84, + 3.69, + 3.56, + 3.39, + 3.21, + 2.98, + 2.75, + 2.7, + 2.73, + 2.73, + 2.66, + 2.5300000000000002, + 2.43, + 2.4, + 2.47, + 2.61, + 2.67, + 2.49, + 2.04, + 1.5, + 1.05, + 0.85, + 1.01, + 1.33, + 1.61, + 1.83, + 1.99, + 2.11, + 2.19, + 2.1, + 1.96, + 1.84, + 1.94, + 2.09, + 2.07, + 2.02, + 1.99, + 1.9100000000000001, + 1.77, + 1.48, + 1.22, + 0.92, + 0.81, + 0.91, + 0.75, + 0.64, + 0.4, + 0.27, + 0.43, + 0.7000000000000001, + 1.02, + 1.21, + 1.35, + 1.44, + 1.59, + 1.9000000000000001, + 2.17, + 2.31, + 2.19, + 1.85, + 1.59, + 1.31, + 1.07, + 1.1300000000000001, + 1.19, + 1.48, + 1.5, + 1.58, + 1.6400000000000001, + 1.68, + 1.57, + 1.4000000000000001, + 1.31, + 1.11, + 1.04, + 0.8200000000000001, + 0.63, + 0.46, + 0.31, + 0.21, + 0.14, + 0.08, + -0.02, + -0.14, + -0.23, + -0.19, + -0.06, + 0.13, + 0.31, + 0.47000000000000003, + 0.72, + 1.05, + 1.31, + 1.2, + 1.07, + 0.72, + 0.47000000000000003, + 0.29, + 0.03, + -0.16, + -0.44, + -0.55, + -0.61, + -0.66, + -0.71, + -0.67, + -0.62, + -0.52, + -0.4, + -0.31, + -0.23, + -0.21, + -0.16, + -0.12, + -0.07, + -0.12, + -0.18, + -0.27, + -0.43, + -0.43, + -0.41000000000000003, + -0.32, + -0.21, + -0.27, + -0.45, + -0.61, + -0.61, + -0.6, + -0.61, + -0.54, + -0.41000000000000003, + -0.3, + -0.18, + -0.15, + -0.15, + -0.05, + 0.01, + 0.29, + 0.58, + 0.99, + 1.18, + 1.12, + 1.03, + 0.8, + 0.52, + 0.2, + 0.01, + 0.04, + 0.25, + 0.49, + 0.58, + 0.46, + 0.29, + 0.15, + 0.14, + 0.19, + 0.14, + 0.18, + 0.08, + -0.07, + -0.37, + -0.7000000000000001, + -1.0, + -1.24, + -1.1, + -1.08, + -1.05, + -1.0, + -0.9400000000000001, + -0.71, + -0.43, + -0.23, + -0.12, + -0.04, + 0.03, + 0.09, + 0.18, + 0.17, + 0.22, + 0.1, + -0.04, + -0.13, + -0.24, + -0.03, + 0.23, + 0.46, + 0.58, + 0.59, + 0.5, + 0.45, + 0.37, + 0.32, + 0.32, + 0.3, + 0.31, + 0.24, + 0.14, + 0.09, + 0.04, + 0.02, + 0.08, + 0.29, + 0.47000000000000003, + 0.61, + 0.54, + 0.29, + 0.15, + -0.13, + -0.29, + -0.53, + -0.65, + -0.55, + -0.46, + -0.35000000000000003, + -0.29, + -0.23, + -0.17, + -0.07, + 0.0, + 0.1, + 0.24, + 0.38, + 0.55, + 0.7000000000000001, + 0.79, + 0.84, + 0.63, + 0.39, + 0.15, + 0.01, + 0.13, + 0.07, + 0.13, + 0.19, + 0.25, + 0.47000000000000003, + 0.58, + 0.62, + 0.45, + -0.07, + -0.73, + -1.1400000000000001, + -1.2, + -0.89, + -0.38, + 0.05, + 0.4, + 0.66, + 0.81, + 0.68, + 0.41000000000000003, + -0.07, + -0.5700000000000001, + -0.56, + -0.43, + -0.18, + -0.02, + -0.02, + -0.1, + -0.14, + -0.18, + -0.21, + -0.34, + -0.55, + -0.68, + -0.77, + -0.73 + ], + [ + 2.6, + 2.57, + 2.43, + 2.27, + 2.19, + 2.14, + 2.09, + 2.05, + 2.0300000000000002, + 2.05, + 2.07, + 2.13, + 2.16, + 2.2600000000000002, + 2.36, + 2.5, + 2.63, + 2.73, + 2.81, + 2.81, + 2.77, + 2.68, + 2.57, + 2.37, + 2.04, + 1.62, + 1.25, + 1.07, + 1.08, + 1.19, + 1.35, + 1.43, + 1.61, + 1.77, + 2.08, + 2.37, + 2.48, + 2.49, + 2.4, + 2.41, + 2.5, + 2.63, + 2.7800000000000002, + 2.96, + 3.16, + 3.38, + 3.6, + 3.84, + 4.12, + 4.42, + 4.67, + 4.82, + 4.88, + 4.73, + 4.62, + 4.69, + 4.89, + 5.54, + 6.22, + 6.93, + 7.47, + 7.44, + 7.3100000000000005, + 6.92, + 6.49, + 6.03, + 5.5600000000000005, + 5.0600000000000005, + 4.49, + 3.93, + 3.48, + 3.16, + 3.06, + 3.02, + 3.09, + 3.19, + 3.34, + 3.49, + 3.62, + 3.75, + 3.81, + 3.67, + 3.5300000000000002, + 3.35, + 3.04, + 2.7800000000000002, + 2.6, + 2.58, + 2.66, + 2.69, + 2.62, + 2.5100000000000002, + 2.38, + 2.32, + 2.38, + 2.5100000000000002, + 2.56, + 2.35, + 1.9000000000000001, + 1.37, + 0.92, + 0.77, + 0.93, + 1.28, + 1.55, + 1.69, + 1.84, + 2.0300000000000002, + 2.12, + 2.12, + 2.0100000000000002, + 2.0, + 2.15, + 2.18, + 2.04, + 1.87, + 1.7, + 1.6600000000000001, + 1.56, + 1.26, + 0.96, + 0.71, + 0.67, + 0.8, + 0.9, + 0.79, + 0.64, + 0.52, + 0.55, + 0.81, + 0.98, + 1.1400000000000001, + 1.2, + 1.26, + 1.47, + 1.78, + 2.12, + 2.31, + 2.42, + 2.34, + 2.06, + 1.72, + 1.33, + 1.0, + 0.97, + 0.8300000000000001, + 0.86, + 0.87, + 0.9400000000000001, + 0.86, + 0.75, + 0.62, + 0.53, + 0.7000000000000001, + 0.6900000000000001, + 0.72, + 0.62, + 0.47000000000000003, + 0.34, + 0.21, + 0.13, + 0.06, + 0.0, + -0.06, + -0.04, + 0.01, + 0.18, + 0.37, + 0.5700000000000001, + 0.74, + 1.07, + 1.3800000000000001, + 1.41, + 1.3, + 0.77, + 0.39, + 0.06, + -0.16, + -0.29, + -0.49, + -0.51, + -0.52, + -0.53, + -0.56, + -0.61, + -0.61, + -0.5700000000000001, + -0.49, + -0.32, + -0.16, + -0.05, + 0.04, + 0.1, + 0.21, + 0.26, + 0.27, + 0.2, + 0.11, + -0.05, + -0.29, + -0.32, + -0.23, + -0.13, + -0.12, + -0.25, + -0.46, + -0.51, + -0.47000000000000003, + -0.43, + -0.42, + -0.43, + -0.39, + -0.4, + -0.35000000000000003, + -0.22, + -0.11, + 0.08, + 0.35000000000000003, + 0.75, + 1.1500000000000001, + 1.43, + 1.3800000000000001, + 1.25, + 1.02, + 0.8200000000000001, + 0.55, + 0.34, + 0.36, + 0.43, + 0.6, + 0.71, + 0.67, + 0.55, + 0.53, + 0.44, + 0.34, + 0.25, + 0.18, + 0.08, + -0.07, + -0.36, + -0.6900000000000001, + -0.99, + -1.0, + -0.84, + -0.65, + -0.59, + -0.6900000000000001, + -0.66, + -0.61, + -0.41000000000000003, + -0.17, + -0.02, + 0.06, + 0.11, + 0.1, + 0.04, + -0.03, + -0.13, + -0.25, + -0.36, + -0.4, + -0.26, + -0.06, + 0.16, + 0.39, + 0.48, + 0.5, + 0.6, + 0.59, + 0.53, + 0.48, + 0.46, + 0.44, + 0.33, + 0.15, + 0.01, + -0.09, + -0.1, + -0.04, + 0.01, + 0.16, + 0.33, + 0.4, + 0.36, + 0.39, + 0.26, + 0.32, + 0.16, + -0.07, + -0.18, + -0.32, + -0.29, + -0.34, + -0.34, + -0.27, + -0.19, + -0.09, + 0.0, + 0.04, + 0.11, + 0.23, + 0.35000000000000003, + 0.54, + 0.7000000000000001, + 0.78, + 0.6900000000000001, + 0.46, + 0.31, + 0.18, + 0.04, + -0.03, + -0.06, + -0.02, + 0.19, + 0.42, + 0.66, + 0.74, + 0.45, + -0.11, + -0.68, + -0.99, + -0.91, + -0.43, + 0.05, + 0.47000000000000003, + 0.77, + 0.92, + 1.05, + 0.9400000000000001, + 0.65, + 0.12, + -0.38, + -0.67, + -0.54, + -0.25, + -0.1, + -0.09, + -0.18, + -0.26, + -0.34, + -0.56, + -0.8200000000000001, + -1.11, + -1.34, + -1.3800000000000001, + -1.31 + ], + [ + 2.52, + 2.5100000000000002, + 2.38, + 2.24, + 2.17, + 2.12, + 2.08, + 2.05, + 2.06, + 2.08, + 2.14, + 2.2, + 2.31, + 2.42, + 2.5500000000000003, + 2.69, + 2.79, + 2.88, + 2.92, + 2.9, + 2.82, + 2.7, + 2.58, + 2.36, + 1.99, + 1.54, + 1.1500000000000001, + 0.98, + 0.99, + 1.1400000000000001, + 1.31, + 1.52, + 1.71, + 2.08, + 2.39, + 2.5500000000000003, + 2.66, + 2.54, + 2.43, + 2.45, + 2.5500000000000003, + 2.69, + 2.84, + 3.04, + 3.23, + 3.42, + 3.62, + 3.86, + 4.17, + 4.45, + 4.64, + 4.7700000000000005, + 4.69, + 4.55, + 4.55, + 4.63, + 5.13, + 5.78, + 6.5600000000000005, + 7.25, + 7.37, + 7.26, + 6.79, + 6.3, + 5.8500000000000005, + 5.37, + 4.87, + 4.34, + 3.87, + 3.42, + 3.04, + 2.86, + 2.7800000000000002, + 2.84, + 2.9, + 3.02, + 3.16, + 3.24, + 3.39, + 3.5700000000000003, + 3.64, + 3.72, + 3.58, + 3.33, + 3.0100000000000002, + 2.63, + 2.44, + 2.4, + 2.48, + 2.56, + 2.5100000000000002, + 2.4, + 2.2800000000000002, + 2.21, + 2.2800000000000002, + 2.4, + 2.41, + 2.21, + 1.79, + 1.25, + 0.84, + 0.67, + 0.89, + 1.23, + 1.43, + 1.56, + 1.69, + 1.8900000000000001, + 2.1, + 2.13, + 2.1, + 2.14, + 2.23, + 2.2, + 1.9000000000000001, + 1.52, + 1.3900000000000001, + 1.43, + 1.4000000000000001, + 1.29, + 0.97, + 0.79, + 0.71, + 0.7000000000000001, + 0.8200000000000001, + 0.79, + 0.65, + 0.61, + 0.65, + 0.68, + 0.81, + 0.8200000000000001, + 0.81, + 0.9400000000000001, + 1.17, + 1.49, + 1.81, + 2.16, + 2.4, + 2.5100000000000002, + 2.4, + 2.0, + 1.48, + 1.01, + 0.61, + 0.45, + 0.41000000000000003, + 0.41000000000000003, + 0.41000000000000003, + 0.33, + 0.12, + 0.01, + 0.09, + 0.3, + 0.56, + 0.66, + 0.72, + 0.64, + 0.44, + 0.29, + 0.17, + 0.08, + 0.1, + 0.17, + 0.2, + 0.29, + 0.43, + 0.59, + 0.79, + 1.02, + 1.35, + 1.55, + 1.57, + 1.18, + 0.64, + 0.22, + -0.11, + -0.36, + -0.48, + -0.58, + -0.55, + -0.46, + -0.41000000000000003, + -0.4, + -0.39, + -0.42, + -0.39, + -0.3, + -0.1, + 0.08, + 0.23, + 0.33, + 0.48, + 0.58, + 0.54, + 0.54, + 0.51, + 0.41000000000000003, + 0.28, + 0.03, + -0.16, + -0.09, + 0.03, + 0.07, + -0.04, + -0.2, + -0.34, + -0.33, + -0.3, + -0.35000000000000003, + -0.44, + -0.59, + -0.6, + -0.54, + -0.4, + -0.24, + -0.04, + 0.22, + 0.62, + 1.0, + 1.25, + 1.4000000000000001, + 1.26, + 1.21, + 1.06, + 0.91, + 0.77, + 0.61, + 0.59, + 0.62, + 0.64, + 0.73, + 0.78, + 0.75, + 0.63, + 0.5, + 0.4, + 0.31, + 0.25, + 0.1, + -0.1, + -0.43, + -0.5700000000000001, + -0.56, + -0.44, + -0.25, + -0.27, + -0.38, + -0.47000000000000003, + -0.45, + -0.29, + -0.05, + 0.17, + 0.31, + 0.32, + 0.24, + 0.12, + -0.03, + -0.19, + -0.32, + -0.43, + -0.32, + -0.2, + -0.01, + 0.21, + 0.24, + 0.32, + 0.38, + 0.49, + 0.62, + 0.59, + 0.53, + 0.5, + 0.45, + 0.28, + 0.05, + -0.17, + -0.23, + -0.18, + -0.09, + 0.07, + 0.19, + 0.31, + 0.38, + 0.53, + 0.5700000000000001, + 0.77, + 0.8200000000000001, + 0.78, + 0.55, + 0.22, + 0.05, + -0.15, + -0.27, + -0.36, + -0.35000000000000003, + -0.21, + -0.1, + 0.0, + 0.03, + 0.04, + 0.07, + 0.18, + 0.34, + 0.51, + 0.54, + 0.5, + 0.47000000000000003, + 0.33, + 0.3, + 0.16, + 0.1, + 0.08, + 0.16, + 0.4, + 0.59, + 0.84, + 0.85, + 0.52, + -0.02, + -0.51, + -0.7000000000000001, + -0.41000000000000003, + 0.05, + 0.55, + 0.91, + 1.07, + 1.1500000000000001, + 0.98, + 0.89, + 0.53, + 0.01, + -0.43, + -0.72, + -0.63, + -0.34, + -0.17, + -0.18, + -0.26, + -0.35000000000000003, + -0.52, + -0.79, + -1.2, + -1.58, + -1.86, + -1.92, + -1.85 + ], + [ + 2.46, + 2.42, + 2.33, + 2.21, + 2.14, + 2.11, + 2.07, + 2.07, + 2.08, + 2.15, + 2.22, + 2.31, + 2.43, + 2.57, + 2.71, + 2.81, + 2.89, + 2.94, + 2.94, + 2.9, + 2.79, + 2.68, + 2.5500000000000003, + 2.34, + 1.95, + 1.5, + 1.16, + 0.96, + 0.9500000000000001, + 1.09, + 1.28, + 1.52, + 1.9100000000000001, + 2.3000000000000003, + 2.6, + 2.75, + 2.65, + 2.5, + 2.43, + 2.46, + 2.56, + 2.7, + 2.85, + 3.04, + 3.2600000000000002, + 3.44, + 3.66, + 3.95, + 4.22, + 4.43, + 4.58, + 4.55, + 4.51, + 4.54, + 4.54, + 4.91, + 5.41, + 6.11, + 6.890000000000001, + 7.23, + 7.2700000000000005, + 6.76, + 6.17, + 5.58, + 5.09, + 4.59, + 4.05, + 3.5700000000000003, + 3.13, + 2.82, + 2.58, + 2.44, + 2.42, + 2.5100000000000002, + 2.65, + 2.77, + 2.85, + 2.93, + 3.12, + 3.3200000000000003, + 3.49, + 3.58, + 3.6, + 3.34, + 2.93, + 2.54, + 2.25, + 2.2, + 2.25, + 2.29, + 2.29, + 2.18, + 2.12, + 2.12, + 2.18, + 2.29, + 2.3000000000000003, + 2.04, + 1.6400000000000001, + 1.16, + 0.71, + 0.65, + 0.86, + 1.2, + 1.4000000000000001, + 1.42, + 1.55, + 1.77, + 2.0, + 2.14, + 2.14, + 2.2, + 2.2800000000000002, + 2.2, + 1.8, + 1.29, + 1.1, + 1.18, + 1.26, + 1.24, + 1.11, + 0.88, + 0.63, + 0.6, + 0.51, + 0.5, + 0.54, + 0.51, + 0.49, + 0.49, + 0.44, + 0.39, + 0.38, + 0.51, + 0.77, + 1.09, + 1.46, + 1.85, + 2.25, + 2.49, + 2.45, + 2.0300000000000002, + 1.47, + 0.87, + 0.41000000000000003, + 0.19, + 0.13, + 0.29, + 0.27, + 0.16, + -0.05, + -0.15, + 0.0, + 0.16, + 0.47000000000000003, + 0.68, + 0.77, + 0.81, + 0.64, + 0.37, + 0.19, + 0.15, + 0.28, + 0.39, + 0.47000000000000003, + 0.52, + 0.56, + 0.72, + 0.8, + 1.05, + 1.27, + 1.49, + 1.37, + 0.9500000000000001, + 0.65, + 0.26, + 0.06, + -0.11, + -0.36, + -0.43, + -0.5, + -0.41000000000000003, + -0.27, + -0.2, + -0.12, + -0.05, + -0.04, + 0.13, + 0.3, + 0.49, + 0.62, + 0.76, + 0.9, + 0.78, + 0.74, + 0.6, + 0.55, + 0.56, + 0.4, + 0.29, + 0.11, + 0.04, + 0.13, + 0.18, + 0.06, + -0.05, + -0.15, + -0.19, + -0.19, + -0.27, + -0.44, + -0.64, + -0.7000000000000001, + -0.65, + -0.53, + -0.38, + -0.17, + 0.08, + 0.33, + 0.71, + 0.99, + 1.12, + 1.23, + 1.2, + 1.19, + 1.06, + 0.89, + 0.66, + 0.51, + 0.39, + 0.46, + 0.6, + 0.75, + 0.76, + 0.66, + 0.51, + 0.43, + 0.41000000000000003, + 0.36, + 0.21, + 0.02, + -0.07, + -0.2, + -0.2, + -0.08, + -0.12, + -0.23, + -0.31, + -0.41000000000000003, + -0.33, + -0.13, + 0.15, + 0.45, + 0.61, + 0.63, + 0.48, + 0.27, + 0.07, + -0.17, + -0.31, + -0.25, + -0.16, + 0.08, + 0.25, + 0.26, + 0.28, + 0.14, + 0.19, + 0.31, + 0.44, + 0.56, + 0.52, + 0.5, + 0.45, + 0.28, + 0.01, + -0.23, + -0.28, + -0.22, + -0.06, + 0.12, + 0.26, + 0.37, + 0.53, + 0.6900000000000001, + 0.96, + 1.16, + 1.29, + 1.24, + 1.03, + 0.67, + 0.41000000000000003, + 0.19, + -0.02, + -0.12, + -0.21, + -0.09, + 0.03, + 0.13, + 0.14, + 0.12, + 0.1, + 0.19, + 0.3, + 0.36, + 0.4, + 0.43, + 0.42, + 0.63, + 0.59, + 0.6, + 0.56, + 0.56, + 0.6900000000000001, + 0.77, + 0.98, + 1.0, + 0.93, + 0.6, + 0.06, + -0.33, + -0.33, + -0.05, + 0.44, + 0.92, + 1.17, + 1.3, + 1.1500000000000001, + 0.9400000000000001, + 0.61, + 0.29, + 0.02, + -0.44, + -0.55, + -0.43, + -0.35000000000000003, + -0.19, + -0.24, + -0.33, + -0.46, + -0.67, + -1.03, + -1.51, + -1.97, + -2.25, + -2.37, + -2.32 + ], + [ + 2.36, + 2.37, + 2.2800000000000002, + 2.17, + 2.13, + 2.1, + 2.09, + 2.1, + 2.15, + 2.22, + 2.3000000000000003, + 2.4, + 2.52, + 2.67, + 2.7800000000000002, + 2.86, + 2.9, + 2.9, + 2.89, + 2.81, + 2.72, + 2.61, + 2.48, + 2.24, + 1.9100000000000001, + 1.5, + 1.1500000000000001, + 1.01, + 0.9500000000000001, + 1.06, + 1.24, + 1.57, + 1.99, + 2.42, + 2.73, + 2.71, + 2.57, + 2.48, + 2.43, + 2.48, + 2.61, + 2.66, + 2.79, + 2.99, + 3.2, + 3.46, + 3.74, + 4.01, + 4.23, + 4.4, + 4.43, + 4.42, + 4.5, + 4.55, + 4.86, + 5.21, + 5.78, + 6.47, + 6.92, + 7.2, + 6.88, + 6.22, + 5.45, + 4.82, + 4.23, + 3.68, + 3.18, + 2.71, + 2.39, + 2.2, + 2.0300000000000002, + 1.95, + 1.96, + 2.08, + 2.2600000000000002, + 2.39, + 2.48, + 2.73, + 2.91, + 3.08, + 3.2600000000000002, + 3.36, + 3.38, + 3.22, + 2.77, + 2.39, + 2.11, + 1.96, + 1.99, + 1.98, + 1.93, + 1.9100000000000001, + 1.92, + 1.99, + 2.17, + 2.24, + 2.09, + 1.85, + 1.3900000000000001, + 0.9400000000000001, + 0.63, + 0.55, + 0.89, + 1.25, + 1.3800000000000001, + 1.3900000000000001, + 1.45, + 1.68, + 1.96, + 2.1, + 2.14, + 2.21, + 2.34, + 2.24, + 1.78, + 1.21, + 0.84, + 0.85, + 1.0, + 0.99, + 0.9500000000000001, + 0.65, + 0.4, + 0.13, + 0.04, + 0.15, + 0.22, + 0.27, + 0.24, + 0.19, + 0.12, + 0.02, + 0.02, + 0.08, + 0.35000000000000003, + 0.68, + 1.09, + 1.51, + 1.94, + 2.2600000000000002, + 2.11, + 1.77, + 1.1300000000000001, + 0.55, + 0.12, + -0.11, + 0.02, + 0.2, + 0.31, + 0.2, + 0.1, + 0.03, + 0.02, + 0.21, + 0.35000000000000003, + 0.53, + 0.8, + 0.86, + 0.77, + 0.48, + 0.27, + 0.31, + 0.46, + 0.65, + 0.7000000000000001, + 0.59, + 0.61, + 0.6, + 0.68, + 0.8300000000000001, + 1.06, + 1.1400000000000001, + 1.02, + 0.8, + 0.52, + 0.44, + 0.31, + 0.22, + -0.01, + -0.25, + -0.34, + -0.33, + -0.2, + 0.0, + 0.2, + 0.35000000000000003, + 0.5, + 0.64, + 0.8300000000000001, + 0.99, + 1.08, + 1.21, + 1.09, + 0.97, + 0.68, + 0.52, + 0.41000000000000003, + 0.41000000000000003, + 0.47000000000000003, + 0.35000000000000003, + 0.27, + 0.2, + 0.1, + 0.04, + 0.01, + -0.1, + -0.09, + -0.04, + -0.06, + -0.17, + -0.34, + -0.46, + -0.59, + -0.49, + -0.42, + -0.23, + -0.07, + 0.04, + 0.28, + 0.38, + 0.65, + 0.91, + 1.03, + 1.05, + 1.0, + 0.89, + 0.61, + 0.43, + 0.19, + 0.1, + 0.22, + 0.41000000000000003, + 0.62, + 0.68, + 0.56, + 0.42, + 0.4, + 0.4, + 0.32, + 0.19, + 0.08, + 0.02, + 0.01, + 0.01, + -0.08, + -0.22, + -0.39, + -0.52, + -0.45, + -0.31, + -0.03, + 0.31, + 0.66, + 0.8300000000000001, + 0.87, + 0.6900000000000001, + 0.42, + 0.07, + -0.2, + -0.3, + -0.22, + 0.06, + 0.31, + 0.42, + 0.41000000000000003, + 0.27, + 0.1, + -0.06, + 0.06, + 0.27, + 0.4, + 0.52, + 0.54, + 0.53, + 0.38, + 0.11, + -0.05, + -0.18, + -0.1, + 0.02, + 0.17, + 0.31, + 0.42, + 0.6, + 0.85, + 1.1500000000000001, + 1.32, + 1.46, + 1.46, + 1.21, + 1.06, + 0.81, + 0.73, + 0.58, + 0.4, + 0.39, + 0.35000000000000003, + 0.5, + 0.52, + 0.54, + 0.45, + 0.48, + 0.45, + 0.47000000000000003, + 0.47000000000000003, + 0.46, + 0.48, + 0.76, + 0.99, + 1.16, + 1.18, + 1.19, + 1.22, + 1.27, + 1.35, + 1.27, + 1.21, + 0.97, + 0.53, + 0.1, + -0.16, + -0.15, + 0.17, + 0.64, + 0.99, + 1.28, + 1.27, + 1.1400000000000001, + 0.8200000000000001, + 0.47000000000000003, + 0.33, + 0.07, + 0.0, + -0.09, + -0.13, + -0.04, + -0.2, + -0.28, + -0.42, + -0.5700000000000001, + -0.84, + -1.28, + -1.8, + -2.2800000000000002, + -2.61, + -2.69, + -2.68 + ], + [ + 2.3000000000000003, + 2.2800000000000002, + 2.23, + 2.17, + 2.12, + 2.12, + 2.12, + 2.16, + 2.21, + 2.29, + 2.37, + 2.47, + 2.59, + 2.7, + 2.79, + 2.83, + 2.83, + 2.8000000000000003, + 2.75, + 2.69, + 2.59, + 2.48, + 2.32, + 2.12, + 1.76, + 1.41, + 1.17, + 1.01, + 1.03, + 1.08, + 1.34, + 1.6500000000000001, + 2.08, + 2.54, + 2.63, + 2.57, + 2.5, + 2.43, + 2.49, + 2.59, + 2.59, + 2.58, + 2.64, + 2.83, + 3.15, + 3.47, + 3.7800000000000002, + 4.0200000000000005, + 4.25, + 4.34, + 4.37, + 4.5, + 4.58, + 4.86, + 5.17, + 5.63, + 6.18, + 6.59, + 6.98, + 6.82, + 6.34, + 5.59, + 4.7700000000000005, + 4.01, + 3.4, + 2.82, + 2.34, + 1.93, + 1.74, + 1.6, + 1.52, + 1.44, + 1.5, + 1.6, + 1.77, + 1.93, + 2.18, + 2.46, + 2.72, + 2.89, + 2.94, + 3.04, + 3.0100000000000002, + 2.8000000000000003, + 2.5300000000000002, + 2.14, + 1.8800000000000001, + 1.75, + 1.68, + 1.6300000000000001, + 1.58, + 1.59, + 1.7, + 1.93, + 2.12, + 2.07, + 1.9100000000000001, + 1.48, + 1.07, + 0.6, + 0.31, + 0.43, + 0.8200000000000001, + 1.21, + 1.33, + 1.35, + 1.41, + 1.6400000000000001, + 1.93, + 2.12, + 2.15, + 2.22, + 2.39, + 2.38, + 1.83, + 1.1, + 0.65, + 0.52, + 0.56, + 0.6, + 0.39, + 0.16, + -0.16, + -0.44, + -0.36, + -0.22, + -0.04, + 0.02, + 0.01, + -0.04, + -0.07, + -0.13, + -0.25, + -0.15, + 0.04, + 0.43, + 0.77, + 1.18, + 1.56, + 1.69, + 1.6400000000000001, + 1.19, + 0.64, + 0.14, + -0.3, + -0.32, + -0.17, + 0.06, + 0.22, + 0.26, + 0.17, + 0.08, + 0.06, + 0.07, + 0.14, + 0.36, + 0.66, + 0.9, + 0.79, + 0.56, + 0.4, + 0.44, + 0.65, + 0.86, + 0.78, + 0.63, + 0.52, + 0.49, + 0.5700000000000001, + 0.68, + 0.87, + 0.9400000000000001, + 0.8, + 0.59, + 0.37, + 0.34, + 0.4, + 0.26, + 0.2, + -0.07, + -0.23, + -0.21, + -0.08, + 0.2, + 0.49, + 0.6900000000000001, + 0.92, + 1.08, + 1.3, + 1.3900000000000001, + 1.49, + 1.4000000000000001, + 1.29, + 0.9500000000000001, + 0.62, + 0.42, + 0.3, + 0.27, + 0.36, + 0.39, + 0.32, + 0.13, + -0.07, + -0.24, + -0.36, + -0.29, + -0.16, + 0.0, + -0.02, + -0.08, + -0.21, + -0.29, + -0.23, + -0.17, + -0.03, + 0.12, + 0.18, + 0.24, + 0.19, + 0.25, + 0.37, + 0.65, + 0.79, + 0.76, + 0.6, + 0.38, + 0.16, + -0.06, + -0.16, + -0.12, + 0.0, + 0.29, + 0.52, + 0.53, + 0.43, + 0.38, + 0.36, + 0.41000000000000003, + 0.33, + 0.24, + 0.14, + 0.05, + 0.06, + -0.03, + -0.19, + -0.43, + -0.65, + -0.73, + -0.58, + -0.38, + -0.08, + 0.3, + 0.5700000000000001, + 0.84, + 0.76, + 0.68, + 0.34, + -0.02, + -0.28, + -0.41000000000000003, + -0.25, + 0.08, + 0.29, + 0.41000000000000003, + 0.41000000000000003, + 0.23, + 0.06, + -0.1, + -0.13, + 0.11, + 0.29, + 0.43, + 0.59, + 0.62, + 0.58, + 0.42, + 0.23, + 0.19, + 0.15, + 0.2, + 0.3, + 0.37, + 0.46, + 0.61, + 0.89, + 1.02, + 1.2, + 1.26, + 1.26, + 1.33, + 1.19, + 1.26, + 1.25, + 1.29, + 1.17, + 1.11, + 1.1300000000000001, + 1.1500000000000001, + 1.17, + 1.12, + 1.08, + 1.02, + 0.99, + 0.9, + 0.8300000000000001, + 0.74, + 0.89, + 1.18, + 1.44, + 1.6400000000000001, + 1.71, + 1.73, + 1.77, + 1.8, + 1.73, + 1.54, + 1.25, + 0.85, + 0.43, + 0.02, + -0.16, + -0.04, + 0.22, + 0.58, + 0.96, + 1.1300000000000001, + 1.2, + 1.02, + 0.72, + 0.59, + 0.46, + 0.45, + 0.43, + 0.41000000000000003, + 0.35000000000000003, + 0.16, + -0.07, + -0.31, + -0.46, + -0.66, + -0.98, + -1.47, + -2.0100000000000002, + -2.54, + -2.79, + -2.96, + -2.99 + ], + [ + 2.21, + 2.22, + 2.2, + 2.15, + 2.15, + 2.15, + 2.19, + 2.23, + 2.29, + 2.37, + 2.44, + 2.54, + 2.62, + 2.72, + 2.7800000000000002, + 2.79, + 2.74, + 2.68, + 2.61, + 2.5500000000000003, + 2.44, + 2.29, + 2.11, + 1.81, + 1.53, + 1.25, + 1.06, + 1.0, + 1.03, + 1.22, + 1.45, + 1.83, + 2.2600000000000002, + 2.48, + 2.52, + 2.42, + 2.37, + 2.44, + 2.5500000000000003, + 2.59, + 2.5, + 2.4, + 2.45, + 2.68, + 3.08, + 3.46, + 3.7600000000000002, + 4.0200000000000005, + 4.19, + 4.33, + 4.51, + 4.64, + 4.91, + 5.19, + 5.59, + 6.05, + 6.4, + 6.76, + 6.69, + 6.37, + 5.71, + 4.86, + 4.0600000000000005, + 3.3000000000000003, + 2.63, + 2.1, + 1.6, + 1.32, + 1.11, + 1.03, + 0.99, + 1.0, + 1.02, + 1.1400000000000001, + 1.29, + 1.5, + 1.77, + 2.1, + 2.43, + 2.57, + 2.59, + 2.6, + 2.56, + 2.35, + 2.06, + 1.78, + 1.53, + 1.4000000000000001, + 1.3, + 1.24, + 1.17, + 1.24, + 1.46, + 1.76, + 1.8800000000000001, + 1.8900000000000001, + 1.54, + 1.11, + 0.6, + 0.13, + -0.04, + 0.1, + 0.52, + 0.97, + 1.24, + 1.24, + 1.3900000000000001, + 1.67, + 1.95, + 2.11, + 2.17, + 2.27, + 2.44, + 2.32, + 1.87, + 1.02, + 0.37, + 0.21, + 0.18, + 0.1, + -0.14, + -0.4, + -0.74, + -0.73, + -0.65, + -0.42, + -0.2, + -0.14, + -0.16, + -0.08, + -0.06, + -0.16, + -0.24, + -0.25, + 0.04, + 0.3, + 0.63, + 0.85, + 1.04, + 1.18, + 1.03, + 0.66, + 0.25, + -0.27, + -0.41000000000000003, + -0.5, + -0.29, + -0.03, + 0.17, + 0.23, + 0.18, + 0.07, + -0.1, + -0.13, + 0.0, + 0.31, + 0.63, + 0.92, + 0.9, + 0.68, + 0.47000000000000003, + 0.56, + 0.77, + 0.86, + 0.8300000000000001, + 0.65, + 0.47000000000000003, + 0.5, + 0.54, + 0.71, + 0.89, + 0.9400000000000001, + 0.77, + 0.41000000000000003, + 0.18, + 0.02, + 0.05, + 0.17, + 0.09, + 0.05, + -0.07, + -0.07, + 0.15, + 0.4, + 0.66, + 0.9, + 1.03, + 1.29, + 1.44, + 1.62, + 1.61, + 1.54, + 1.24, + 0.88, + 0.64, + 0.43, + 0.3, + 0.29, + 0.28, + 0.32, + 0.17, + -0.15, + -0.49, + -0.79, + -0.8300000000000001, + -0.67, + -0.37, + -0.18, + -0.08, + -0.2, + -0.23, + -0.18, + -0.04, + 0.1, + 0.28, + 0.3, + 0.36, + 0.31, + 0.18, + 0.13, + 0.26, + 0.41000000000000003, + 0.52, + 0.43, + 0.19, + -0.1, + -0.31, + -0.5, + -0.47000000000000003, + -0.35000000000000003, + -0.09, + 0.19, + 0.33, + 0.39, + 0.34, + 0.3, + 0.38, + 0.46, + 0.46, + 0.36, + 0.25, + 0.14, + -0.01, + -0.13, + -0.32, + -0.6, + -0.78, + -0.74, + -0.6900000000000001, + -0.46, + -0.24, + 0.05, + 0.31, + 0.39, + 0.43, + 0.24, + 0.05, + -0.2, + -0.47000000000000003, + -0.45, + -0.32, + -0.13, + 0.1, + 0.2, + 0.21, + 0.2, + 0.03, + -0.08, + -0.07, + 0.0, + 0.18, + 0.32, + 0.48, + 0.71, + 0.72, + 0.72, + 0.67, + 0.6, + 0.55, + 0.49, + 0.5, + 0.51, + 0.51, + 0.62, + 0.6900000000000001, + 0.81, + 0.78, + 0.8200000000000001, + 1.0, + 1.12, + 1.33, + 1.48, + 1.68, + 1.71, + 1.78, + 1.69, + 1.76, + 1.7, + 1.75, + 1.6500000000000001, + 1.6300000000000001, + 1.52, + 1.51, + 1.3900000000000001, + 1.28, + 1.28, + 1.37, + 1.52, + 1.81, + 1.8900000000000001, + 1.96, + 2.05, + 2.07, + 2.02, + 1.83, + 1.55, + 1.08, + 0.64, + 0.17, + -0.13, + -0.16, + -0.06, + 0.19, + 0.5, + 0.76, + 0.98, + 0.99, + 0.89, + 0.81, + 0.6900000000000001, + 0.65, + 0.6900000000000001, + 0.66, + 0.65, + 0.56, + 0.28, + 0.01, + -0.26, + -0.47000000000000003, + -0.66, + -0.98, + -1.48, + -2.09, + -2.54, + -2.92, + -3.06, + -3.17 + ], + [ + 2.15, + 2.15, + 2.17, + 2.15, + 2.16, + 2.19, + 2.24, + 2.3000000000000003, + 2.37, + 2.43, + 2.49, + 2.56, + 2.63, + 2.71, + 2.75, + 2.74, + 2.67, + 2.58, + 2.52, + 2.42, + 2.27, + 2.06, + 1.79, + 1.5, + 1.23, + 0.99, + 0.92, + 0.89, + 1.04, + 1.25, + 1.62, + 2.0, + 2.33, + 2.52, + 2.47, + 2.33, + 2.3000000000000003, + 2.44, + 2.52, + 2.5, + 2.38, + 2.25, + 2.24, + 2.62, + 3.04, + 3.44, + 3.7600000000000002, + 3.97, + 4.16, + 4.43, + 4.65, + 4.96, + 5.24, + 5.61, + 6.01, + 6.3100000000000005, + 6.62, + 6.6000000000000005, + 6.38, + 5.78, + 4.98, + 4.13, + 3.35, + 2.67, + 2.07, + 1.48, + 1.07, + 0.71, + 0.55, + 0.44, + 0.43, + 0.49, + 0.55, + 0.66, + 0.8200000000000001, + 1.02, + 1.32, + 1.69, + 1.95, + 2.11, + 2.19, + 2.19, + 2.07, + 1.83, + 1.53, + 1.25, + 1.03, + 0.89, + 0.81, + 0.7000000000000001, + 0.66, + 0.77, + 1.07, + 1.3800000000000001, + 1.62, + 1.51, + 1.21, + 0.76, + 0.21, + -0.2, + -0.45, + -0.27, + 0.18, + 0.66, + 0.98, + 1.22, + 1.43, + 1.7, + 1.98, + 2.14, + 2.16, + 2.22, + 2.33, + 2.31, + 1.6, + 0.79, + 0.23, + -0.08, + -0.02, + -0.17, + -0.34, + -0.7000000000000001, + -0.73, + -0.76, + -0.62, + -0.38, + -0.31, + -0.27, + -0.17, + -0.02, + 0.06, + -0.05, + -0.17, + -0.09, + 0.08, + 0.34, + 0.51, + 0.5700000000000001, + 0.61, + 0.67, + 0.59, + 0.35000000000000003, + -0.05, + -0.26, + -0.46, + -0.34, + -0.17, + 0.11, + 0.32, + 0.42, + 0.37, + 0.14, + -0.07, + -0.18, + 0.08, + 0.46, + 0.9400000000000001, + 1.2, + 1.12, + 0.86, + 0.72, + 0.64, + 0.8, + 0.93, + 0.84, + 0.65, + 0.64, + 0.61, + 0.73, + 0.87, + 1.06, + 1.12, + 0.9, + 0.46, + -0.02, + -0.21, + -0.31, + -0.13, + 0.02, + 0.04, + 0.06, + 0.15, + 0.35000000000000003, + 0.59, + 0.79, + 0.86, + 0.98, + 1.1300000000000001, + 1.4000000000000001, + 1.52, + 1.59, + 1.35, + 1.06, + 0.79, + 0.59, + 0.51, + 0.39, + 0.29, + 0.26, + 0.06, + -0.27, + -0.71, + -1.24, + -1.49, + -1.42, + -1.1500000000000001, + -0.74, + -0.39, + -0.34, + -0.41000000000000003, + -0.36, + -0.25, + -0.01, + 0.21, + 0.28, + 0.32, + 0.31, + 0.25, + 0.15, + 0.09, + 0.08, + 0.22, + 0.27, + 0.09, + -0.08, + -0.34, + -0.64, + -0.71, + -0.74, + -0.46, + -0.2, + 0.05, + 0.21, + 0.27, + 0.23, + 0.26, + 0.37, + 0.44, + 0.5, + 0.5, + 0.38, + 0.26, + 0.06, + -0.2, + -0.41000000000000003, + -0.58, + -0.65, + -0.66, + -0.53, + -0.53, + -0.34, + -0.18, + -0.01, + -0.01, + -0.05, + -0.22, + -0.31, + -0.47000000000000003, + -0.47000000000000003, + -0.49, + -0.38, + -0.25, + -0.13, + -0.03, + 0.05, + 0.09, + 0.04, + -0.04, + -0.05, + 0.0, + 0.04, + 0.15, + 0.31, + 0.55, + 0.8300000000000001, + 0.91, + 1.01, + 0.98, + 0.9400000000000001, + 0.84, + 0.78, + 0.67, + 0.59, + 0.55, + 0.56, + 0.45, + 0.34, + 0.42, + 0.67, + 1.0, + 1.31, + 1.59, + 1.79, + 1.9000000000000001, + 1.86, + 1.93, + 1.86, + 1.96, + 1.87, + 1.9100000000000001, + 1.75, + 1.77, + 1.68, + 1.7, + 1.69, + 1.71, + 1.7, + 1.81, + 1.8, + 1.86, + 1.87, + 1.96, + 2.0, + 1.84, + 1.6500000000000001, + 1.19, + 0.8, + 0.3, + -0.11, + -0.25, + -0.26, + -0.11, + 0.09, + 0.32, + 0.59, + 0.74, + 0.8200000000000001, + 0.87, + 0.84, + 0.8, + 0.76, + 0.6, + 0.58, + 0.54, + 0.42, + 0.31, + 0.02, + -0.23, + -0.42, + -0.5700000000000001, + -0.91, + -1.36, + -1.94, + -2.49, + -2.82, + -3.06, + -3.08 + ], + [ + 2.07, + 2.08, + 2.11, + 2.11, + 2.15, + 2.21, + 2.2800000000000002, + 2.35, + 2.4, + 2.46, + 2.5, + 2.54, + 2.59, + 2.66, + 2.7, + 2.68, + 2.61, + 2.52, + 2.43, + 2.3000000000000003, + 2.12, + 1.83, + 1.49, + 1.21, + 0.92, + 0.8300000000000001, + 0.75, + 0.89, + 1.02, + 1.37, + 1.76, + 2.13, + 2.45, + 2.54, + 2.45, + 2.33, + 2.32, + 2.37, + 2.41, + 2.43, + 2.29, + 2.15, + 2.31, + 2.58, + 3.0500000000000003, + 3.47, + 3.73, + 3.96, + 4.2700000000000005, + 4.55, + 4.93, + 5.2700000000000005, + 5.64, + 6.0200000000000005, + 6.28, + 6.53, + 6.55, + 6.4, + 5.9, + 5.14, + 4.2700000000000005, + 3.43, + 2.73, + 2.18, + 1.58, + 1.05, + 0.53, + 0.24, + -0.02, + -0.1, + -0.16, + -0.11, + 0.0, + 0.11, + 0.3, + 0.51, + 0.81, + 1.08, + 1.36, + 1.54, + 1.6600000000000001, + 1.6600000000000001, + 1.5, + 1.26, + 0.93, + 0.67, + 0.47000000000000003, + 0.32, + 0.23, + 0.11, + 0.11, + 0.19, + 0.62, + 1.03, + 1.25, + 1.24, + 0.97, + 0.53, + 0.01, + -0.48, + -0.63, + -0.52, + -0.08, + 0.46, + 0.86, + 1.17, + 1.45, + 1.75, + 1.97, + 2.0300000000000002, + 2.07, + 2.1, + 2.16, + 1.85, + 1.34, + 0.52, + -0.09, + -0.07, + -0.02, + -0.02, + -0.25, + -0.32, + -0.41000000000000003, + -0.34, + -0.27, + -0.31, + -0.31, + -0.29, + -0.13, + 0.05, + 0.12, + 0.08, + -0.05, + -0.03, + 0.14, + 0.35000000000000003, + 0.36, + 0.34, + 0.36, + 0.34, + 0.32, + 0.15, + -0.08, + -0.28, + -0.26, + -0.11, + 0.12, + 0.41000000000000003, + 0.64, + 0.77, + 0.74, + 0.45, + 0.17, + 0.13, + 0.31, + 0.88, + 1.36, + 1.52, + 1.51, + 1.24, + 0.98, + 0.92, + 0.92, + 0.9400000000000001, + 0.9, + 0.85, + 0.8300000000000001, + 0.9400000000000001, + 1.02, + 1.18, + 1.3900000000000001, + 1.49, + 1.25, + 0.79, + 0.21, + -0.24, + -0.28, + -0.28, + -0.02, + 0.09, + 0.17, + 0.26, + 0.49, + 0.74, + 0.76, + 0.76, + 0.76, + 0.87, + 1.07, + 1.31, + 1.2, + 0.99, + 0.7000000000000001, + 0.49, + 0.47000000000000003, + 0.47000000000000003, + 0.46, + 0.33, + 0.02, + -0.38, + -0.96, + -1.6500000000000001, + -2.13, + -2.25, + -2.09, + -1.6300000000000001, + -1.07, + -0.7000000000000001, + -0.53, + -0.46, + -0.48, + -0.21, + 0.04, + 0.22, + 0.29, + 0.31, + 0.28, + 0.24, + 0.16, + -0.02, + -0.07, + -0.11, + -0.14, + -0.18, + -0.3, + -0.42, + -0.62, + -0.84, + -0.68, + -0.5, + -0.2, + 0.01, + 0.15, + 0.22, + 0.23, + 0.22, + 0.25, + 0.35000000000000003, + 0.41000000000000003, + 0.49, + 0.5700000000000001, + 0.46, + 0.23, + -0.09, + -0.34, + -0.41000000000000003, + -0.38, + -0.27, + -0.24, + -0.24, + -0.37, + -0.21, + -0.15, + -0.15, + -0.32, + -0.38, + -0.53, + -0.47000000000000003, + -0.45, + -0.37, + -0.32, + -0.26, + -0.2, + -0.09, + 0.02, + 0.05, + 0.02, + -0.05, + -0.06, + -0.04, + -0.06, + -0.08, + 0.1, + 0.35000000000000003, + 0.64, + 0.98, + 1.07, + 1.23, + 1.16, + 1.1300000000000001, + 0.97, + 0.8300000000000001, + 0.68, + 0.55, + 0.38, + 0.17, + 0.07, + 0.16, + 0.45, + 0.89, + 1.27, + 1.57, + 1.76, + 1.74, + 1.72, + 1.69, + 1.73, + 1.71, + 1.75, + 1.62, + 1.6, + 1.55, + 1.62, + 1.75, + 1.8900000000000001, + 1.84, + 1.83, + 1.72, + 1.62, + 1.48, + 1.45, + 1.47, + 1.46, + 1.3900000000000001, + 1.08, + 0.79, + 0.4, + 0.02, + -0.24, + -0.43, + -0.34, + -0.23, + -0.1, + 0.11, + 0.34, + 0.55, + 0.75, + 0.86, + 0.92, + 0.9, + 0.64, + 0.38, + 0.2, + 0.16, + 0.21, + 0.16, + 0.01, + -0.23, + -0.43, + -0.6, + -0.77, + -1.26, + -1.79, + -2.32, + -2.73, + -2.87, + -2.95 + ], + [ + 1.99, + 2.02, + 2.07, + 2.08, + 2.12, + 2.21, + 2.3000000000000003, + 2.37, + 2.43, + 2.46, + 2.48, + 2.49, + 2.5300000000000002, + 2.57, + 2.61, + 2.6, + 2.52, + 2.43, + 2.3000000000000003, + 2.19, + 1.94, + 1.6500000000000001, + 1.34, + 0.97, + 0.81, + 0.67, + 0.79, + 0.91, + 1.18, + 1.51, + 1.8900000000000001, + 2.2600000000000002, + 2.46, + 2.5300000000000002, + 2.42, + 2.2800000000000002, + 2.2, + 2.2, + 2.2800000000000002, + 2.32, + 2.3000000000000003, + 2.2600000000000002, + 2.32, + 2.69, + 3.09, + 3.44, + 3.75, + 4.08, + 4.38, + 4.84, + 5.25, + 5.64, + 6.03, + 6.25, + 6.47, + 6.48, + 6.38, + 6.01, + 5.3500000000000005, + 4.57, + 3.65, + 2.84, + 2.3000000000000003, + 1.76, + 1.19, + 0.63, + 0.15, + -0.24, + -0.42, + -0.62, + -0.67, + -0.72, + -0.65, + -0.53, + -0.36, + -0.11, + 0.11, + 0.4, + 0.65, + 0.87, + 0.98, + 0.97, + 0.84, + 0.58, + 0.34, + 0.11, + -0.07, + -0.16, + -0.26, + -0.3, + -0.41000000000000003, + -0.1, + 0.23, + 0.73, + 1.07, + 1.05, + 0.85, + 0.36, + -0.17, + -0.55, + -0.77, + -0.55, + -0.12, + 0.38, + 0.8200000000000001, + 1.12, + 1.42, + 1.68, + 1.8, + 1.86, + 1.84, + 1.87, + 1.77, + 1.51, + 0.8200000000000001, + 0.1, + -0.09, + -0.08, + 0.16, + 0.29, + 0.22, + 0.18, + 0.18, + 0.24, + 0.08, + -0.14, + -0.32, + -0.33, + -0.21, + -0.02, + 0.11, + 0.0, + -0.06, + -0.02, + 0.09, + 0.17, + 0.24, + 0.23, + 0.18, + 0.23, + 0.2, + 0.03, + -0.16, + -0.21, + -0.14, + 0.0, + 0.3, + 0.55, + 0.84, + 1.02, + 1.01, + 0.93, + 0.64, + 0.56, + 0.88, + 1.27, + 1.67, + 1.92, + 1.76, + 1.61, + 1.36, + 1.18, + 1.05, + 1.02, + 0.9500000000000001, + 0.98, + 1.07, + 1.26, + 1.36, + 1.51, + 1.74, + 1.92, + 1.78, + 1.29, + 0.8, + 0.31, + 0.0, + 0.08, + 0.13, + 0.3, + 0.29, + 0.45, + 0.5700000000000001, + 0.67, + 0.73, + 0.5700000000000001, + 0.47000000000000003, + 0.53, + 0.7000000000000001, + 0.75, + 0.71, + 0.48, + 0.19, + 0.15, + 0.26, + 0.42, + 0.48, + 0.26, + -0.27, + -1.02, + -1.8900000000000001, + -2.68, + -3.0500000000000003, + -3.15, + -2.73, + -2.15, + -1.47, + -0.85, + -0.55, + -0.43, + -0.22, + -0.04, + 0.2, + 0.38, + 0.39, + 0.38, + 0.38, + 0.35000000000000003, + 0.18, + -0.1, + -0.32, + -0.45, + -0.53, + -0.49, + -0.45, + -0.44, + -0.5, + -0.6, + -0.62, + -0.36, + -0.1, + 0.02, + 0.16, + 0.24, + 0.26, + 0.25, + 0.17, + 0.16, + 0.24, + 0.42, + 0.66, + 0.67, + 0.4, + 0.1, + -0.14, + -0.14, + 0.06, + 0.27, + 0.33, + 0.18, + 0.07, + -0.12, + -0.06, + -0.09, + -0.22, + -0.39, + -0.4, + -0.37, + -0.27, + -0.19, + -0.16, + -0.16, + -0.14, + -0.03, + 0.04, + 0.06, + 0.0, + -0.1, + -0.13, + -0.13, + -0.15, + -0.17, + -0.18, + 0.1, + 0.38, + 0.66, + 0.98, + 1.08, + 1.24, + 1.1300000000000001, + 1.06, + 0.89, + 0.73, + 0.55, + 0.3, + 0.06, + -0.08, + 0.04, + 0.38, + 0.75, + 1.1400000000000001, + 1.43, + 1.5, + 1.48, + 1.3900000000000001, + 1.36, + 1.36, + 1.36, + 1.26, + 1.18, + 1.1400000000000001, + 1.17, + 1.3900000000000001, + 1.68, + 1.75, + 1.76, + 1.61, + 1.45, + 1.25, + 0.98, + 0.86, + 0.86, + 0.86, + 0.79, + 0.59, + 0.38, + 0.11, + -0.11, + -0.36, + -0.39, + -0.44, + -0.37, + -0.32, + -0.13, + 0.13, + 0.45, + 0.73, + 0.93, + 1.05, + 0.89, + 0.51, + 0.11, + -0.17, + -0.17, + 0.0, + 0.02, + -0.12, + -0.36, + -0.58, + -0.68, + -0.87, + -1.1300000000000001, + -1.68, + -2.23, + -2.52, + -2.72, + -2.67 + ], + [ + 1.94, + 1.94, + 2.0, + 2.02, + 2.09, + 2.21, + 2.3000000000000003, + 2.38, + 2.42, + 2.44, + 2.44, + 2.43, + 2.44, + 2.48, + 2.5, + 2.48, + 2.39, + 2.24, + 2.12, + 1.97, + 1.83, + 1.58, + 1.26, + 0.98, + 0.6900000000000001, + 0.73, + 0.84, + 1.06, + 1.33, + 1.6600000000000001, + 2.02, + 2.29, + 2.45, + 2.42, + 2.29, + 2.11, + 1.97, + 1.99, + 2.14, + 2.2800000000000002, + 2.35, + 2.36, + 2.49, + 2.73, + 3.1, + 3.46, + 3.85, + 4.2, + 4.71, + 5.18, + 5.6000000000000005, + 6.0, + 6.21, + 6.390000000000001, + 6.37, + 6.28, + 5.98, + 5.47, + 4.82, + 4.0200000000000005, + 3.21, + 2.5100000000000002, + 1.8900000000000001, + 1.37, + 0.81, + 0.21, + -0.3, + -0.56, + -0.81, + -0.96, + -1.1500000000000001, + -1.2, + -1.27, + -1.17, + -1.05, + -0.85, + -0.65, + -0.44, + -0.15, + 0.07, + 0.19, + 0.18, + 0.05, + -0.11, + -0.27, + -0.41000000000000003, + -0.5, + -0.56, + -0.56, + -0.58, + -0.51, + -0.38, + 0.1, + 0.59, + 0.86, + 0.97, + 0.64, + 0.2, + -0.28, + -0.67, + -0.71, + -0.49, + -0.03, + 0.45, + 0.81, + 1.05, + 1.29, + 1.49, + 1.59, + 1.57, + 1.55, + 1.55, + 1.47, + 1.06, + 0.39, + 0.01, + -0.29, + 0.03, + 0.41000000000000003, + 0.51, + 0.6, + 0.55, + 0.66, + 0.51, + 0.27, + -0.09, + -0.42, + -0.5, + -0.4, + -0.23, + -0.14, + -0.1, + -0.09, + -0.09, + -0.01, + 0.03, + 0.17, + 0.19, + 0.26, + 0.21, + 0.1, + -0.06, + -0.17, + -0.22, + -0.18, + -0.05, + 0.11, + 0.39, + 0.66, + 0.91, + 1.09, + 1.1400000000000001, + 1.18, + 1.18, + 1.3800000000000001, + 1.69, + 1.96, + 2.0, + 1.99, + 1.79, + 1.6600000000000001, + 1.32, + 1.12, + 0.96, + 0.89, + 0.9500000000000001, + 1.16, + 1.3, + 1.48, + 1.6400000000000001, + 1.94, + 2.13, + 2.09, + 1.84, + 1.42, + 1.09, + 0.79, + 0.64, + 0.71, + 0.71, + 0.71, + 0.64, + 0.64, + 0.61, + 0.46, + 0.31, + 0.19, + 0.13, + 0.18, + 0.22, + 0.17, + -0.05, + -0.1, + -0.08, + 0.13, + 0.44, + 0.49, + 0.16, + -0.55, + -1.6300000000000001, + -2.73, + -3.43, + -4.0, + -3.66, + -3.44, + -2.5300000000000002, + -1.77, + -0.98, + -0.43, + -0.16, + 0.09, + 0.3, + 0.5, + 0.51, + 0.47000000000000003, + 0.37, + 0.41000000000000003, + 0.34, + 0.11, + -0.14, + -0.48, + -0.6900000000000001, + -0.74, + -0.76, + -0.59, + -0.41000000000000003, + -0.42, + -0.42, + -0.38, + -0.21, + -0.11, + 0.01, + 0.14, + 0.3, + 0.4, + 0.36, + 0.23, + 0.04, + 0.12, + 0.36, + 0.56, + 0.67, + 0.51, + 0.17, + 0.06, + 0.24, + 0.56, + 0.9, + 1.12, + 0.9400000000000001, + 0.58, + 0.34, + 0.1, + -0.03, + -0.11, + -0.27, + -0.28, + -0.21, + -0.06, + 0.05, + 0.06, + 0.03, + -0.01, + -0.03, + 0.02, + -0.01, + -0.13, + -0.18, + -0.19, + -0.16, + -0.15, + -0.21, + -0.18, + -0.19, + 0.09, + 0.3, + 0.6, + 0.85, + 0.92, + 1.0, + 0.91, + 0.85, + 0.72, + 0.55, + 0.3, + 0.0, + -0.09, + 0.04, + 0.3, + 0.63, + 0.93, + 1.16, + 1.25, + 1.1500000000000001, + 1.01, + 1.0, + 0.99, + 0.91, + 0.77, + 0.7000000000000001, + 0.62, + 0.8200000000000001, + 1.09, + 1.31, + 1.5, + 1.3900000000000001, + 1.23, + 1.08, + 0.86, + 0.68, + 0.49, + 0.46, + 0.55, + 0.48, + 0.38, + 0.17, + 0.07, + -0.11, + -0.2, + -0.33, + -0.38, + -0.48, + -0.47000000000000003, + -0.41000000000000003, + -0.07, + 0.37, + 0.6900000000000001, + 1.01, + 1.07, + 0.92, + 0.46, + -0.11, + -0.33, + -0.26, + -0.17, + -0.13, + -0.32, + -0.67, + -0.87, + -0.92, + -0.93, + -1.16, + -1.52, + -1.97, + -2.39, + -2.39, + -2.38 + ], + [ + 1.8900000000000001, + 1.9100000000000001, + 1.95, + 1.98, + 2.04, + 2.15, + 2.27, + 2.35, + 2.41, + 2.42, + 2.4, + 2.39, + 2.38, + 2.39, + 2.4, + 2.35, + 2.19, + 2.0100000000000002, + 1.85, + 1.76, + 1.71, + 1.58, + 1.31, + 1.0, + 0.8200000000000001, + 0.75, + 0.92, + 1.19, + 1.47, + 1.78, + 2.06, + 2.3000000000000003, + 2.35, + 2.2600000000000002, + 2.06, + 1.83, + 1.74, + 1.84, + 2.04, + 2.31, + 2.46, + 2.48, + 2.56, + 2.81, + 3.12, + 3.5500000000000003, + 3.97, + 4.5200000000000005, + 5.08, + 5.55, + 5.98, + 6.17, + 6.32, + 6.2700000000000005, + 6.13, + 5.86, + 5.45, + 4.89, + 4.24, + 3.54, + 2.85, + 2.17, + 1.55, + 0.99, + 0.34, + -0.24, + -0.6, + -0.91, + -1.08, + -1.28, + -1.44, + -1.62, + -1.69, + -1.75, + -1.6400000000000001, + -1.54, + -1.44, + -1.32, + -1.07, + -0.8, + -0.65, + -0.65, + -0.71, + -0.78, + -0.86, + -0.86, + -0.89, + -0.86, + -0.84, + -0.75, + -0.64, + -0.4, + -0.02, + 0.41000000000000003, + 0.78, + 0.72, + 0.47000000000000003, + 0.0, + -0.46, + -0.68, + -0.6900000000000001, + -0.37, + 0.11, + 0.54, + 0.8, + 1.02, + 1.22, + 1.36, + 1.3900000000000001, + 1.3, + 1.3, + 1.29, + 1.18, + 0.86, + 0.39, + -0.18, + -0.06, + 0.15, + 0.42, + 0.65, + 0.63, + 0.68, + 0.59, + 0.47000000000000003, + 0.11, + -0.36, + -0.64, + -0.74, + -0.66, + -0.48, + -0.32, + -0.15, + -0.08, + -0.05, + -0.02, + 0.13, + 0.24, + 0.39, + 0.45, + 0.29, + 0.06, + -0.1, + -0.2, + -0.24, + -0.26, + -0.26, + -0.24, + 0.0, + 0.27, + 0.51, + 0.85, + 1.12, + 1.3800000000000001, + 1.6500000000000001, + 1.79, + 2.05, + 2.06, + 2.05, + 1.95, + 1.8900000000000001, + 1.59, + 1.35, + 1.02, + 0.79, + 0.75, + 0.78, + 0.93, + 1.1500000000000001, + 1.27, + 1.48, + 1.78, + 2.08, + 2.19, + 2.12, + 1.99, + 1.84, + 1.6400000000000001, + 1.46, + 1.4000000000000001, + 1.29, + 1.21, + 0.97, + 0.75, + 0.49, + 0.2, + 0.06, + -0.14, + -0.2, + -0.29, + -0.25, + -0.27, + -0.22, + -0.17, + 0.02, + 0.28, + 0.52, + 0.56, + 0.2, + -0.73, + -1.83, + -2.85, + -3.81, + -3.8200000000000003, + -3.89, + -3.2, + -2.73, + -1.6600000000000001, + -0.87, + -0.34, + 0.12, + 0.35000000000000003, + 0.63, + 0.65, + 0.58, + 0.35000000000000003, + 0.15, + 0.08, + 0.05, + -0.06, + -0.28, + -0.5, + -0.73, + -0.9, + -0.92, + -0.8200000000000001, + -0.62, + -0.39, + -0.4, + -0.29, + -0.22, + -0.12, + -0.03, + 0.1, + 0.36, + 0.64, + 0.58, + 0.35000000000000003, + 0.21, + 0.15, + 0.28, + 0.45, + 0.47000000000000003, + 0.34, + 0.21, + 0.3, + 0.56, + 1.06, + 1.54, + 1.78, + 1.84, + 1.23, + 0.78, + 0.3, + -0.01, + -0.23, + -0.33, + -0.33, + -0.15, + 0.07, + 0.31, + 0.34, + 0.25, + 0.13, + -0.04, + -0.14, + -0.23, + -0.3, + -0.29, + -0.21, + -0.07, + -0.02, + -0.01, + -0.09, + -0.1, + -0.13, + 0.1, + 0.27, + 0.48, + 0.58, + 0.63, + 0.65, + 0.66, + 0.67, + 0.51, + 0.28, + 0.05, + -0.05, + 0.03, + 0.23, + 0.46, + 0.68, + 0.91, + 0.96, + 0.89, + 0.78, + 0.66, + 0.63, + 0.52, + 0.42, + 0.24, + 0.35000000000000003, + 0.46, + 0.71, + 0.9400000000000001, + 0.98, + 0.89, + 0.8, + 0.71, + 0.63, + 0.53, + 0.49, + 0.53, + 0.5700000000000001, + 0.56, + 0.43, + 0.3, + 0.17, + 0.13, + 0.03, + -0.1, + -0.25, + -0.44, + -0.67, + -0.54, + -0.32, + 0.1, + 0.61, + 0.86, + 1.07, + 0.8200000000000001, + 0.34, + -0.09, + -0.3, + -0.27, + -0.2, + -0.32, + -0.71, + -1.05, + -1.21, + -1.23, + -1.11, + -1.08, + -1.37, + -1.73, + -1.95, + -2.08, + -2.07 + ], + [ + 1.84, + 1.85, + 1.8800000000000001, + 1.9000000000000001, + 1.98, + 2.09, + 2.21, + 2.31, + 2.36, + 2.38, + 2.37, + 2.35, + 2.34, + 2.34, + 2.32, + 2.2, + 2.0, + 1.72, + 1.54, + 1.57, + 1.6300000000000001, + 1.56, + 1.41, + 1.08, + 0.8300000000000001, + 0.8, + 0.92, + 1.22, + 1.56, + 1.82, + 2.06, + 2.19, + 2.19, + 2.02, + 1.75, + 1.58, + 1.57, + 1.71, + 2.07, + 2.37, + 2.5300000000000002, + 2.6, + 2.68, + 2.83, + 3.22, + 3.63, + 4.25, + 4.89, + 5.47, + 5.99, + 6.2, + 6.3, + 6.22, + 6.05, + 5.75, + 5.3500000000000005, + 4.8500000000000005, + 4.24, + 3.61, + 3.0300000000000002, + 2.4, + 1.73, + 1.1300000000000001, + 0.47000000000000003, + -0.14, + -0.56, + -0.9400000000000001, + -1.12, + -1.32, + -1.5, + -1.72, + -1.8800000000000001, + -2.08, + -2.11, + -2.15, + -2.15, + -2.23, + -2.12, + -1.93, + -1.6600000000000001, + -1.44, + -1.36, + -1.32, + -1.33, + -1.25, + -1.24, + -1.1500000000000001, + -1.1500000000000001, + -1.04, + -0.97, + -0.75, + -0.52, + -0.1, + 0.31, + 0.56, + 0.6, + 0.24, + -0.24, + -0.53, + -0.71, + -0.56, + -0.21, + 0.25, + 0.63, + 0.9, + 1.11, + 1.3, + 1.42, + 1.3800000000000001, + 1.23, + 1.09, + 1.1500000000000001, + 1.1, + 0.88, + 0.51, + 0.25, + 0.11, + 0.28, + 0.45, + 0.52, + 0.51, + 0.43, + 0.3, + 0.05, + -0.34, + -0.6900000000000001, + -0.9, + -0.9, + -0.75, + -0.5700000000000001, + -0.27, + -0.1, + 0.0, + 0.05, + 0.13, + 0.27, + 0.47000000000000003, + 0.6900000000000001, + 0.56, + 0.4, + 0.09, + -0.18, + -0.26, + -0.27, + -0.37, + -0.52, + -0.39, + -0.23, + 0.01, + 0.18, + 0.41000000000000003, + 0.8300000000000001, + 1.21, + 1.61, + 1.99, + 2.06, + 2.15, + 1.95, + 1.85, + 1.6500000000000001, + 1.44, + 1.08, + 0.79, + 0.63, + 0.55, + 0.6, + 0.66, + 0.79, + 0.9, + 1.1400000000000001, + 1.52, + 1.9000000000000001, + 2.19, + 2.31, + 2.48, + 2.45, + 2.2600000000000002, + 2.14, + 1.8800000000000001, + 1.82, + 1.55, + 1.33, + 0.91, + 0.41000000000000003, + 0.18, + -0.15, + -0.23, + -0.49, + -0.49, + -0.59, + -0.41000000000000003, + -0.17, + 0.06, + 0.36, + 0.61, + 0.78, + 0.77, + 0.34, + -0.44, + -1.3900000000000001, + -2.42, + -2.91, + -3.24, + -2.97, + -2.63, + -1.97, + -1.27, + -0.67, + -0.17, + 0.18, + 0.53, + 0.63, + 0.6900000000000001, + 0.43, + 0.04, + -0.21, + -0.38, + -0.4, + -0.35000000000000003, + -0.41000000000000003, + -0.52, + -0.72, + -1.01, + -1.18, + -1.1500000000000001, + -0.97, + -0.7000000000000001, + -0.51, + -0.4, + -0.28, + -0.18, + -0.11, + 0.13, + 0.46, + 0.67, + 0.81, + 0.6, + 0.42, + 0.37, + 0.35000000000000003, + 0.36, + 0.27, + 0.22, + 0.3, + 0.48, + 0.93, + 1.42, + 1.93, + 2.38, + 2.05, + 1.77, + 0.89, + 0.33, + -0.14, + -0.51, + -0.55, + -0.56, + -0.25, + 0.16, + 0.39, + 0.56, + 0.45, + 0.24, + 0.02, + -0.28, + -0.42, + -0.41000000000000003, + -0.34, + -0.06, + 0.15, + 0.3, + 0.33, + 0.23, + 0.09, + 0.0, + -0.03, + 0.1, + 0.22, + 0.29, + 0.27, + 0.4, + 0.5, + 0.52, + 0.46, + 0.26, + 0.05, + -0.02, + 0.04, + 0.13, + 0.22, + 0.38, + 0.62, + 0.78, + 0.73, + 0.62, + 0.52, + 0.36, + 0.32, + 0.16, + 0.13, + 0.12, + 0.27, + 0.38, + 0.52, + 0.5, + 0.48, + 0.41000000000000003, + 0.42, + 0.49, + 0.54, + 0.67, + 0.76, + 0.8200000000000001, + 0.8, + 0.64, + 0.5, + 0.47000000000000003, + 0.44, + 0.31, + 0.17, + -0.1, + -0.35000000000000003, + -0.56, + -0.76, + -0.51, + -0.21, + 0.18, + 0.58, + 0.6, + 0.5, + 0.09, + -0.21, + -0.34, + -0.29, + -0.32, + -0.7000000000000001, + -1.09, + -1.44, + -1.6300000000000001, + -1.49, + -1.29, + -1.1500000000000001, + -1.18, + -1.4000000000000001, + -1.61, + -1.69, + -1.76 + ], + [ + 1.78, + 1.8, + 1.8, + 1.83, + 1.9100000000000001, + 2.0300000000000002, + 2.16, + 2.25, + 2.31, + 2.33, + 2.32, + 2.3000000000000003, + 2.29, + 2.2800000000000002, + 2.23, + 2.09, + 1.74, + 1.41, + 1.3, + 1.32, + 1.51, + 1.6, + 1.35, + 1.08, + 0.84, + 0.72, + 0.93, + 1.23, + 1.53, + 1.79, + 1.94, + 2.02, + 1.95, + 1.7, + 1.49, + 1.3900000000000001, + 1.45, + 1.77, + 2.12, + 2.44, + 2.64, + 2.71, + 2.77, + 3.0, + 3.31, + 3.9, + 4.54, + 5.2700000000000005, + 5.95, + 6.26, + 6.41, + 6.29, + 6.05, + 5.71, + 5.28, + 4.8, + 4.21, + 3.6, + 2.98, + 2.4, + 1.81, + 1.17, + 0.54, + -0.08, + -0.52, + -0.91, + -1.11, + -1.31, + -1.48, + -1.67, + -1.85, + -2.11, + -2.23, + -2.42, + -2.5, + -2.71, + -2.75, + -2.8000000000000003, + -2.56, + -2.27, + -2.02, + -1.8, + -1.69, + -1.55, + -1.47, + -1.32, + -1.27, + -1.17, + -1.18, + -0.98, + -0.86, + -0.47000000000000003, + -0.14, + 0.29, + 0.51, + 0.42, + 0.07, + -0.26, + -0.51, + -0.49, + -0.3, + 0.09, + 0.52, + 0.86, + 1.1300000000000001, + 1.34, + 1.58, + 1.69, + 1.53, + 1.32, + 1.1400000000000001, + 1.07, + 1.09, + 1.03, + 0.81, + 0.63, + 0.46, + 0.41000000000000003, + 0.44, + 0.38, + 0.31, + 0.13, + -0.07, + -0.42, + -0.74, + -0.97, + -1.02, + -0.8, + -0.59, + -0.33, + -0.11, + 0.02, + 0.12, + 0.15, + 0.23, + 0.43, + 0.66, + 0.67, + 0.65, + 0.35000000000000003, + 0.03, + -0.17, + -0.34, + -0.4, + -0.52, + -0.49, + -0.3, + -0.04, + 0.1, + 0.15, + 0.14, + 0.37, + 0.79, + 1.22, + 1.6500000000000001, + 1.93, + 1.81, + 1.74, + 1.54, + 1.3800000000000001, + 1.05, + 0.7000000000000001, + 0.52, + 0.43, + 0.42, + 0.44, + 0.48, + 0.45, + 0.6, + 0.81, + 1.28, + 1.84, + 2.24, + 2.57, + 2.7, + 2.64, + 2.52, + 2.21, + 2.08, + 1.93, + 1.83, + 1.62, + 1.22, + 0.78, + 0.28, + 0.14, + -0.11, + -0.19, + -0.49, + -0.39, + -0.29, + 0.03, + 0.45, + 0.71, + 0.9500000000000001, + 1.1, + 1.06, + 0.78, + 0.24, + -0.55, + -1.25, + -1.82, + -2.04, + -1.93, + -1.6600000000000001, + -1.1300000000000001, + -0.75, + -0.37, + -0.06, + 0.21, + 0.4, + 0.52, + 0.39, + 0.13, + -0.29, + -0.64, + -0.78, + -0.77, + -0.67, + -0.51, + -0.55, + -0.79, + -1.09, + -1.42, + -1.56, + -1.27, + -1.03, + -0.6900000000000001, + -0.54, + -0.34, + -0.22, + -0.07, + 0.1, + 0.4, + 0.6900000000000001, + 0.73, + 0.7000000000000001, + 0.5700000000000001, + 0.59, + 0.5, + 0.27, + 0.2, + 0.28, + 0.43, + 0.79, + 1.21, + 1.59, + 2.05, + 2.1, + 2.08, + 1.37, + 0.73, + 0.14, + -0.4, + -0.5700000000000001, + -0.79, + -0.56, + -0.32, + 0.07, + 0.42, + 0.49, + 0.49, + 0.31, + 0.03, + -0.22, + -0.4, + -0.4, + -0.13, + 0.16, + 0.52, + 0.73, + 0.75, + 0.66, + 0.39, + 0.14, + 0.0, + -0.06, + 0.01, + 0.05, + 0.15, + 0.28, + 0.4, + 0.46, + 0.38, + 0.24, + 0.12, + 0.07, + 0.09, + 0.04, + 0.03, + 0.1, + 0.28, + 0.5700000000000001, + 0.67, + 0.62, + 0.5, + 0.38, + 0.23, + 0.12, + 0.02, + 0.08, + 0.14, + 0.24, + 0.24, + 0.28, + 0.22, + 0.24, + 0.28, + 0.41000000000000003, + 0.64, + 0.8, + 0.9400000000000001, + 1.02, + 0.9500000000000001, + 0.86, + 0.79, + 0.77, + 0.6900000000000001, + 0.61, + 0.3, + 0.07, + -0.2, + -0.43, + -0.5700000000000001, + -0.7000000000000001, + -0.47000000000000003, + -0.3, + -0.12, + -0.07, + -0.3, + -0.52, + -0.73, + -0.6900000000000001, + -0.66, + -0.8200000000000001, + -1.1, + -1.53, + -1.83, + -1.8900000000000001, + -1.83, + -1.43, + -1.18, + -1.04, + -1.07, + -1.17, + -1.31, + -1.35 + ], + [ + 1.74, + 1.75, + 1.72, + 1.71, + 1.8, + 1.95, + 2.07, + 2.18, + 2.24, + 2.2600000000000002, + 2.2600000000000002, + 2.23, + 2.22, + 2.2, + 2.14, + 1.9000000000000001, + 1.54, + 1.17, + 0.9500000000000001, + 1.18, + 1.3900000000000001, + 1.43, + 1.3, + 1.0, + 0.75, + 0.75, + 0.91, + 1.23, + 1.51, + 1.68, + 1.76, + 1.77, + 1.6500000000000001, + 1.46, + 1.31, + 1.29, + 1.54, + 1.85, + 2.22, + 2.5500000000000003, + 2.75, + 2.85, + 2.97, + 3.14, + 3.6, + 4.16, + 4.94, + 5.74, + 6.23, + 6.55, + 6.46, + 6.2, + 5.8, + 5.28, + 4.78, + 4.21, + 3.61, + 2.99, + 2.37, + 1.78, + 1.18, + 0.55, + -0.07, + -0.55, + -0.98, + -1.1300000000000001, + -1.27, + -1.43, + -1.6, + -1.74, + -1.9100000000000001, + -2.07, + -2.2600000000000002, + -2.45, + -2.75, + -2.87, + -3.0700000000000003, + -2.99, + -2.84, + -2.5500000000000003, + -2.27, + -2.0300000000000002, + -1.74, + -1.56, + -1.33, + -1.18, + -1.01, + -0.96, + -0.87, + -0.8300000000000001, + -0.56, + -0.3, + 0.13, + 0.47000000000000003, + 0.5700000000000001, + 0.38, + 0.11, + -0.17, + -0.21, + -0.07, + 0.19, + 0.56, + 0.9400000000000001, + 1.21, + 1.45, + 1.67, + 1.87, + 1.8800000000000001, + 1.79, + 1.4000000000000001, + 1.19, + 1.05, + 1.05, + 1.07, + 1.08, + 0.86, + 0.71, + 0.55, + 0.41000000000000003, + 0.34, + 0.19, + -0.01, + -0.35000000000000003, + -0.63, + -0.9500000000000001, + -1.05, + -0.8300000000000001, + -0.58, + -0.24, + -0.02, + 0.03, + 0.15, + 0.13, + 0.18, + 0.31, + 0.52, + 0.56, + 0.5700000000000001, + 0.44, + 0.24, + 0.03, + -0.14, + -0.28, + -0.48, + -0.46, + -0.29, + 0.06, + 0.51, + 0.59, + 0.29, + 0.15, + 0.08, + 0.31, + 0.74, + 1.12, + 1.32, + 1.33, + 1.24, + 1.1400000000000001, + 0.96, + 0.68, + 0.44, + 0.22, + 0.26, + 0.32, + 0.38, + 0.37, + 0.41000000000000003, + 0.43, + 0.78, + 1.3, + 1.9100000000000001, + 2.5, + 2.77, + 2.68, + 2.52, + 2.2, + 1.93, + 1.92, + 1.86, + 2.1, + 2.07, + 1.8, + 1.31, + 0.9400000000000001, + 0.65, + 0.6, + 0.45, + 0.34, + 0.11, + 0.25, + 0.41000000000000003, + 0.6900000000000001, + 0.92, + 1.09, + 1.27, + 1.36, + 1.3800000000000001, + 1.04, + 0.5, + -0.07, + -0.75, + -1.03, + -1.09, + -0.84, + -0.5700000000000001, + -0.23, + -0.11, + 0.01, + 0.17, + 0.23, + 0.21, + 0.01, + -0.33, + -0.75, + -1.06, + -1.1500000000000001, + -1.06, + -0.8200000000000001, + -0.64, + -0.63, + -0.84, + -1.21, + -1.56, + -1.6600000000000001, + -1.51, + -1.05, + -0.72, + -0.48, + -0.33, + -0.16, + -0.03, + 0.14, + 0.3, + 0.53, + 0.59, + 0.58, + 0.6, + 0.5700000000000001, + 0.45, + 0.28, + 0.23, + 0.34, + 0.67, + 1.01, + 1.28, + 1.6300000000000001, + 1.6, + 1.6400000000000001, + 1.27, + 0.76, + 0.36, + -0.11, + -0.31, + -0.48, + -0.46, + -0.41000000000000003, + -0.19, + 0.02, + 0.22, + 0.27, + 0.29, + 0.3, + 0.11, + -0.09, + -0.22, + -0.11, + 0.14, + 0.59, + 0.98, + 1.2, + 1.27, + 1.05, + 0.76, + 0.35000000000000003, + -0.04, + -0.12, + -0.19, + -0.07, + 0.08, + 0.23, + 0.41000000000000003, + 0.39, + 0.32, + 0.21, + 0.22, + 0.22, + 0.19, + 0.12, + -0.06, + -0.08, + 0.17, + 0.4, + 0.64, + 0.7000000000000001, + 0.59, + 0.47000000000000003, + 0.27, + 0.1, + 0.06, + 0.06, + 0.14, + 0.2, + 0.21, + 0.22, + 0.22, + 0.23, + 0.31, + 0.45, + 0.64, + 0.8300000000000001, + 0.97, + 1.03, + 1.03, + 1.0, + 0.98, + 0.93, + 0.92, + 0.59, + 0.32, + 0.09, + -0.05, + -0.21, + -0.33, + -0.5, + -0.71, + -0.7000000000000001, + -0.88, + -1.0, + -1.32, + -1.54, + -1.57, + -1.56, + -1.5, + -1.56, + -1.76, + -2.0300000000000002, + -2.06, + -2.09, + -1.81, + -1.53, + -1.08, + -0.81, + -0.7000000000000001, + -0.67, + -0.78, + -0.87 + ], + [ + 1.6600000000000001, + 1.6600000000000001, + 1.58, + 1.59, + 1.6600000000000001, + 1.81, + 1.98, + 2.08, + 2.16, + 2.19, + 2.19, + 2.17, + 2.14, + 2.12, + 2.04, + 1.82, + 1.3800000000000001, + 0.97, + 0.93, + 1.05, + 1.28, + 1.36, + 1.17, + 0.88, + 0.73, + 0.71, + 0.9400000000000001, + 1.26, + 1.45, + 1.51, + 1.55, + 1.5, + 1.3900000000000001, + 1.26, + 1.19, + 1.3800000000000001, + 1.6400000000000001, + 1.99, + 2.35, + 2.66, + 2.89, + 3.04, + 3.17, + 3.45, + 3.86, + 4.59, + 5.4, + 6.05, + 6.5600000000000005, + 6.6000000000000005, + 6.44, + 6.01, + 5.44, + 4.87, + 4.25, + 3.65, + 3.0300000000000002, + 2.4, + 1.8, + 1.21, + 0.59, + -0.03, + -0.5700000000000001, + -1.07, + -1.26, + -1.4000000000000001, + -1.43, + -1.52, + -1.62, + -1.74, + -1.83, + -1.94, + -2.11, + -2.36, + -2.57, + -2.79, + -2.83, + -2.79, + -2.61, + -2.46, + -2.2, + -1.93, + -1.6600000000000001, + -1.33, + -1.07, + -0.79, + -0.59, + -0.45, + -0.36, + -0.29, + -0.1, + 0.18, + 0.5700000000000001, + 0.79, + 0.8300000000000001, + 0.61, + 0.26, + 0.14, + 0.25, + 0.44, + 0.76, + 1.08, + 1.34, + 1.57, + 1.72, + 1.9000000000000001, + 1.9100000000000001, + 1.92, + 1.6300000000000001, + 1.34, + 1.02, + 0.91, + 0.91, + 1.0, + 1.02, + 0.98, + 0.76, + 0.59, + 0.45, + 0.35000000000000003, + 0.21, + 0.0, + -0.26, + -0.56, + -0.74, + -0.72, + -0.51, + -0.18, + 0.06, + 0.02, + 0.04, + -0.01, + 0.02, + 0.11, + 0.28, + 0.36, + 0.44, + 0.32, + 0.17, + 0.09, + 0.07, + -0.07, + -0.13, + -0.27, + -0.25, + 0.07, + 0.72, + 1.09, + 1.1, + 0.8200000000000001, + 0.35000000000000003, + 0.16, + 0.14, + 0.37, + 0.63, + 0.75, + 0.76, + 0.64, + 0.73, + 0.62, + 0.48, + 0.25, + 0.22, + 0.19, + 0.35000000000000003, + 0.45, + 0.52, + 0.54, + 0.71, + 1.05, + 1.6300000000000001, + 2.34, + 2.84, + 2.91, + 2.77, + 2.2800000000000002, + 1.87, + 1.79, + 1.69, + 2.14, + 2.46, + 2.69, + 2.62, + 2.08, + 1.62, + 1.49, + 1.55, + 1.54, + 1.5, + 1.23, + 0.9400000000000001, + 0.9500000000000001, + 0.8300000000000001, + 0.93, + 0.97, + 1.18, + 1.6300000000000001, + 1.79, + 1.68, + 1.3, + 0.5700000000000001, + 0.02, + -0.43, + -0.52, + -0.36, + -0.1, + 0.03, + 0.1, + 0.15, + 0.15, + 0.14, + -0.08, + -0.32, + -0.8, + -1.2, + -1.52, + -1.54, + -1.25, + -0.9400000000000001, + -0.64, + -0.62, + -0.91, + -1.3, + -1.71, + -1.85, + -1.48, + -0.93, + -0.58, + -0.28, + -0.18, + -0.05, + 0.07, + 0.17, + 0.34, + 0.44, + 0.52, + 0.47000000000000003, + 0.51, + 0.49, + 0.41000000000000003, + 0.31, + 0.3, + 0.51, + 0.77, + 0.9500000000000001, + 1.2, + 1.1400000000000001, + 1.12, + 0.79, + 0.42, + 0.25, + 0.01, + -0.05, + -0.07, + -0.07, + 0.04, + 0.0, + -0.07, + -0.01, + -0.09, + -0.01, + 0.1, + 0.17, + 0.23, + 0.11, + 0.09, + 0.21, + 0.5700000000000001, + 1.01, + 1.42, + 1.75, + 1.68, + 1.55, + 1.12, + 0.66, + 0.22, + -0.19, + -0.19, + -0.18, + -0.02, + 0.19, + 0.24, + 0.21, + 0.09, + 0.09, + 0.12, + 0.29, + 0.31, + 0.19, + 0.06, + 0.05, + 0.2, + 0.45, + 0.65, + 0.7000000000000001, + 0.67, + 0.5, + 0.32, + 0.2, + 0.13, + 0.16, + 0.17, + 0.19, + 0.19, + 0.21, + 0.27, + 0.3, + 0.38, + 0.49, + 0.5700000000000001, + 0.72, + 0.85, + 0.9500000000000001, + 1.04, + 1.04, + 1.0, + 0.98, + 0.73, + 0.45, + 0.14, + -0.06, + -0.06, + 0.01, + -0.12, + -0.27, + -0.62, + -1.1, + -1.37, + -1.92, + -2.2600000000000002, + -2.64, + -2.72, + -2.72, + -2.62, + -2.45, + -2.5100000000000002, + -2.3000000000000003, + -2.22, + -1.9000000000000001, + -1.6400000000000001, + -1.25, + -0.88, + -0.53, + -0.26, + -0.26, + -0.25, + -0.29 + ], + [ + 1.61, + 1.61, + 1.5, + 1.42, + 1.52, + 1.6600000000000001, + 1.83, + 1.98, + 2.06, + 2.12, + 2.12, + 2.1, + 2.07, + 2.06, + 1.99, + 1.74, + 1.34, + 1.04, + 0.9400000000000001, + 1.11, + 1.31, + 1.26, + 1.07, + 0.84, + 0.67, + 0.73, + 0.9500000000000001, + 1.22, + 1.37, + 1.4000000000000001, + 1.36, + 1.3, + 1.19, + 1.1, + 1.2, + 1.41, + 1.78, + 2.14, + 2.47, + 2.7800000000000002, + 3.06, + 3.25, + 3.46, + 3.73, + 4.3100000000000005, + 5.04, + 5.74, + 6.36, + 6.5600000000000005, + 6.5200000000000005, + 6.18, + 5.68, + 5.0600000000000005, + 4.4, + 3.7600000000000002, + 3.12, + 2.49, + 1.85, + 1.24, + 0.65, + 0.04, + -0.5, + -1.04, + -1.34, + -1.57, + -1.56, + -1.58, + -1.55, + -1.6, + -1.6400000000000001, + -1.7, + -1.75, + -1.8800000000000001, + -2.04, + -2.23, + -2.33, + -2.3000000000000003, + -2.21, + -2.11, + -1.94, + -1.83, + -1.59, + -1.33, + -1.04, + -0.68, + -0.37, + -0.12, + 0.08, + 0.14, + 0.27, + 0.35000000000000003, + 0.61, + 0.89, + 1.2, + 1.11, + 0.9, + 0.62, + 0.52, + 0.63, + 0.9, + 1.1500000000000001, + 1.3900000000000001, + 1.59, + 1.71, + 1.83, + 1.81, + 1.82, + 1.53, + 1.24, + 0.9, + 0.62, + 0.6, + 0.64, + 0.8, + 0.89, + 0.8200000000000001, + 0.67, + 0.51, + 0.44, + 0.35000000000000003, + 0.31, + 0.16, + 0.09, + -0.12, + -0.17, + -0.13, + 0.05, + 0.29, + 0.11, + -0.01, + -0.23, + -0.32, + -0.19, + -0.1, + 0.02, + 0.13, + 0.1, + 0.01, + -0.08, + -0.1, + -0.12, + -0.06, + -0.14, + -0.1, + -0.03, + 0.48, + 1.04, + 1.58, + 1.58, + 1.3, + 0.87, + 0.44, + 0.32, + 0.31, + 0.45, + 0.46, + 0.37, + 0.45, + 0.47000000000000003, + 0.56, + 0.48, + 0.45, + 0.44, + 0.47000000000000003, + 0.55, + 0.73, + 0.9, + 1.01, + 1.2, + 1.61, + 2.19, + 2.81, + 3.13, + 3.18, + 2.82, + 2.34, + 2.04, + 1.85, + 2.12, + 2.47, + 3.0300000000000002, + 3.46, + 3.23, + 2.81, + 2.33, + 2.23, + 2.39, + 2.84, + 2.58, + 2.3000000000000003, + 1.84, + 1.35, + 1.1400000000000001, + 0.76, + 0.8, + 1.1, + 1.56, + 2.04, + 2.04, + 1.45, + 0.8, + 0.23, + -0.16, + -0.16, + 0.0, + 0.17, + 0.29, + 0.35000000000000003, + 0.36, + 0.34, + 0.2, + -0.01, + -0.45, + -0.92, + -1.57, + -1.83, + -1.85, + -1.5, + -0.8200000000000001, + -0.49, + -0.54, + -0.84, + -1.54, + -2.05, + -2.05, + -1.69, + -1.0, + -0.45, + -0.22, + -0.04, + 0.06, + 0.17, + 0.31, + 0.47000000000000003, + 0.58, + 0.62, + 0.6, + 0.5700000000000001, + 0.5700000000000001, + 0.54, + 0.48, + 0.53, + 0.67, + 0.62, + 0.72, + 0.63, + 0.5700000000000001, + 0.32, + -0.01, + -0.12, + -0.22, + -0.09, + 0.08, + 0.19, + 0.4, + 0.41000000000000003, + 0.35000000000000003, + 0.14, + -0.18, + -0.22, + -0.21, + -0.04, + 0.22, + 0.3, + 0.36, + 0.38, + 0.56, + 0.9, + 1.28, + 1.75, + 1.93, + 2.0300000000000002, + 1.81, + 1.54, + 1.11, + 0.66, + 0.24, + -0.07, + -0.11, + -0.14, + -0.04, + -0.06, + -0.2, + -0.43, + -0.43, + -0.2, + -0.01, + 0.23, + 0.22, + 0.29, + 0.33, + 0.43, + 0.62, + 0.63, + 0.65, + 0.62, + 0.5, + 0.39, + 0.32, + 0.31, + 0.33, + 0.27, + 0.14, + 0.17, + 0.19, + 0.28, + 0.37, + 0.43, + 0.44, + 0.5, + 0.55, + 0.68, + 0.9, + 1.01, + 0.99, + 0.9400000000000001, + 0.73, + 0.47000000000000003, + 0.14, + -0.19, + -0.26, + -0.2, + -0.02, + 0.1, + -0.14, + -0.54, + -1.06, + -1.74, + -2.2800000000000002, + -3.08, + -3.48, + -3.88, + -3.85, + -3.52, + -3.29, + -2.83, + -2.59, + -1.99, + -1.58, + -1.21, + -0.8300000000000001, + -0.58, + -0.29, + -0.09, + 0.05, + 0.04, + 0.13 + ], + [ + 1.54, + 1.51, + 1.37, + 1.32, + 1.37, + 1.53, + 1.71, + 1.86, + 1.98, + 2.0300000000000002, + 2.05, + 2.04, + 2.02, + 2.0, + 1.93, + 1.72, + 1.3800000000000001, + 1.09, + 1.09, + 1.25, + 1.3, + 1.24, + 1.03, + 0.81, + 0.7000000000000001, + 0.74, + 0.9500000000000001, + 1.18, + 1.29, + 1.28, + 1.23, + 1.1300000000000001, + 1.04, + 1.0, + 1.1300000000000001, + 1.49, + 1.87, + 2.2600000000000002, + 2.6, + 2.96, + 3.2600000000000002, + 3.52, + 3.74, + 4.16, + 4.75, + 5.43, + 6.09, + 6.38, + 6.390000000000001, + 6.18, + 5.76, + 5.23, + 4.61, + 3.94, + 3.29, + 2.64, + 1.94, + 1.3, + 0.67, + 0.07, + -0.43, + -0.97, + -1.24, + -1.53, + -1.6, + -1.6300000000000001, + -1.52, + -1.48, + -1.43, + -1.46, + -1.44, + -1.46, + -1.5, + -1.58, + -1.67, + -1.67, + -1.6, + -1.46, + -1.32, + -1.2, + -1.09, + -1.03, + -0.8200000000000001, + -0.59, + -0.27, + 0.0, + 0.25, + 0.38, + 0.47000000000000003, + 0.5, + 0.59, + 0.73, + 0.98, + 1.22, + 1.32, + 1.1, + 0.91, + 0.8, + 0.88, + 1.07, + 1.26, + 1.43, + 1.51, + 1.59, + 1.59, + 1.58, + 1.42, + 1.1500000000000001, + 0.73, + 0.34, + 0.24, + 0.21, + 0.43, + 0.62, + 0.71, + 0.62, + 0.46, + 0.32, + 0.28, + 0.32, + 0.31, + 0.41000000000000003, + 0.36, + 0.48, + 0.42, + 0.5, + 0.63, + 0.49, + 0.3, + -0.2, + -0.5, + -0.44, + -0.36, + -0.33, + -0.33, + -0.27, + -0.31, + -0.34, + -0.38, + -0.42, + -0.46, + -0.42, + -0.39, + -0.33, + -0.13, + 0.35000000000000003, + 1.04, + 1.51, + 1.8, + 1.58, + 1.29, + 0.9, + 0.54, + 0.48, + 0.49, + 0.48, + 0.47000000000000003, + 0.53, + 0.64, + 0.74, + 0.79, + 0.86, + 0.8200000000000001, + 0.85, + 0.93, + 1.19, + 1.41, + 1.68, + 1.9100000000000001, + 2.2600000000000002, + 2.77, + 3.12, + 3.39, + 3.3200000000000003, + 3.0100000000000002, + 2.75, + 2.45, + 2.47, + 2.68, + 3.02, + 3.5500000000000003, + 3.8000000000000003, + 3.74, + 3.15, + 2.66, + 2.5100000000000002, + 2.85, + 3.09, + 3.27, + 2.7800000000000002, + 2.31, + 1.79, + 1.31, + 0.96, + 0.73, + 1.02, + 1.6, + 2.07, + 1.96, + 1.45, + 0.74, + 0.13, + 0.04, + 0.08, + 0.26, + 0.45, + 0.56, + 0.66, + 0.6900000000000001, + 0.6900000000000001, + 0.56, + 0.35000000000000003, + -0.12, + -0.79, + -1.4000000000000001, + -1.99, + -1.9100000000000001, + -1.3900000000000001, + -0.73, + -0.2, + -0.22, + -0.97, + -1.74, + -2.33, + -2.5, + -1.9100000000000001, + -1.24, + -0.6, + -0.25, + -0.06, + 0.12, + 0.26, + 0.47000000000000003, + 0.64, + 0.8300000000000001, + 0.8300000000000001, + 0.8200000000000001, + 0.76, + 0.73, + 0.7000000000000001, + 0.75, + 0.78, + 0.64, + 0.55, + 0.19, + 0.0, + -0.15, + -0.42, + -0.54, + -0.65, + -0.46, + -0.21, + 0.05, + 0.32, + 0.52, + 0.68, + 0.53, + 0.23, + -0.08, + -0.29, + -0.23, + -0.02, + 0.23, + 0.41000000000000003, + 0.48, + 0.58, + 0.76, + 0.92, + 1.3, + 1.56, + 1.82, + 1.8800000000000001, + 1.83, + 1.79, + 1.6500000000000001, + 1.24, + 0.85, + 0.38, + 0.03, + -0.13, + -0.33, + -0.45, + -0.8200000000000001, + -1.02, + -1.12, + -0.85, + -0.39, + -0.11, + 0.28, + 0.42, + 0.62, + 0.76, + 0.66, + 0.62, + 0.6, + 0.56, + 0.49, + 0.41000000000000003, + 0.44, + 0.55, + 0.51, + 0.41000000000000003, + 0.28, + 0.19, + 0.27, + 0.37, + 0.46, + 0.48, + 0.49, + 0.42, + 0.47000000000000003, + 0.65, + 0.85, + 0.96, + 0.96, + 0.74, + 0.51, + 0.16, + -0.21, + -0.45, + -0.55, + -0.38, + -0.12, + 0.07, + 0.06, + -0.35000000000000003, + -0.9, + -1.57, + -2.36, + -3.18, + -4.21, + -4.58, + -4.57, + -4.2, + -3.46, + -2.99, + -2.39, + -1.8, + -1.23, + -0.77, + -0.54, + -0.31, + -0.21, + -0.06, + 0.04, + 0.08, + 0.16 + ], + [ + 1.49, + 1.45, + 1.3, + 1.23, + 1.29, + 1.44, + 1.62, + 1.78, + 1.8800000000000001, + 1.94, + 1.96, + 1.96, + 1.94, + 1.94, + 1.8800000000000001, + 1.6600000000000001, + 1.35, + 1.19, + 1.2, + 1.3, + 1.34, + 1.21, + 1.01, + 0.85, + 0.78, + 0.81, + 0.96, + 1.1300000000000001, + 1.19, + 1.17, + 1.12, + 1.03, + 0.91, + 0.9, + 1.1, + 1.47, + 1.96, + 2.36, + 2.79, + 3.16, + 3.5300000000000002, + 3.81, + 4.15, + 4.58, + 5.18, + 5.8500000000000005, + 6.2, + 6.26, + 6.07, + 5.66, + 5.22, + 4.71, + 4.09, + 3.49, + 2.83, + 2.13, + 1.45, + 0.77, + 0.14, + -0.36, + -0.88, + -1.1, + -1.37, + -1.4000000000000001, + -1.44, + -1.36, + -1.27, + -1.1500000000000001, + -1.09, + -1.05, + -1.03, + -0.97, + -0.93, + -0.96, + -0.9500000000000001, + -0.91, + -0.8, + -0.62, + -0.39, + -0.27, + -0.24, + -0.2, + -0.22, + -0.03, + 0.13, + 0.38, + 0.46, + 0.54, + 0.52, + 0.52, + 0.52, + 0.58, + 0.79, + 1.0, + 1.16, + 1.1400000000000001, + 0.96, + 0.86, + 0.89, + 0.9500000000000001, + 1.11, + 1.21, + 1.27, + 1.22, + 1.22, + 1.22, + 1.07, + 0.81, + 0.39, + 0.06, + -0.1, + 0.09, + 0.34, + 0.5700000000000001, + 0.68, + 0.5, + 0.22, + 0.1, + 0.07, + 0.15, + 0.27, + 0.38, + 0.5700000000000001, + 0.65, + 0.72, + 0.76, + 0.74, + 0.61, + 0.25, + -0.23, + -0.41000000000000003, + -0.4, + -0.3, + -0.32, + -0.51, + -0.63, + -0.62, + -0.66, + -0.6900000000000001, + -0.76, + -0.84, + -0.9500000000000001, + -0.8300000000000001, + -0.75, + -0.49, + -0.1, + 0.58, + 1.1500000000000001, + 1.45, + 1.69, + 1.45, + 1.06, + 0.72, + 0.62, + 0.62, + 0.63, + 0.66, + 0.77, + 0.96, + 1.05, + 1.16, + 1.1500000000000001, + 1.12, + 1.06, + 1.1300000000000001, + 1.46, + 2.0, + 2.31, + 2.64, + 2.92, + 3.11, + 3.39, + 3.36, + 3.31, + 3.39, + 3.2, + 3.12, + 3.16, + 3.19, + 3.48, + 3.69, + 3.88, + 3.69, + 3.14, + 2.46, + 2.09, + 2.3000000000000003, + 2.5500000000000003, + 2.7, + 2.61, + 2.22, + 2.0300000000000002, + 1.58, + 1.25, + 1.05, + 1.12, + 1.6400000000000001, + 1.96, + 1.9000000000000001, + 1.3800000000000001, + 0.67, + 0.27, + 0.12, + 0.27, + 0.47000000000000003, + 0.62, + 0.78, + 0.92, + 1.07, + 1.07, + 1.03, + 0.79, + 0.42, + -0.26, + -1.05, + -1.54, + -1.6600000000000001, + -1.11, + -0.36, + 0.15, + -0.11, + -0.8300000000000001, + -1.75, + -2.44, + -2.52, + -2.08, + -1.3800000000000001, + -0.77, + -0.4, + -0.17, + 0.02, + 0.26, + 0.48, + 0.75, + 0.88, + 0.9500000000000001, + 0.89, + 0.81, + 0.75, + 0.71, + 0.74, + 0.78, + 0.65, + 0.28, + -0.1, + -0.48, + -0.73, + -0.84, + -0.97, + -0.9, + -0.72, + -0.4, + -0.13, + 0.17, + 0.42, + 0.6, + 0.6, + 0.31, + 0.03, + -0.16, + -0.16, + 0.02, + 0.18, + 0.35000000000000003, + 0.48, + 0.58, + 0.58, + 0.73, + 0.8200000000000001, + 1.04, + 1.27, + 1.37, + 1.61, + 1.78, + 1.9000000000000001, + 1.83, + 1.31, + 0.8200000000000001, + 0.27, + -0.16, + -0.46, + -0.86, + -1.19, + -1.54, + -1.55, + -1.3, + -0.8300000000000001, + -0.26, + 0.14, + 0.54, + 0.79, + 0.8200000000000001, + 0.74, + 0.63, + 0.58, + 0.56, + 0.48, + 0.43, + 0.47000000000000003, + 0.62, + 0.6900000000000001, + 0.58, + 0.46, + 0.41000000000000003, + 0.5, + 0.59, + 0.61, + 0.62, + 0.5700000000000001, + 0.52, + 0.54, + 0.7000000000000001, + 0.8300000000000001, + 0.9400000000000001, + 0.8300000000000001, + 0.62, + 0.27, + -0.1, + -0.45, + -0.71, + -0.75, + -0.59, + -0.23, + 0.1, + 0.15, + -0.02, + -0.56, + -1.17, + -2.0300000000000002, + -3.2, + -4.21, + -5.08, + -5.01, + -4.19, + -3.44, + -2.75, + -2.15, + -1.57, + -1.0, + -0.58, + -0.31, + -0.28, + -0.24, + -0.16, + -0.08, + -0.01, + 0.01 + ], + [ + 1.41, + 1.3800000000000001, + 1.23, + 1.17, + 1.24, + 1.3800000000000001, + 1.54, + 1.69, + 1.78, + 1.83, + 1.85, + 1.85, + 1.8800000000000001, + 1.8800000000000001, + 1.81, + 1.6, + 1.36, + 1.22, + 1.25, + 1.35, + 1.31, + 1.18, + 1.02, + 0.92, + 0.85, + 0.87, + 0.97, + 1.06, + 1.09, + 1.05, + 1.02, + 0.96, + 0.87, + 0.86, + 1.07, + 1.53, + 2.02, + 2.5300000000000002, + 2.97, + 3.44, + 3.83, + 4.23, + 4.59, + 5.04, + 5.63, + 6.07, + 6.26, + 6.07, + 5.62, + 5.13, + 4.58, + 4.07, + 3.5700000000000003, + 2.97, + 2.37, + 1.69, + 1.07, + 0.41000000000000003, + -0.11, + -0.62, + -0.86, + -1.09, + -1.11, + -1.12, + -1.0, + -0.89, + -0.75, + -0.61, + -0.53, + -0.46, + -0.42, + -0.32, + -0.25, + -0.21, + -0.19, + -0.1, + 0.05, + 0.36, + 0.6, + 0.76, + 0.77, + 0.52, + 0.48, + 0.42, + 0.5700000000000001, + 0.62, + 0.67, + 0.56, + 0.48, + 0.41000000000000003, + 0.37, + 0.35000000000000003, + 0.43, + 0.66, + 0.85, + 0.92, + 0.9, + 0.77, + 0.6900000000000001, + 0.75, + 0.85, + 0.9500000000000001, + 0.97, + 0.93, + 0.89, + 0.88, + 0.91, + 0.67, + 0.3, + -0.04, + -0.1, + 0.08, + 0.4, + 0.67, + 0.7000000000000001, + 0.49, + 0.14, + -0.1, + -0.1, + -0.03, + 0.1, + 0.22, + 0.41000000000000003, + 0.54, + 0.59, + 0.54, + 0.52, + 0.44, + 0.09, + -0.1, + -0.26, + -0.07, + 0.06, + -0.11, + -0.38, + -0.68, + -0.8200000000000001, + -0.86, + -0.92, + -0.99, + -1.11, + -1.16, + -1.09, + -0.9400000000000001, + -0.71, + -0.3, + 0.18, + 0.77, + 1.23, + 1.47, + 1.47, + 1.11, + 0.8200000000000001, + 0.71, + 0.66, + 0.67, + 0.72, + 0.87, + 1.12, + 1.31, + 1.31, + 1.26, + 1.1300000000000001, + 0.93, + 1.09, + 1.56, + 2.22, + 2.98, + 3.25, + 3.3000000000000003, + 3.41, + 3.14, + 3.11, + 3.2800000000000002, + 3.39, + 3.69, + 3.69, + 3.58, + 3.59, + 3.5, + 3.5700000000000003, + 3.61, + 3.38, + 2.7, + 1.87, + 1.29, + 1.05, + 1.4000000000000001, + 1.6500000000000001, + 1.81, + 2.1, + 1.97, + 1.96, + 1.6400000000000001, + 1.46, + 1.53, + 1.6300000000000001, + 1.92, + 1.87, + 1.3900000000000001, + 0.9400000000000001, + 0.55, + 0.36, + 0.44, + 0.51, + 0.6, + 0.8, + 1.05, + 1.24, + 1.33, + 1.31, + 1.23, + 0.9, + 0.43, + -0.3, + -0.8300000000000001, + -0.9, + -0.5700000000000001, + 0.17, + 0.35000000000000003, + 0.11, + -0.5700000000000001, + -1.46, + -2.12, + -2.23, + -1.98, + -1.33, + -0.88, + -0.5700000000000001, + -0.41000000000000003, + -0.27, + -0.01, + 0.26, + 0.53, + 0.71, + 0.77, + 0.74, + 0.66, + 0.51, + 0.47000000000000003, + 0.47000000000000003, + 0.5, + 0.46, + 0.12, + -0.28, + -0.66, + -0.93, + -1.07, + -1.1, + -1.02, + -0.8200000000000001, + -0.56, + -0.3, + -0.07, + 0.21, + 0.39, + 0.47000000000000003, + 0.37, + 0.13, + -0.02, + -0.05, + -0.07, + 0.07, + 0.14, + 0.27, + 0.35000000000000003, + 0.35000000000000003, + 0.28, + 0.3, + 0.43, + 0.58, + 0.86, + 1.1400000000000001, + 1.56, + 1.8800000000000001, + 1.86, + 1.52, + 0.9, + 0.3, + -0.21, + -0.62, + -0.98, + -1.27, + -1.55, + -1.56, + -1.29, + -0.9500000000000001, + -0.39, + 0.0, + 0.4, + 0.6900000000000001, + 0.76, + 0.76, + 0.67, + 0.65, + 0.63, + 0.49, + 0.38, + 0.44, + 0.58, + 0.72, + 0.74, + 0.67, + 0.73, + 0.79, + 0.8200000000000001, + 0.81, + 0.73, + 0.68, + 0.6900000000000001, + 0.72, + 0.75, + 0.87, + 0.79, + 0.67, + 0.42, + 0.08, + -0.3, + -0.65, + -0.88, + -0.93, + -0.74, + -0.36, + 0.05, + 0.29, + 0.17, + -0.15, + -0.78, + -1.67, + -2.85, + -4.19, + -4.99, + -4.99, + -4.18, + -3.15, + -2.43, + -1.8800000000000001, + -1.32, + -0.86, + -0.47000000000000003, + -0.32, + -0.33, + -0.35000000000000003, + -0.32, + -0.15, + 0.0, + -0.12 + ], + [ + 1.36, + 1.31, + 1.17, + 1.1, + 1.17, + 1.3, + 1.45, + 1.58, + 1.67, + 1.72, + 1.74, + 1.79, + 1.82, + 1.84, + 1.77, + 1.58, + 1.35, + 1.24, + 1.29, + 1.29, + 1.21, + 1.08, + 0.96, + 0.92, + 0.91, + 0.91, + 0.9500000000000001, + 1.0, + 0.98, + 0.97, + 1.01, + 0.98, + 0.98, + 0.98, + 1.22, + 1.69, + 2.19, + 2.7, + 3.25, + 3.75, + 4.28, + 4.71, + 5.0600000000000005, + 5.51, + 5.92, + 6.23, + 6.2, + 5.8, + 5.2, + 4.49, + 3.89, + 3.3200000000000003, + 2.85, + 2.4, + 1.83, + 1.4000000000000001, + 0.8, + 0.46, + -0.06, + -0.33, + -0.56, + -0.66, + -0.65, + -0.56, + -0.42, + -0.25, + -0.09, + 0.03, + 0.14, + 0.19, + 0.28, + 0.36, + 0.47000000000000003, + 0.5, + 0.55, + 0.66, + 0.96, + 1.28, + 1.67, + 1.82, + 1.62, + 1.3800000000000001, + 0.91, + 0.8300000000000001, + 0.76, + 0.79, + 0.72, + 0.58, + 0.4, + 0.28, + 0.2, + 0.14, + 0.13, + 0.26, + 0.51, + 0.6900000000000001, + 0.6900000000000001, + 0.6, + 0.5, + 0.5, + 0.61, + 0.78, + 0.81, + 0.84, + 0.8, + 0.85, + 0.87, + 0.68, + 0.31, + 0.05, + 0.01, + 0.21, + 0.52, + 0.77, + 0.79, + 0.55, + 0.17, + -0.11, + -0.17, + -0.11, + -0.04, + 0.07, + 0.14, + 0.28, + 0.31, + 0.26, + 0.18, + 0.1, + 0.08, + -0.09, + 0.08, + 0.31, + 0.55, + 0.41000000000000003, + -0.08, + -0.49, + -0.81, + -0.98, + -1.0, + -1.03, + -1.07, + -0.97, + -0.89, + -0.66, + -0.47000000000000003, + -0.1, + 0.34, + 0.74, + 1.2, + 1.43, + 1.43, + 1.2, + 0.93, + 0.74, + 0.67, + 0.53, + 0.53, + 0.77, + 1.05, + 1.26, + 1.28, + 1.18, + 0.96, + 0.79, + 0.91, + 1.49, + 2.39, + 3.18, + 3.6, + 3.58, + 3.11, + 2.84, + 2.5, + 2.67, + 3.46, + 3.8200000000000003, + 3.97, + 3.87, + 3.59, + 3.39, + 3.24, + 3.14, + 2.85, + 2.13, + 1.1400000000000001, + 0.31, + 0.02, + 0.18, + 0.65, + 1.28, + 1.7, + 2.06, + 2.07, + 2.07, + 1.8900000000000001, + 1.79, + 1.8900000000000001, + 1.85, + 1.78, + 1.69, + 1.33, + 0.98, + 0.79, + 0.5, + 0.38, + 0.37, + 0.51, + 0.89, + 1.22, + 1.34, + 1.36, + 1.41, + 1.45, + 1.09, + 0.81, + 0.28, + 0.04, + 0.37, + 0.44, + 0.63, + 0.31, + -0.35000000000000003, + -1.11, + -1.73, + -2.15, + -1.94, + -1.45, + -1.01, + -0.8200000000000001, + -0.75, + -0.64, + -0.47000000000000003, + -0.15, + 0.11, + 0.36, + 0.52, + 0.53, + 0.48, + 0.33, + 0.15, + 0.15, + 0.1, + 0.05, + -0.05, + -0.42, + -0.6900000000000001, + -0.93, + -1.06, + -1.07, + -0.9500000000000001, + -0.74, + -0.53, + -0.3, + -0.14, + 0.04, + 0.25, + 0.36, + 0.37, + 0.31, + 0.16, + -0.01, + -0.04, + -0.1, + -0.03, + 0.1, + 0.18, + 0.22, + 0.14, + 0.05, + 0.13, + 0.21, + 0.45, + 0.74, + 1.1500000000000001, + 1.47, + 1.43, + 1.1500000000000001, + 0.56, + 0.03, + -0.43, + -0.76, + -0.9, + -1.12, + -1.07, + -1.09, + -1.01, + -0.67, + -0.59, + -0.19, + 0.09, + 0.37, + 0.67, + 0.72, + 0.77, + 0.79, + 0.68, + 0.5, + 0.35000000000000003, + 0.37, + 0.53, + 0.71, + 0.8200000000000001, + 0.92, + 0.96, + 0.98, + 0.98, + 0.84, + 0.76, + 0.73, + 0.74, + 0.77, + 0.8, + 0.7000000000000001, + 0.61, + 0.45, + 0.19, + -0.14, + -0.51, + -0.8, + -1.01, + -1.07, + -0.89, + -0.49, + -0.06, + 0.26, + 0.31, + 0.05, + -0.44, + -1.3, + -2.45, + -3.79, + -4.63, + -4.62, + -3.94, + -2.9, + -2.11, + -1.54, + -1.04, + -0.58, + -0.39, + -0.31, + -0.39, + -0.48, + -0.35000000000000003, + -0.12, + 0.0, + -0.14 + ], + [ + 1.27, + 1.25, + 1.1, + 1.02, + 1.08, + 1.2, + 1.33, + 1.46, + 1.57, + 1.6300000000000001, + 1.7, + 1.74, + 1.79, + 1.82, + 1.76, + 1.57, + 1.34, + 1.23, + 1.2, + 1.16, + 1.03, + 0.86, + 0.81, + 0.8200000000000001, + 0.89, + 0.9400000000000001, + 0.9500000000000001, + 0.9400000000000001, + 0.9400000000000001, + 1.0, + 1.06, + 1.19, + 1.2, + 1.31, + 1.54, + 1.92, + 2.43, + 2.96, + 3.5100000000000002, + 4.19, + 4.7700000000000005, + 5.21, + 5.5600000000000005, + 5.8100000000000005, + 6.1000000000000005, + 6.26, + 6.0600000000000005, + 5.5200000000000005, + 4.7, + 3.87, + 3.0700000000000003, + 2.5, + 2.05, + 1.6600000000000001, + 1.3900000000000001, + 1.0, + 0.91, + 0.56, + 0.46, + 0.21, + 0.07, + 0.02, + 0.04, + 0.16, + 0.29, + 0.47000000000000003, + 0.54, + 0.62, + 0.7000000000000001, + 0.75, + 0.84, + 0.91, + 1.0, + 1.02, + 1.08, + 1.25, + 1.58, + 2.05, + 2.46, + 2.67, + 2.47, + 1.9100000000000001, + 1.43, + 0.91, + 0.8, + 0.72, + 0.61, + 0.52, + 0.35000000000000003, + 0.18, + 0.07, + -0.04, + -0.1, + -0.02, + 0.19, + 0.43, + 0.49, + 0.42, + 0.33, + 0.32, + 0.46, + 0.64, + 0.85, + 0.88, + 1.0, + 1.06, + 0.9400000000000001, + 0.73, + 0.44, + 0.2, + 0.23, + 0.46, + 0.68, + 0.88, + 0.92, + 0.68, + 0.28, + -0.01, + -0.11, + -0.05, + -0.01, + 0.03, + 0.07, + 0.11, + 0.14, + 0.11, + 0.04, + -0.01, + -0.02, + 0.15, + 0.36, + 0.84, + 1.12, + 0.97, + 0.45, + -0.19, + -0.62, + -0.89, + -0.96, + -0.89, + -0.72, + -0.6, + -0.36, + -0.18, + 0.04, + 0.34, + 0.66, + 1.03, + 1.22, + 1.46, + 1.3800000000000001, + 1.1400000000000001, + 0.9500000000000001, + 0.77, + 0.55, + 0.36, + 0.29, + 0.5, + 0.81, + 1.0, + 1.08, + 0.98, + 0.87, + 0.86, + 0.9400000000000001, + 1.52, + 2.42, + 3.13, + 3.58, + 3.35, + 2.87, + 2.13, + 1.79, + 2.17, + 2.99, + 3.95, + 4.14, + 3.9, + 3.5500000000000003, + 3.15, + 2.9, + 2.62, + 2.2, + 1.5, + 0.47000000000000003, + -0.35000000000000003, + -0.6, + -0.44, + 0.17, + 0.86, + 1.45, + 1.85, + 2.0, + 2.04, + 2.16, + 2.06, + 1.94, + 1.9000000000000001, + 1.8800000000000001, + 1.81, + 1.75, + 1.47, + 1.0, + 0.5700000000000001, + 0.12, + -0.09, + 0.09, + 0.51, + 0.9500000000000001, + 1.1300000000000001, + 1.22, + 1.41, + 1.69, + 2.09, + 1.85, + 1.49, + 1.21, + 0.86, + 0.93, + 0.64, + 0.3, + -0.31, + -1.08, + -2.0300000000000002, + -2.58, + -2.43, + -1.98, + -1.36, + -1.11, + -1.03, + -0.92, + -0.76, + -0.47000000000000003, + -0.16, + 0.18, + 0.4, + 0.5700000000000001, + 0.52, + 0.36, + 0.15, + -0.15, + -0.2, + -0.36, + -0.47000000000000003, + -0.56, + -0.8, + -0.87, + -0.9500000000000001, + -0.89, + -0.73, + -0.54, + -0.32, + -0.16, + -0.04, + 0.07, + 0.23, + 0.41000000000000003, + 0.6, + 0.58, + 0.5, + 0.29, + 0.05, + -0.02, + 0.02, + 0.15, + 0.29, + 0.34, + 0.34, + 0.29, + 0.16, + 0.24, + 0.25, + 0.49, + 0.67, + 0.8, + 0.8, + 0.45, + 0.04, + -0.39, + -0.6900000000000001, + -0.76, + -0.81, + -0.65, + -0.59, + -0.49, + -0.43, + -0.62, + -0.54, + -0.48, + -0.2, + 0.17, + 0.49, + 0.76, + 0.87, + 0.8200000000000001, + 0.68, + 0.49, + 0.33, + 0.32, + 0.46, + 0.68, + 0.87, + 0.98, + 1.02, + 1.02, + 0.89, + 0.76, + 0.63, + 0.6, + 0.61, + 0.64, + 0.6, + 0.49, + 0.34, + 0.16, + -0.04, + -0.37, + -0.7000000000000001, + -0.98, + -1.1300000000000001, + -1.16, + -1.02, + -0.66, + -0.18, + 0.2, + 0.34, + 0.24, + -0.18, + -0.87, + -2.0100000000000002, + -3.08, + -3.97, + -4.16, + -3.47, + -2.72, + -1.93, + -1.21, + -0.68, + -0.31, + -0.14, + -0.19, + -0.31, + -0.41000000000000003, + -0.26, + -0.04, + 0.03, + -0.18 + ], + [ + 1.22, + 1.18, + 1.04, + 0.98, + 1.02, + 1.1, + 1.23, + 1.37, + 1.49, + 1.6, + 1.67, + 1.72, + 1.77, + 1.78, + 1.7, + 1.49, + 1.24, + 1.09, + 1.04, + 0.9500000000000001, + 0.76, + 0.6, + 0.56, + 0.6900000000000001, + 0.85, + 0.9400000000000001, + 0.97, + 0.96, + 0.99, + 1.06, + 1.25, + 1.4000000000000001, + 1.55, + 1.6500000000000001, + 1.87, + 2.24, + 2.66, + 3.19, + 3.89, + 4.62, + 5.28, + 5.72, + 5.88, + 6.0, + 6.13, + 6.13, + 5.86, + 5.13, + 4.22, + 3.24, + 2.36, + 1.72, + 1.26, + 1.0, + 0.79, + 0.87, + 0.8200000000000001, + 0.97, + 0.89, + 0.87, + 0.76, + 0.77, + 0.8200000000000001, + 0.92, + 1.05, + 1.06, + 1.05, + 1.05, + 1.05, + 1.1300000000000001, + 1.19, + 1.24, + 1.21, + 1.24, + 1.21, + 1.42, + 1.71, + 2.25, + 2.69, + 2.96, + 2.92, + 2.34, + 1.6500000000000001, + 1.1, + 0.61, + 0.49, + 0.48, + 0.4, + 0.31, + 0.18, + 0.02, + -0.11, + -0.21, + -0.12, + 0.04, + 0.23, + 0.33, + 0.3, + 0.22, + 0.28, + 0.4, + 0.56, + 0.8, + 1.07, + 1.2, + 1.23, + 1.09, + 0.84, + 0.55, + 0.43, + 0.54, + 0.71, + 0.93, + 1.06, + 1.06, + 0.84, + 0.45, + 0.1, + -0.03, + 0.05, + 0.17, + 0.18, + 0.19, + 0.2, + 0.23, + 0.19, + 0.1, + 0.06, + 0.15, + 0.36, + 0.86, + 1.41, + 1.78, + 1.61, + 0.97, + 0.28, + -0.29, + -0.59, + -0.73, + -0.6, + -0.38, + -0.16, + 0.06, + 0.15, + 0.36, + 0.54, + 0.86, + 1.0, + 1.19, + 1.1400000000000001, + 1.05, + 0.9400000000000001, + 0.75, + 0.71, + 0.48, + 0.24, + 0.19, + 0.24, + 0.51, + 0.71, + 0.75, + 0.86, + 1.0, + 1.04, + 1.32, + 1.75, + 2.43, + 3.13, + 3.22, + 3.04, + 2.37, + 1.59, + 1.19, + 1.6, + 2.65, + 3.63, + 4.11, + 3.8200000000000003, + 3.37, + 2.92, + 2.5, + 2.13, + 1.68, + 0.9400000000000001, + 0.1, + -0.41000000000000003, + -0.71, + -0.32, + 0.14, + 0.67, + 1.22, + 1.29, + 1.5, + 1.8, + 1.97, + 2.21, + 2.1, + 1.9100000000000001, + 1.8900000000000001, + 1.8800000000000001, + 1.81, + 1.59, + 1.04, + 0.41000000000000003, + -0.19, + -0.53, + -0.37, + 0.08, + 0.52, + 0.76, + 0.87, + 1.22, + 1.98, + 2.59, + 2.81, + 2.47, + 1.7, + 1.32, + 0.98, + 0.66, + 0.16, + -0.49, + -1.62, + -2.72, + -3.52, + -3.47, + -2.68, + -1.97, + -1.41, + -1.1500000000000001, + -1.0, + -0.71, + -0.47000000000000003, + -0.07, + 0.29, + 0.7000000000000001, + 0.87, + 0.85, + 0.65, + 0.21, + -0.12, + -0.55, + -0.71, + -0.89, + -0.98, + -0.9, + -0.92, + -0.72, + -0.56, + -0.41000000000000003, + -0.2, + -0.06, + 0.05, + 0.12, + 0.2, + 0.35000000000000003, + 0.63, + 0.89, + 1.1400000000000001, + 1.03, + 0.78, + 0.49, + 0.27, + 0.29, + 0.29, + 0.44, + 0.54, + 0.54, + 0.51, + 0.38, + 0.28, + 0.26, + 0.27, + 0.34, + 0.33, + 0.22, + -0.03, + -0.3, + -0.61, + -0.64, + -0.67, + -0.55, + -0.34, + -0.19, + -0.07, + -0.28, + -0.48, + -0.62, + -0.58, + -0.32, + 0.09, + 0.44, + 0.74, + 0.84, + 0.74, + 0.61, + 0.42, + 0.3, + 0.31, + 0.4, + 0.5700000000000001, + 0.79, + 0.87, + 0.92, + 0.84, + 0.71, + 0.54, + 0.41000000000000003, + 0.38, + 0.39, + 0.44, + 0.4, + 0.29, + 0.14, + -0.05, + -0.25, + -0.54, + -0.86, + -1.12, + -1.25, + -1.25, + -1.08, + -0.73, + -0.23, + 0.18, + 0.36, + 0.35000000000000003, + 0.07, + -0.54, + -1.41, + -2.48, + -3.21, + -3.44, + -3.25, + -2.5100000000000002, + -1.82, + -1.11, + -0.41000000000000003, + -0.05, + 0.1, + 0.03, + -0.05, + -0.05, + -0.02, + 0.17, + 0.11, + -0.32 + ], + [ + 1.19, + 1.17, + 1.05, + 0.97, + 1.0, + 1.06, + 1.17, + 1.31, + 1.45, + 1.57, + 1.6400000000000001, + 1.68, + 1.7, + 1.7, + 1.55, + 1.29, + 1.01, + 0.84, + 0.8200000000000001, + 0.71, + 0.55, + 0.42, + 0.39, + 0.59, + 0.84, + 1.01, + 1.04, + 1.05, + 1.07, + 1.23, + 1.43, + 1.6400000000000001, + 1.81, + 1.99, + 2.19, + 2.45, + 2.87, + 3.48, + 4.23, + 5.09, + 5.76, + 6.0600000000000005, + 6.07, + 6.0200000000000005, + 6.01, + 5.94, + 5.48, + 4.75, + 3.75, + 2.71, + 1.84, + 1.11, + 0.7000000000000001, + 0.41000000000000003, + 0.5, + 0.62, + 0.9400000000000001, + 1.1500000000000001, + 1.3, + 1.29, + 1.33, + 1.35, + 1.49, + 1.58, + 1.58, + 1.46, + 1.35, + 1.25, + 1.26, + 1.33, + 1.3800000000000001, + 1.32, + 1.23, + 1.03, + 1.01, + 1.05, + 1.3900000000000001, + 1.75, + 2.3000000000000003, + 2.69, + 2.71, + 2.48, + 1.75, + 1.1, + 0.59, + 0.25, + 0.26, + 0.34, + 0.31, + 0.21, + 0.07, + -0.03, + -0.02, + -0.01, + 0.2, + 0.3, + 0.34, + 0.31, + 0.35000000000000003, + 0.37, + 0.4, + 0.54, + 0.63, + 0.9400000000000001, + 1.19, + 1.19, + 1.1500000000000001, + 0.87, + 0.64, + 0.56, + 0.68, + 0.84, + 1.04, + 1.11, + 1.17, + 0.9500000000000001, + 0.56, + 0.18, + 0.01, + 0.09, + 0.28, + 0.38, + 0.37, + 0.44, + 0.47000000000000003, + 0.48, + 0.38, + 0.27, + 0.39, + 0.78, + 1.35, + 1.95, + 2.2800000000000002, + 2.17, + 1.42, + 0.67, + 0.09, + -0.25, + -0.32, + -0.27, + -0.06, + 0.15, + 0.2, + 0.31, + 0.39, + 0.5700000000000001, + 0.65, + 0.8, + 0.78, + 0.72, + 0.59, + 0.48, + 0.61, + 0.61, + 0.59, + 0.42, + 0.18, + 0.24, + 0.31, + 0.44, + 0.6, + 0.91, + 1.19, + 1.44, + 1.68, + 2.12, + 2.69, + 3.0100000000000002, + 3.11, + 2.66, + 1.98, + 1.23, + 0.78, + 1.04, + 2.17, + 3.12, + 3.49, + 3.48, + 2.95, + 2.5300000000000002, + 2.07, + 1.69, + 1.24, + 0.72, + 0.22, + -0.23, + -0.15, + 0.05, + 0.35000000000000003, + 0.72, + 0.65, + 0.7000000000000001, + 0.79, + 1.16, + 1.82, + 2.13, + 2.2600000000000002, + 2.07, + 1.82, + 1.79, + 1.59, + 1.26, + 0.81, + 0.08, + -0.5, + -0.75, + -0.71, + -0.24, + 0.15, + 0.25, + 0.39, + 0.93, + 1.8800000000000001, + 2.81, + 3.25, + 2.59, + 1.8, + 1.23, + 0.87, + 0.72, + 0.2, + -0.6900000000000001, + -1.9100000000000001, + -3.37, + -4.11, + -4.23, + -3.2600000000000002, + -2.37, + -1.73, + -1.25, + -0.92, + -0.6, + -0.23, + 0.16, + 0.6900000000000001, + 1.11, + 1.29, + 1.28, + 0.8300000000000001, + 0.36, + -0.23, + -0.6900000000000001, + -1.09, + -1.28, + -1.28, + -1.1500000000000001, + -0.8300000000000001, + -0.5, + -0.16, + 0.06, + 0.16, + 0.24, + 0.26, + 0.26, + 0.29, + 0.41000000000000003, + 0.75, + 1.17, + 1.56, + 1.6600000000000001, + 1.3900000000000001, + 1.01, + 0.74, + 0.4, + 0.38, + 0.34, + 0.41000000000000003, + 0.49, + 0.4, + 0.35000000000000003, + 0.19, + 0.19, + 0.18, + 0.19, + 0.2, + 0.05, + -0.09, + -0.32, + -0.35000000000000003, + -0.4, + -0.3, + -0.23, + -0.17, + 0.03, + -0.09, + -0.28, + -0.51, + -0.67, + -0.55, + -0.26, + 0.04, + 0.4, + 0.58, + 0.59, + 0.53, + 0.37, + 0.33, + 0.32, + 0.28, + 0.33, + 0.44, + 0.53, + 0.66, + 0.67, + 0.62, + 0.54, + 0.36, + 0.29, + 0.25, + 0.39, + 0.44, + 0.44, + 0.35000000000000003, + 0.09, + -0.07, + -0.31, + -0.5700000000000001, + -0.91, + -1.1300000000000001, + -1.31, + -1.28, + -1.09, + -0.65, + -0.17, + 0.21, + 0.4, + 0.31, + 0.17, + -0.32, + -1.09, + -1.93, + -2.67, + -3.02, + -2.87, + -2.48, + -1.8, + -1.12, + -0.45, + 0.03, + 0.11, + 0.2, + 0.18, + 0.29, + 0.43, + 0.45, + 0.19, + -0.29 + ], + [ + 1.18, + 1.1400000000000001, + 1.05, + 1.02, + 1.02, + 1.08, + 1.16, + 1.27, + 1.42, + 1.5, + 1.57, + 1.59, + 1.6, + 1.5, + 1.32, + 0.98, + 0.67, + 0.53, + 0.53, + 0.5700000000000001, + 0.47000000000000003, + 0.32, + 0.4, + 0.58, + 0.88, + 1.11, + 1.17, + 1.18, + 1.28, + 1.42, + 1.6400000000000001, + 1.86, + 2.08, + 2.2600000000000002, + 2.42, + 2.65, + 3.04, + 3.69, + 4.61, + 5.5200000000000005, + 6.13, + 6.24, + 6.11, + 5.91, + 5.7700000000000005, + 5.5200000000000005, + 5.12, + 4.3, + 3.34, + 2.37, + 1.44, + 0.84, + 0.31, + 0.28, + 0.33, + 0.66, + 1.03, + 1.32, + 1.49, + 1.54, + 1.57, + 1.71, + 1.83, + 1.92, + 1.76, + 1.6400000000000001, + 1.43, + 1.35, + 1.3800000000000001, + 1.44, + 1.41, + 1.31, + 1.03, + 0.75, + 0.56, + 0.55, + 0.7000000000000001, + 1.06, + 1.53, + 2.0, + 2.23, + 2.06, + 1.75, + 1.09, + 0.58, + 0.28, + 0.11, + 0.24, + 0.32, + 0.23, + 0.19, + 0.19, + 0.24, + 0.39, + 0.52, + 0.56, + 0.54, + 0.52, + 0.54, + 0.52, + 0.5, + 0.33, + 0.39, + 0.48, + 0.74, + 0.97, + 0.9, + 0.73, + 0.47000000000000003, + 0.3, + 0.33, + 0.5700000000000001, + 0.64, + 0.91, + 0.9400000000000001, + 0.93, + 0.58, + 0.18, + 0.05, + 0.11, + 0.3, + 0.47000000000000003, + 0.5700000000000001, + 0.66, + 0.8300000000000001, + 0.84, + 0.6900000000000001, + 0.56, + 0.67, + 1.11, + 1.6500000000000001, + 2.21, + 2.57, + 2.23, + 1.6500000000000001, + 0.8200000000000001, + 0.33, + 0.1, + 0.05, + 0.22, + 0.34, + 0.44, + 0.44, + 0.47000000000000003, + 0.49, + 0.54, + 0.5700000000000001, + 0.5, + 0.47000000000000003, + 0.35000000000000003, + 0.21, + 0.28, + 0.5, + 0.79, + 0.85, + 0.7000000000000001, + 0.49, + 0.27, + 0.28, + 0.4, + 0.72, + 1.09, + 1.55, + 1.83, + 2.06, + 2.45, + 2.84, + 3.15, + 3.0100000000000002, + 2.54, + 1.79, + 0.98, + 0.55, + 0.8200000000000001, + 1.3900000000000001, + 2.2800000000000002, + 2.68, + 2.5, + 2.33, + 1.9000000000000001, + 1.61, + 1.28, + 0.99, + 0.67, + 0.36, + 0.22, + 0.25, + 0.27, + 0.48, + 0.32, + 0.19, + -0.01, + 0.03, + 0.63, + 1.42, + 2.13, + 2.3000000000000003, + 2.24, + 1.97, + 1.6400000000000001, + 1.37, + 0.88, + 0.37, + -0.21, + -0.67, + -0.89, + -0.63, + -0.38, + -0.2, + -0.17, + -0.05, + 0.45, + 1.5, + 2.7, + 2.77, + 2.23, + 1.3900000000000001, + 0.8, + 0.8300000000000001, + 0.74, + 0.5, + -0.42, + -1.62, + -2.95, + -4.07, + -3.74, + -3.34, + -2.45, + -1.8900000000000001, + -1.45, + -0.98, + -0.62, + -0.16, + 0.28, + 0.89, + 1.22, + 1.52, + 1.24, + 0.8300000000000001, + 0.19, + -0.44, + -0.91, + -1.35, + -1.46, + -1.3900000000000001, + -1.16, + -0.6900000000000001, + -0.24, + 0.15, + 0.42, + 0.44, + 0.46, + 0.4, + 0.35000000000000003, + 0.29, + 0.35000000000000003, + 0.61, + 1.16, + 1.58, + 1.92, + 1.82, + 1.43, + 0.89, + 0.47000000000000003, + 0.13, + 0.04, + 0.09, + 0.14, + 0.14, + 0.05, + 0.03, + 0.06, + 0.16, + 0.24, + 0.25, + 0.17, + 0.04, + -0.04, + -0.05, + 0.08, + 0.14, + 0.09, + 0.08, + -0.06, + -0.15, + -0.34, + -0.58, + -0.56, + -0.41000000000000003, + -0.22, + 0.07, + 0.22, + 0.3, + 0.27, + 0.15, + 0.14, + 0.21, + 0.3, + 0.3, + 0.24, + 0.23, + 0.29, + 0.36, + 0.41000000000000003, + 0.47000000000000003, + 0.42, + 0.42, + 0.32, + 0.5, + 0.65, + 0.78, + 0.81, + 0.64, + 0.39, + 0.03, + -0.2, + -0.45, + -0.74, + -1.07, + -1.22, + -1.25, + -0.97, + -0.53, + -0.03, + 0.32, + 0.3, + 0.24, + 0.03, + -0.31, + -0.9, + -1.68, + -2.3000000000000003, + -2.7, + -2.74, + -2.37, + -1.8900000000000001, + -1.22, + -0.66, + -0.29, + -0.07, + -0.03, + 0.22, + 0.39, + 0.63, + 0.51, + 0.28, + -0.22 + ], + [ + 1.17, + 1.1500000000000001, + 1.09, + 1.05, + 1.08, + 1.11, + 1.18, + 1.26, + 1.33, + 1.42, + 1.46, + 1.48, + 1.43, + 1.3, + 1.02, + 0.63, + 0.31, + 0.24, + 0.34, + 0.45, + 0.48, + 0.43, + 0.42, + 0.67, + 0.98, + 1.19, + 1.31, + 1.4000000000000001, + 1.49, + 1.68, + 1.8800000000000001, + 2.1, + 2.33, + 2.49, + 2.63, + 2.83, + 3.23, + 3.97, + 4.98, + 5.8500000000000005, + 6.3, + 6.32, + 5.98, + 5.64, + 5.37, + 5.11, + 4.58, + 3.89, + 3.02, + 2.08, + 1.34, + 0.64, + 0.46, + 0.32, + 0.52, + 0.8300000000000001, + 1.1300000000000001, + 1.44, + 1.58, + 1.6, + 1.6300000000000001, + 1.76, + 1.87, + 1.82, + 1.75, + 1.52, + 1.43, + 1.42, + 1.44, + 1.44, + 1.42, + 1.18, + 0.85, + 0.51, + 0.19, + 0.09, + 0.12, + 0.45, + 0.88, + 1.32, + 1.62, + 1.67, + 1.44, + 1.21, + 0.75, + 0.37, + 0.28, + 0.17, + 0.23, + 0.26, + 0.28, + 0.36, + 0.47000000000000003, + 0.68, + 0.71, + 0.79, + 0.66, + 0.66, + 0.64, + 0.63, + 0.45, + 0.18, + -0.01, + 0.03, + 0.19, + 0.46, + 0.54, + 0.33, + -0.03, + -0.29, + -0.4, + -0.25, + 0.0, + 0.28, + 0.59, + 0.64, + 0.51, + 0.27, + 0.06, + 0.2, + 0.38, + 0.52, + 0.65, + 0.84, + 1.08, + 1.1400000000000001, + 0.96, + 0.78, + 0.89, + 1.22, + 1.74, + 2.2, + 2.38, + 2.23, + 1.5, + 0.81, + 0.45, + 0.38, + 0.56, + 0.74, + 0.9, + 0.93, + 0.86, + 0.8, + 0.85, + 0.8, + 0.6, + 0.46, + 0.31, + 0.17, + 0.16, + 0.3, + 0.65, + 1.04, + 1.25, + 1.08, + 0.74, + 0.47000000000000003, + 0.33, + 0.54, + 0.9400000000000001, + 1.55, + 2.05, + 2.33, + 2.44, + 2.67, + 3.0500000000000003, + 3.19, + 3.08, + 2.5100000000000002, + 1.72, + 0.92, + 0.44, + 0.45, + 0.97, + 1.31, + 1.55, + 1.59, + 1.45, + 1.34, + 1.2, + 0.9500000000000001, + 0.74, + 0.54, + 0.3, + 0.26, + 0.13, + 0.18, + 0.02, + -0.14, + -0.34, + -0.64, + -0.42, + 0.19, + 1.07, + 1.9100000000000001, + 2.37, + 2.31, + 2.21, + 1.87, + 1.3800000000000001, + 0.88, + 0.14, + -0.35000000000000003, + -0.76, + -0.72, + -0.53, + -0.31, + -0.3, + -0.43, + -0.5, + 0.06, + 1.05, + 1.78, + 2.11, + 1.48, + 0.62, + 0.45, + 0.63, + 0.9500000000000001, + 0.8, + 0.35000000000000003, + -0.78, + -1.9000000000000001, + -2.65, + -3.12, + -2.65, + -2.27, + -1.93, + -1.62, + -1.25, + -0.85, + -0.52, + 0.01, + 0.31, + 0.88, + 0.86, + 0.76, + 0.27, + -0.35000000000000003, + -0.78, + -1.25, + -1.44, + -1.48, + -1.29, + -0.9400000000000001, + -0.5700000000000001, + -0.12, + 0.27, + 0.36, + 0.5, + 0.42, + 0.44, + 0.39, + 0.29, + 0.37, + 0.45, + 0.78, + 1.35, + 1.58, + 1.73, + 1.42, + 0.84, + 0.32, + -0.12, + -0.23, + -0.16, + -0.06, + -0.02, + -0.11, + -0.05, + -0.03, + 0.14, + 0.3, + 0.29, + 0.28, + 0.16, + 0.13, + 0.23, + 0.46, + 0.45, + 0.38, + 0.09, + -0.1, + -0.3, + -0.48, + -0.42, + -0.35000000000000003, + -0.23, + -0.06, + 0.03, + 0.1, + 0.04, + -0.05, + -0.14, + -0.04, + 0.09, + 0.22, + 0.29, + 0.18, + 0.06, + 0.08, + 0.12, + 0.24, + 0.34, + 0.5, + 0.53, + 0.74, + 0.93, + 1.12, + 1.27, + 1.24, + 1.04, + 0.67, + 0.26, + -0.03, + -0.26, + -0.5, + -0.8200000000000001, + -1.11, + -1.07, + -0.86, + -0.37, + 0.13, + 0.23, + 0.2, + 0.03, + -0.11, + -0.31, + -0.81, + -1.3800000000000001, + -2.02, + -2.44, + -2.5100000000000002, + -2.33, + -1.8800000000000001, + -1.48, + -0.98, + -0.65, + -0.51, + -0.38, + -0.09, + 0.21, + 0.29, + 0.35000000000000003, + -0.04, + -0.34 + ], + [ + 1.18, + 1.1500000000000001, + 1.11, + 1.1, + 1.1400000000000001, + 1.18, + 1.22, + 1.24, + 1.28, + 1.3, + 1.33, + 1.31, + 1.24, + 1.06, + 0.73, + 0.38, + 0.11, + 0.01, + 0.25, + 0.45, + 0.53, + 0.53, + 0.58, + 0.75, + 1.07, + 1.33, + 1.48, + 1.59, + 1.75, + 1.93, + 2.12, + 2.34, + 2.5300000000000002, + 2.7, + 2.84, + 3.02, + 3.5100000000000002, + 4.3500000000000005, + 5.25, + 6.04, + 6.4, + 6.13, + 5.74, + 5.3, + 4.92, + 4.55, + 4.12, + 3.46, + 2.71, + 1.95, + 1.21, + 0.9, + 0.66, + 0.7000000000000001, + 0.8300000000000001, + 1.0, + 1.26, + 1.47, + 1.59, + 1.62, + 1.6300000000000001, + 1.6300000000000001, + 1.6600000000000001, + 1.62, + 1.48, + 1.4000000000000001, + 1.4000000000000001, + 1.45, + 1.46, + 1.44, + 1.34, + 1.12, + 0.8, + 0.38, + 0.09, + -0.18, + -0.14, + 0.08, + 0.51, + 0.9400000000000001, + 1.2, + 1.3, + 1.35, + 1.26, + 1.1, + 0.8, + 0.46, + 0.36, + 0.2, + 0.26, + 0.3, + 0.39, + 0.51, + 0.59, + 0.72, + 0.61, + 0.56, + 0.53, + 0.58, + 0.54, + 0.36, + 0.13, + -0.19, + -0.27, + -0.12, + 0.0, + 0.1, + -0.06, + -0.49, + -0.92, + -0.9400000000000001, + -0.97, + -0.53, + -0.23, + 0.26, + 0.47000000000000003, + 0.43, + 0.28, + 0.25, + 0.33, + 0.48, + 0.6, + 0.68, + 0.9, + 1.11, + 1.25, + 1.16, + 0.93, + 0.9400000000000001, + 1.28, + 1.7, + 2.08, + 2.2600000000000002, + 1.98, + 1.41, + 0.85, + 0.51, + 0.74, + 1.03, + 1.24, + 1.47, + 1.35, + 1.28, + 1.26, + 1.3, + 1.12, + 0.81, + 0.47000000000000003, + 0.28, + 0.17, + 0.18, + 0.44, + 0.89, + 1.3900000000000001, + 1.57, + 1.48, + 1.04, + 0.6, + 0.52, + 0.72, + 1.3800000000000001, + 2.08, + 2.66, + 2.96, + 2.91, + 2.96, + 3.13, + 3.34, + 3.11, + 2.5500000000000003, + 1.61, + 0.76, + 0.28, + 0.25, + 0.46, + 0.66, + 0.74, + 0.86, + 0.9400000000000001, + 1.11, + 1.01, + 0.84, + 0.45, + 0.1, + -0.06, + -0.24, + -0.28, + -0.34, + -0.48, + -0.48, + -0.7000000000000001, + -0.67, + -0.6, + -0.04, + 0.88, + 1.61, + 2.13, + 2.44, + 2.39, + 2.32, + 1.85, + 1.1300000000000001, + 0.39, + -0.35000000000000003, + -0.58, + -0.6, + -0.32, + -0.11, + -0.27, + -0.56, + -0.56, + -0.31, + 0.35000000000000003, + 1.11, + 1.06, + 0.5, + 0.14, + 0.07, + 0.51, + 1.02, + 1.25, + 0.89, + 0.38, + -0.62, + -1.55, + -2.02, + -2.16, + -2.1, + -1.94, + -1.69, + -1.5, + -1.28, + -1.05, + -0.89, + -0.58, + -0.5, + -0.27, + -0.41000000000000003, + -0.77, + -1.01, + -1.34, + -1.45, + -1.54, + -1.44, + -1.16, + -0.88, + -0.58, + -0.27, + -0.1, + 0.11, + 0.12, + 0.24, + 0.31, + 0.45, + 0.5700000000000001, + 0.52, + 0.5700000000000001, + 0.58, + 0.71, + 1.05, + 1.08, + 0.9500000000000001, + 0.6, + 0.05, + -0.17, + -0.25, + -0.13, + 0.06, + 0.14, + 0.13, + 0.0, + 0.09, + 0.1, + 0.19, + 0.24, + 0.14, + 0.12, + 0.14, + 0.3, + 0.43, + 0.59, + 0.3, + -0.01, + -0.28, + -0.49, + -0.44, + -0.29, + -0.07, + 0.05, + 0.07, + 0.08, + 0.04, + -0.08, + -0.19, + -0.18, + -0.17, + 0.03, + 0.17, + 0.18, + 0.11, + 0.04, + -0.04, + 0.05, + 0.12, + 0.33, + 0.56, + 0.8300000000000001, + 1.12, + 1.32, + 1.52, + 1.53, + 1.46, + 1.22, + 0.75, + 0.38, + 0.08, + -0.07, + -0.33, + -0.56, + -0.8200000000000001, + -0.96, + -0.68, + -0.26, + 0.0, + 0.17, + -0.04, + -0.22, + -0.23, + -0.3, + -0.54, + -1.06, + -1.54, + -2.0100000000000002, + -2.24, + -2.09, + -1.92, + -1.59, + -1.28, + -0.99, + -0.81, + -0.5700000000000001, + -0.41000000000000003, + -0.17, + -0.14, + -0.31, + -0.53, + -0.77 + ], + [ + 1.18, + 1.17, + 1.12, + 1.11, + 1.1500000000000001, + 1.22, + 1.22, + 1.23, + 1.21, + 1.2, + 1.18, + 1.1400000000000001, + 1.05, + 0.85, + 0.6, + 0.29, + 0.05, + 0.1, + 0.24, + 0.51, + 0.66, + 0.64, + 0.67, + 0.92, + 1.21, + 1.45, + 1.6400000000000001, + 1.77, + 1.96, + 2.15, + 2.34, + 2.54, + 2.72, + 2.87, + 3.0100000000000002, + 3.36, + 3.92, + 4.67, + 5.5200000000000005, + 6.0600000000000005, + 6.11, + 5.92, + 5.38, + 4.88, + 4.47, + 4.0600000000000005, + 3.6, + 3.08, + 2.4, + 1.72, + 1.35, + 1.09, + 1.04, + 1.07, + 1.1, + 1.18, + 1.3, + 1.47, + 1.59, + 1.61, + 1.57, + 1.51, + 1.44, + 1.35, + 1.27, + 1.3, + 1.37, + 1.45, + 1.49, + 1.46, + 1.3800000000000001, + 1.17, + 0.84, + 0.47000000000000003, + 0.09, + -0.1, + -0.23, + -0.01, + 0.4, + 0.73, + 0.96, + 1.16, + 1.34, + 1.5, + 1.48, + 1.32, + 0.96, + 0.5700000000000001, + 0.4, + 0.28, + 0.34, + 0.37, + 0.4, + 0.43, + 0.43, + 0.35000000000000003, + 0.31, + 0.29, + 0.37, + 0.42, + 0.33, + 0.12, + -0.03, + -0.19, + -0.23, + -0.13, + -0.17, + -0.35000000000000003, + -0.64, + -0.92, + -1.1500000000000001, + -0.88, + -0.6900000000000001, + -0.09, + 0.26, + 0.5, + 0.47000000000000003, + 0.38, + 0.35000000000000003, + 0.44, + 0.6, + 0.64, + 0.66, + 0.8, + 1.07, + 1.19, + 1.1400000000000001, + 1.04, + 1.04, + 1.27, + 1.68, + 2.04, + 2.15, + 1.97, + 1.3900000000000001, + 0.86, + 0.85, + 1.04, + 1.29, + 1.62, + 1.59, + 1.62, + 1.53, + 1.59, + 1.6, + 1.45, + 1.07, + 0.6, + 0.3, + 0.19, + 0.25, + 0.58, + 1.08, + 1.62, + 1.94, + 1.72, + 1.35, + 0.88, + 0.64, + 1.1400000000000001, + 1.84, + 2.75, + 3.45, + 3.43, + 3.34, + 3.13, + 3.23, + 3.27, + 3.15, + 2.33, + 1.32, + 0.48, + -0.01, + -0.02, + 0.15, + 0.35000000000000003, + 0.47000000000000003, + 0.63, + 1.01, + 1.2, + 1.16, + 0.79, + 0.13, + -0.48, + -0.74, + -0.87, + -0.8200000000000001, + -0.84, + -0.63, + -0.6, + -0.47000000000000003, + -0.48, + -0.35000000000000003, + 0.03, + 0.59, + 1.29, + 1.84, + 2.25, + 2.62, + 2.66, + 2.43, + 1.6, + 0.71, + -0.01, + -0.48, + -0.32, + -0.08, + -0.03, + -0.13, + -0.41000000000000003, + -0.65, + -0.49, + -0.12, + 0.15, + 0.15, + -0.11, + -0.38, + -0.11, + 0.49, + 1.01, + 1.35, + 1.45, + 1.06, + 0.44, + -0.62, + -1.52, + -1.93, + -2.06, + -1.95, + -1.76, + -1.7, + -1.67, + -1.68, + -1.76, + -1.86, + -1.9000000000000001, + -1.86, + -1.83, + -1.7, + -1.76, + -1.6600000000000001, + -1.6, + -1.5, + -1.31, + -1.19, + -0.98, + -0.86, + -0.74, + -0.59, + -0.47000000000000003, + -0.34, + -0.14, + 0.13, + 0.53, + 0.9, + 0.97, + 0.86, + 0.6, + 0.35000000000000003, + 0.32, + 0.39, + 0.34, + 0.14, + 0.02, + -0.1, + -0.05, + 0.17, + 0.37, + 0.51, + 0.51, + 0.35000000000000003, + 0.19, + 0.13, + 0.03, + -0.08, + -0.11, + -0.14, + -0.05, + 0.09, + 0.3, + 0.22, + 0.05, + -0.18, + -0.48, + -0.52, + -0.4, + -0.1, + 0.2, + 0.26, + 0.18, + 0.12, + 0.03, + -0.06, + -0.09, + -0.13, + -0.02, + 0.04, + 0.17, + 0.17, + 0.15, + 0.06, + 0.11, + 0.09, + 0.22, + 0.38, + 0.67, + 1.03, + 1.26, + 1.48, + 1.51, + 1.46, + 1.31, + 0.99, + 0.66, + 0.29, + 0.09, + -0.04, + -0.15, + -0.38, + -0.6, + -0.68, + -0.63, + -0.4, + -0.11, + -0.2, + -0.36, + -0.41000000000000003, + -0.36, + -0.27, + -0.31, + -0.53, + -0.97, + -1.36, + -1.68, + -1.85, + -1.79, + -1.67, + -1.3800000000000001, + -1.1, + -0.8300000000000001, + -0.63, + -0.42, + -0.41000000000000003, + -0.53, + -0.86, + -1.07, + -1.33 + ], + [ + 1.18, + 1.16, + 1.1, + 1.08, + 1.11, + 1.1400000000000001, + 1.17, + 1.1500000000000001, + 1.11, + 1.09, + 1.05, + 1.0, + 0.9, + 0.77, + 0.58, + 0.36, + 0.24, + 0.21, + 0.42, + 0.64, + 0.72, + 0.77, + 0.91, + 1.1, + 1.4000000000000001, + 1.6400000000000001, + 1.75, + 1.9000000000000001, + 2.1, + 2.32, + 2.56, + 2.75, + 2.88, + 3.0, + 3.2600000000000002, + 3.68, + 4.3, + 5.04, + 5.61, + 5.83, + 5.8100000000000005, + 5.44, + 4.99, + 4.48, + 4.0, + 3.58, + 3.14, + 2.58, + 2.0300000000000002, + 1.62, + 1.34, + 1.28, + 1.31, + 1.27, + 1.27, + 1.26, + 1.3, + 1.3900000000000001, + 1.51, + 1.55, + 1.47, + 1.36, + 1.23, + 1.1400000000000001, + 1.1300000000000001, + 1.21, + 1.36, + 1.49, + 1.46, + 1.5, + 1.45, + 1.32, + 0.9400000000000001, + 0.58, + 0.27, + 0.02, + -0.01, + 0.06, + 0.29, + 0.59, + 0.81, + 1.06, + 1.3800000000000001, + 1.69, + 1.87, + 1.71, + 1.46, + 0.96, + 0.56, + 0.44, + 0.39, + 0.36, + 0.31, + 0.29, + 0.23, + 0.21, + 0.09, + 0.15, + 0.22, + 0.25, + 0.27, + 0.23, + 0.17, + 0.14, + 0.01, + -0.11, + -0.2, + -0.37, + -0.51, + -0.65, + -0.65, + -0.55, + -0.14, + 0.29, + 0.6, + 0.78, + 0.63, + 0.45, + 0.46, + 0.53, + 0.62, + 0.66, + 0.6900000000000001, + 0.75, + 0.93, + 1.1, + 1.1500000000000001, + 1.1, + 1.1, + 1.32, + 1.6300000000000001, + 1.95, + 2.12, + 1.79, + 1.43, + 1.11, + 0.97, + 1.16, + 1.42, + 1.46, + 1.59, + 1.51, + 1.53, + 1.6300000000000001, + 1.83, + 1.68, + 1.31, + 0.85, + 0.45, + 0.27, + 0.35000000000000003, + 0.65, + 1.21, + 1.78, + 2.04, + 1.99, + 1.53, + 1.12, + 1.1400000000000001, + 1.46, + 2.49, + 3.5500000000000003, + 3.87, + 3.94, + 3.39, + 3.06, + 3.06, + 3.2, + 2.69, + 1.86, + 0.8200000000000001, + -0.05, + -0.36, + -0.28, + -0.01, + 0.26, + 0.53, + 0.88, + 1.23, + 1.4000000000000001, + 1.3900000000000001, + 0.61, + -0.26, + -0.89, + -1.44, + -1.34, + -1.28, + -0.96, + -0.65, + -0.37, + -0.12, + -0.09, + -0.06, + 0.09, + 0.42, + 0.91, + 1.47, + 2.05, + 2.62, + 2.94, + 2.63, + 2.0100000000000002, + 0.99, + 0.2, + -0.08, + -0.15, + 0.01, + 0.15, + -0.08, + -0.33, + -0.53, + -0.65, + -0.56, + -0.49, + -0.5700000000000001, + -0.72, + -0.59, + -0.17, + 0.39, + 0.93, + 1.32, + 1.56, + 1.6, + 0.9400000000000001, + 0.01, + -1.12, + -1.98, + -2.14, + -2.09, + -2.0300000000000002, + -1.92, + -2.05, + -2.19, + -2.5, + -2.95, + -3.1, + -3.23, + -2.83, + -2.47, + -2.0300000000000002, + -1.7, + -1.37, + -1.1500000000000001, + -1.07, + -1.03, + -1.1500000000000001, + -1.17, + -1.25, + -1.09, + -1.0, + -0.72, + -0.52, + 0.03, + 0.58, + 1.04, + 1.42, + 1.16, + 0.73, + 0.29, + -0.11, + -0.14, + -0.14, + -0.05, + 0.06, + 0.19, + 0.34, + 0.48, + 0.7000000000000001, + 0.81, + 0.72, + 0.6, + 0.3, + 0.07, + -0.25, + -0.5, + -0.5700000000000001, + -0.53, + -0.38, + -0.21, + -0.12, + -0.14, + -0.21, + -0.36, + -0.4, + -0.43, + -0.23, + 0.16, + 0.38, + 0.36, + 0.26, + 0.18, + 0.15, + 0.14, + 0.09, + 0.12, + 0.18, + 0.25, + 0.29, + 0.34, + 0.29, + 0.36, + 0.36, + 0.42, + 0.43, + 0.59, + 0.8200000000000001, + 1.03, + 1.26, + 1.3, + 1.24, + 1.12, + 0.91, + 0.65, + 0.36, + 0.13, + 0.04, + -0.03, + -0.12, + -0.2, + -0.37, + -0.55, + -0.6, + -0.5700000000000001, + -0.51, + -0.54, + -0.59, + -0.66, + -0.5, + -0.26, + -0.14, + -0.12, + -0.31, + -0.6900000000000001, + -1.1, + -1.45, + -1.62, + -1.58, + -1.3800000000000001, + -1.03, + -0.73, + -0.49, + -0.33, + -0.46, + -0.71, + -1.04, + -1.49, + -1.57 + ], + [ + 1.18, + 1.19, + 1.09, + 1.02, + 1.02, + 1.04, + 1.04, + 1.03, + 1.0, + 0.98, + 0.9400000000000001, + 0.9, + 0.86, + 0.8, + 0.6900000000000001, + 0.55, + 0.42, + 0.41000000000000003, + 0.54, + 0.68, + 0.85, + 0.98, + 1.12, + 1.42, + 1.68, + 1.76, + 1.84, + 2.0100000000000002, + 2.23, + 2.52, + 2.79, + 2.95, + 3.0300000000000002, + 3.19, + 3.5, + 4.0200000000000005, + 4.7, + 5.26, + 5.53, + 5.59, + 5.34, + 5.01, + 4.55, + 4.05, + 3.5700000000000003, + 3.12, + 2.6, + 2.1, + 1.69, + 1.3800000000000001, + 1.32, + 1.3800000000000001, + 1.35, + 1.34, + 1.28, + 1.23, + 1.22, + 1.27, + 1.36, + 1.3900000000000001, + 1.32, + 1.16, + 1.02, + 0.9400000000000001, + 0.9500000000000001, + 1.11, + 1.34, + 1.36, + 1.3800000000000001, + 1.42, + 1.55, + 1.3, + 0.98, + 0.6, + 0.37, + 0.24, + 0.19, + 0.24, + 0.31, + 0.47000000000000003, + 0.67, + 0.97, + 1.41, + 1.76, + 1.97, + 2.0, + 1.6500000000000001, + 1.26, + 0.81, + 0.51, + 0.4, + 0.35000000000000003, + 0.28, + 0.22, + 0.21, + 0.17, + 0.14, + 0.1, + 0.09, + 0.11, + 0.14, + 0.25, + 0.41000000000000003, + 0.5, + 0.48, + 0.23, + -0.03, + -0.15, + -0.25, + -0.2, + -0.15, + 0.02, + 0.34, + 0.65, + 1.04, + 0.92, + 0.79, + 0.66, + 0.5700000000000001, + 0.7000000000000001, + 0.72, + 0.78, + 0.77, + 0.8200000000000001, + 0.93, + 1.11, + 1.24, + 1.26, + 1.25, + 1.29, + 1.53, + 1.75, + 1.74, + 1.6500000000000001, + 1.42, + 1.2, + 1.16, + 1.17, + 1.17, + 1.21, + 1.22, + 1.24, + 1.28, + 1.5, + 1.6300000000000001, + 1.74, + 1.3900000000000001, + 0.9400000000000001, + 0.53, + 0.31, + 0.38, + 0.6900000000000001, + 1.27, + 1.85, + 2.21, + 2.08, + 1.77, + 1.53, + 1.44, + 2.11, + 3.0700000000000003, + 3.84, + 4.48, + 3.89, + 3.21, + 2.85, + 2.77, + 2.5500000000000003, + 2.09, + 1.08, + 0.01, + -0.58, + -0.74, + -0.54, + -0.14, + 0.22, + 0.59, + 1.0, + 1.25, + 1.49, + 1.07, + 0.51, + -0.36, + -1.34, + -1.4000000000000001, + -1.67, + -1.31, + -1.0, + -0.61, + -0.15, + 0.03, + 0.16, + 0.11, + 0.06, + 0.27, + 0.64, + 1.18, + 1.9100000000000001, + 2.52, + 2.86, + 2.79, + 1.99, + 1.18, + 0.52, + 0.12, + 0.06, + 0.13, + 0.09, + -0.02, + -0.26, + -0.5, + -0.68, + -0.86, + -0.97, + -1.1400000000000001, + -1.12, + -0.81, + -0.31, + 0.27, + 0.73, + 1.11, + 1.48, + 1.6500000000000001, + 1.42, + 0.28, + -0.93, + -1.84, + -2.41, + -2.39, + -2.35, + -2.37, + -2.43, + -2.65, + -3.08, + -3.46, + -3.99, + -3.72, + -3.31, + -2.57, + -1.8800000000000001, + -1.29, + -0.76, + -0.46, + -0.44, + -0.61, + -0.9, + -1.23, + -1.25, + -1.37, + -1.07, + -0.96, + -0.48, + -0.08, + 0.59, + 1.2, + 1.4000000000000001, + 1.45, + 0.93, + 0.28, + -0.11, + -0.36, + -0.26, + -0.01, + 0.29, + 0.6, + 0.79, + 0.86, + 0.88, + 0.87, + 0.74, + 0.48, + 0.22, + -0.22, + -0.6, + -0.92, + -1.1300000000000001, + -0.9500000000000001, + -0.74, + -0.55, + -0.45, + -0.38, + -0.38, + -0.28, + -0.2, + -0.12, + 0.07, + 0.33, + 0.52, + 0.51, + 0.37, + 0.33, + 0.39, + 0.4, + 0.34, + 0.34, + 0.38, + 0.47000000000000003, + 0.56, + 0.59, + 0.66, + 0.72, + 0.79, + 0.8300000000000001, + 0.8200000000000001, + 0.85, + 0.91, + 1.01, + 1.04, + 1.0, + 0.93, + 0.78, + 0.58, + 0.36, + 0.13, + 0.05, + -0.04, + -0.07, + -0.09, + -0.11, + -0.18, + -0.42, + -0.66, + -0.7000000000000001, + -0.78, + -0.73, + -0.8, + -0.74, + -0.61, + -0.36, + -0.06, + 0.08, + 0.13, + -0.18, + -0.6900000000000001, + -1.12, + -1.44, + -1.46, + -1.21, + -0.93, + -0.66, + -0.38, + -0.41000000000000003, + -0.43, + -0.77, + -1.1, + -1.43, + -1.75 + ], + [ + 1.19, + 1.1500000000000001, + 1.06, + 0.98, + 0.93, + 0.93, + 0.92, + 0.9, + 0.88, + 0.86, + 0.84, + 0.85, + 0.89, + 0.88, + 0.8300000000000001, + 0.7000000000000001, + 0.53, + 0.49, + 0.5700000000000001, + 0.72, + 0.97, + 1.18, + 1.48, + 1.77, + 1.86, + 1.8800000000000001, + 1.96, + 2.09, + 2.41, + 2.75, + 2.98, + 3.15, + 3.24, + 3.38, + 3.7800000000000002, + 4.38, + 4.94, + 5.3, + 5.42, + 5.2, + 4.91, + 4.5600000000000005, + 4.15, + 3.63, + 3.12, + 2.59, + 2.06, + 1.6300000000000001, + 1.27, + 1.16, + 1.2, + 1.24, + 1.28, + 1.21, + 1.16, + 1.1, + 1.06, + 1.1, + 1.17, + 1.2, + 1.09, + 0.93, + 0.77, + 0.68, + 0.75, + 0.92, + 1.11, + 1.21, + 1.18, + 1.22, + 1.31, + 1.28, + 0.88, + 0.47000000000000003, + 0.32, + 0.35000000000000003, + 0.36, + 0.39, + 0.43, + 0.46, + 0.65, + 0.99, + 1.3800000000000001, + 1.74, + 1.93, + 1.93, + 1.79, + 1.37, + 0.92, + 0.56, + 0.34, + 0.28, + 0.23, + 0.23, + 0.23, + 0.21, + 0.19, + 0.04, + -0.07, + -0.12, + -0.09, + 0.15, + 0.59, + 0.92, + 1.02, + 0.88, + 0.51, + 0.23, + 0.24, + 0.27, + 0.33, + 0.41000000000000003, + 0.59, + 0.9, + 1.01, + 1.04, + 0.91, + 0.84, + 0.9400000000000001, + 1.02, + 1.09, + 1.06, + 1.01, + 0.99, + 1.06, + 1.26, + 1.44, + 1.51, + 1.48, + 1.35, + 1.33, + 1.3800000000000001, + 1.4000000000000001, + 1.45, + 1.43, + 1.37, + 1.27, + 1.04, + 0.88, + 0.85, + 0.84, + 0.8200000000000001, + 0.85, + 1.03, + 1.3, + 1.29, + 1.12, + 0.7000000000000001, + 0.28, + 0.06, + 0.15, + 0.55, + 1.22, + 1.96, + 2.33, + 2.35, + 2.17, + 1.9000000000000001, + 2.04, + 2.44, + 3.29, + 4.29, + 4.18, + 3.83, + 3.1, + 2.47, + 2.23, + 1.94, + 1.1500000000000001, + 0.08, + -0.73, + -1.1300000000000001, + -1.08, + -0.71, + -0.35000000000000003, + 0.02, + 0.4, + 0.75, + 1.05, + 1.03, + 0.85, + 0.39, + -0.32, + -0.61, + -1.1400000000000001, + -1.02, + -1.1500000000000001, + -0.8200000000000001, + -0.53, + -0.25, + 0.04, + 0.12, + 0.07, + 0.08, + 0.18, + 0.53, + 1.09, + 1.72, + 2.33, + 2.67, + 2.4, + 1.9000000000000001, + 1.17, + 0.63, + 0.31, + 0.15, + 0.12, + 0.09, + -0.01, + -0.2, + -0.41000000000000003, + -0.6900000000000001, + -0.97, + -1.32, + -1.51, + -1.5, + -1.1500000000000001, + -0.53, + -0.01, + 0.34, + 0.7000000000000001, + 1.16, + 1.54, + 1.28, + 0.56, + -0.79, + -1.92, + -2.37, + -2.73, + -2.65, + -2.7800000000000002, + -2.73, + -2.92, + -3.17, + -3.7, + -3.7600000000000002, + -3.69, + -3.0, + -2.11, + -1.34, + -0.5700000000000001, + -0.03, + 0.34, + 0.41000000000000003, + 0.05, + -0.28, + -0.63, + -0.88, + -0.85, + -0.87, + -0.6, + -0.36, + 0.12, + 0.64, + 1.07, + 1.45, + 1.36, + 1.09, + 0.48, + -0.07, + -0.25, + -0.18, + 0.11, + 0.6, + 0.96, + 1.17, + 1.24, + 1.07, + 0.89, + 0.6, + 0.26, + -0.13, + -0.58, + -1.02, + -1.44, + -1.46, + -1.41, + -1.08, + -0.8, + -0.63, + -0.54, + -0.31, + -0.05, + 0.11, + 0.2, + 0.31, + 0.51, + 0.59, + 0.52, + 0.47000000000000003, + 0.51, + 0.6, + 0.53, + 0.51, + 0.5, + 0.55, + 0.76, + 0.89, + 0.97, + 1.05, + 1.1300000000000001, + 1.26, + 1.19, + 1.17, + 1.04, + 0.96, + 0.88, + 0.78, + 0.75, + 0.7000000000000001, + 0.61, + 0.45, + 0.24, + 0.11, + -0.01, + -0.08, + -0.13, + -0.08, + -0.03, + -0.14, + -0.29, + -0.53, + -0.76, + -0.71, + -0.75, + -0.77, + -0.78, + -0.68, + -0.45, + -0.12, + 0.19, + 0.21, + 0.0, + -0.47000000000000003, + -1.0, + -1.32, + -1.3, + -1.1400000000000001, + -0.97, + -0.75, + -0.68, + -0.56, + -0.74, + -0.84, + -1.12, + -1.3900000000000001, + -1.6500000000000001 + ], + [ + 1.17, + 1.17, + 1.03, + 0.9, + 0.86, + 0.8200000000000001, + 0.79, + 0.76, + 0.74, + 0.73, + 0.75, + 0.8300000000000001, + 0.9, + 0.96, + 0.92, + 0.72, + 0.56, + 0.51, + 0.5700000000000001, + 0.85, + 1.1300000000000001, + 1.51, + 1.86, + 2.0100000000000002, + 2.09, + 2.05, + 2.04, + 2.3000000000000003, + 2.63, + 2.91, + 3.17, + 3.3000000000000003, + 3.41, + 3.69, + 4.18, + 4.71, + 5.13, + 5.32, + 5.16, + 4.87, + 4.51, + 4.13, + 3.69, + 3.19, + 2.61, + 2.05, + 1.57, + 1.11, + 0.93, + 0.86, + 0.9400000000000001, + 1.04, + 1.02, + 0.98, + 0.9, + 0.85, + 0.8, + 0.84, + 0.91, + 0.93, + 0.84, + 0.64, + 0.48, + 0.44, + 0.47000000000000003, + 0.74, + 0.96, + 0.97, + 0.91, + 1.02, + 1.16, + 1.05, + 0.75, + 0.42, + 0.19, + 0.23, + 0.42, + 0.48, + 0.52, + 0.59, + 0.75, + 1.06, + 1.42, + 1.72, + 1.82, + 1.8, + 1.72, + 1.47, + 0.9500000000000001, + 0.5, + 0.29, + 0.17, + 0.22, + 0.23, + 0.24, + 0.24, + 0.08, + -0.14, + -0.32, + -0.47000000000000003, + -0.35000000000000003, + -0.01, + 0.54, + 1.25, + 1.57, + 1.51, + 1.23, + 0.86, + 0.74, + 0.73, + 0.77, + 0.66, + 0.72, + 0.92, + 1.06, + 1.04, + 0.97, + 1.09, + 1.3800000000000001, + 1.47, + 1.57, + 1.44, + 1.29, + 1.17, + 1.16, + 1.3, + 1.57, + 1.71, + 1.62, + 1.48, + 1.23, + 1.11, + 1.2, + 1.28, + 1.48, + 1.57, + 1.21, + 0.85, + 0.66, + 0.48, + 0.45, + 0.34, + 0.37, + 0.46, + 0.66, + 0.72, + 0.5700000000000001, + 0.2, + -0.12, + -0.35000000000000003, + -0.31, + 0.22, + 1.01, + 2.02, + 2.72, + 2.86, + 2.72, + 2.54, + 2.44, + 2.79, + 3.38, + 3.77, + 4.0200000000000005, + 3.5, + 2.86, + 2.32, + 1.78, + 1.1300000000000001, + 0.18, + -0.72, + -1.41, + -1.54, + -1.21, + -0.84, + -0.55, + -0.26, + 0.11, + 0.42, + 0.67, + 0.68, + 0.74, + 0.52, + 0.51, + 0.35000000000000003, + 0.18, + -0.07, + -0.25, + -0.5, + -0.39, + -0.34, + -0.12, + 0.03, + 0.08, + 0.11, + 0.24, + 0.55, + 1.02, + 1.58, + 2.06, + 2.17, + 2.0100000000000002, + 1.52, + 0.99, + 0.64, + 0.35000000000000003, + 0.23, + 0.13, + 0.15, + 0.08, + -0.06, + -0.27, + -0.62, + -1.04, + -1.45, + -1.85, + -1.8, + -1.46, + -0.9400000000000001, + -0.48, + -0.16, + 0.13, + 0.56, + 1.07, + 1.1300000000000001, + 0.38, + -0.67, + -1.59, + -2.34, + -2.46, + -2.7600000000000002, + -2.66, + -2.77, + -2.72, + -2.91, + -3.09, + -3.23, + -2.91, + -2.2600000000000002, + -1.47, + -0.66, + -0.03, + 0.53, + 0.85, + 0.84, + 0.71, + 0.35000000000000003, + 0.12, + -0.09, + -0.13, + -0.22, + -0.14, + -0.02, + 0.27, + 0.59, + 0.9500000000000001, + 1.1400000000000001, + 1.31, + 1.0, + 0.5700000000000001, + 0.14, + -0.11, + -0.06, + 0.25, + 0.62, + 1.07, + 1.31, + 1.32, + 1.24, + 0.85, + 0.51, + 0.06, + -0.42, + -0.91, + -1.46, + -1.6400000000000001, + -1.85, + -1.56, + -1.34, + -0.97, + -0.71, + -0.45, + -0.12, + 0.18, + 0.46, + 0.5, + 0.48, + 0.49, + 0.44, + 0.38, + 0.39, + 0.48, + 0.54, + 0.59, + 0.6, + 0.66, + 0.91, + 1.12, + 1.22, + 1.35, + 1.36, + 1.49, + 1.46, + 1.45, + 1.23, + 1.06, + 0.8300000000000001, + 0.62, + 0.55, + 0.54, + 0.58, + 0.61, + 0.52, + 0.35000000000000003, + 0.16, + 0.0, + -0.11, + -0.12, + -0.11, + -0.1, + -0.08, + -0.26, + -0.39, + -0.49, + -0.52, + -0.5700000000000001, + -0.7000000000000001, + -0.79, + -0.8200000000000001, + -0.55, + -0.16, + 0.11, + 0.2, + -0.02, + -0.47000000000000003, + -0.92, + -1.21, + -1.3, + -1.25, + -1.16, + -1.18, + -1.1500000000000001, + -1.18, + -1.2, + -1.1500000000000001, + -1.1400000000000001, + -1.34, + -1.55 + ], + [ + 1.1400000000000001, + 1.1, + 0.96, + 0.85, + 0.77, + 0.72, + 0.67, + 0.62, + 0.5700000000000001, + 0.59, + 0.66, + 0.77, + 0.92, + 0.98, + 0.89, + 0.71, + 0.55, + 0.5, + 0.73, + 1.01, + 1.45, + 1.87, + 2.1, + 2.3000000000000003, + 2.24, + 2.17, + 2.29, + 2.5300000000000002, + 2.81, + 3.0300000000000002, + 3.21, + 3.38, + 3.66, + 4.1, + 4.6000000000000005, + 5.1000000000000005, + 5.37, + 5.24, + 4.99, + 4.54, + 4.11, + 3.7, + 3.25, + 2.71, + 2.11, + 1.59, + 1.06, + 0.76, + 0.53, + 0.6, + 0.6900000000000001, + 0.75, + 0.72, + 0.65, + 0.56, + 0.48, + 0.43, + 0.49, + 0.61, + 0.63, + 0.52, + 0.35000000000000003, + 0.28, + 0.23, + 0.4, + 0.6, + 0.76, + 0.81, + 0.77, + 0.8, + 0.93, + 0.96, + 0.68, + 0.32, + 0.11, + 0.03, + 0.21, + 0.45, + 0.55, + 0.68, + 0.86, + 1.1500000000000001, + 1.5, + 1.73, + 1.81, + 1.75, + 1.6500000000000001, + 1.37, + 0.9500000000000001, + 0.48, + 0.16, + 0.21, + 0.26, + 0.29, + 0.27, + 0.13, + -0.06, + -0.34, + -0.64, + -0.68, + -0.61, + -0.19, + 0.52, + 1.23, + 1.86, + 1.96, + 1.62, + 1.32, + 1.07, + 1.07, + 0.87, + 0.79, + 0.8300000000000001, + 1.02, + 1.1, + 1.09, + 1.08, + 1.24, + 1.51, + 1.87, + 1.78, + 1.67, + 1.44, + 1.19, + 1.1, + 1.1500000000000001, + 1.35, + 1.6, + 1.6500000000000001, + 1.45, + 1.25, + 1.05, + 1.04, + 1.25, + 1.53, + 1.43, + 1.18, + 0.8, + 0.44, + 0.32, + 0.14, + 0.05, + -0.12, + 0.03, + 0.14, + 0.27, + 0.19, + 0.02, + -0.25, + -0.49, + -0.55, + -0.18, + 0.9, + 2.0300000000000002, + 3.06, + 3.61, + 3.39, + 3.22, + 2.99, + 2.97, + 3.15, + 3.29, + 3.34, + 3.21, + 2.75, + 2.24, + 1.45, + 0.39, + -0.56, + -1.44, + -1.81, + -1.6400000000000001, + -1.24, + -0.81, + -0.51, + -0.26, + -0.01, + 0.38, + 0.56, + 0.74, + 0.8, + 1.1500000000000001, + 1.45, + 1.52, + 1.67, + 1.1300000000000001, + 0.6900000000000001, + 0.22, + -0.23, + -0.22, + -0.18, + 0.01, + 0.19, + 0.26, + 0.36, + 0.6, + 0.96, + 1.4000000000000001, + 1.6600000000000001, + 1.74, + 1.5, + 1.11, + 0.88, + 0.59, + 0.44, + 0.27, + 0.29, + 0.31, + 0.25, + 0.17, + -0.15, + -0.54, + -1.05, + -1.6, + -1.9000000000000001, + -2.02, + -1.72, + -1.3, + -0.9, + -0.68, + -0.41000000000000003, + 0.08, + 0.52, + 0.72, + 0.31, + -0.44, + -1.28, + -1.62, + -1.93, + -2.12, + -2.31, + -2.24, + -2.21, + -2.24, + -2.2600000000000002, + -2.2800000000000002, + -2.04, + -1.54, + -0.88, + -0.31, + 0.16, + 0.55, + 0.71, + 0.8, + 0.8, + 0.7000000000000001, + 0.5700000000000001, + 0.55, + 0.34, + 0.35000000000000003, + 0.14, + 0.2, + 0.25, + 0.44, + 0.61, + 0.77, + 0.9, + 0.91, + 0.59, + 0.29, + 0.1, + 0.03, + 0.18, + 0.42, + 0.72, + 0.96, + 1.06, + 0.98, + 0.77, + 0.37, + -0.02, + -0.5700000000000001, + -1.1400000000000001, + -1.45, + -1.78, + -1.6500000000000001, + -1.59, + -1.21, + -0.97, + -0.63, + -0.31, + 0.02, + 0.44, + 0.58, + 0.63, + 0.5, + 0.26, + 0.14, + 0.06, + 0.1, + 0.25, + 0.37, + 0.52, + 0.65, + 0.9500000000000001, + 1.3, + 1.34, + 1.51, + 1.43, + 1.52, + 1.5, + 1.56, + 1.33, + 1.09, + 0.79, + 0.5, + 0.34, + 0.29, + 0.4, + 0.61, + 0.71, + 0.71, + 0.55, + 0.26, + 0.04, + -0.06, + -0.11, + -0.19, + -0.21, + -0.25, + -0.28, + -0.34, + -0.28, + -0.32, + -0.34, + -0.58, + -0.9, + -0.87, + -0.67, + -0.31, + 0.02, + 0.05, + -0.13, + -0.47000000000000003, + -0.86, + -1.1500000000000001, + -1.35, + -1.45, + -1.56, + -1.67, + -1.73, + -1.87, + -1.6300000000000001, + -1.5, + -1.31, + -1.25, + -1.33 + ], + [ + 1.12, + 1.11, + 0.93, + 0.77, + 0.67, + 0.6, + 0.53, + 0.45, + 0.42, + 0.44, + 0.55, + 0.76, + 0.91, + 0.9500000000000001, + 0.87, + 0.66, + 0.5, + 0.64, + 0.87, + 1.32, + 1.79, + 2.07, + 2.32, + 2.38, + 2.37, + 2.4, + 2.5100000000000002, + 2.7600000000000002, + 2.97, + 3.09, + 3.17, + 3.5, + 4.03, + 4.57, + 5.16, + 5.5200000000000005, + 5.48, + 5.2700000000000005, + 4.78, + 4.29, + 3.7800000000000002, + 3.3200000000000003, + 2.83, + 2.29, + 1.74, + 1.17, + 0.79, + 0.43, + 0.39, + 0.4, + 0.53, + 0.54, + 0.47000000000000003, + 0.3, + 0.19, + 0.08, + 0.08, + 0.22, + 0.36, + 0.42, + 0.32, + 0.22, + 0.13, + 0.24, + 0.38, + 0.52, + 0.64, + 0.61, + 0.59, + 0.66, + 0.76, + 0.79, + 0.7000000000000001, + 0.32, + -0.07, + -0.12, + -0.01, + 0.24, + 0.52, + 0.67, + 0.87, + 1.17, + 1.56, + 1.81, + 1.8, + 1.74, + 1.52, + 1.29, + 0.79, + 0.34, + 0.26, + 0.26, + 0.36, + 0.38, + 0.22, + 0.01, + -0.27, + -0.6, + -0.75, + -0.78, + -0.55, + -0.19, + 0.44, + 1.1400000000000001, + 1.68, + 1.84, + 1.6500000000000001, + 1.26, + 1.05, + 0.93, + 0.81, + 0.75, + 0.8200000000000001, + 1.04, + 1.21, + 1.1, + 1.03, + 1.21, + 1.53, + 1.74, + 1.75, + 1.6, + 1.4000000000000001, + 1.1400000000000001, + 0.88, + 0.85, + 0.92, + 1.11, + 1.31, + 1.28, + 1.1, + 0.96, + 0.91, + 1.08, + 1.29, + 1.3900000000000001, + 1.11, + 0.77, + 0.47000000000000003, + 0.27, + 0.08, + -0.16, + -0.23, + -0.24, + 0.0, + 0.19, + 0.33, + 0.42, + 0.21, + -0.17, + -0.35000000000000003, + -0.16, + 0.66, + 2.07, + 3.29, + 3.8000000000000003, + 4.04, + 3.69, + 3.52, + 3.22, + 2.98, + 2.9, + 2.72, + 2.79, + 2.83, + 2.11, + 1.11, + -0.04, + -1.23, + -1.84, + -1.9000000000000001, + -1.58, + -0.9500000000000001, + -0.46, + -0.12, + 0.11, + 0.41000000000000003, + 0.67, + 0.8200000000000001, + 0.9500000000000001, + 1.25, + 1.67, + 2.08, + 2.56, + 2.34, + 2.15, + 1.41, + 0.75, + 0.26, + -0.13, + -0.05, + 0.13, + 0.3, + 0.44, + 0.51, + 0.6, + 0.86, + 1.1300000000000001, + 1.36, + 1.3, + 1.11, + 1.0, + 0.8, + 0.73, + 0.58, + 0.49, + 0.46, + 0.41000000000000003, + 0.42, + 0.21, + -0.03, + -0.55, + -1.11, + -1.56, + -1.8900000000000001, + -1.93, + -1.8, + -1.42, + -1.1, + -0.85, + -0.5700000000000001, + -0.2, + 0.3, + 0.49, + 0.34, + -0.2, + -0.58, + -0.86, + -1.16, + -1.35, + -1.58, + -1.62, + -1.57, + -1.46, + -1.53, + -1.47, + -1.3800000000000001, + -1.11, + -0.71, + -0.4, + -0.08, + 0.03, + 0.21, + 0.42, + 0.49, + 0.61, + 0.62, + 0.56, + 0.52, + 0.3, + 0.2, + 0.09, + 0.09, + 0.15, + 0.2, + 0.43, + 0.59, + 0.68, + 0.67, + 0.46, + 0.31, + 0.17, + -0.01, + 0.08, + 0.13, + 0.31, + 0.5, + 0.51, + 0.45, + 0.18, + -0.15, + -0.61, + -1.01, + -1.36, + -1.32, + -1.25, + -1.08, + -0.9, + -0.68, + -0.49, + -0.23, + 0.05, + 0.28, + 0.46, + 0.39, + 0.2, + -0.05, + -0.27, + -0.3, + -0.16, + 0.0, + 0.22, + 0.39, + 0.73, + 1.11, + 1.22, + 1.4000000000000001, + 1.29, + 1.27, + 1.28, + 1.37, + 1.27, + 1.09, + 0.75, + 0.37, + 0.17, + 0.05, + 0.15, + 0.42, + 0.66, + 0.9, + 0.92, + 0.68, + 0.38, + 0.11, + -0.02, + -0.16, + -0.29, + -0.39, + -0.48, + -0.45, + -0.41000000000000003, + -0.34, + -0.17, + -0.29, + -0.47000000000000003, + -0.75, + -0.9400000000000001, + -0.73, + -0.43, + -0.24, + -0.23, + -0.36, + -0.52, + -0.8, + -1.1, + -1.34, + -1.6, + -1.83, + -1.94, + -2.16, + -2.04, + -2.0, + -1.59, + -1.3800000000000001, + -1.16, + -1.04 + ], + [ + 1.08, + 1.03, + 0.84, + 0.67, + 0.54, + 0.44, + 0.35000000000000003, + 0.29, + 0.25, + 0.31, + 0.47000000000000003, + 0.68, + 0.88, + 0.93, + 0.8, + 0.61, + 0.58, + 0.6900000000000001, + 1.12, + 1.61, + 1.95, + 2.24, + 2.39, + 2.47, + 2.5500000000000003, + 2.61, + 2.8000000000000003, + 3.02, + 3.1, + 3.04, + 3.24, + 3.7600000000000002, + 4.42, + 5.22, + 5.71, + 5.7700000000000005, + 5.65, + 5.14, + 4.62, + 4.04, + 3.5, + 3.0100000000000002, + 2.48, + 1.98, + 1.42, + 0.99, + 0.58, + 0.43, + 0.34, + 0.44, + 0.52, + 0.48, + 0.25, + 0.05, + -0.17, + -0.24, + -0.14, + 0.05, + 0.32, + 0.4, + 0.28, + 0.17, + 0.17, + 0.28, + 0.37, + 0.48, + 0.42, + 0.36, + 0.43, + 0.53, + 0.66, + 0.72, + 0.5700000000000001, + 0.28, + -0.08, + -0.33, + -0.17, + 0.1, + 0.33, + 0.51, + 0.75, + 1.1400000000000001, + 1.52, + 1.73, + 1.75, + 1.51, + 1.31, + 0.96, + 0.5700000000000001, + 0.41000000000000003, + 0.35000000000000003, + 0.5, + 0.5700000000000001, + 0.42, + 0.13, + -0.14, + -0.5, + -0.68, + -0.75, + -0.5700000000000001, + -0.22, + 0.16, + 0.46, + 0.97, + 1.25, + 1.3900000000000001, + 1.23, + 0.93, + 0.8200000000000001, + 0.67, + 0.64, + 0.55, + 0.79, + 1.04, + 1.11, + 1.04, + 0.97, + 1.06, + 1.37, + 1.6300000000000001, + 1.61, + 1.48, + 1.29, + 1.04, + 0.77, + 0.49, + 0.48, + 0.53, + 0.68, + 0.8300000000000001, + 0.76, + 0.67, + 0.6, + 0.75, + 0.9500000000000001, + 1.11, + 1.04, + 0.72, + 0.48, + 0.24, + 0.05, + -0.17, + -0.28, + -0.18, + 0.12, + 0.48, + 0.97, + 1.1, + 1.03, + 0.64, + 0.11, + 0.13, + 0.65, + 1.76, + 2.85, + 3.65, + 3.85, + 3.91, + 3.79, + 3.63, + 3.12, + 2.59, + 2.5, + 2.5, + 2.4, + 2.0100000000000002, + 0.8300000000000001, + -0.56, + -1.5, + -1.94, + -1.83, + -1.22, + -0.55, + 0.14, + 0.55, + 0.8, + 1.06, + 1.09, + 1.19, + 1.26, + 1.51, + 1.9000000000000001, + 2.41, + 2.6, + 2.68, + 2.2800000000000002, + 1.82, + 1.1500000000000001, + 0.56, + 0.25, + 0.1, + 0.27, + 0.43, + 0.51, + 0.5, + 0.54, + 0.62, + 0.85, + 0.98, + 0.99, + 1.03, + 0.96, + 1.04, + 0.98, + 0.8200000000000001, + 0.68, + 0.48, + 0.38, + 0.25, + 0.17, + -0.23, + -0.67, + -1.1500000000000001, + -1.47, + -1.67, + -1.69, + -1.52, + -1.25, + -0.91, + -0.56, + -0.28, + 0.07, + 0.45, + 0.61, + 0.5, + 0.23, + -0.06, + -0.3, + -0.49, + -0.8200000000000001, + -1.0, + -1.07, + -1.0, + -0.96, + -0.96, + -1.04, + -1.1300000000000001, + -1.01, + -0.98, + -0.75, + -0.64, + -0.47000000000000003, + -0.2, + 0.01, + 0.25, + 0.34, + 0.39, + 0.34, + 0.23, + 0.04, + -0.03, + -0.14, + -0.14, + -0.15, + 0.01, + 0.19, + 0.45, + 0.66, + 0.65, + 0.66, + 0.48, + 0.23, + 0.01, + -0.27, + -0.26, + -0.15, + 0.01, + 0.21, + 0.15, + 0.06, + -0.24, + -0.53, + -0.87, + -0.88, + -0.74, + -0.66, + -0.47000000000000003, + -0.47000000000000003, + -0.38, + -0.33, + -0.27, + -0.17, + -0.16, + -0.11, + -0.18, + -0.39, + -0.6, + -0.73, + -0.5700000000000001, + -0.37, + -0.08, + 0.15, + 0.39, + 0.68, + 0.84, + 0.9400000000000001, + 0.93, + 0.8300000000000001, + 0.87, + 0.89, + 0.96, + 0.93, + 0.6900000000000001, + 0.33, + 0.06, + -0.1, + -0.04, + 0.25, + 0.54, + 0.8300000000000001, + 1.03, + 1.04, + 0.8300000000000001, + 0.39, + 0.09, + -0.04, + -0.17, + -0.39, + -0.5700000000000001, + -0.63, + -0.68, + -0.64, + -0.53, + -0.39, + -0.25, + -0.44, + -0.62, + -0.77, + -0.78, + -0.61, + -0.63, + -0.66, + -0.66, + -0.74, + -0.79, + -1.0, + -1.26, + -1.52, + -1.69, + -1.8900000000000001, + -1.8900000000000001, + -1.94, + -1.6600000000000001, + -1.45, + -1.12, + -0.9400000000000001, + -0.67 + ], + [ + 1.05, + 1.03, + 0.77, + 0.52, + 0.38, + 0.25, + 0.17, + 0.12, + 0.13, + 0.21, + 0.39, + 0.65, + 0.84, + 0.9, + 0.79, + 0.64, + 0.59, + 0.86, + 1.28, + 1.72, + 2.09, + 2.31, + 2.44, + 2.66, + 2.8000000000000003, + 2.96, + 3.14, + 3.25, + 3.16, + 3.13, + 3.31, + 3.97, + 5.0200000000000005, + 5.76, + 6.07, + 6.07, + 5.59, + 5.07, + 4.45, + 3.85, + 3.33, + 2.8000000000000003, + 2.31, + 1.76, + 1.34, + 0.92, + 0.71, + 0.5700000000000001, + 0.58, + 0.64, + 0.66, + 0.52, + 0.23, + -0.21, + -0.42, + -0.5, + -0.37, + -0.01, + 0.26, + 0.36, + 0.3, + 0.14, + 0.14, + 0.23, + 0.35000000000000003, + 0.29, + 0.18, + 0.19, + 0.27, + 0.5, + 0.65, + 0.67, + 0.51, + 0.23, + -0.16, + -0.32, + -0.32, + -0.08, + 0.04, + 0.26, + 0.61, + 1.02, + 1.41, + 1.6, + 1.46, + 1.19, + 0.86, + 0.5, + 0.46, + 0.42, + 0.67, + 0.91, + 0.8, + 0.53, + 0.17, + -0.27, + -0.48, + -0.63, + -0.47000000000000003, + -0.02, + 0.36, + 0.7000000000000001, + 0.89, + 0.74, + 0.92, + 0.9400000000000001, + 0.8, + 0.8, + 0.68, + 0.67, + 0.56, + 0.59, + 0.73, + 0.97, + 1.06, + 0.9400000000000001, + 0.81, + 0.93, + 1.23, + 1.44, + 1.54, + 1.3800000000000001, + 1.2, + 0.93, + 0.62, + 0.35000000000000003, + 0.09, + 0.09, + 0.17, + 0.28, + 0.47000000000000003, + 0.39, + 0.37, + 0.37, + 0.66, + 0.8300000000000001, + 0.78, + 0.58, + 0.33, + 0.11, + -0.07, + -0.23, + -0.27, + -0.11, + 0.29, + 0.99, + 1.49, + 1.96, + 1.87, + 1.4000000000000001, + 0.89, + 0.53, + 0.8200000000000001, + 1.28, + 2.12, + 2.79, + 3.21, + 3.69, + 3.95, + 3.8200000000000003, + 3.47, + 2.83, + 2.3000000000000003, + 2.24, + 2.0300000000000002, + 1.45, + 0.42, + -0.75, + -1.56, + -1.81, + -1.51, + -0.89, + -0.06, + 0.65, + 1.19, + 1.52, + 1.51, + 1.56, + 1.44, + 1.46, + 1.58, + 1.87, + 2.13, + 2.3000000000000003, + 2.29, + 2.11, + 1.77, + 1.44, + 0.93, + 0.58, + 0.45, + 0.42, + 0.5, + 0.42, + 0.37, + 0.24, + 0.3, + 0.46, + 0.6, + 0.86, + 0.96, + 1.27, + 1.4000000000000001, + 1.27, + 1.09, + 0.68, + 0.34, + 0.04, + -0.16, + -0.35000000000000003, + -0.59, + -0.99, + -1.25, + -1.42, + -1.3, + -1.26, + -1.08, + -0.79, + -0.37, + -0.01, + 0.32, + 0.66, + 0.8200000000000001, + 0.96, + 0.8300000000000001, + 0.59, + 0.32, + 0.08, + -0.23, + -0.5700000000000001, + -0.71, + -0.71, + -0.62, + -0.53, + -0.61, + -0.85, + -0.97, + -1.2, + -1.1500000000000001, + -1.16, + -0.99, + -0.61, + -0.31, + 0.02, + 0.22, + 0.28, + 0.25, + 0.14, + -0.05, + -0.12, + -0.26, + -0.28, + -0.33, + -0.24, + -0.08, + 0.19, + 0.49, + 0.62, + 0.64, + 0.61, + 0.5700000000000001, + 0.31, + 0.01, + -0.23, + -0.31, + -0.22, + 0.04, + 0.22, + 0.19, + 0.1, + -0.16, + -0.44, + -0.5700000000000001, + -0.5, + -0.37, + -0.19, + -0.26, + -0.25, + -0.32, + -0.33, + -0.45, + -0.64, + -0.6900000000000001, + -0.88, + -0.96, + -1.16, + -1.3, + -1.18, + -0.97, + -0.46, + -0.11, + 0.2, + 0.46, + 0.53, + 0.6, + 0.58, + 0.45, + 0.52, + 0.52, + 0.61, + 0.62, + 0.55, + 0.31, + 0.03, + -0.18, + -0.18, + 0.11, + 0.41000000000000003, + 0.72, + 0.97, + 1.1, + 1.09, + 0.75, + 0.35000000000000003, + 0.08, + -0.08, + -0.2, + -0.42, + -0.6, + -0.73, + -0.88, + -0.96, + -0.88, + -0.74, + -0.54, + -0.41000000000000003, + -0.58, + -0.7000000000000001, + -0.77, + -0.92, + -0.98, + -1.1500000000000001, + -1.1400000000000001, + -0.96, + -0.9500000000000001, + -0.92, + -1.09, + -1.2, + -1.33, + -1.33, + -1.31, + -1.17, + -0.97, + -0.78, + -0.62, + -0.39, + -0.19 + ], + [ + 0.98, + 0.92, + 0.64, + 0.4, + 0.22, + 0.1, + 0.03, + 0.01, + 0.07, + 0.17, + 0.37, + 0.62, + 0.8200000000000001, + 0.88, + 0.8, + 0.66, + 0.71, + 0.9400000000000001, + 1.3800000000000001, + 1.81, + 2.19, + 2.43, + 2.72, + 2.99, + 3.23, + 3.43, + 3.5300000000000002, + 3.49, + 3.33, + 3.08, + 3.42, + 4.3500000000000005, + 5.3500000000000005, + 6.140000000000001, + 6.38, + 6.04, + 5.5600000000000005, + 4.93, + 4.3100000000000005, + 3.7800000000000002, + 3.25, + 2.7600000000000002, + 2.25, + 1.78, + 1.34, + 1.11, + 0.98, + 0.9400000000000001, + 0.97, + 0.97, + 0.91, + 0.6900000000000001, + 0.23, + -0.23, + -0.71, + -0.76, + -0.61, + -0.27, + 0.03, + 0.15, + 0.1, + -0.02, + 0.01, + 0.1, + 0.21, + 0.16, + 0.05, + 0.01, + 0.28, + 0.63, + 0.77, + 0.76, + 0.6, + 0.28, + -0.03, + -0.27, + -0.25, + -0.24, + -0.08, + 0.11, + 0.51, + 1.1300000000000001, + 1.53, + 1.59, + 1.42, + 0.93, + 0.47000000000000003, + 0.32, + 0.25, + 0.67, + 1.1, + 1.24, + 1.1500000000000001, + 0.75, + 0.28, + -0.05, + -0.25, + -0.21, + 0.12, + 0.56, + 1.06, + 1.27, + 1.12, + 0.9500000000000001, + 0.6900000000000001, + 0.67, + 0.79, + 0.8, + 0.9500000000000001, + 0.97, + 0.8, + 0.73, + 0.84, + 1.01, + 1.01, + 0.85, + 0.7000000000000001, + 0.71, + 0.97, + 1.23, + 1.27, + 1.22, + 1.01, + 0.73, + 0.44, + 0.22, + 0.0, + -0.09, + -0.03, + 0.27, + 0.44, + 0.51, + 0.43, + 0.38, + 0.51, + 0.61, + 0.54, + 0.34, + 0.1, + -0.09, + -0.26, + -0.34, + -0.33, + -0.1, + 0.41000000000000003, + 1.1400000000000001, + 2.07, + 2.47, + 2.54, + 2.14, + 1.72, + 1.36, + 0.99, + 1.17, + 1.32, + 1.71, + 2.5100000000000002, + 3.13, + 3.7800000000000002, + 4.0200000000000005, + 3.75, + 3.24, + 2.61, + 2.09, + 1.74, + 0.96, + 0.07, + -0.74, + -1.35, + -1.44, + -1.1400000000000001, + -0.61, + 0.19, + 0.9500000000000001, + 1.53, + 1.78, + 1.86, + 1.73, + 1.6400000000000001, + 1.57, + 1.6400000000000001, + 1.6600000000000001, + 1.73, + 1.79, + 1.69, + 1.7, + 1.67, + 1.47, + 1.31, + 0.9400000000000001, + 0.75, + 0.65, + 0.46, + 0.35000000000000003, + 0.1, + -0.02, + -0.02, + 0.12, + 0.47000000000000003, + 0.72, + 1.24, + 1.62, + 1.67, + 1.6, + 1.06, + 0.5700000000000001, + -0.07, + -0.59, + -0.84, + -1.05, + -1.22, + -1.3900000000000001, + -1.49, + -1.27, + -1.1, + -0.75, + -0.55, + -0.17, + 0.24, + 0.58, + 0.91, + 1.09, + 1.28, + 1.29, + 1.19, + 0.9400000000000001, + 0.67, + 0.3, + -0.1, + -0.4, + -0.58, + -0.46, + -0.24, + -0.17, + -0.23, + -0.48, + -0.81, + -0.99, + -1.18, + -1.1400000000000001, + -0.9400000000000001, + -0.56, + -0.06, + 0.29, + 0.48, + 0.54, + 0.37, + 0.21, + 0.04, + -0.08, + -0.21, + -0.3, + -0.33, + -0.27, + -0.05, + 0.26, + 0.48, + 0.55, + 0.53, + 0.47000000000000003, + 0.44, + 0.4, + 0.12, + -0.07, + -0.14, + -0.03, + 0.2, + 0.27, + 0.3, + 0.12, + -0.07, + -0.35000000000000003, + -0.45, + -0.36, + -0.2, + -0.25, + -0.42, + -0.5, + -0.56, + -0.64, + -0.8300000000000001, + -1.02, + -1.27, + -1.3900000000000001, + -1.58, + -1.7, + -1.77, + -1.62, + -1.1, + -0.61, + -0.09, + 0.26, + 0.45, + 0.56, + 0.54, + 0.47000000000000003, + 0.44, + 0.47000000000000003, + 0.5, + 0.52, + 0.46, + 0.27, + 0.05, + -0.2, + -0.3, + -0.13, + 0.18, + 0.61, + 0.88, + 1.0, + 1.09, + 0.9400000000000001, + 0.63, + 0.31, + 0.04, + 0.0, + -0.14, + -0.32, + -0.56, + -0.84, + -1.11, + -1.28, + -1.35, + -1.12, + -0.84, + -0.66, + -0.6, + -0.74, + -0.9, + -1.07, + -1.3800000000000001, + -1.51, + -1.49, + -1.31, + -1.04, + -0.99, + -0.91, + -0.97, + -0.88, + -0.78, + -0.52, + -0.21, + -0.09, + 0.1, + 0.18, + 0.32, + 0.52 + ], + [ + 0.93, + 0.87, + 0.55, + 0.27, + 0.1, + -0.02, + -0.07, + -0.05, + 0.01, + 0.16, + 0.36, + 0.59, + 0.79, + 0.85, + 0.78, + 0.74, + 0.78, + 1.09, + 1.51, + 1.96, + 2.35, + 2.73, + 3.12, + 3.47, + 3.81, + 3.96, + 4.0, + 3.84, + 3.45, + 3.27, + 3.5300000000000002, + 4.47, + 5.5600000000000005, + 6.26, + 6.29, + 5.95, + 5.37, + 4.76, + 4.23, + 3.71, + 3.2800000000000002, + 2.81, + 2.31, + 1.86, + 1.55, + 1.3800000000000001, + 1.34, + 1.3900000000000001, + 1.3800000000000001, + 1.35, + 1.2, + 0.9, + 0.38, + -0.31, + -0.75, + -1.03, + -0.86, + -0.64, + -0.35000000000000003, + -0.2, + -0.24, + -0.19, + -0.16, + 0.05, + 0.16, + 0.1, + -0.04, + 0.03, + 0.34, + 0.76, + 1.05, + 1.02, + 0.87, + 0.59, + 0.31, + 0.09, + -0.04, + -0.02, + -0.01, + 0.23, + 0.77, + 1.3800000000000001, + 1.8900000000000001, + 2.0100000000000002, + 1.6300000000000001, + 1.12, + 0.51, + 0.23, + 0.45, + 0.92, + 1.3900000000000001, + 1.6300000000000001, + 1.3900000000000001, + 0.97, + 0.56, + 0.31, + 0.22, + 0.42, + 0.71, + 1.05, + 1.43, + 1.48, + 1.3, + 0.96, + 0.71, + 0.74, + 0.84, + 1.09, + 1.29, + 1.36, + 1.24, + 1.02, + 1.04, + 1.07, + 1.01, + 0.75, + 0.5, + 0.47000000000000003, + 0.59, + 0.8200000000000001, + 0.91, + 0.88, + 0.76, + 0.51, + 0.3, + 0.1, + 0.04, + -0.03, + 0.21, + 0.51, + 0.86, + 0.98, + 0.73, + 0.64, + 0.56, + 0.55, + 0.36, + 0.09, + -0.12, + -0.29, + -0.4, + -0.44, + -0.38, + -0.15, + 0.39, + 1.23, + 2.11, + 2.84, + 2.9, + 2.89, + 2.5300000000000002, + 2.29, + 1.92, + 1.29, + 1.1500000000000001, + 1.28, + 1.81, + 2.77, + 3.52, + 4.0600000000000005, + 4.11, + 3.69, + 3.18, + 2.47, + 1.6500000000000001, + 0.87, + -0.03, + -0.68, + -0.9, + -0.99, + -0.91, + -0.4, + 0.23, + 0.98, + 1.48, + 1.78, + 1.85, + 1.78, + 1.72, + 1.69, + 1.6, + 1.55, + 1.44, + 1.33, + 1.32, + 1.33, + 1.44, + 1.5, + 1.33, + 1.1400000000000001, + 0.89, + 0.67, + 0.46, + 0.23, + 0.0, + -0.1, + -0.1, + 0.12, + 0.44, + 0.9500000000000001, + 1.49, + 1.74, + 1.84, + 1.35, + 0.8, + 0.03, + -0.72, + -1.29, + -1.6600000000000001, + -1.77, + -1.86, + -1.84, + -1.6300000000000001, + -1.32, + -0.85, + -0.5, + -0.06, + 0.31, + 0.6900000000000001, + 1.03, + 1.18, + 1.3800000000000001, + 1.53, + 1.58, + 1.52, + 1.34, + 0.9500000000000001, + 0.56, + 0.1, + -0.24, + -0.38, + -0.26, + -0.01, + 0.23, + 0.14, + -0.02, + -0.35000000000000003, + -0.61, + -0.8, + -0.9400000000000001, + -0.74, + -0.4, + 0.1, + 0.59, + 0.84, + 0.81, + 0.68, + 0.43, + 0.27, + 0.09, + -0.04, + -0.21, + -0.29, + -0.22, + -0.02, + 0.23, + 0.41000000000000003, + 0.42, + 0.32, + 0.3, + 0.38, + 0.34, + 0.26, + 0.07, + -0.06, + 0.03, + -0.04, + 0.02, + -0.01, + -0.12, + -0.25, + -0.46, + -0.47000000000000003, + -0.36, + -0.32, + -0.48, + -0.72, + -0.97, + -0.97, + -1.05, + -1.16, + -1.33, + -1.47, + -1.52, + -1.6400000000000001, + -1.7, + -1.71, + -1.45, + -0.98, + -0.53, + -0.05, + 0.19, + 0.39, + 0.59, + 0.66, + 0.65, + 0.68, + 0.62, + 0.64, + 0.56, + 0.42, + 0.17, + -0.11, + -0.31, + -0.33, + -0.13, + 0.25, + 0.63, + 0.87, + 0.96, + 0.88, + 0.74, + 0.51, + 0.22, + 0.26, + 0.24, + 0.19, + 0.01, + -0.41000000000000003, + -0.85, + -1.25, + -1.59, + -1.62, + -1.46, + -1.11, + -0.8300000000000001, + -0.76, + -0.8300000000000001, + -0.99, + -1.17, + -1.45, + -1.7, + -1.6500000000000001, + -1.37, + -1.11, + -0.92, + -0.85, + -0.8, + -0.7000000000000001, + -0.35000000000000003, + 0.03, + 0.43, + 0.73, + 0.86, + 1.01, + 1.09, + 1.3 + ], + [ + 0.8300000000000001, + 0.76, + 0.41000000000000003, + 0.15, + 0.0, + -0.11, + -0.17, + -0.15, + -0.07, + 0.08, + 0.3, + 0.54, + 0.72, + 0.79, + 0.77, + 0.73, + 0.93, + 1.26, + 1.69, + 2.13, + 2.57, + 3.0, + 3.48, + 3.95, + 4.32, + 4.54, + 4.48, + 4.2, + 3.7600000000000002, + 3.41, + 3.71, + 4.53, + 5.5600000000000005, + 5.99, + 5.99, + 5.59, + 5.03, + 4.59, + 4.08, + 3.66, + 3.25, + 2.81, + 2.34, + 1.98, + 1.73, + 1.6300000000000001, + 1.67, + 1.72, + 1.75, + 1.6600000000000001, + 1.45, + 1.09, + 0.5, + -0.19, + -0.75, + -0.99, + -1.01, + -0.78, + -0.61, + -0.47000000000000003, + -0.34, + -0.29, + -0.08, + 0.14, + 0.25, + 0.18, + 0.02, + 0.04, + 0.42, + 0.9, + 1.25, + 1.36, + 1.23, + 1.06, + 0.77, + 0.56, + 0.4, + 0.31, + 0.34, + 0.52, + 1.05, + 1.69, + 2.22, + 2.45, + 2.15, + 1.41, + 0.79, + 0.51, + 0.71, + 1.16, + 1.6400000000000001, + 1.76, + 1.51, + 1.1500000000000001, + 0.86, + 0.6900000000000001, + 0.77, + 0.9400000000000001, + 1.16, + 1.3900000000000001, + 1.33, + 1.3900000000000001, + 1.31, + 0.98, + 0.86, + 0.88, + 1.03, + 1.28, + 1.6, + 1.73, + 1.56, + 1.34, + 1.18, + 1.1400000000000001, + 0.96, + 0.63, + 0.33, + 0.19, + 0.28, + 0.39, + 0.53, + 0.6, + 0.52, + 0.41000000000000003, + 0.2, + 0.04, + -0.02, + 0.13, + 0.38, + 0.87, + 1.26, + 1.25, + 1.04, + 0.79, + 0.7000000000000001, + 0.49, + 0.21, + -0.07, + -0.3, + -0.42, + -0.47000000000000003, + -0.46, + -0.36, + -0.15, + 0.27, + 1.08, + 1.95, + 2.64, + 3.12, + 3.11, + 3.4, + 3.22, + 3.0100000000000002, + 2.43, + 1.6600000000000001, + 1.53, + 1.86, + 2.64, + 3.5, + 4.1, + 4.33, + 4.19, + 3.71, + 3.15, + 2.14, + 1.0, + 0.13, + -0.42, + -0.64, + -0.74, + -0.66, + -0.37, + 0.26, + 0.81, + 1.3, + 1.51, + 1.59, + 1.67, + 1.6500000000000001, + 1.6600000000000001, + 1.6, + 1.45, + 1.3, + 1.18, + 1.16, + 1.17, + 1.26, + 1.31, + 1.17, + 0.98, + 0.73, + 0.52, + 0.35000000000000003, + 0.14, + 0.1, + 0.0, + 0.07, + 0.28, + 0.6, + 1.11, + 1.43, + 1.68, + 1.28, + 0.68, + 0.01, + -0.78, + -1.47, + -2.02, + -2.31, + -2.37, + -2.3000000000000003, + -2.0300000000000002, + -1.73, + -1.27, + -0.78, + -0.33, + 0.1, + 0.53, + 0.89, + 1.1, + 1.26, + 1.4000000000000001, + 1.57, + 1.73, + 1.75, + 1.51, + 1.17, + 0.68, + 0.23, + -0.11, + -0.23, + -0.14, + 0.09, + 0.34, + 0.43, + 0.27, + 0.08, + -0.21, + -0.46, + -0.61, + -0.7000000000000001, + -0.37, + 0.11, + 0.61, + 0.9500000000000001, + 0.99, + 0.77, + 0.53, + 0.36, + 0.2, + 0.02, + -0.16, + -0.25, + -0.2, + -0.06, + 0.12, + 0.23, + 0.19, + 0.12, + 0.18, + 0.25, + 0.25, + 0.16, + 0.02, + -0.11, + -0.31, + -0.39, + -0.5700000000000001, + -0.66, + -0.59, + -0.7000000000000001, + -0.65, + -0.6, + -0.4, + -0.35000000000000003, + -0.5700000000000001, + -0.93, + -1.1400000000000001, + -1.24, + -1.21, + -1.21, + -1.28, + -1.25, + -1.27, + -1.2, + -1.23, + -1.05, + -0.79, + -0.58, + -0.16, + -0.09, + 0.1, + 0.29, + 0.5, + 0.73, + 0.8300000000000001, + 0.77, + 0.71, + 0.67, + 0.61, + 0.37, + 0.06, + -0.21, + -0.34, + -0.35000000000000003, + -0.18, + 0.18, + 0.48, + 0.7000000000000001, + 0.7000000000000001, + 0.62, + 0.46, + 0.25, + 0.38, + 0.48, + 0.73, + 0.78, + 0.5, + 0.06, + -0.65, + -1.25, + -1.62, + -1.75, + -1.57, + -1.24, + -0.98, + -0.92, + -0.97, + -1.01, + -1.17, + -1.27, + -1.5, + -1.47, + -1.18, + -0.91, + -0.72, + -0.74, + -0.71, + -0.52, + -0.17, + 0.29, + 0.73, + 1.09, + 1.33, + 1.49, + 1.68, + 1.78 + ], + [ + 0.77, + 0.6900000000000001, + 0.32, + 0.04, + -0.1, + -0.18, + -0.25, + -0.27, + -0.18, + -0.04, + 0.18, + 0.45, + 0.64, + 0.71, + 0.7000000000000001, + 0.81, + 1.03, + 1.44, + 1.8900000000000001, + 2.29, + 2.71, + 3.2, + 3.72, + 4.3, + 4.7700000000000005, + 4.98, + 4.89, + 4.53, + 4.0, + 3.64, + 3.86, + 4.64, + 5.28, + 5.68, + 5.39, + 4.98, + 4.68, + 4.25, + 3.91, + 3.5100000000000002, + 3.11, + 2.67, + 2.29, + 1.97, + 1.81, + 1.76, + 1.82, + 1.8900000000000001, + 1.95, + 1.8800000000000001, + 1.62, + 1.1500000000000001, + 0.6, + 0.01, + -0.52, + -0.71, + -0.72, + -0.63, + -0.45, + -0.35000000000000003, + -0.22, + -0.09, + 0.14, + 0.4, + 0.53, + 0.38, + 0.19, + 0.16, + 0.48, + 0.99, + 1.3800000000000001, + 1.55, + 1.55, + 1.37, + 1.1300000000000001, + 0.91, + 0.75, + 0.64, + 0.6, + 0.77, + 1.08, + 1.72, + 2.33, + 2.58, + 2.35, + 1.6500000000000001, + 1.04, + 0.8, + 0.92, + 1.35, + 1.69, + 1.72, + 1.53, + 1.24, + 1.05, + 1.05, + 1.1400000000000001, + 1.32, + 1.46, + 1.34, + 1.31, + 1.45, + 1.3800000000000001, + 1.32, + 1.2, + 1.1300000000000001, + 1.27, + 1.45, + 1.76, + 1.93, + 1.78, + 1.45, + 1.23, + 1.08, + 0.84, + 0.5, + 0.19, + 0.05, + 0.09, + 0.17, + 0.24, + 0.36, + 0.45, + 0.33, + 0.1, + -0.06, + -0.09, + 0.07, + 0.46, + 0.9500000000000001, + 1.27, + 1.25, + 0.9400000000000001, + 0.66, + 0.6, + 0.39, + 0.09, + -0.2, + -0.38, + -0.45, + -0.43, + -0.34, + -0.27, + -0.18, + 0.18, + 0.66, + 1.52, + 2.12, + 2.6, + 3.16, + 3.45, + 4.13, + 4.0, + 3.77, + 3.09, + 2.37, + 2.54, + 3.04, + 3.79, + 4.21, + 4.3500000000000005, + 4.3100000000000005, + 4.05, + 3.52, + 2.69, + 1.42, + 0.35000000000000003, + -0.21, + -0.51, + -0.62, + -0.59, + -0.29, + 0.17, + 0.72, + 0.98, + 1.17, + 1.3, + 1.3800000000000001, + 1.52, + 1.56, + 1.52, + 1.37, + 1.24, + 1.17, + 1.12, + 1.1400000000000001, + 1.12, + 1.01, + 0.88, + 0.65, + 0.46, + 0.33, + 0.19, + 0.17, + 0.13, + 0.15, + 0.22, + 0.32, + 0.63, + 0.85, + 1.12, + 0.86, + 0.29, + -0.39, + -1.1300000000000001, + -1.67, + -2.22, + -2.63, + -2.7800000000000002, + -2.74, + -2.47, + -2.12, + -1.6, + -1.1500000000000001, + -0.73, + -0.29, + 0.0, + 0.42, + 0.73, + 0.9400000000000001, + 1.06, + 1.2, + 1.37, + 1.55, + 1.57, + 1.36, + 0.99, + 0.5, + 0.17, + -0.07, + -0.21, + -0.17, + 0.03, + 0.22, + 0.37, + 0.34, + 0.18, + -0.02, + -0.28, + -0.53, + -0.62, + -0.54, + -0.06, + 0.39, + 0.73, + 0.79, + 0.59, + 0.42, + 0.25, + 0.12, + -0.06, + -0.19, + -0.24, + -0.24, + -0.18, + -0.08, + -0.08, + -0.08, + -0.03, + 0.01, + 0.03, + 0.02, + -0.11, + -0.26, + -0.33, + -0.53, + -0.75, + -0.9500000000000001, + -1.05, + -1.02, + -0.92, + -0.84, + -0.5700000000000001, + -0.32, + -0.22, + -0.41000000000000003, + -0.77, + -0.97, + -1.06, + -0.98, + -0.92, + -0.78, + -0.77, + -0.76, + -0.68, + -0.47000000000000003, + -0.29, + -0.16, + 0.05, + 0.0, + 0.04, + 0.02, + 0.16, + 0.36, + 0.59, + 0.73, + 0.66, + 0.58, + 0.52, + 0.45, + 0.21, + -0.12, + -0.39, + -0.48, + -0.4, + -0.24, + -0.03, + 0.26, + 0.33, + 0.33, + 0.21, + 0.05, + 0.17, + 0.34, + 0.85, + 1.2, + 1.33, + 1.1, + 0.48, + -0.27, + -1.02, + -1.47, + -1.6500000000000001, + -1.53, + -1.27, + -1.1300000000000001, + -1.08, + -1.1300000000000001, + -1.1300000000000001, + -1.02, + -1.11, + -1.06, + -1.03, + -0.85, + -0.58, + -0.52, + -0.54, + -0.48, + -0.29, + -0.03, + 0.39, + 0.71, + 1.01, + 1.33, + 1.55, + 1.72, + 1.83 + ], + [ + 0.68, + 0.61, + 0.21, + -0.07, + -0.18, + -0.26, + -0.31, + -0.34, + -0.3, + -0.16, + 0.08, + 0.34, + 0.56, + 0.64, + 0.7000000000000001, + 0.8200000000000001, + 1.17, + 1.61, + 2.05, + 2.44, + 2.83, + 3.31, + 3.92, + 4.6000000000000005, + 5.11, + 5.29, + 5.15, + 4.65, + 4.12, + 3.84, + 4.0, + 4.57, + 5.18, + 5.1000000000000005, + 4.8, + 4.44, + 4.14, + 3.92, + 3.59, + 3.29, + 2.9, + 2.5100000000000002, + 2.14, + 1.9000000000000001, + 1.77, + 1.74, + 1.79, + 1.95, + 2.09, + 2.0100000000000002, + 1.69, + 1.26, + 0.79, + 0.26, + 0.07, + -0.13, + -0.14, + -0.05, + -0.01, + 0.11, + 0.13, + 0.27, + 0.46, + 0.74, + 0.84, + 0.68, + 0.42, + 0.39, + 0.58, + 1.02, + 1.41, + 1.56, + 1.57, + 1.37, + 1.18, + 1.0, + 0.86, + 0.75, + 0.7000000000000001, + 0.67, + 0.97, + 1.37, + 1.97, + 2.2800000000000002, + 2.02, + 1.58, + 1.01, + 0.86, + 1.02, + 1.32, + 1.55, + 1.61, + 1.42, + 1.24, + 1.2, + 1.25, + 1.45, + 1.59, + 1.53, + 1.41, + 1.5, + 1.6500000000000001, + 1.97, + 1.9000000000000001, + 1.6600000000000001, + 1.6, + 1.49, + 1.6500000000000001, + 1.81, + 1.94, + 1.76, + 1.3800000000000001, + 1.1, + 0.91, + 0.6900000000000001, + 0.37, + 0.12, + 0.07, + 0.07, + 0.08, + 0.12, + 0.22, + 0.35000000000000003, + 0.31, + 0.08, + -0.09, + -0.12, + 0.0, + 0.4, + 0.79, + 1.08, + 0.99, + 0.63, + 0.41000000000000003, + 0.33, + 0.24, + -0.03, + -0.23, + -0.32, + -0.32, + -0.16, + -0.09, + -0.07, + -0.07, + -0.01, + 0.38, + 0.71, + 1.35, + 1.8900000000000001, + 2.45, + 3.29, + 3.97, + 4.89, + 4.75, + 4.41, + 3.79, + 3.45, + 3.85, + 4.13, + 4.2700000000000005, + 4.15, + 3.84, + 3.7600000000000002, + 3.38, + 2.71, + 1.69, + 0.55, + -0.1, + -0.41000000000000003, + -0.53, + -0.52, + -0.26, + 0.2, + 0.47000000000000003, + 0.72, + 0.9, + 1.03, + 1.18, + 1.34, + 1.43, + 1.4000000000000001, + 1.26, + 1.1500000000000001, + 1.12, + 1.1, + 1.07, + 0.96, + 0.81, + 0.62, + 0.43, + 0.35000000000000003, + 0.23, + 0.18, + 0.16, + 0.13, + 0.15, + 0.11, + 0.2, + 0.24, + 0.4, + 0.23, + -0.21, + -0.85, + -1.61, + -2.1, + -2.5, + -2.83, + -3.04, + -3.13, + -2.97, + -2.62, + -2.07, + -1.52, + -0.99, + -0.61, + -0.45, + -0.16, + 0.02, + 0.34, + 0.53, + 0.64, + 0.73, + 0.88, + 0.96, + 0.92, + 0.75, + 0.32, + 0.08, + -0.15, + -0.23, + -0.25, + -0.26, + -0.15, + 0.03, + 0.12, + 0.14, + 0.03, + -0.12, + -0.29, + -0.54, + -0.66, + -0.5700000000000001, + -0.44, + -0.01, + 0.22, + 0.24, + 0.28, + 0.15, + 0.03, + -0.1, + -0.2, + -0.27, + -0.32, + -0.35000000000000003, + -0.36, + -0.39, + -0.38, + -0.35000000000000003, + -0.29, + -0.24, + -0.24, + -0.38, + -0.51, + -0.54, + -0.61, + -0.5700000000000001, + -0.78, + -0.9, + -0.97, + -0.97, + -0.8300000000000001, + -0.63, + -0.29, + -0.02, + 0.07, + -0.06, + -0.33, + -0.58, + -0.62, + -0.55, + -0.36, + -0.23, + -0.23, + -0.24, + -0.21, + 0.02, + 0.24, + 0.38, + 0.27, + 0.19, + 0.18, + 0.16, + 0.11, + 0.27, + 0.4, + 0.47000000000000003, + 0.44, + 0.33, + 0.24, + 0.09, + -0.14, + -0.51, + -0.7000000000000001, + -0.64, + -0.52, + -0.28, + -0.09, + 0.02, + 0.08, + -0.06, + -0.19, + -0.18, + -0.04, + 0.49, + 1.06, + 1.52, + 1.6400000000000001, + 1.36, + 0.6900000000000001, + -0.03, + -0.73, + -1.25, + -1.43, + -1.42, + -1.31, + -1.22, + -1.3, + -1.33, + -1.27, + -1.11, + -0.9, + -0.84, + -0.66, + -0.49, + -0.38, + -0.34, + -0.32, + -0.25, + -0.1, + 0.15, + 0.28, + 0.47000000000000003, + 0.67, + 0.9, + 1.17, + 1.26, + 1.3900000000000001 + ], + [ + 0.62, + 0.51, + 0.09, + -0.18, + -0.26, + -0.3, + -0.35000000000000003, + -0.36, + -0.34, + -0.22, + 0.0, + 0.27, + 0.49, + 0.63, + 0.71, + 0.93, + 1.32, + 1.77, + 2.2, + 2.56, + 2.92, + 3.45, + 4.13, + 4.86, + 5.38, + 5.5, + 5.11, + 4.63, + 4.08, + 3.79, + 4.05, + 4.59, + 4.8500000000000005, + 4.76, + 4.39, + 4.0200000000000005, + 3.74, + 3.5300000000000002, + 3.27, + 2.98, + 2.71, + 2.34, + 2.0, + 1.79, + 1.6600000000000001, + 1.62, + 1.74, + 1.99, + 2.17, + 2.09, + 1.8, + 1.43, + 1.02, + 0.9, + 0.71, + 0.7000000000000001, + 0.68, + 0.65, + 0.6900000000000001, + 0.62, + 0.64, + 0.62, + 0.81, + 0.98, + 1.01, + 0.88, + 0.61, + 0.51, + 0.68, + 1.0, + 1.23, + 1.37, + 1.24, + 1.12, + 1.0, + 0.88, + 0.81, + 0.71, + 0.58, + 0.54, + 0.59, + 0.98, + 1.28, + 1.53, + 1.43, + 0.9400000000000001, + 0.72, + 0.65, + 0.85, + 1.1, + 1.32, + 1.31, + 1.24, + 1.16, + 1.19, + 1.34, + 1.57, + 1.7, + 1.6400000000000001, + 1.53, + 1.6300000000000001, + 2.09, + 2.45, + 2.47, + 2.21, + 1.85, + 1.72, + 1.71, + 1.85, + 1.81, + 1.53, + 1.16, + 0.86, + 0.68, + 0.46, + 0.26, + 0.17, + 0.14, + 0.19, + 0.15, + 0.14, + 0.23, + 0.39, + 0.37, + 0.27, + 0.08, + 0.0, + 0.12, + 0.2, + 0.58, + 0.87, + 0.73, + 0.47000000000000003, + 0.31, + 0.2, + 0.11, + -0.04, + -0.13, + -0.16, + 0.0, + 0.19, + 0.32, + 0.25, + 0.07, + 0.0, + -0.04, + 0.22, + 0.5700000000000001, + 1.11, + 1.74, + 2.59, + 3.59, + 4.51, + 5.3500000000000005, + 5.0200000000000005, + 4.8, + 4.54, + 4.5200000000000005, + 4.58, + 4.2700000000000005, + 3.71, + 3.21, + 2.81, + 2.68, + 2.08, + 1.31, + 0.54, + -0.12, + -0.28, + -0.42, + -0.26, + -0.02, + 0.11, + 0.37, + 0.54, + 0.72, + 0.87, + 1.04, + 1.16, + 1.24, + 1.22, + 1.07, + 0.99, + 0.99, + 1.01, + 0.97, + 0.86, + 0.72, + 0.53, + 0.47000000000000003, + 0.38, + 0.32, + 0.26, + 0.12, + 0.09, + -0.08, + -0.14, + -0.18, + -0.17, + -0.42, + -0.75, + -1.25, + -1.95, + -2.5100000000000002, + -2.82, + -3.06, + -3.23, + -3.36, + -3.31, + -3.14, + -2.69, + -2.09, + -1.46, + -0.92, + -0.64, + -0.5, + -0.46, + -0.29, + -0.14, + 0.05, + 0.11, + 0.18, + 0.16, + 0.17, + 0.03, + -0.24, + -0.4, + -0.54, + -0.55, + -0.49, + -0.44, + -0.4, + -0.33, + -0.21, + -0.14, + -0.19, + -0.26, + -0.34, + -0.47000000000000003, + -0.54, + -0.67, + -0.72, + -0.6, + -0.5700000000000001, + -0.38, + -0.26, + -0.22, + -0.2, + -0.3, + -0.37, + -0.44, + -0.44, + -0.48, + -0.53, + -0.63, + -0.68, + -0.6900000000000001, + -0.65, + -0.61, + -0.56, + -0.68, + -0.81, + -0.85, + -0.87, + -0.73, + -0.67, + -0.52, + -0.6, + -0.55, + -0.48, + -0.29, + 0.03, + 0.28, + 0.56, + 0.56, + 0.37, + 0.09, + -0.14, + -0.22, + -0.16, + 0.05, + 0.2, + 0.19, + 0.03, + 0.06, + 0.29, + 0.54, + 0.5700000000000001, + 0.44, + 0.47000000000000003, + 0.48, + 0.45, + 0.43, + 0.31, + 0.39, + 0.41000000000000003, + 0.37, + 0.15, + -0.03, + -0.28, + -0.67, + -0.96, + -1.0, + -0.87, + -0.52, + -0.27, + -0.03, + 0.05, + -0.07, + -0.23, + -0.37, + -0.35000000000000003, + 0.03, + 0.61, + 1.24, + 1.69, + 1.6300000000000001, + 1.19, + 0.61, + -0.11, + -0.65, + -1.04, + -1.28, + -1.31, + -1.28, + -1.34, + -1.44, + -1.49, + -1.42, + -1.24, + -0.98, + -0.75, + -0.56, + -0.32, + -0.22, + -0.16, + -0.14, + -0.15, + -0.02, + 0.05, + 0.06, + 0.09, + 0.19, + 0.39, + 0.56, + 0.68, + 0.6900000000000001 + ], + [ + 0.55, + 0.49, + 0.03, + -0.28, + -0.3, + -0.32, + -0.31, + -0.33, + -0.29, + -0.19, + 0.0, + 0.27, + 0.51, + 0.65, + 0.84, + 1.11, + 1.47, + 1.94, + 2.32, + 2.64, + 3.0, + 3.56, + 4.32, + 5.1000000000000005, + 5.62, + 5.53, + 5.08, + 4.38, + 3.84, + 3.72, + 3.95, + 4.36, + 4.65, + 4.53, + 4.13, + 3.79, + 3.52, + 3.2, + 2.94, + 2.71, + 2.45, + 2.21, + 1.9100000000000001, + 1.6500000000000001, + 1.52, + 1.53, + 1.74, + 2.0100000000000002, + 2.16, + 2.15, + 1.8800000000000001, + 1.57, + 1.49, + 1.42, + 1.52, + 1.52, + 1.45, + 1.42, + 1.28, + 1.18, + 1.04, + 1.0, + 1.0, + 1.12, + 1.08, + 0.84, + 0.62, + 0.51, + 0.61, + 0.8300000000000001, + 1.0, + 0.92, + 0.8300000000000001, + 0.74, + 0.7000000000000001, + 0.76, + 0.7000000000000001, + 0.58, + 0.44, + 0.37, + 0.39, + 0.51, + 0.79, + 0.75, + 0.58, + 0.36, + 0.23, + 0.37, + 0.64, + 0.84, + 0.97, + 1.02, + 0.9400000000000001, + 0.91, + 0.9500000000000001, + 1.17, + 1.45, + 1.68, + 1.67, + 1.55, + 1.75, + 2.2600000000000002, + 2.49, + 2.54, + 2.2800000000000002, + 1.85, + 1.6300000000000001, + 1.58, + 1.6600000000000001, + 1.53, + 1.27, + 0.88, + 0.61, + 0.46, + 0.28, + 0.16, + 0.16, + 0.29, + 0.36, + 0.38, + 0.31, + 0.42, + 0.58, + 0.6, + 0.51, + 0.44, + 0.34, + 0.17, + 0.22, + 0.34, + 0.6, + 0.79, + 0.61, + 0.37, + 0.31, + 0.18, + 0.09, + 0.01, + 0.07, + 0.27, + 0.54, + 0.6900000000000001, + 0.49, + 0.24, + -0.01, + -0.17, + -0.12, + 0.14, + 0.61, + 1.23, + 1.81, + 2.82, + 3.84, + 4.62, + 5.28, + 5.07, + 5.21, + 5.22, + 5.0200000000000005, + 4.46, + 3.5100000000000002, + 2.75, + 2.02, + 1.54, + 1.17, + 0.6, + 0.03, + -0.14, + -0.27, + 0.07, + 0.19, + 0.37, + 0.47000000000000003, + 0.46, + 0.63, + 0.72, + 0.9, + 0.9, + 1.01, + 1.0, + 0.91, + 0.85, + 0.81, + 0.85, + 0.9, + 0.89, + 0.8200000000000001, + 0.6900000000000001, + 0.6, + 0.54, + 0.49, + 0.44, + 0.18, + 0.04, + -0.23, + -0.42, + -0.54, + -0.6, + -0.75, + -1.08, + -1.54, + -2.07, + -2.59, + -2.93, + -3.21, + -3.3000000000000003, + -3.42, + -3.41, + -3.37, + -3.09, + -2.69, + -2.11, + -1.45, + -0.98, + -0.66, + -0.58, + -0.58, + -0.48, + -0.35000000000000003, + -0.3, + -0.24, + -0.31, + -0.34, + -0.59, + -0.79, + -1.0, + -1.05, + -1.07, + -0.96, + -0.86, + -0.8200000000000001, + -0.72, + -0.64, + -0.52, + -0.51, + -0.54, + -0.55, + -0.61, + -0.64, + -0.68, + -0.71, + -0.78, + -0.78, + -0.77, + -0.79, + -0.65, + -0.64, + -0.62, + -0.67, + -0.75, + -0.7000000000000001, + -0.64, + -0.64, + -0.71, + -0.8300000000000001, + -0.89, + -0.9400000000000001, + -0.9400000000000001, + -0.92, + -1.01, + -1.12, + -1.1400000000000001, + -1.18, + -1.02, + -0.85, + -0.5700000000000001, + -0.38, + -0.15, + -0.04, + 0.23, + 0.52, + 0.8300000000000001, + 1.12, + 1.24, + 1.1400000000000001, + 0.81, + 0.41000000000000003, + 0.13, + -0.04, + 0.02, + 0.18, + 0.4, + 0.32, + 0.15, + 0.16, + 0.4, + 0.67, + 0.6900000000000001, + 0.77, + 0.8300000000000001, + 0.97, + 0.98, + 0.8, + 0.67, + 0.59, + 0.62, + 0.5, + 0.27, + -0.15, + -0.5700000000000001, + -1.0, + -1.18, + -1.22, + -0.89, + -0.51, + -0.14, + 0.11, + 0.09, + -0.04, + -0.32, + -0.47000000000000003, + -0.37, + 0.06, + 0.71, + 1.34, + 1.59, + 1.32, + 0.8, + 0.11, + -0.36, + -0.77, + -1.02, + -1.17, + -1.24, + -1.28, + -1.36, + -1.42, + -1.52, + -1.45, + -1.3, + -1.12, + -0.86, + -0.58, + -0.33, + -0.06, + 0.0, + 0.0, + -0.02, + -0.18, + -0.22, + -0.28, + -0.3, + -0.19, + 0.05, + 0.2, + 0.34, + 0.31 + ], + [ + 0.49, + 0.35000000000000003, + -0.1, + -0.3, + -0.33, + -0.28, + -0.26, + -0.24, + -0.2, + -0.1, + 0.08, + 0.34, + 0.58, + 0.81, + 1.01, + 1.3, + 1.69, + 2.09, + 2.44, + 2.73, + 3.1, + 3.64, + 4.48, + 5.32, + 5.68, + 5.61, + 4.9, + 4.13, + 3.63, + 3.46, + 3.71, + 4.14, + 4.3100000000000005, + 4.22, + 4.0200000000000005, + 3.69, + 3.36, + 3.0300000000000002, + 2.64, + 2.41, + 2.23, + 2.0100000000000002, + 1.8, + 1.58, + 1.44, + 1.54, + 1.7, + 1.93, + 2.12, + 2.02, + 1.86, + 1.83, + 1.81, + 2.0100000000000002, + 2.18, + 2.22, + 2.15, + 1.9000000000000001, + 1.73, + 1.5, + 1.3, + 1.25, + 1.23, + 1.23, + 1.12, + 0.85, + 0.63, + 0.42, + 0.51, + 0.64, + 0.63, + 0.51, + 0.34, + 0.3, + 0.44, + 0.5700000000000001, + 0.52, + 0.4, + 0.31, + 0.22, + 0.28, + 0.38, + 0.35000000000000003, + 0.26, + 0.02, + -0.13, + -0.01, + 0.34, + 0.63, + 0.87, + 0.8, + 0.78, + 0.67, + 0.61, + 0.62, + 0.85, + 1.21, + 1.54, + 1.62, + 1.6400000000000001, + 1.78, + 1.86, + 2.13, + 1.98, + 1.67, + 1.35, + 1.07, + 1.16, + 1.19, + 1.21, + 0.89, + 0.64, + 0.48, + 0.31, + 0.13, + 0.02, + 0.11, + 0.34, + 0.49, + 0.5700000000000001, + 0.61, + 0.67, + 0.6, + 0.68, + 0.6900000000000001, + 0.65, + 0.53, + 0.3, + 0.13, + 0.23, + 0.49, + 0.7000000000000001, + 0.84, + 0.65, + 0.46, + 0.31, + 0.22, + 0.17, + 0.19, + 0.4, + 0.75, + 0.76, + 0.62, + 0.33, + 0.03, + -0.13, + -0.2, + 0.02, + 0.45, + 0.8, + 1.32, + 1.99, + 3.0, + 3.93, + 4.5600000000000005, + 5.15, + 5.4, + 5.78, + 5.55, + 4.88, + 3.83, + 2.63, + 1.7, + 0.84, + 0.3, + -0.17, + -0.35000000000000003, + -0.44, + 0.07, + 0.48, + 0.97, + 1.12, + 1.1300000000000001, + 1.08, + 1.04, + 1.17, + 1.08, + 1.08, + 0.89, + 0.8300000000000001, + 0.65, + 0.6, + 0.63, + 0.74, + 0.8, + 0.76, + 0.72, + 0.5700000000000001, + 0.53, + 0.46, + 0.46, + 0.21, + -0.03, + -0.39, + -0.6900000000000001, + -0.86, + -0.98, + -0.97, + -1.1300000000000001, + -1.51, + -1.96, + -2.42, + -2.75, + -3.0500000000000003, + -3.15, + -3.2800000000000002, + -3.29, + -3.3000000000000003, + -3.11, + -2.91, + -2.48, + -1.99, + -1.47, + -0.96, + -0.6900000000000001, + -0.59, + -0.48, + -0.4, + -0.35000000000000003, + -0.32, + -0.39, + -0.45, + -0.66, + -0.92, + -1.3, + -1.42, + -1.49, + -1.41, + -1.41, + -1.42, + -1.36, + -1.32, + -1.16, + -1.09, + -0.99, + -0.9, + -0.89, + -0.81, + -0.8200000000000001, + -0.86, + -0.87, + -0.84, + -0.85, + -0.75, + -0.74, + -0.8300000000000001, + -0.8, + -0.9500000000000001, + -1.01, + -1.02, + -0.86, + -0.72, + -0.63, + -0.71, + -0.75, + -0.92, + -0.98, + -1.07, + -1.1300000000000001, + -1.28, + -1.32, + -1.36, + -1.19, + -1.03, + -0.76, + -0.42, + -0.11, + 0.16, + 0.47000000000000003, + 0.79, + 1.2, + 1.48, + 1.76, + 1.71, + 1.57, + 1.03, + 0.56, + 0.16, + -0.04, + -0.02, + 0.16, + 0.21, + 0.22, + 0.09, + 0.09, + 0.42, + 0.73, + 0.93, + 1.04, + 1.23, + 1.3800000000000001, + 1.3900000000000001, + 1.1300000000000001, + 0.96, + 0.87, + 0.86, + 0.71, + 0.45, + -0.04, + -0.58, + -0.87, + -1.16, + -1.0, + -0.76, + -0.37, + 0.02, + 0.14, + 0.15, + -0.14, + -0.44, + -0.63, + -0.51, + -0.09, + 0.5700000000000001, + 1.05, + 1.06, + 0.76, + 0.03, + -0.47000000000000003, + -0.84, + -1.01, + -1.1, + -1.17, + -1.21, + -1.24, + -1.27, + -1.34, + -1.33, + -1.34, + -1.24, + -1.11, + -0.96, + -0.68, + -0.37, + -0.07, + 0.2, + 0.2, + 0.06, + -0.15, + -0.44, + -0.52, + -0.52, + -0.27, + -0.03, + 0.23, + 0.34, + 0.45 + ], + [ + 0.42, + 0.37, + -0.1, + -0.37, + -0.34, + -0.26, + -0.21, + -0.17, + -0.11, + -0.01, + 0.19, + 0.45, + 0.71, + 0.9500000000000001, + 1.21, + 1.52, + 1.86, + 2.23, + 2.59, + 2.87, + 3.16, + 3.7800000000000002, + 4.57, + 5.32, + 5.83, + 5.46, + 4.76, + 3.96, + 3.34, + 3.24, + 3.44, + 3.72, + 3.95, + 3.99, + 3.84, + 3.66, + 3.33, + 2.91, + 2.5, + 2.14, + 1.99, + 1.84, + 1.6600000000000001, + 1.53, + 1.5, + 1.54, + 1.7, + 1.84, + 1.82, + 1.84, + 1.8800000000000001, + 1.93, + 2.17, + 2.44, + 2.69, + 2.7800000000000002, + 2.5100000000000002, + 2.21, + 1.8, + 1.51, + 1.4000000000000001, + 1.34, + 1.46, + 1.46, + 1.37, + 1.1500000000000001, + 0.75, + 0.5700000000000001, + 0.4, + 0.4, + 0.34, + 0.12, + -0.11, + -0.04, + 0.14, + 0.26, + 0.26, + 0.15, + 0.08, + 0.16, + 0.23, + 0.26, + 0.17, + -0.11, + -0.36, + -0.31, + 0.06, + 0.63, + 1.08, + 1.18, + 1.08, + 0.81, + 0.68, + 0.45, + 0.47000000000000003, + 0.58, + 0.98, + 1.44, + 1.6500000000000001, + 1.67, + 1.53, + 1.5, + 1.23, + 1.04, + 0.78, + 0.43, + 0.36, + 0.52, + 0.7000000000000001, + 0.6900000000000001, + 0.59, + 0.45, + 0.37, + 0.23, + -0.01, + -0.1, + -0.03, + 0.2, + 0.49, + 0.68, + 0.78, + 0.61, + 0.51, + 0.44, + 0.53, + 0.5700000000000001, + 0.47000000000000003, + 0.22, + -0.01, + -0.07, + 0.2, + 0.63, + 0.74, + 0.78, + 0.52, + 0.36, + 0.27, + 0.22, + 0.22, + 0.4, + 0.6900000000000001, + 0.81, + 0.56, + 0.32, + 0.14, + -0.07, + -0.09, + 0.06, + 0.22, + 0.48, + 0.8200000000000001, + 1.44, + 2.2600000000000002, + 3.21, + 3.98, + 4.65, + 5.36, + 5.69, + 5.94, + 5.01, + 4.07, + 2.77, + 1.55, + 0.62, + -0.22, + -0.58, + -0.8, + -0.44, + 0.18, + 1.01, + 1.6500000000000001, + 1.97, + 1.96, + 1.92, + 1.87, + 1.75, + 1.61, + 1.3800000000000001, + 1.16, + 0.79, + 0.6, + 0.41000000000000003, + 0.49, + 0.61, + 0.6, + 0.55, + 0.35000000000000003, + 0.25, + 0.1, + 0.12, + -0.03, + -0.21, + -0.56, + -0.9400000000000001, + -1.11, + -1.28, + -1.1400000000000001, + -1.05, + -1.21, + -1.58, + -2.11, + -2.44, + -2.72, + -2.87, + -2.95, + -2.99, + -3.0100000000000002, + -2.87, + -2.75, + -2.47, + -2.17, + -1.78, + -1.32, + -0.89, + -0.59, + -0.34, + -0.22, + -0.22, + -0.19, + -0.31, + -0.4, + -0.54, + -0.78, + -1.1, + -1.47, + -1.71, + -1.7, + -1.73, + -1.85, + -1.98, + -1.99, + -1.97, + -1.81, + -1.71, + -1.52, + -1.36, + -1.1, + -0.99, + -0.9400000000000001, + -0.99, + -1.04, + -0.99, + -0.8200000000000001, + -0.67, + -0.52, + -0.6, + -0.79, + -0.93, + -1.1, + -0.9500000000000001, + -0.8200000000000001, + -0.56, + -0.41000000000000003, + -0.37, + -0.47000000000000003, + -0.6, + -0.79, + -0.89, + -1.06, + -1.1400000000000001, + -1.27, + -1.18, + -1.01, + -0.8200000000000001, + -0.53, + -0.24, + 0.08, + 0.38, + 0.68, + 1.06, + 1.3900000000000001, + 1.71, + 1.73, + 1.81, + 1.35, + 0.96, + 0.37, + 0.0, + -0.14, + -0.18, + -0.2, + -0.09, + -0.18, + -0.26, + 0.02, + 0.39, + 0.77, + 1.01, + 1.1400000000000001, + 1.34, + 1.45, + 1.31, + 1.22, + 0.99, + 0.92, + 0.8200000000000001, + 0.8, + 0.44, + 0.11, + -0.26, + -0.6, + -0.63, + -0.62, + -0.39, + -0.08, + 0.12, + 0.25, + 0.06, + -0.26, + -0.61, + -0.84, + -0.8, + -0.36, + 0.07, + 0.4, + 0.35000000000000003, + -0.19, + -0.75, + -1.11, + -1.31, + -1.26, + -1.22, + -1.18, + -1.19, + -1.2, + -1.19, + -1.16, + -1.1500000000000001, + -1.09, + -1.05, + -1.0, + -0.91, + -0.76, + -0.44, + -0.09, + 0.22, + 0.42, + 0.24, + -0.04, + -0.33, + -0.56, + -0.39, + -0.19, + 0.14, + 0.4, + 0.53, + 0.66 + ], + [ + 0.36, + 0.21, + -0.25, + -0.39, + -0.37, + -0.27, + -0.19, + -0.12, + -0.05, + 0.1, + 0.3, + 0.58, + 0.86, + 1.1300000000000001, + 1.4000000000000001, + 1.67, + 2.0, + 2.38, + 2.73, + 3.02, + 3.34, + 3.8000000000000003, + 4.59, + 5.4, + 5.63, + 5.44, + 4.65, + 3.7600000000000002, + 3.24, + 2.99, + 3.12, + 3.39, + 3.58, + 3.68, + 3.71, + 3.58, + 3.3200000000000003, + 2.86, + 2.41, + 2.06, + 1.78, + 1.6600000000000001, + 1.56, + 1.49, + 1.51, + 1.57, + 1.6500000000000001, + 1.59, + 1.54, + 1.62, + 1.76, + 2.02, + 2.35, + 2.67, + 3.02, + 2.94, + 2.62, + 2.08, + 1.58, + 1.3, + 1.22, + 1.4000000000000001, + 1.6, + 1.8, + 1.72, + 1.58, + 1.16, + 0.7000000000000001, + 0.43, + 0.24, + 0.06, + -0.19, + -0.23, + -0.3, + -0.08, + 0.04, + -0.06, + -0.16, + -0.15, + -0.01, + 0.15, + 0.16, + -0.08, + -0.45, + -0.62, + -0.37, + 0.28, + 1.07, + 1.68, + 1.6400000000000001, + 1.5, + 1.23, + 0.92, + 0.72, + 0.47000000000000003, + 0.53, + 0.8200000000000001, + 1.2, + 1.58, + 1.52, + 1.3, + 0.91, + 0.47000000000000003, + 0.16, + -0.09, + -0.22, + -0.15, + 0.02, + 0.3, + 0.36, + 0.31, + 0.27, + 0.27, + 0.23, + -0.01, + -0.25, + -0.13, + 0.06, + 0.38, + 0.7000000000000001, + 0.7000000000000001, + 0.51, + 0.31, + 0.17, + 0.25, + 0.36, + 0.23, + -0.05, + -0.36, + -0.46, + -0.28, + 0.19, + 0.62, + 0.6, + 0.46, + 0.3, + 0.24, + 0.15, + 0.13, + 0.41000000000000003, + 0.73, + 0.74, + 0.5, + 0.28, + 0.16, + 0.08, + 0.01, + 0.03, + 0.09, + 0.19, + 0.46, + 0.9500000000000001, + 1.78, + 2.5500000000000003, + 3.29, + 3.94, + 4.5600000000000005, + 5.19, + 4.99, + 4.78, + 3.64, + 2.65, + 1.52, + 0.43, + -0.31, + -0.89, + -0.92, + -0.61, + 0.21, + 1.27, + 2.0, + 2.44, + 2.59, + 2.5500000000000003, + 2.48, + 2.25, + 2.07, + 1.76, + 1.48, + 1.04, + 0.59, + 0.41000000000000003, + 0.31, + 0.35000000000000003, + 0.35000000000000003, + 0.14, + -0.11, + -0.35000000000000003, + -0.5, + -0.5700000000000001, + -0.63, + -0.8, + -1.1400000000000001, + -1.29, + -1.43, + -1.2, + -0.92, + -0.75, + -0.89, + -1.41, + -1.9100000000000001, + -2.39, + -2.6, + -2.69, + -2.68, + -2.64, + -2.5500000000000003, + -2.41, + -2.21, + -2.0, + -1.81, + -1.5, + -1.1300000000000001, + -0.6900000000000001, + -0.21, + 0.07, + 0.15, + 0.1, + -0.15, + -0.33, + -0.59, + -0.77, + -0.98, + -1.3900000000000001, + -1.68, + -1.86, + -1.9100000000000001, + -1.99, + -2.19, + -2.27, + -2.43, + -2.24, + -2.23, + -1.98, + -1.8900000000000001, + -1.58, + -1.27, + -1.05, + -0.97, + -0.9400000000000001, + -1.04, + -0.99, + -0.75, + -0.49, + -0.29, + -0.27, + -0.48, + -0.66, + -0.68, + -0.7000000000000001, + -0.44, + -0.27, + -0.14, + 0.01, + -0.13, + -0.24, + -0.44, + -0.59, + -0.71, + -0.84, + -0.86, + -0.8, + -0.71, + -0.55, + -0.42, + -0.16, + 0.09, + 0.33, + 0.63, + 0.9400000000000001, + 1.23, + 1.32, + 1.36, + 1.1400000000000001, + 0.91, + 0.38, + -0.05, + -0.26, + -0.38, + -0.5, + -0.6, + -0.68, + -0.72, + -0.47000000000000003, + -0.14, + 0.35000000000000003, + 0.77, + 0.93, + 1.03, + 1.09, + 1.1, + 1.02, + 0.87, + 0.77, + 0.64, + 0.55, + 0.38, + 0.32, + 0.05, + -0.07, + -0.2, + -0.19, + -0.15, + -0.01, + 0.13, + 0.31, + 0.23, + 0.01, + -0.32, + -0.72, + -0.9500000000000001, + -0.91, + -0.71, + -0.34, + -0.21, + -0.41000000000000003, + -0.8200000000000001, + -1.16, + -1.56, + -1.44, + -1.41, + -1.24, + -1.16, + -1.1400000000000001, + -1.16, + -1.11, + -1.03, + -0.9400000000000001, + -0.86, + -0.8200000000000001, + -0.81, + -0.77, + -0.6900000000000001, + -0.48, + -0.12, + 0.19, + 0.41000000000000003, + 0.47000000000000003, + 0.16, + -0.09, + -0.18, + -0.15, + 0.16, + 0.38, + 0.54, + 0.67, + 0.6900000000000001 + ], + [ + 0.33, + 0.3, + -0.18, + -0.47000000000000003, + -0.39, + -0.29, + -0.19, + -0.09, + 0.03, + 0.2, + 0.45, + 0.73, + 1.03, + 1.31, + 1.56, + 1.81, + 2.11, + 2.5100000000000002, + 2.92, + 3.18, + 3.39, + 3.89, + 4.57, + 5.22, + 5.68, + 5.2700000000000005, + 4.5600000000000005, + 3.79, + 3.1, + 2.84, + 2.87, + 3.04, + 3.23, + 3.4, + 3.5100000000000002, + 3.49, + 3.23, + 2.86, + 2.39, + 1.97, + 1.69, + 1.48, + 1.4000000000000001, + 1.4000000000000001, + 1.46, + 1.53, + 1.45, + 1.36, + 1.34, + 1.3800000000000001, + 1.62, + 1.97, + 2.29, + 2.69, + 2.83, + 2.81, + 2.36, + 1.7, + 1.16, + 0.89, + 0.96, + 1.28, + 1.68, + 1.8800000000000001, + 2.0100000000000002, + 1.75, + 1.52, + 0.91, + 0.42, + 0.15, + -0.09, + -0.13, + -0.24, + -0.09, + -0.02, + -0.06, + -0.25, + -0.43, + -0.42, + -0.26, + -0.02, + -0.06, + -0.41000000000000003, + -0.72, + -0.8, + -0.39, + 0.58, + 1.47, + 1.86, + 2.09, + 1.81, + 1.68, + 1.43, + 1.1, + 0.78, + 0.5, + 0.63, + 0.98, + 1.24, + 1.29, + 0.98, + 0.46, + 0.06, + -0.3, + -0.47000000000000003, + -0.47000000000000003, + -0.39, + -0.11, + 0.05, + 0.09, + 0.07, + 0.09, + 0.21, + 0.18, + 0.04, + -0.1, + -0.19, + 0.03, + 0.3, + 0.48, + 0.61, + 0.41000000000000003, + 0.13, + 0.08, + 0.13, + 0.13, + -0.02, + -0.31, + -0.68, + -0.8200000000000001, + -0.55, + -0.15, + 0.37, + 0.51, + 0.34, + 0.14, + 0.09, + 0.05, + 0.11, + 0.39, + 0.74, + 0.84, + 0.55, + 0.24, + 0.14, + 0.13, + 0.11, + 0.06, + 0.04, + 0.04, + 0.22, + 0.7000000000000001, + 1.22, + 1.9000000000000001, + 2.47, + 2.98, + 3.44, + 3.73, + 3.87, + 3.42, + 2.95, + 2.17, + 1.34, + 0.4, + -0.5, + -0.93, + -1.1500000000000001, + -0.74, + 0.1, + 1.03, + 1.94, + 2.38, + 2.61, + 2.69, + 2.56, + 2.45, + 2.18, + 1.99, + 1.6300000000000001, + 1.25, + 0.76, + 0.33, + 0.24, + 0.11, + 0.0, + -0.23, + -0.52, + -0.92, + -1.05, + -1.18, + -1.17, + -1.3, + -1.37, + -1.48, + -1.25, + -0.8300000000000001, + -0.41000000000000003, + -0.17, + -0.37, + -1.02, + -1.7, + -2.19, + -2.49, + -2.48, + -2.41, + -2.3000000000000003, + -2.16, + -1.97, + -1.73, + -1.6600000000000001, + -1.51, + -1.34, + -0.98, + -0.42, + 0.19, + 0.56, + 0.62, + 0.35000000000000003, + -0.05, + -0.51, + -0.86, + -1.2, + -1.47, + -1.7, + -1.93, + -2.06, + -2.0, + -2.05, + -2.12, + -2.33, + -2.2, + -2.2, + -1.94, + -1.9100000000000001, + -1.72, + -1.56, + -1.37, + -1.08, + -0.91, + -0.84, + -0.75, + -0.71, + -0.52, + -0.2, + -0.04, + -0.05, + -0.08, + -0.19, + -0.17, + -0.09, + -0.04, + 0.0, + 0.05, + -0.01, + 0.05, + -0.12, + -0.22, + -0.32, + -0.39, + -0.48, + -0.47000000000000003, + -0.42, + -0.38, + -0.38, + -0.34, + -0.23, + -0.03, + 0.18, + 0.44, + 0.63, + 0.81, + 0.8300000000000001, + 0.71, + 0.49, + 0.24, + -0.2, + -0.36, + -0.59, + -0.62, + -0.81, + -0.96, + -1.17, + -0.9500000000000001, + -0.66, + -0.17, + 0.39, + 0.66, + 0.76, + 0.8, + 0.79, + 0.72, + 0.62, + 0.45, + 0.36, + 0.22, + 0.04, + -0.15, + -0.18, + -0.18, + -0.2, + -0.08, + -0.04, + 0.1, + 0.16, + 0.3, + 0.28, + 0.2, + -0.02, + -0.35000000000000003, + -0.63, + -0.88, + -0.96, + -0.8, + -0.63, + -0.6, + -0.68, + -0.88, + -1.18, + -1.2, + -1.3800000000000001, + -1.21, + -1.1400000000000001, + -1.03, + -1.03, + -1.02, + -1.02, + -0.91, + -0.77, + -0.7000000000000001, + -0.64, + -0.61, + -0.61, + -0.48, + -0.32, + -0.11, + 0.19, + 0.38, + 0.44, + 0.4, + 0.21, + 0.21, + 0.36, + 0.5700000000000001, + 0.71, + 0.7000000000000001, + 0.68, + 0.6900000000000001 + ], + [ + 0.31, + 0.16, + -0.31, + -0.42, + -0.4, + -0.29, + -0.18, + -0.06, + 0.09, + 0.3, + 0.58, + 0.89, + 1.2, + 1.49, + 1.72, + 1.93, + 2.23, + 2.63, + 3.0700000000000003, + 3.36, + 3.52, + 3.77, + 4.44, + 5.18, + 5.36, + 5.25, + 4.59, + 3.79, + 3.16, + 2.69, + 2.61, + 2.73, + 2.93, + 3.14, + 3.3200000000000003, + 3.36, + 3.2, + 2.85, + 2.38, + 1.94, + 1.55, + 1.35, + 1.23, + 1.3, + 1.37, + 1.35, + 1.28, + 1.19, + 1.11, + 1.23, + 1.42, + 1.74, + 2.09, + 2.36, + 2.5300000000000002, + 2.34, + 1.8800000000000001, + 1.25, + 0.67, + 0.42, + 0.62, + 1.02, + 1.48, + 1.8, + 1.81, + 1.78, + 1.3800000000000001, + 1.01, + 0.52, + 0.1, + 0.05, + 0.01, + 0.08, + 0.22, + 0.2, + 0.06, + -0.21, + -0.56, + -0.65, + -0.48, + -0.35000000000000003, + -0.41000000000000003, + -0.64, + -0.93, + -0.86, + -0.1, + 0.79, + 1.57, + 2.0300000000000002, + 2.0, + 2.0300000000000002, + 1.99, + 1.96, + 1.54, + 1.1, + 0.72, + 0.49, + 0.74, + 1.04, + 1.02, + 0.72, + 0.31, + -0.11, + -0.34, + -0.44, + -0.46, + -0.31, + -0.18, + -0.11, + -0.13, + -0.13, + -0.1, + 0.15, + 0.28, + 0.19, + 0.02, + -0.02, + 0.03, + 0.16, + 0.31, + 0.26, + 0.18, + 0.03, + -0.02, + -0.03, + -0.04, + -0.14, + -0.46, + -0.72, + -0.78, + -0.5700000000000001, + 0.02, + 0.39, + 0.46, + 0.27, + 0.08, + -0.07, + -0.09, + -0.07, + 0.38, + 0.91, + 0.92, + 0.61, + 0.3, + 0.14, + 0.1, + 0.12, + 0.06, + 0.0, + 0.05, + 0.16, + 0.41000000000000003, + 0.79, + 1.16, + 1.56, + 1.92, + 2.21, + 2.34, + 2.34, + 2.16, + 1.95, + 1.6600000000000001, + 0.99, + 0.23, + -0.47000000000000003, + -1.06, + -1.11, + -0.92, + -0.2, + 0.72, + 1.36, + 1.86, + 2.14, + 2.27, + 2.34, + 2.22, + 2.13, + 1.97, + 1.75, + 1.35, + 0.91, + 0.55, + 0.19, + 0.05, + -0.19, + -0.42, + -0.78, + -1.05, + -1.41, + -1.43, + -1.47, + -1.42, + -1.43, + -1.24, + -0.86, + -0.37, + 0.17, + 0.33, + -0.04, + -0.64, + -1.46, + -2.06, + -2.27, + -2.29, + -2.15, + -2.0100000000000002, + -1.85, + -1.62, + -1.52, + -1.42, + -1.42, + -1.33, + -0.91, + -0.27, + 0.39, + 0.96, + 0.96, + 0.56, + 0.04, + -0.5700000000000001, + -1.1300000000000001, + -1.55, + -1.86, + -1.95, + -2.06, + -1.94, + -1.9000000000000001, + -1.8, + -1.84, + -1.81, + -1.79, + -1.62, + -1.42, + -1.36, + -1.35, + -1.3900000000000001, + -1.36, + -1.24, + -0.97, + -0.72, + -0.51, + -0.32, + -0.14, + 0.02, + 0.1, + 0.13, + 0.1, + 0.21, + 0.31, + 0.46, + 0.32, + 0.18, + -0.01, + -0.15, + -0.17, + -0.17, + -0.11, + -0.13, + -0.2, + -0.25, + -0.28, + -0.18, + -0.14, + -0.23, + -0.24, + -0.2, + -0.07, + 0.14, + 0.3, + 0.44, + 0.45, + 0.39, + 0.22, + 0.13, + -0.14, + -0.23, + -0.54, + -0.53, + -0.67, + -0.8200000000000001, + -1.1300000000000001, + -1.06, + -0.93, + -0.54, + -0.04, + 0.3, + 0.51, + 0.61, + 0.62, + 0.64, + 0.55, + 0.34, + 0.19, + 0.02, + -0.12, + -0.39, + -0.44, + -0.65, + -0.49, + -0.46, + -0.27, + -0.08, + 0.02, + 0.16, + 0.15, + 0.15, + 0.05, + -0.12, + -0.31, + -0.53, + -0.76, + -0.9, + -0.92, + -0.8300000000000001, + -0.71, + -0.65, + -0.56, + -0.54, + -0.63, + -0.74, + -0.91, + -0.8200000000000001, + -0.78, + -0.72, + -0.8300000000000001, + -0.78, + -0.74, + -0.67, + -0.58, + -0.53, + -0.47000000000000003, + -0.36, + -0.21, + -0.03, + 0.11, + 0.24, + 0.39, + 0.44, + 0.43, + 0.43, + 0.52, + 0.8, + 0.9500000000000001, + 1.12, + 0.93, + 0.72, + 0.68 + ], + [ + 0.32, + 0.31, + -0.16, + -0.43, + -0.36, + -0.27, + -0.15, + -0.03, + 0.15, + 0.39, + 0.6900000000000001, + 1.04, + 1.37, + 1.6600000000000001, + 1.87, + 2.0300000000000002, + 2.31, + 2.79, + 3.27, + 3.47, + 3.56, + 3.77, + 4.2, + 4.78, + 5.3, + 5.12, + 4.68, + 3.98, + 3.19, + 2.65, + 2.37, + 2.43, + 2.64, + 2.91, + 3.18, + 3.3000000000000003, + 3.21, + 2.91, + 2.41, + 1.92, + 1.51, + 1.2, + 1.2, + 1.21, + 1.25, + 1.21, + 1.1500000000000001, + 1.03, + 1.03, + 1.04, + 1.29, + 1.55, + 1.86, + 2.07, + 2.08, + 1.8800000000000001, + 1.3900000000000001, + 0.76, + 0.27, + 0.08, + 0.22, + 0.74, + 1.2, + 1.44, + 1.5, + 1.3900000000000001, + 1.21, + 0.91, + 0.58, + 0.37, + 0.2, + 0.22, + 0.33, + 0.33, + 0.42, + 0.26, + -0.07, + -0.37, + -0.68, + -0.71, + -0.61, + -0.64, + -0.8200000000000001, + -0.89, + -0.51, + 0.13, + 1.05, + 1.71, + 1.82, + 1.87, + 2.02, + 2.2800000000000002, + 2.12, + 1.95, + 1.36, + 0.85, + 0.6, + 0.62, + 0.79, + 0.84, + 0.58, + 0.2, + -0.07, + -0.2, + -0.25, + -0.25, + -0.19, + -0.13, + -0.13, + -0.16, + -0.21, + 0.05, + 0.23, + 0.46, + 0.42, + 0.24, + 0.09, + 0.09, + 0.06, + 0.03, + -0.08, + -0.16, + -0.22, + -0.26, + -0.27, + -0.21, + -0.22, + -0.37, + -0.53, + -0.53, + -0.15, + 0.32, + 0.5700000000000001, + 0.59, + 0.28, + -0.02, + -0.11, + -0.25, + -0.07, + 0.29, + 0.81, + 1.1500000000000001, + 0.85, + 0.36, + 0.13, + 0.03, + -0.05, + -0.1, + -0.12, + -0.04, + 0.11, + 0.22, + 0.37, + 0.54, + 0.71, + 0.99, + 1.1400000000000001, + 1.2, + 1.07, + 1.09, + 1.06, + 0.88, + 0.63, + 0.03, + -0.5700000000000001, + -0.92, + -1.11, + -0.81, + -0.32, + 0.27, + 0.75, + 1.09, + 1.3900000000000001, + 1.6300000000000001, + 1.82, + 1.92, + 1.95, + 1.92, + 1.74, + 1.5, + 1.1300000000000001, + 0.79, + 0.48, + 0.11, + -0.11, + -0.44, + -0.68, + -1.05, + -1.25, + -1.45, + -1.42, + -1.35, + -1.21, + -0.92, + -0.49, + 0.07, + 0.44, + 0.45, + 0.16, + -0.58, + -1.3, + -1.84, + -2.15, + -2.06, + -1.8900000000000001, + -1.78, + -1.62, + -1.48, + -1.34, + -1.36, + -1.43, + -1.26, + -0.9500000000000001, + -0.29, + 0.51, + 0.9, + 1.02, + 0.68, + 0.07, + -0.53, + -1.2, + -1.69, + -1.86, + -1.95, + -1.77, + -1.68, + -1.53, + -1.41, + -1.36, + -1.27, + -1.23, + -1.06, + -0.9500000000000001, + -0.8, + -1.01, + -1.22, + -1.37, + -1.43, + -1.2, + -0.78, + -0.43, + -0.12, + 0.08, + 0.13, + 0.16, + 0.13, + 0.19, + 0.43, + 0.65, + 0.64, + 0.61, + 0.24, + -0.11, + -0.25, + -0.38, + -0.16, + 0.02, + 0.06, + -0.04, + -0.21, + -0.26, + -0.19, + -0.07, + -0.05, + -0.11, + -0.09, + 0.03, + 0.2, + 0.3, + 0.34, + 0.26, + 0.13, + 0.08, + 0.0, + 0.02, + -0.04, + -0.14, + -0.28, + -0.43, + -0.63, + -0.75, + -0.77, + -0.5700000000000001, + -0.25, + 0.03, + 0.24, + 0.39, + 0.47000000000000003, + 0.58, + 0.67, + 0.59, + 0.32, + 0.05, + -0.05, + -0.2, + -0.28, + -0.5, + -0.47000000000000003, + -0.66, + -0.48, + -0.44, + -0.23, + -0.12, + -0.1, + -0.1, + -0.12, + -0.18, + -0.26, + -0.33, + -0.52, + -0.74, + -0.96, + -1.1, + -1.07, + -0.87, + -0.53, + -0.14, + 0.21, + 0.09, + -0.07, + -0.33, + -0.44, + -0.29, + -0.25, + -0.29, + -0.44, + -0.51, + -0.54, + -0.55, + -0.49, + -0.36, + -0.17, + 0.03, + 0.23, + 0.37, + 0.39, + 0.44, + 0.45, + 0.42, + 0.46, + 0.61, + 0.85, + 1.25, + 1.2, + 1.17, + 0.87, + 0.67 + ], + [ + 0.33, + 0.19, + -0.23, + -0.34, + -0.32, + -0.22, + -0.11, + 0.02, + 0.2, + 0.47000000000000003, + 0.81, + 1.16, + 1.5, + 1.76, + 1.9100000000000001, + 2.08, + 2.42, + 2.9, + 3.39, + 3.67, + 3.5700000000000003, + 3.5500000000000003, + 3.92, + 4.46, + 4.93, + 5.2, + 4.84, + 4.23, + 3.4, + 2.57, + 2.22, + 2.14, + 2.35, + 2.7, + 3.0100000000000002, + 3.23, + 3.23, + 2.93, + 2.5, + 1.97, + 1.53, + 1.32, + 1.18, + 1.2, + 1.22, + 1.18, + 1.09, + 1.03, + 0.9400000000000001, + 1.05, + 1.22, + 1.52, + 1.77, + 1.84, + 1.74, + 1.42, + 0.9400000000000001, + 0.46, + 0.05, + -0.13, + 0.08, + 0.44, + 0.87, + 1.17, + 1.17, + 1.06, + 1.03, + 0.86, + 0.74, + 0.61, + 0.48, + 0.37, + 0.3, + 0.29, + 0.36, + 0.44, + 0.29, + -0.04, + -0.37, + -0.65, + -0.72, + -0.71, + -0.71, + -0.53, + -0.14, + 0.59, + 1.32, + 1.58, + 1.6300000000000001, + 1.6500000000000001, + 1.86, + 2.07, + 2.29, + 1.8900000000000001, + 1.5, + 0.9400000000000001, + 0.51, + 0.47000000000000003, + 0.6, + 0.5700000000000001, + 0.4, + 0.16, + -0.01, + -0.08, + -0.05, + -0.03, + -0.02, + 0.02, + 0.01, + 0.01, + 0.14, + 0.35000000000000003, + 0.66, + 0.89, + 0.68, + 0.42, + 0.29, + 0.2, + 0.08, + -0.14, + -0.28, + -0.45, + -0.46, + -0.51, + -0.42, + -0.25, + -0.14, + -0.14, + -0.25, + -0.16, + 0.15, + 0.56, + 0.84, + 0.61, + 0.31, + 0.06, + -0.1, + -0.22, + -0.23, + 0.21, + 0.87, + 1.1400000000000001, + 1.12, + 0.67, + 0.18, + -0.04, + -0.24, + -0.32, + -0.32, + -0.19, + 0.01, + 0.12, + 0.11, + 0.11, + 0.19, + 0.25, + 0.38, + 0.33, + 0.27, + 0.07, + 0.19, + 0.19, + 0.05, + -0.21, + -0.61, + -0.88, + -0.89, + -0.66, + -0.28, + 0.02, + 0.28, + 0.43, + 0.68, + 1.02, + 1.29, + 1.57, + 1.73, + 1.75, + 1.73, + 1.55, + 1.36, + 1.08, + 0.84, + 0.51, + 0.09, + -0.13, + -0.44, + -0.68, + -0.98, + -1.11, + -1.21, + -1.1300000000000001, + -0.9500000000000001, + -0.66, + -0.21, + 0.2, + 0.42, + 0.42, + 0.05, + -0.49, + -1.12, + -1.69, + -1.86, + -1.9000000000000001, + -1.76, + -1.61, + -1.49, + -1.34, + -1.26, + -1.28, + -1.27, + -1.24, + -0.8300000000000001, + -0.29, + 0.26, + 0.6900000000000001, + 0.71, + 0.49, + 0.06, + -0.51, + -1.05, + -1.47, + -1.68, + -1.54, + -1.3900000000000001, + -1.31, + -1.16, + -1.1, + -0.9500000000000001, + -0.92, + -0.81, + -0.72, + -0.56, + -0.66, + -0.8, + -1.1400000000000001, + -1.46, + -1.52, + -1.42, + -1.03, + -0.53, + -0.16, + 0.08, + 0.17, + 0.14, + 0.16, + 0.34, + 0.53, + 0.66, + 0.75, + 0.49, + 0.27, + -0.11, + -0.37, + -0.3, + -0.08, + 0.13, + 0.31, + 0.09, + -0.25, + -0.35000000000000003, + -0.28, + -0.11, + 0.02, + 0.01, + -0.02, + 0.04, + 0.19, + 0.32, + 0.27, + 0.17, + 0.09, + 0.02, + 0.14, + 0.26, + 0.26, + 0.29, + 0.04, + -0.12, + -0.35000000000000003, + -0.41000000000000003, + -0.4, + -0.21, + -0.06, + 0.08, + 0.18, + 0.26, + 0.42, + 0.65, + 0.79, + 0.6900000000000001, + 0.46, + 0.21, + 0.04, + 0.05, + 0.03, + -0.03, + -0.07, + -0.21, + -0.36, + -0.25, + -0.24, + -0.19, + -0.31, + -0.27, + -0.32, + -0.31, + -0.34, + -0.47000000000000003, + -0.61, + -0.89, + -1.21, + -1.41, + -1.41, + -1.16, + -0.55, + 0.14, + 0.53, + 0.8, + 0.35000000000000003, + 0.1, + 0.07, + 0.31, + 0.37, + 0.37, + 0.06, + -0.25, + -0.47000000000000003, + -0.59, + -0.49, + -0.31, + -0.11, + 0.14, + 0.34, + 0.47000000000000003, + 0.54, + 0.53, + 0.49, + 0.4, + 0.34, + 0.46, + 0.6900000000000001, + 0.97, + 1.24, + 1.08, + 0.92, + 0.81 + ], + [ + 0.35000000000000003, + 0.32, + -0.09, + -0.32, + -0.25, + -0.16, + -0.04, + 0.09, + 0.29, + 0.5700000000000001, + 0.9, + 1.26, + 1.57, + 1.77, + 1.93, + 2.09, + 2.44, + 3.0500000000000003, + 3.58, + 3.66, + 3.56, + 3.41, + 3.49, + 4.07, + 4.74, + 5.08, + 5.19, + 4.5200000000000005, + 3.62, + 2.74, + 2.04, + 1.94, + 2.09, + 2.42, + 2.81, + 3.0700000000000003, + 3.14, + 2.95, + 2.52, + 2.07, + 1.72, + 1.46, + 1.29, + 1.21, + 1.2, + 1.2, + 1.12, + 1.05, + 1.01, + 1.05, + 1.29, + 1.59, + 1.69, + 1.6600000000000001, + 1.4000000000000001, + 0.98, + 0.62, + 0.32, + 0.05, + -0.07, + -0.01, + 0.25, + 0.6, + 0.88, + 1.0, + 1.02, + 0.9500000000000001, + 0.99, + 0.91, + 0.8300000000000001, + 0.76, + 0.47000000000000003, + 0.17, + 0.17, + 0.26, + 0.47000000000000003, + 0.7000000000000001, + 0.46, + 0.04, + -0.32, + -0.59, + -0.62, + -0.41000000000000003, + -0.14, + 0.33, + 0.99, + 1.42, + 1.6, + 1.3900000000000001, + 1.22, + 1.48, + 1.84, + 1.86, + 1.81, + 1.36, + 0.85, + 0.45, + 0.22, + 0.27, + 0.3, + 0.21, + 0.09, + -0.01, + -0.01, + 0.02, + 0.05, + 0.08, + 0.12, + 0.17, + 0.25, + 0.47000000000000003, + 0.71, + 1.1300000000000001, + 1.02, + 0.98, + 0.63, + 0.43, + 0.3, + 0.16, + -0.12, + -0.39, + -0.46, + -0.5, + -0.46, + -0.37, + -0.16, + 0.13, + 0.18, + 0.05, + 0.1, + 0.41000000000000003, + 0.74, + 0.81, + 0.68, + 0.32, + 0.07, + -0.16, + -0.3, + -0.32, + -0.06, + 0.64, + 1.34, + 1.27, + 0.9500000000000001, + 0.44, + -0.01, + -0.25, + -0.45, + -0.43, + -0.22, + -0.04, + 0.05, + 0.04, + -0.06, + -0.12, + -0.1, + -0.12, + -0.13, + -0.34, + -0.36, + -0.56, + -0.34, + -0.4, + -0.49, + -0.72, + -0.84, + -0.78, + -0.52, + -0.19, + -0.02, + -0.04, + 0.05, + 0.22, + 0.49, + 0.86, + 1.1500000000000001, + 1.37, + 1.52, + 1.57, + 1.55, + 1.44, + 1.34, + 1.17, + 1.0, + 0.62, + 0.28, + 0.02, + -0.21, + -0.45, + -0.68, + -0.77, + -0.84, + -0.72, + -0.48, + -0.14, + 0.15, + 0.3, + 0.24, + 0.01, + -0.38, + -0.89, + -1.33, + -1.6500000000000001, + -1.68, + -1.6400000000000001, + -1.54, + -1.4000000000000001, + -1.23, + -1.09, + -1.06, + -1.09, + -0.92, + -0.65, + -0.26, + 0.04, + 0.25, + 0.25, + 0.09, + -0.13, + -0.49, + -0.86, + -1.1500000000000001, + -1.23, + -1.18, + -1.1400000000000001, + -1.04, + -1.04, + -0.92, + -0.81, + -0.64, + -0.5700000000000001, + -0.46, + -0.46, + -0.56, + -0.8300000000000001, + -1.17, + -1.42, + -1.6300000000000001, + -1.5, + -1.19, + -0.73, + -0.27, + -0.01, + 0.1, + 0.15, + 0.25, + 0.42, + 0.49, + 0.58, + 0.46, + 0.31, + 0.06, + -0.21, + -0.36, + -0.35000000000000003, + -0.13, + 0.22, + 0.22, + 0.13, + -0.17, + -0.45, + -0.32, + -0.06, + 0.08, + 0.08, + 0.02, + 0.03, + 0.12, + 0.26, + 0.27, + 0.21, + 0.11, + 0.17, + 0.25, + 0.39, + 0.53, + 0.36, + 0.23, + -0.06, + -0.24, + -0.32, + -0.23, + -0.15, + -0.06, + -0.01, + 0.01, + 0.1, + 0.34, + 0.63, + 0.8200000000000001, + 0.84, + 0.6, + 0.37, + 0.28, + 0.3, + 0.31, + 0.43, + 0.29, + 0.25, + 0.1, + 0.04, + 0.05, + -0.06, + -0.08, + -0.2, + -0.15, + -0.19, + -0.29, + -0.52, + -0.79, + -1.1400000000000001, + -1.5, + -1.77, + -1.83, + -1.42, + -0.81, + 0.06, + 0.72, + 0.68, + 0.5700000000000001, + 0.25, + 0.32, + 0.59, + 1.03, + 0.76, + 0.45, + -0.03, + -0.5, + -0.56, + -0.48, + -0.26, + -0.04, + 0.19, + 0.38, + 0.54, + 0.68, + 0.68, + 0.5700000000000001, + 0.42, + 0.29, + 0.22, + 0.43, + 0.62, + 0.9, + 0.99, + 0.89, + 0.8200000000000001 + ], + [ + 0.37, + 0.24, + -0.12, + -0.23, + -0.19, + -0.08, + 0.05, + 0.19, + 0.37, + 0.64, + 0.97, + 1.29, + 1.56, + 1.76, + 1.8800000000000001, + 2.09, + 2.59, + 3.17, + 3.63, + 3.8000000000000003, + 3.42, + 3.12, + 3.19, + 3.5700000000000003, + 4.38, + 5.21, + 5.23, + 4.95, + 3.9, + 2.77, + 2.14, + 1.79, + 1.93, + 2.21, + 2.56, + 2.89, + 3.0, + 2.86, + 2.5500000000000003, + 2.19, + 1.86, + 1.59, + 1.3800000000000001, + 1.23, + 1.1500000000000001, + 1.1500000000000001, + 1.16, + 1.06, + 1.01, + 1.1300000000000001, + 1.37, + 1.54, + 1.59, + 1.3800000000000001, + 0.98, + 0.64, + 0.43, + 0.26, + 0.17, + 0.03, + -0.09, + 0.05, + 0.36, + 0.6900000000000001, + 0.9400000000000001, + 1.11, + 1.18, + 1.21, + 1.11, + 1.06, + 0.79, + 0.51, + 0.19, + -0.03, + 0.19, + 0.5700000000000001, + 0.81, + 0.92, + 0.55, + 0.01, + -0.28, + -0.34, + -0.2, + 0.15, + 0.64, + 1.24, + 1.71, + 1.53, + 1.19, + 0.97, + 0.9500000000000001, + 1.25, + 1.45, + 1.41, + 1.25, + 0.81, + 0.29, + 0.09, + -0.02, + 0.03, + 0.08, + 0.02, + -0.03, + -0.03, + 0.0, + 0.01, + 0.04, + 0.09, + 0.16, + 0.26, + 0.46, + 0.81, + 0.9, + 1.04, + 0.8300000000000001, + 0.67, + 0.51, + 0.4, + 0.16, + -0.13, + -0.32, + -0.36, + -0.33, + -0.27, + -0.15, + 0.08, + 0.31, + 0.4, + 0.36, + 0.38, + 0.58, + 0.77, + 0.85, + 0.53, + 0.22, + -0.08, + -0.32, + -0.54, + -0.67, + -0.24, + 0.42, + 1.11, + 1.55, + 1.1300000000000001, + 0.62, + 0.16, + -0.21, + -0.4, + -0.42, + -0.24, + -0.03, + 0.07, + 0.03, + -0.06, + -0.18, + -0.28, + -0.25, + -0.31, + -0.38, + -0.56, + -0.52, + -0.5700000000000001, + -0.46, + -0.58, + -0.67, + -0.86, + -0.65, + -0.39, + -0.1, + -0.03, + -0.04, + -0.1, + -0.02, + 0.17, + 0.41000000000000003, + 0.68, + 0.92, + 1.19, + 1.36, + 1.41, + 1.4000000000000001, + 1.42, + 1.47, + 1.28, + 1.11, + 0.6900000000000001, + 0.46, + 0.21, + 0.08, + -0.14, + -0.31, + -0.4, + -0.48, + -0.33, + -0.13, + 0.06, + 0.11, + 0.08, + 0.0, + -0.24, + -0.59, + -0.98, + -1.32, + -1.48, + -1.53, + -1.5, + -1.33, + -1.08, + -0.91, + -0.75, + -0.67, + -0.56, + -0.34, + -0.18, + -0.06, + -0.17, + -0.22, + -0.3, + -0.44, + -0.54, + -0.73, + -0.84, + -0.9, + -1.0, + -1.01, + -1.08, + -1.09, + -0.9400000000000001, + -0.76, + -0.58, + -0.39, + -0.35000000000000003, + -0.35000000000000003, + -0.56, + -0.89, + -1.1, + -1.33, + -1.44, + -1.46, + -1.19, + -0.8, + -0.42, + -0.16, + -0.04, + 0.06, + 0.19, + 0.26, + 0.37, + 0.25, + 0.13, + 0.05, + -0.15, + -0.3, + -0.47000000000000003, + -0.42, + -0.34, + -0.13, + 0.03, + -0.06, + -0.22, + -0.32, + -0.21, + 0.04, + 0.25, + 0.25, + 0.12, + 0.1, + 0.2, + 0.3, + 0.35000000000000003, + 0.31, + 0.31, + 0.33, + 0.4, + 0.48, + 0.45, + 0.37, + 0.1, + -0.17, + -0.32, + -0.41000000000000003, + -0.32, + -0.26, + -0.18, + -0.21, + -0.23, + -0.18, + 0.03, + 0.43, + 0.7000000000000001, + 0.76, + 0.67, + 0.45, + 0.37, + 0.32, + 0.4, + 0.45, + 0.54, + 0.49, + 0.46, + 0.43, + 0.45, + 0.36, + 0.32, + 0.28, + 0.29, + 0.2, + -0.05, + -0.33, + -0.8, + -1.22, + -1.6300000000000001, + -1.94, + -1.94, + -1.7, + -0.88, + -0.12, + 0.33, + 0.48, + 0.21, + -0.01, + 0.24, + 0.71, + 0.97, + 1.07, + 0.5700000000000001, + 0.01, + -0.31, + -0.49, + -0.31, + -0.04, + 0.19, + 0.36, + 0.5700000000000001, + 0.79, + 0.91, + 0.89, + 0.77, + 0.55, + 0.34, + 0.28, + 0.25, + 0.55, + 0.7000000000000001, + 0.84, + 0.8200000000000001, + 0.81 + ], + [ + 0.39, + 0.35000000000000003, + 0.0, + -0.2, + -0.13, + -0.01, + 0.13, + 0.29, + 0.47000000000000003, + 0.6900000000000001, + 0.98, + 1.25, + 1.5, + 1.69, + 1.87, + 2.24, + 2.73, + 3.35, + 3.83, + 3.64, + 3.27, + 2.82, + 2.65, + 3.16, + 4.0, + 4.87, + 5.5, + 4.94, + 4.04, + 2.97, + 2.16, + 1.9100000000000001, + 1.9000000000000001, + 2.13, + 2.41, + 2.68, + 2.83, + 2.77, + 2.57, + 2.29, + 1.98, + 1.69, + 1.45, + 1.23, + 1.11, + 1.07, + 1.05, + 1.03, + 1.01, + 1.12, + 1.3, + 1.47, + 1.36, + 1.03, + 0.68, + 0.38, + 0.27, + 0.34, + 0.25, + -0.01, + -0.19, + -0.2, + 0.03, + 0.42, + 0.8200000000000001, + 1.1500000000000001, + 1.44, + 1.33, + 1.26, + 1.0, + 0.77, + 0.42, + 0.12, + 0.04, + 0.14, + 0.53, + 0.9500000000000001, + 1.03, + 0.88, + 0.44, + 0.08, + -0.02, + 0.03, + 0.29, + 0.8200000000000001, + 1.41, + 1.72, + 1.69, + 1.1300000000000001, + 0.68, + 0.64, + 0.68, + 0.97, + 1.1, + 1.09, + 0.89, + 0.44, + -0.03, + -0.12, + -0.14, + -0.08, + -0.01, + -0.02, + -0.04, + -0.03, + -0.05, + -0.04, + 0.04, + 0.09, + 0.1, + 0.19, + 0.35000000000000003, + 0.47000000000000003, + 0.5700000000000001, + 0.55, + 0.59, + 0.5700000000000001, + 0.43, + 0.14, + -0.11, + -0.3, + -0.29, + -0.12, + -0.04, + 0.06, + 0.26, + 0.45, + 0.54, + 0.5700000000000001, + 0.6, + 0.66, + 0.78, + 0.6, + 0.34, + 0.0, + -0.29, + -0.5700000000000001, + -0.85, + -0.81, + -0.54, + 0.26, + 1.12, + 1.37, + 1.25, + 0.72, + 0.22, + -0.15, + -0.39, + -0.39, + -0.22, + -0.02, + 0.09, + 0.08, + 0.01, + -0.1, + -0.18, + -0.22, + -0.2, + -0.23, + -0.28, + -0.25, + -0.22, + -0.21, + -0.25, + -0.44, + -0.4, + -0.38, + -0.01, + 0.2, + 0.3, + 0.19, + 0.1, + -0.02, + 0.01, + 0.04, + 0.2, + 0.51, + 0.8, + 1.07, + 1.22, + 1.28, + 1.37, + 1.44, + 1.48, + 1.1400000000000001, + 0.88, + 0.56, + 0.47000000000000003, + 0.33, + 0.34, + 0.15, + -0.01, + -0.11, + -0.17, + -0.07, + -0.06, + -0.05, + -0.06, + -0.08, + -0.13, + -0.33, + -0.72, + -1.05, + -1.33, + -1.48, + -1.44, + -1.33, + -1.02, + -0.6900000000000001, + -0.47000000000000003, + -0.22, + -0.11, + 0.0, + 0.04, + -0.14, + -0.29, + -0.55, + -0.65, + -0.67, + -0.7000000000000001, + -0.64, + -0.66, + -0.74, + -0.85, + -1.02, + -1.18, + -1.11, + -1.03, + -0.79, + -0.59, + -0.37, + -0.22, + -0.3, + -0.51, + -0.71, + -0.87, + -0.99, + -1.1, + -1.11, + -1.04, + -0.75, + -0.51, + -0.33, + -0.28, + -0.22, + -0.12, + -0.02, + -0.03, + -0.1, + -0.07, + -0.12, + -0.18, + -0.33, + -0.43, + -0.52, + -0.52, + -0.55, + -0.37, + -0.23, + -0.25, + -0.17, + -0.01, + 0.25, + 0.41000000000000003, + 0.39, + 0.31, + 0.28, + 0.36, + 0.46, + 0.52, + 0.51, + 0.52, + 0.52, + 0.5700000000000001, + 0.46, + 0.34, + 0.16, + -0.08, + -0.26, + -0.42, + -0.4, + -0.38, + -0.23, + -0.18, + -0.21, + -0.43, + -0.47000000000000003, + -0.33, + -0.01, + 0.37, + 0.52, + 0.47000000000000003, + 0.34, + 0.18, + 0.14, + 0.19, + 0.31, + 0.52, + 0.67, + 0.68, + 0.76, + 0.72, + 0.75, + 0.66, + 0.74, + 0.66, + 0.6, + 0.36, + 0.03, + -0.39, + -0.91, + -1.34, + -1.61, + -1.71, + -1.35, + -0.8, + -0.27, + 0.08, + 0.01, + -0.25, + -0.22, + -0.05, + 0.52, + 0.96, + 0.9, + 0.6, + 0.17, + -0.12, + -0.16, + 0.02, + 0.28, + 0.53, + 0.73, + 0.9500000000000001, + 1.1400000000000001, + 1.2, + 1.17, + 0.96, + 0.77, + 0.62, + 0.5, + 0.58, + 0.68, + 0.81, + 0.84, + 0.76, + 0.7000000000000001 + ], + [ + 0.42, + 0.3, + -0.02, + -0.13, + -0.08, + 0.05, + 0.21, + 0.36, + 0.53, + 0.74, + 0.9500000000000001, + 1.19, + 1.42, + 1.6400000000000001, + 2.02, + 2.42, + 3.0, + 3.62, + 3.7800000000000002, + 3.66, + 3.02, + 2.41, + 2.25, + 2.48, + 3.54, + 4.67, + 5.09, + 4.94, + 3.93, + 2.92, + 2.27, + 2.09, + 2.08, + 2.13, + 2.33, + 2.49, + 2.63, + 2.68, + 2.57, + 2.35, + 2.09, + 1.8, + 1.54, + 1.25, + 1.03, + 0.96, + 0.91, + 0.89, + 0.91, + 0.99, + 1.16, + 1.2, + 1.08, + 0.78, + 0.45, + 0.27, + 0.33, + 0.38, + 0.26, + -0.02, + -0.38, + -0.49, + -0.36, + -0.05, + 0.51, + 0.99, + 1.25, + 1.35, + 1.07, + 0.78, + 0.5, + 0.23, + 0.09, + 0.07, + 0.23, + 0.51, + 0.88, + 1.11, + 0.98, + 0.75, + 0.47000000000000003, + 0.35000000000000003, + 0.37, + 0.49, + 0.89, + 1.47, + 1.85, + 1.6400000000000001, + 1.17, + 0.71, + 0.41000000000000003, + 0.52, + 0.6, + 0.98, + 1.22, + 1.09, + 0.7000000000000001, + 0.21, + -0.24, + -0.24, + -0.19, + -0.11, + -0.02, + 0.01, + 0.01, + 0.0, + 0.05, + 0.11, + 0.12, + 0.05, + -0.05, + -0.11, + 0.04, + 0.09, + 0.38, + 0.59, + 0.66, + 0.58, + 0.29, + -0.12, + -0.26, + -0.28, + -0.15, + 0.07, + 0.21, + 0.4, + 0.58, + 0.66, + 0.68, + 0.65, + 0.68, + 0.53, + 0.33, + 0.05, + -0.26, + -0.52, + -0.79, + -1.0, + -1.05, + -0.62, + 0.11, + 0.86, + 1.35, + 1.1300000000000001, + 0.72, + 0.23, + -0.18, + -0.38, + -0.37, + -0.21, + 0.0, + 0.11, + 0.12, + 0.1, + 0.04, + 0.01, + -0.05, + -0.05, + -0.05, + -0.02, + 0.09, + 0.25, + 0.28, + 0.28, + 0.28, + 0.34, + 0.52, + 0.76, + 0.96, + 0.96, + 0.84, + 0.5700000000000001, + 0.36, + 0.0, + -0.12, + -0.1, + 0.1, + 0.48, + 0.78, + 0.9400000000000001, + 1.06, + 1.17, + 1.3, + 1.19, + 0.97, + 0.61, + 0.36, + 0.3, + 0.42, + 0.41000000000000003, + 0.49, + 0.32, + 0.19, + 0.09, + -0.05, + -0.11, + -0.26, + -0.29, + -0.18, + -0.15, + -0.27, + -0.54, + -0.93, + -1.23, + -1.36, + -1.43, + -1.23, + -0.98, + -0.59, + -0.17, + 0.07, + 0.34, + 0.34, + 0.27, + 0.05, + -0.3, + -0.56, + -0.81, + -0.85, + -0.76, + -0.67, + -0.52, + -0.53, + -0.6900000000000001, + -0.9, + -1.01, + -1.06, + -0.9400000000000001, + -0.81, + -0.54, + -0.31, + -0.18, + -0.18, + -0.35000000000000003, + -0.42, + -0.51, + -0.46, + -0.59, + -0.73, + -0.6900000000000001, + -0.64, + -0.48, + -0.48, + -0.49, + -0.54, + -0.52, + -0.44, + -0.45, + -0.28, + -0.22, + -0.1, + -0.1, + -0.22, + -0.33, + -0.54, + -0.73, + -0.76, + -0.71, + -0.47000000000000003, + -0.18, + -0.05, + 0.18, + 0.37, + 0.45, + 0.44, + 0.41000000000000003, + 0.42, + 0.54, + 0.67, + 0.63, + 0.65, + 0.6, + 0.67, + 0.54, + 0.43, + 0.18, + -0.06, + -0.19, + -0.28, + -0.31, + -0.24, + -0.12, + 0.08, + 0.13, + 0.04, + -0.21, + -0.63, + -0.59, + -0.37, + -0.05, + 0.17, + 0.16, + 0.04, + -0.15, + -0.16, + -0.14, + 0.13, + 0.44, + 0.63, + 0.8300000000000001, + 0.8300000000000001, + 0.84, + 0.78, + 0.75, + 0.73, + 0.77, + 0.68, + 0.71, + 0.44, + 0.18, + -0.27, + -0.6900000000000001, + -0.96, + -1.01, + -0.76, + -0.5, + -0.11, + -0.15, + -0.29, + -0.39, + -0.42, + -0.04, + 0.46, + 0.81, + 0.8300000000000001, + 0.5700000000000001, + 0.33, + 0.15, + 0.19, + 0.35000000000000003, + 0.59, + 0.84, + 1.12, + 1.33, + 1.4000000000000001, + 1.42, + 1.23, + 1.06, + 0.99, + 0.9400000000000001, + 0.96, + 1.06, + 1.04, + 1.06, + 0.86, + 0.63, + 0.55 + ], + [ + 0.44, + 0.38, + 0.06, + -0.11, + -0.04, + 0.09, + 0.25, + 0.42, + 0.58, + 0.75, + 0.9500000000000001, + 1.1400000000000001, + 1.3800000000000001, + 1.75, + 2.15, + 2.69, + 3.2800000000000002, + 3.72, + 3.94, + 3.52, + 2.87, + 2.16, + 1.71, + 2.11, + 3.0100000000000002, + 4.14, + 4.86, + 4.49, + 3.61, + 2.72, + 2.3000000000000003, + 2.15, + 2.22, + 2.22, + 2.14, + 2.25, + 2.4, + 2.48, + 2.5100000000000002, + 2.38, + 2.13, + 1.8800000000000001, + 1.6, + 1.31, + 1.04, + 0.86, + 0.78, + 0.7000000000000001, + 0.71, + 0.75, + 0.85, + 0.86, + 0.77, + 0.6, + 0.37, + 0.36, + 0.43, + 0.49, + 0.35000000000000003, + -0.09, + -0.48, + -0.76, + -0.76, + -0.42, + 0.05, + 0.6, + 0.96, + 0.97, + 0.75, + 0.44, + 0.13, + 0.05, + 0.08, + 0.12, + 0.27, + 0.54, + 0.8200000000000001, + 1.01, + 1.01, + 0.8300000000000001, + 0.78, + 0.7000000000000001, + 0.71, + 0.81, + 1.09, + 1.59, + 1.81, + 1.71, + 1.33, + 0.9, + 0.68, + 0.62, + 0.8200000000000001, + 1.09, + 1.47, + 1.6300000000000001, + 1.12, + 0.39, + -0.04, + -0.33, + -0.27, + -0.18, + -0.07, + 0.12, + 0.16, + 0.2, + 0.26, + 0.39, + 0.42, + 0.2, + -0.01, + -0.2, + -0.26, + 0.0, + 0.33, + 0.67, + 0.9400000000000001, + 0.84, + 0.58, + 0.18, + -0.23, + -0.28, + -0.33, + -0.09, + 0.27, + 0.48, + 0.66, + 0.72, + 0.64, + 0.62, + 0.48, + 0.32, + 0.05, + -0.27, + -0.49, + -0.73, + -0.96, + -1.19, + -1.12, + -0.8200000000000001, + -0.05, + 0.7000000000000001, + 1.05, + 1.0, + 0.5700000000000001, + 0.13, + -0.23, + -0.4, + -0.37, + -0.2, + -0.02, + 0.02, + 0.06, + 0.09, + 0.1, + 0.11, + 0.11, + 0.03, + 0.0, + 0.15, + 0.33, + 0.6, + 0.8200000000000001, + 0.9500000000000001, + 1.19, + 1.35, + 1.67, + 1.82, + 1.9000000000000001, + 1.84, + 1.6400000000000001, + 1.33, + 0.8, + 0.38, + -0.11, + -0.24, + -0.13, + 0.16, + 0.41000000000000003, + 0.6, + 0.73, + 0.87, + 0.88, + 0.79, + 0.5, + 0.13, + -0.01, + -0.03, + 0.13, + 0.34, + 0.42, + 0.54, + 0.41000000000000003, + 0.24, + 0.06, + -0.24, + -0.42, + -0.47000000000000003, + -0.4, + -0.24, + -0.29, + -0.51, + -0.86, + -1.07, + -1.21, + -1.2, + -1.07, + -0.84, + -0.52, + -0.13, + 0.27, + 0.43, + 0.56, + 0.43, + 0.28, + -0.08, + -0.48, + -0.72, + -0.87, + -0.81, + -0.61, + -0.45, + -0.35000000000000003, + -0.43, + -0.59, + -0.71, + -0.78, + -0.75, + -0.63, + -0.43, + -0.21, + -0.07, + -0.12, + -0.2, + -0.27, + -0.14, + -0.16, + -0.15, + -0.3, + -0.4, + -0.38, + -0.4, + -0.43, + -0.58, + -0.7000000000000001, + -0.75, + -0.75, + -0.53, + -0.38, + -0.11, + 0.04, + 0.02, + -0.09, + -0.34, + -0.62, + -0.88, + -1.05, + -0.89, + -0.58, + -0.26, + 0.02, + 0.2, + 0.32, + 0.38, + 0.36, + 0.34, + 0.45, + 0.59, + 0.63, + 0.65, + 0.51, + 0.49, + 0.47000000000000003, + 0.43, + 0.23, + -0.02, + -0.16, + -0.25, + -0.24, + -0.12, + -0.02, + 0.25, + 0.4, + 0.6, + 0.43, + 0.04, + -0.36, + -0.68, + -0.53, + -0.26, + -0.07, + -0.01, + -0.16, + -0.33, + -0.45, + -0.34, + -0.12, + 0.19, + 0.48, + 0.66, + 0.76, + 0.75, + 0.64, + 0.58, + 0.45, + 0.48, + 0.54, + 0.56, + 0.7000000000000001, + 0.47000000000000003, + 0.2, + -0.14, + -0.33, + -0.33, + -0.31, + -0.06, + -0.15, + -0.22, + -0.37, + -0.44, + -0.32, + 0.08, + 0.51, + 0.8300000000000001, + 0.78, + 0.5700000000000001, + 0.42, + 0.41000000000000003, + 0.45, + 0.56, + 0.78, + 1.06, + 1.32, + 1.51, + 1.57, + 1.32, + 1.1300000000000001, + 1.03, + 1.01, + 1.17, + 1.33, + 1.37, + 1.42, + 1.1400000000000001, + 0.8200000000000001, + 0.52, + 0.28 + ], + [ + 0.47000000000000003, + 0.37, + 0.08, + -0.05, + -0.01, + 0.12, + 0.28, + 0.45, + 0.61, + 0.77, + 0.93, + 1.1300000000000001, + 1.45, + 1.83, + 2.37, + 2.92, + 3.44, + 3.9, + 3.91, + 3.5300000000000002, + 2.74, + 1.94, + 1.46, + 1.58, + 2.59, + 3.77, + 4.3, + 4.0600000000000005, + 3.19, + 2.39, + 2.06, + 2.14, + 2.17, + 2.07, + 1.97, + 1.93, + 2.06, + 2.25, + 2.32, + 2.2600000000000002, + 2.08, + 1.9000000000000001, + 1.67, + 1.3900000000000001, + 1.11, + 0.88, + 0.71, + 0.58, + 0.48, + 0.5, + 0.5, + 0.56, + 0.58, + 0.48, + 0.47000000000000003, + 0.48, + 0.62, + 0.65, + 0.41000000000000003, + -0.02, + -0.51, + -0.85, + -0.9400000000000001, + -0.74, + -0.27, + 0.22, + 0.55, + 0.6, + 0.4, + 0.09, + -0.07, + -0.08, + 0.03, + 0.17, + 0.32, + 0.53, + 0.77, + 0.91, + 0.91, + 0.88, + 0.85, + 1.0, + 1.04, + 1.11, + 1.3900000000000001, + 1.62, + 1.85, + 1.78, + 1.53, + 1.26, + 1.12, + 1.08, + 1.23, + 1.53, + 1.94, + 2.0100000000000002, + 1.61, + 0.79, + 0.07, + -0.2, + -0.34, + -0.24, + -0.05, + 0.14, + 0.35000000000000003, + 0.43, + 0.52, + 0.68, + 0.74, + 0.61, + 0.21, + -0.1, + -0.19, + -0.03, + 0.36, + 0.78, + 1.06, + 1.2, + 0.92, + 0.5700000000000001, + 0.1, + -0.36, + -0.37, + -0.3, + 0.08, + 0.49, + 0.65, + 0.5700000000000001, + 0.49, + 0.4, + 0.3, + 0.16, + -0.1, + -0.43, + -0.72, + -0.87, + -1.08, + -1.17, + -1.17, + -0.74, + -0.13, + 0.51, + 0.78, + 0.67, + 0.34, + -0.05, + -0.31, + -0.44, + -0.39, + -0.24, + -0.2, + -0.15, + -0.14, + -0.12, + 0.03, + 0.09, + 0.12, + 0.09, + 0.14, + 0.27, + 0.59, + 0.93, + 1.25, + 1.6300000000000001, + 1.94, + 2.39, + 2.6, + 2.74, + 2.73, + 2.61, + 2.36, + 1.99, + 1.45, + 0.75, + 0.21, + -0.21, + -0.24, + -0.17, + 0.02, + 0.17, + 0.3, + 0.4, + 0.41000000000000003, + 0.29, + 0.01, + -0.23, + -0.4, + -0.33, + -0.2, + 0.05, + 0.32, + 0.45, + 0.59, + 0.41000000000000003, + 0.09, + -0.22, + -0.51, + -0.6, + -0.46, + -0.32, + -0.29, + -0.48, + -0.74, + -0.9400000000000001, + -0.98, + -0.92, + -0.87, + -0.73, + -0.5, + -0.22, + 0.1, + 0.3, + 0.38, + 0.45, + 0.28, + 0.12, + -0.26, + -0.55, + -0.7000000000000001, + -0.76, + -0.61, + -0.37, + -0.23, + -0.18, + -0.26, + -0.38, + -0.44, + -0.47000000000000003, + -0.4, + -0.26, + -0.08, + -0.06, + -0.17, + -0.26, + -0.31, + -0.21, + -0.05, + -0.06, + -0.01, + -0.11, + -0.16, + -0.19, + -0.29, + -0.44, + -0.65, + -0.75, + -0.64, + -0.46, + -0.16, + 0.13, + 0.2, + 0.19, + -0.09, + -0.44, + -0.77, + -1.12, + -1.16, + -1.0, + -0.61, + -0.24, + 0.02, + 0.1, + 0.21, + 0.22, + 0.2, + 0.18, + 0.27, + 0.38, + 0.45, + 0.32, + 0.18, + 0.14, + 0.11, + 0.13, + -0.01, + -0.15, + -0.24, + -0.27, + -0.2, + -0.1, + 0.1, + 0.33, + 0.58, + 0.68, + 0.62, + 0.23, + -0.16, + -0.45, + -0.46, + -0.25, + -0.02, + 0.04, + -0.11, + -0.3, + -0.51, + -0.52, + -0.37, + -0.16, + 0.18, + 0.42, + 0.63, + 0.72, + 0.62, + 0.4, + 0.29, + 0.12, + 0.19, + 0.25, + 0.36, + 0.37, + 0.14, + 0.03, + -0.1, + -0.09, + -0.02, + -0.12, + -0.21, + -0.36, + -0.5, + -0.48, + -0.29, + 0.15, + 0.67, + 0.86, + 0.79, + 0.61, + 0.51, + 0.53, + 0.61, + 0.71, + 0.86, + 1.1, + 1.33, + 1.49, + 1.36, + 1.1400000000000001, + 0.86, + 0.75, + 0.9500000000000001, + 1.17, + 1.4000000000000001, + 1.55, + 1.41, + 1.1300000000000001, + 0.74, + 0.35000000000000003, + 0.21 + ], + [ + 0.5, + 0.42, + 0.14, + -0.01, + 0.03, + 0.13, + 0.29, + 0.45, + 0.61, + 0.77, + 0.9400000000000001, + 1.17, + 1.5, + 1.99, + 2.54, + 3.08, + 3.62, + 3.98, + 4.0200000000000005, + 3.47, + 2.67, + 1.76, + 1.1500000000000001, + 1.31, + 2.17, + 3.2600000000000002, + 3.89, + 3.5500000000000003, + 2.75, + 2.04, + 1.82, + 1.9100000000000001, + 2.02, + 1.9000000000000001, + 1.6400000000000001, + 1.59, + 1.72, + 1.9000000000000001, + 2.04, + 2.0300000000000002, + 1.98, + 1.86, + 1.72, + 1.49, + 1.24, + 1.0, + 0.75, + 0.52, + 0.39, + 0.31, + 0.33, + 0.38, + 0.45, + 0.54, + 0.54, + 0.62, + 0.74, + 0.75, + 0.51, + 0.09, + -0.39, + -0.79, + -0.96, + -0.8, + -0.43, + -0.02, + 0.24, + 0.34, + 0.19, + -0.04, + -0.19, + -0.13, + 0.05, + 0.19, + 0.33, + 0.5, + 0.66, + 0.76, + 0.79, + 0.75, + 0.85, + 1.01, + 1.16, + 1.28, + 1.37, + 1.61, + 1.75, + 1.73, + 1.62, + 1.47, + 1.46, + 1.56, + 1.68, + 1.95, + 2.32, + 2.48, + 1.94, + 1.02, + 0.28, + -0.12, + -0.26, + -0.3, + -0.12, + 0.12, + 0.33, + 0.45, + 0.56, + 0.81, + 0.9400000000000001, + 0.91, + 0.59, + 0.12, + -0.09, + 0.01, + 0.31, + 0.7000000000000001, + 1.05, + 1.24, + 1.25, + 0.87, + 0.44, + -0.05, + -0.42, + -0.3, + 0.0, + 0.38, + 0.42, + 0.33, + 0.12, + 0.03, + 0.18, + 0.11, + -0.1, + -0.43, + -0.73, + -0.93, + -0.9400000000000001, + -0.9400000000000001, + -0.81, + -0.4, + 0.08, + 0.43, + 0.56, + 0.3, + 0.05, + -0.16, + -0.36, + -0.41000000000000003, + -0.35000000000000003, + -0.35000000000000003, + -0.32, + -0.28, + -0.29, + -0.17, + -0.06, + 0.05, + 0.09, + 0.18, + 0.31, + 0.51, + 0.87, + 1.21, + 1.59, + 2.0100000000000002, + 2.52, + 2.92, + 3.2600000000000002, + 3.3200000000000003, + 3.2800000000000002, + 3.13, + 2.9, + 2.5100000000000002, + 1.99, + 1.29, + 0.52, + 0.04, + -0.35000000000000003, + -0.41000000000000003, + -0.38, + -0.29, + -0.16, + -0.09, + -0.04, + -0.14, + -0.28, + -0.43, + -0.54, + -0.52, + -0.37, + -0.21, + 0.1, + 0.41000000000000003, + 0.54, + 0.5700000000000001, + 0.26, + -0.12, + -0.41000000000000003, + -0.51, + -0.41000000000000003, + -0.27, + -0.23, + -0.4, + -0.64, + -0.78, + -0.8, + -0.74, + -0.6900000000000001, + -0.66, + -0.59, + -0.4, + -0.25, + -0.07, + -0.01, + 0.09, + 0.21, + 0.06, + -0.01, + -0.28, + -0.46, + -0.53, + -0.59, + -0.41000000000000003, + -0.16, + -0.06, + -0.03, + -0.1, + -0.19, + -0.24, + -0.22, + -0.12, + -0.05, + -0.1, + -0.25, + -0.45, + -0.47000000000000003, + -0.47000000000000003, + -0.27, + -0.05, + 0.0, + 0.05, + 0.0, + -0.06, + -0.15, + -0.29, + -0.48, + -0.53, + -0.44, + -0.21, + 0.1, + 0.25, + 0.34, + 0.17, + -0.12, + -0.51, + -0.9, + -1.1, + -1.09, + -0.84, + -0.42, + -0.05, + 0.12, + 0.2, + 0.12, + 0.13, + 0.02, + -0.01, + -0.04, + 0.05, + 0.08, + -0.04, + -0.15, + -0.23, + -0.16, + -0.16, + -0.18, + -0.23, + -0.29, + -0.3, + -0.29, + -0.25, + -0.04, + 0.2, + 0.44, + 0.48, + 0.43, + 0.35000000000000003, + 0.0, + -0.15, + -0.17, + -0.04, + 0.15, + 0.15, + 0.04, + -0.25, + -0.47000000000000003, + -0.61, + -0.5700000000000001, + -0.36, + -0.1, + 0.31, + 0.6900000000000001, + 0.8200000000000001, + 0.81, + 0.58, + 0.3, + 0.14, + -0.07, + -0.03, + -0.14, + -0.13, + -0.14, + -0.23, + -0.14, + -0.11, + -0.15, + -0.26, + -0.39, + -0.56, + -0.64, + -0.65, + -0.35000000000000003, + 0.13, + 0.65, + 0.9, + 0.81, + 0.66, + 0.59, + 0.63, + 0.7000000000000001, + 0.76, + 0.88, + 0.97, + 1.16, + 1.1500000000000001, + 1.02, + 0.76, + 0.48, + 0.53, + 0.73, + 1.04, + 1.3, + 1.3900000000000001, + 1.29, + 1.0, + 0.65, + 0.41000000000000003, + 0.33 + ], + [ + 0.54, + 0.46, + 0.2, + 0.04, + 0.05, + 0.14, + 0.26, + 0.42, + 0.6, + 0.76, + 0.97, + 1.21, + 1.6, + 2.09, + 2.66, + 3.21, + 3.7600000000000002, + 4.13, + 4.04, + 3.5, + 2.57, + 1.6, + 0.96, + 0.99, + 1.78, + 2.77, + 3.3000000000000003, + 3.06, + 2.2800000000000002, + 1.7, + 1.52, + 1.71, + 1.8, + 1.6300000000000001, + 1.3800000000000001, + 1.24, + 1.35, + 1.53, + 1.67, + 1.8, + 1.8, + 1.82, + 1.74, + 1.6300000000000001, + 1.44, + 1.18, + 0.9, + 0.62, + 0.41000000000000003, + 0.32, + 0.3, + 0.37, + 0.47000000000000003, + 0.56, + 0.61, + 0.68, + 0.78, + 0.78, + 0.63, + 0.23, + -0.15, + -0.53, + -0.74, + -0.64, + -0.36, + -0.03, + 0.19, + 0.26, + 0.17, + -0.02, + -0.18, + -0.15, + 0.03, + 0.21, + 0.31, + 0.37, + 0.48, + 0.45, + 0.46, + 0.41000000000000003, + 0.51, + 0.71, + 0.88, + 1.05, + 1.18, + 1.37, + 1.52, + 1.56, + 1.48, + 1.48, + 1.57, + 1.79, + 2.0300000000000002, + 2.27, + 2.63, + 2.67, + 2.09, + 1.1300000000000001, + 0.32, + -0.08, + -0.25, + -0.29, + -0.22, + 0.01, + 0.1, + 0.22, + 0.43, + 0.68, + 1.07, + 1.1300000000000001, + 0.86, + 0.42, + 0.05, + 0.03, + 0.2, + 0.47000000000000003, + 0.8200000000000001, + 1.06, + 1.17, + 1.07, + 0.64, + 0.22, + -0.14, + -0.2, + 0.09, + 0.24, + 0.27, + -0.14, + -0.37, + -0.3, + -0.15, + 0.14, + 0.04, + -0.26, + -0.55, + -0.67, + -0.63, + -0.49, + -0.2, + 0.09, + 0.43, + 0.55, + 0.32, + 0.12, + -0.02, + -0.15, + -0.15, + -0.17, + -0.17, + -0.17, + -0.18, + -0.16, + -0.04, + 0.07, + 0.02, + 0.06, + 0.06, + 0.14, + 0.39, + 0.71, + 1.01, + 1.36, + 1.7, + 2.1, + 2.62, + 3.13, + 3.44, + 3.59, + 3.5300000000000002, + 3.46, + 3.21, + 2.95, + 2.43, + 1.79, + 1.03, + 0.29, + -0.16, + -0.54, + -0.64, + -0.6, + -0.54, + -0.43, + -0.39, + -0.35000000000000003, + -0.37, + -0.47000000000000003, + -0.49, + -0.48, + -0.38, + -0.23, + -0.06, + 0.27, + 0.55, + 0.5700000000000001, + 0.45, + 0.08, + -0.21, + -0.32, + -0.28, + -0.15, + -0.15, + -0.3, + -0.51, + -0.64, + -0.61, + -0.54, + -0.55, + -0.6, + -0.61, + -0.59, + -0.5, + -0.48, + -0.39, + -0.27, + -0.11, + 0.07, + 0.01, + 0.07, + -0.1, + -0.34, + -0.42, + -0.39, + -0.18, + 0.07, + 0.14, + 0.1, + 0.01, + -0.1, + -0.13, + -0.08, + -0.07, + -0.12, + -0.25, + -0.43, + -0.53, + -0.5, + -0.39, + -0.15, + -0.01, + 0.03, + -0.03, + -0.08, + -0.13, + -0.26, + -0.32, + -0.36, + -0.25, + -0.03, + 0.09, + 0.18, + 0.18, + -0.01, + -0.21, + -0.51, + -0.77, + -0.84, + -0.77, + -0.46, + -0.06, + 0.32, + 0.46, + 0.46, + 0.38, + 0.14, + 0.03, + -0.18, + -0.22, + -0.21, + -0.19, + -0.22, + -0.3, + -0.32, + -0.26, + -0.28, + -0.29, + -0.34, + -0.36, + -0.42, + -0.48, + -0.41000000000000003, + -0.23, + 0.05, + 0.27, + 0.34, + 0.36, + 0.31, + 0.37, + 0.22, + 0.22, + 0.34, + 0.24, + 0.21, + -0.01, + -0.29, + -0.54, + -0.68, + -0.65, + -0.46, + -0.14, + 0.33, + 0.76, + 1.08, + 1.08, + 0.9500000000000001, + 0.64, + 0.37, + 0.1, + -0.3, + -0.41000000000000003, + -0.5700000000000001, + -0.58, + -0.4, + -0.3, + -0.21, + -0.25, + -0.35000000000000003, + -0.49, + -0.6, + -0.68, + -0.66, + -0.42, + 0.11, + 0.61, + 0.86, + 0.8, + 0.68, + 0.67, + 0.6900000000000001, + 0.71, + 0.74, + 0.73, + 0.81, + 0.78, + 0.77, + 0.6, + 0.33, + 0.25, + 0.29, + 0.55, + 0.85, + 1.04, + 1.1, + 1.04, + 0.81, + 0.68, + 0.66, + 0.59 + ], + [ + 0.58, + 0.52, + 0.25, + 0.09, + 0.07, + 0.11, + 0.22, + 0.36, + 0.54, + 0.77, + 0.98, + 1.3, + 1.68, + 2.18, + 2.75, + 3.35, + 3.91, + 4.21, + 4.1, + 3.46, + 2.49, + 1.49, + 0.8200000000000001, + 0.74, + 1.36, + 2.22, + 2.58, + 2.39, + 1.8, + 1.27, + 1.25, + 1.44, + 1.58, + 1.42, + 1.1500000000000001, + 1.0, + 0.99, + 1.16, + 1.35, + 1.49, + 1.6600000000000001, + 1.73, + 1.81, + 1.79, + 1.6600000000000001, + 1.45, + 1.1300000000000001, + 0.8300000000000001, + 0.58, + 0.45, + 0.41000000000000003, + 0.46, + 0.55, + 0.58, + 0.61, + 0.61, + 0.71, + 0.77, + 0.62, + 0.45, + 0.09, + -0.15, + -0.33, + -0.3, + -0.04, + 0.18, + 0.37, + 0.39, + 0.28, + 0.06, + -0.16, + -0.16, + -0.04, + 0.14, + 0.21, + 0.22, + 0.11, + 0.08, + -0.02, + -0.07, + -0.1, + 0.1, + 0.36, + 0.54, + 0.8300000000000001, + 1.03, + 1.25, + 1.31, + 1.23, + 1.23, + 1.45, + 1.77, + 2.1, + 2.44, + 2.68, + 2.58, + 2.0, + 1.02, + 0.22, + -0.15, + -0.3, + -0.28, + -0.21, + -0.19, + -0.09, + -0.04, + 0.16, + 0.56, + 0.97, + 1.24, + 1.06, + 0.6, + 0.22, + 0.02, + 0.07, + 0.21, + 0.43, + 0.72, + 0.89, + 0.88, + 0.6900000000000001, + 0.32, + 0.13, + 0.06, + 0.18, + 0.32, + -0.02, + -0.43, + -0.79, + -0.74, + -0.35000000000000003, + -0.03, + 0.17, + -0.03, + -0.24, + -0.3, + -0.26, + -0.06, + 0.25, + 0.59, + 0.75, + 0.6, + 0.36, + 0.2, + 0.11, + 0.21, + 0.23, + 0.35000000000000003, + 0.35000000000000003, + 0.37, + 0.37, + 0.42, + 0.54, + 0.46, + 0.38, + 0.07, + -0.06, + 0.0, + 0.21, + 0.59, + 0.91, + 1.24, + 1.54, + 1.92, + 2.38, + 2.91, + 3.27, + 3.44, + 3.47, + 3.39, + 3.29, + 3.02, + 2.8000000000000003, + 2.18, + 1.62, + 0.89, + 0.23, + -0.21, + -0.58, + -0.64, + -0.65, + -0.58, + -0.51, + -0.43, + -0.4, + -0.4, + -0.39, + -0.27, + -0.22, + -0.13, + -0.01, + 0.14, + 0.44, + 0.62, + 0.5, + 0.32, + 0.03, + -0.14, + -0.11, + -0.08, + -0.09, + -0.2, + -0.38, + -0.43, + -0.36, + -0.3, + -0.31, + -0.44, + -0.5700000000000001, + -0.62, + -0.66, + -0.66, + -0.62, + -0.48, + -0.26, + -0.05, + 0.21, + 0.26, + 0.22, + -0.02, + -0.27, + -0.26, + -0.1, + 0.15, + 0.3, + 0.29, + 0.13, + -0.02, + -0.11, + -0.12, + -0.07, + -0.08, + -0.12, + -0.11, + -0.23, + -0.21, + -0.13, + -0.05, + 0.07, + -0.04, + -0.1, + -0.22, + -0.27, + -0.28, + -0.33, + -0.23, + -0.1, + -0.06, + -0.02, + -0.04, + -0.14, + -0.15, + -0.27, + -0.38, + -0.44, + -0.48, + -0.34, + -0.07, + 0.27, + 0.63, + 0.88, + 0.86, + 0.71, + 0.46, + 0.05, + -0.16, + -0.31, + -0.31, + -0.3, + -0.31, + -0.29, + -0.25, + -0.32, + -0.38, + -0.46, + -0.53, + -0.53, + -0.58, + -0.59, + -0.46, + -0.24, + 0.12, + 0.33, + 0.45, + 0.47000000000000003, + 0.59, + 0.64, + 0.71, + 0.72, + 0.61, + 0.49, + 0.06, + -0.24, + -0.51, + -0.76, + -0.81, + -0.74, + -0.52, + -0.18, + 0.28, + 0.74, + 1.1300000000000001, + 1.31, + 1.22, + 1.07, + 0.71, + 0.14, + -0.31, + -0.77, + -0.92, + -0.8300000000000001, + -0.65, + -0.38, + -0.28, + -0.27, + -0.36, + -0.42, + -0.47000000000000003, + -0.52, + -0.47000000000000003, + -0.28, + 0.2, + 0.64, + 0.8, + 0.77, + 0.71, + 0.6900000000000001, + 0.66, + 0.65, + 0.56, + 0.55, + 0.53, + 0.51, + 0.44, + 0.27, + 0.18, + 0.11, + 0.23, + 0.49, + 0.64, + 0.76, + 0.77, + 0.68, + 0.68, + 0.73, + 0.87, + 0.99 + ], + [ + 0.6900000000000001, + 0.61, + 0.34, + 0.14, + 0.1, + 0.12, + 0.17, + 0.31, + 0.49, + 0.72, + 1.04, + 1.35, + 1.8, + 2.31, + 2.9, + 3.5100000000000002, + 4.0200000000000005, + 4.3, + 4.08, + 3.37, + 2.42, + 1.46, + 0.75, + 0.6900000000000001, + 1.03, + 1.52, + 1.85, + 1.56, + 1.09, + 0.8300000000000001, + 0.8300000000000001, + 1.1400000000000001, + 1.3, + 1.23, + 0.96, + 0.78, + 0.77, + 0.85, + 1.04, + 1.28, + 1.47, + 1.69, + 1.83, + 1.96, + 1.93, + 1.73, + 1.43, + 1.08, + 0.81, + 0.64, + 0.61, + 0.62, + 0.64, + 0.64, + 0.55, + 0.54, + 0.5700000000000001, + 0.64, + 0.63, + 0.46, + 0.38, + 0.17, + 0.09, + 0.16, + 0.31, + 0.52, + 0.63, + 0.63, + 0.48, + 0.21, + -0.08, + -0.19, + -0.08, + 0.03, + 0.09, + -0.02, + -0.15, + -0.23, + -0.35000000000000003, + -0.46, + -0.5, + -0.48, + -0.21, + 0.05, + 0.35000000000000003, + 0.73, + 0.97, + 1.02, + 0.9, + 0.8200000000000001, + 0.97, + 1.46, + 1.86, + 2.23, + 2.37, + 2.29, + 1.62, + 0.71, + 0.08, + -0.28, + -0.35000000000000003, + -0.32, + -0.32, + -0.29, + -0.33, + -0.28, + -0.08, + 0.33, + 0.79, + 1.06, + 1.07, + 0.66, + 0.22, + -0.03, + -0.12, + -0.09, + 0.08, + 0.31, + 0.51, + 0.53, + 0.44, + 0.3, + 0.14, + 0.25, + 0.36, + 0.28, + -0.06, + -0.55, + -0.9, + -0.9400000000000001, + -0.52, + -0.18, + 0.02, + 0.13, + 0.02, + -0.03, + 0.02, + 0.2, + 0.48, + 0.85, + 0.96, + 0.79, + 0.52, + 0.38, + 0.47000000000000003, + 0.59, + 0.75, + 0.88, + 1.1400000000000001, + 1.17, + 1.18, + 1.24, + 1.19, + 1.1, + 0.73, + 0.35000000000000003, + -0.07, + -0.14, + -0.01, + 0.28, + 0.64, + 0.93, + 1.23, + 1.55, + 1.98, + 2.39, + 2.79, + 2.95, + 3.0100000000000002, + 2.88, + 2.81, + 2.81, + 2.6, + 2.59, + 2.0300000000000002, + 1.68, + 1.06, + 0.43, + 0.05, + -0.36, + -0.46, + -0.56, + -0.54, + -0.48, + -0.45, + -0.38, + -0.26, + -0.12, + 0.02, + 0.04, + 0.03, + 0.15, + 0.32, + 0.53, + 0.66, + 0.47000000000000003, + 0.27, + 0.1, + -0.02, + 0.0, + -0.04, + -0.15, + -0.22, + -0.2, + -0.08, + 0.03, + -0.02, + -0.19, + -0.39, + -0.54, + -0.62, + -0.65, + -0.63, + -0.48, + -0.25, + 0.07, + 0.34, + 0.49, + 0.44, + 0.23, + -0.02, + -0.14, + 0.02, + 0.23, + 0.39, + 0.37, + 0.18, + 0.01, + -0.1, + -0.12, + -0.09, + 0.0, + 0.12, + 0.2, + 0.29, + 0.27, + 0.33, + 0.35000000000000003, + 0.18, + 0.05, + -0.21, + -0.32, + -0.43, + -0.44, + -0.32, + -0.19, + -0.06, + -0.03, + -0.09, + -0.16, + -0.17, + -0.11, + -0.11, + -0.1, + -0.14, + -0.13, + -0.03, + 0.13, + 0.45, + 0.73, + 1.02, + 1.16, + 1.01, + 0.62, + 0.22, + -0.14, + -0.29, + -0.41000000000000003, + -0.41000000000000003, + -0.38, + -0.34, + -0.32, + -0.43, + -0.5700000000000001, + -0.72, + -0.73, + -0.72, + -0.64, + -0.47000000000000003, + -0.33, + -0.01, + 0.32, + 0.54, + 0.64, + 0.7000000000000001, + 0.81, + 0.9400000000000001, + 1.01, + 1.07, + 0.9500000000000001, + 0.51, + 0.01, + -0.52, + -0.85, + -1.0, + -1.02, + -0.86, + -0.61, + -0.32, + 0.05, + 0.55, + 0.9400000000000001, + 1.25, + 1.36, + 1.21, + 0.73, + 0.13, + -0.5700000000000001, + -1.05, + -1.1400000000000001, + -1.06, + -0.76, + -0.47000000000000003, + -0.31, + -0.3, + -0.35000000000000003, + -0.39, + -0.33, + -0.3, + -0.21, + 0.05, + 0.38, + 0.71, + 0.8200000000000001, + 0.75, + 0.7000000000000001, + 0.68, + 0.64, + 0.52, + 0.41000000000000003, + 0.32, + 0.3, + 0.29, + 0.22, + 0.25, + 0.17, + 0.25, + 0.42, + 0.5, + 0.6, + 0.55, + 0.49, + 0.49, + 0.58, + 0.8, + 1.1, + 1.3 + ], + [ + 0.76, + 0.6900000000000001, + 0.42, + 0.23, + 0.16, + 0.15, + 0.17, + 0.26, + 0.43, + 0.7000000000000001, + 1.02, + 1.46, + 1.9100000000000001, + 2.49, + 3.09, + 3.7, + 4.2, + 4.3100000000000005, + 3.96, + 3.2600000000000002, + 2.29, + 1.48, + 0.9500000000000001, + 0.67, + 0.87, + 1.07, + 0.96, + 0.75, + 0.38, + 0.17, + 0.43, + 0.78, + 0.99, + 0.9500000000000001, + 0.79, + 0.61, + 0.5700000000000001, + 0.66, + 0.8200000000000001, + 1.07, + 1.33, + 1.57, + 1.82, + 1.99, + 2.14, + 2.02, + 1.69, + 1.32, + 1.0, + 0.79, + 0.74, + 0.72, + 0.73, + 0.66, + 0.55, + 0.44, + 0.47000000000000003, + 0.5, + 0.49, + 0.47000000000000003, + 0.4, + 0.45, + 0.41000000000000003, + 0.45, + 0.59, + 0.78, + 0.87, + 0.9, + 0.77, + 0.47000000000000003, + 0.18, + -0.03, + 0.02, + 0.1, + 0.07, + -0.07, + -0.19, + -0.3, + -0.32, + -0.47000000000000003, + -0.56, + -0.54, + -0.48, + -0.19, + 0.08, + 0.49, + 0.84, + 0.89, + 0.6, + 0.42, + 0.47000000000000003, + 0.87, + 1.46, + 1.87, + 2.0100000000000002, + 1.76, + 1.21, + 0.5, + -0.13, + -0.33, + -0.41000000000000003, + -0.44, + -0.43, + -0.54, + -0.58, + -0.53, + -0.33, + -0.01, + 0.45, + 0.77, + 0.73, + 0.52, + 0.11, + -0.22, + -0.38, + -0.38, + -0.23, + -0.03, + 0.11, + 0.14, + 0.03, + -0.02, + 0.06, + 0.2, + 0.35000000000000003, + 0.28, + -0.01, + -0.5, + -0.7000000000000001, + -0.68, + -0.64, + -0.31, + -0.13, + -0.04, + 0.11, + 0.12, + 0.17, + 0.3, + 0.65, + 1.06, + 1.22, + 1.04, + 0.74, + 0.62, + 0.72, + 0.84, + 1.04, + 1.3900000000000001, + 1.68, + 1.9000000000000001, + 1.9100000000000001, + 1.8800000000000001, + 1.8, + 1.6500000000000001, + 1.24, + 0.77, + 0.35000000000000003, + -0.04, + 0.02, + 0.14, + 0.41000000000000003, + 0.67, + 0.92, + 1.18, + 1.48, + 1.87, + 2.12, + 2.3000000000000003, + 2.2, + 2.1, + 1.95, + 2.0, + 2.3000000000000003, + 2.3000000000000003, + 2.57, + 2.25, + 2.0, + 1.43, + 0.8, + 0.36, + -0.15, + -0.39, + -0.54, + -0.5700000000000001, + -0.5, + -0.4, + -0.25, + -0.08, + 0.08, + 0.07, + 0.03, + 0.06, + 0.23, + 0.48, + 0.63, + 0.67, + 0.47000000000000003, + 0.24, + 0.12, + 0.02, + -0.04, + -0.1, + -0.13, + -0.03, + 0.14, + 0.3, + 0.26, + 0.11, + -0.06, + -0.29, + -0.44, + -0.51, + -0.49, + -0.36, + -0.09, + 0.23, + 0.52, + 0.68, + 0.5700000000000001, + 0.35000000000000003, + 0.13, + 0.01, + 0.03, + 0.23, + 0.37, + 0.31, + 0.18, + 0.01, + -0.07, + -0.05, + -0.02, + 0.1, + 0.27, + 0.42, + 0.59, + 0.7000000000000001, + 0.74, + 0.62, + 0.42, + 0.04, + -0.23, + -0.51, + -0.62, + -0.61, + -0.48, + -0.25, + -0.13, + 0.02, + -0.02, + 0.01, + 0.12, + 0.18, + 0.27, + 0.22, + 0.13, + 0.11, + 0.12, + 0.24, + 0.41000000000000003, + 0.7000000000000001, + 0.89, + 1.1, + 0.98, + 0.62, + 0.27, + -0.08, + -0.33, + -0.45, + -0.54, + -0.52, + -0.48, + -0.5, + -0.59, + -0.75, + -0.85, + -0.8, + -0.72, + -0.49, + -0.27, + 0.02, + 0.26, + 0.39, + 0.64, + 0.71, + 0.78, + 0.89, + 1.03, + 1.17, + 1.22, + 1.08, + 0.58, + -0.15, + -0.74, + -1.11, + -1.23, + -1.1400000000000001, + -0.9, + -0.68, + -0.42, + -0.16, + 0.2, + 0.64, + 0.9400000000000001, + 1.16, + 0.96, + 0.52, + -0.18, + -0.89, + -1.11, + -1.22, + -0.99, + -0.67, + -0.5, + -0.35000000000000003, + -0.48, + -0.5700000000000001, + -0.53, + -0.45, + -0.2, + -0.02, + 0.24, + 0.55, + 0.79, + 0.78, + 0.7000000000000001, + 0.68, + 0.68, + 0.66, + 0.52, + 0.36, + 0.24, + 0.11, + 0.11, + 0.18, + 0.22, + 0.45, + 0.58, + 0.64, + 0.7000000000000001, + 0.62, + 0.5, + 0.4, + 0.45, + 0.62, + 0.96, + 1.29, + 1.49 + ], + [ + 0.91, + 0.84, + 0.56, + 0.33, + 0.25, + 0.22, + 0.21, + 0.26, + 0.4, + 0.66, + 1.02, + 1.48, + 2.06, + 2.66, + 3.35, + 3.98, + 4.33, + 4.33, + 3.85, + 3.02, + 2.22, + 1.55, + 1.11, + 0.97, + 0.86, + 0.73, + 0.45, + 0.0, + -0.34, + -0.28, + -0.01, + 0.43, + 0.6900000000000001, + 0.72, + 0.5700000000000001, + 0.5, + 0.47000000000000003, + 0.53, + 0.71, + 0.9, + 1.17, + 1.4000000000000001, + 1.6400000000000001, + 2.0, + 2.23, + 2.24, + 1.9100000000000001, + 1.46, + 1.04, + 0.8, + 0.68, + 0.7000000000000001, + 0.71, + 0.66, + 0.55, + 0.41000000000000003, + 0.32, + 0.36, + 0.34, + 0.32, + 0.42, + 0.49, + 0.56, + 0.6, + 0.6900000000000001, + 0.8300000000000001, + 1.04, + 1.11, + 1.11, + 0.9, + 0.5700000000000001, + 0.43, + 0.37, + 0.39, + 0.31, + 0.17, + 0.0, + -0.11, + -0.13, + -0.13, + -0.24, + -0.16, + -0.08, + 0.01, + 0.35000000000000003, + 0.64, + 1.06, + 1.1, + 0.8200000000000001, + 0.29, + 0.33, + 0.59, + 1.24, + 1.6600000000000001, + 1.77, + 1.49, + 0.88, + 0.23, + -0.09, + -0.34, + -0.34, + -0.41000000000000003, + -0.6, + -0.71, + -0.79, + -0.73, + -0.55, + -0.21, + 0.0, + 0.27, + 0.36, + 0.12, + -0.13, + -0.42, + -0.61, + -0.59, + -0.48, + -0.31, + -0.21, + -0.3, + -0.4, + -0.39, + -0.26, + -0.02, + 0.18, + 0.13, + -0.14, + -0.29, + -0.45, + -0.44, + -0.4, + -0.47000000000000003, + -0.35000000000000003, + -0.17, + 0.02, + 0.21, + 0.31, + 0.44, + 0.88, + 1.3800000000000001, + 1.6, + 1.3800000000000001, + 0.96, + 0.77, + 0.72, + 0.86, + 1.11, + 1.51, + 1.8800000000000001, + 2.14, + 2.21, + 2.14, + 2.1, + 1.8800000000000001, + 1.74, + 1.26, + 0.8300000000000001, + 0.48, + 0.23, + 0.29, + 0.4, + 0.6, + 0.76, + 0.93, + 1.12, + 1.36, + 1.58, + 1.6, + 1.48, + 1.16, + 0.99, + 1.1300000000000001, + 1.5, + 2.21, + 2.54, + 2.86, + 2.63, + 2.32, + 1.67, + 1.0, + 0.38, + -0.19, + -0.45, + -0.59, + -0.54, + -0.46, + -0.35000000000000003, + -0.2, + -0.2, + -0.14, + -0.13, + -0.11, + 0.06, + 0.34, + 0.59, + 0.65, + 0.53, + 0.28, + 0.12, + 0.01, + -0.07, + -0.14, + -0.11, + 0.03, + 0.25, + 0.37, + 0.48, + 0.41000000000000003, + 0.28, + 0.1, + -0.15, + -0.31, + -0.32, + -0.2, + 0.06, + 0.39, + 0.6900000000000001, + 0.74, + 0.62, + 0.4, + 0.17, + 0.05, + 0.07, + 0.16, + 0.27, + 0.25, + 0.1, + -0.01, + -0.02, + 0.04, + 0.13, + 0.2, + 0.31, + 0.49, + 0.62, + 0.8200000000000001, + 0.8200000000000001, + 0.74, + 0.38, + 0.0, + -0.42, + -0.72, + -0.89, + -0.88, + -0.73, + -0.5, + -0.2, + -0.05, + 0.17, + 0.31, + 0.45, + 0.55, + 0.6, + 0.47000000000000003, + 0.32, + 0.19, + 0.18, + 0.25, + 0.37, + 0.46, + 0.67, + 0.65, + 0.61, + 0.47000000000000003, + 0.13, + -0.07, + -0.32, + -0.51, + -0.61, + -0.64, + -0.59, + -0.6, + -0.68, + -0.76, + -0.72, + -0.6900000000000001, + -0.52, + -0.29, + -0.03, + 0.23, + 0.26, + 0.37, + 0.4, + 0.53, + 0.6900000000000001, + 0.8200000000000001, + 0.9400000000000001, + 1.09, + 1.1300000000000001, + 0.9500000000000001, + 0.53, + -0.27, + -0.91, + -1.22, + -1.28, + -1.07, + -0.81, + -0.55, + -0.42, + -0.24, + -0.02, + 0.27, + 0.5700000000000001, + 0.6, + 0.52, + 0.07, + -0.6, + -0.85, + -1.08, + -0.88, + -0.64, + -0.51, + -0.35000000000000003, + -0.56, + -0.78, + -1.03, + -1.03, + -0.76, + -0.49, + -0.08, + 0.22, + 0.54, + 0.65, + 0.68, + 0.63, + 0.65, + 0.8200000000000001, + 0.81, + 0.75, + 0.55, + 0.31, + 0.14, + -0.01, + 0.08, + 0.37, + 0.64, + 0.88, + 0.92, + 0.84, + 0.6900000000000001, + 0.56, + 0.5, + 0.55, + 0.81, + 1.12, + 1.41, + 1.6300000000000001 + ], + [ + 1.02, + 0.93, + 0.68, + 0.48, + 0.37, + 0.32, + 0.28, + 0.3, + 0.41000000000000003, + 0.63, + 0.99, + 1.49, + 2.1, + 2.88, + 3.62, + 4.2700000000000005, + 4.5600000000000005, + 4.38, + 3.73, + 2.86, + 2.11, + 1.59, + 1.36, + 1.21, + 1.04, + 0.7000000000000001, + 0.19, + -0.42, + -0.6900000000000001, + -0.71, + -0.27, + 0.21, + 0.5, + 0.54, + 0.52, + 0.46, + 0.45, + 0.54, + 0.62, + 0.8300000000000001, + 0.9500000000000001, + 1.1400000000000001, + 1.45, + 1.8900000000000001, + 2.34, + 2.34, + 2.0300000000000002, + 1.49, + 1.0, + 0.7000000000000001, + 0.55, + 0.6, + 0.65, + 0.62, + 0.51, + 0.32, + 0.21, + 0.15, + 0.12, + 0.16, + 0.28, + 0.45, + 0.5, + 0.55, + 0.59, + 0.77, + 0.99, + 1.29, + 1.3800000000000001, + 1.35, + 1.18, + 0.97, + 0.92, + 0.88, + 0.73, + 0.55, + 0.26, + 0.12, + 0.06, + 0.1, + 0.26, + 0.37, + 0.62, + 0.75, + 0.9400000000000001, + 1.31, + 1.61, + 1.6300000000000001, + 1.34, + 0.88, + 0.51, + 0.89, + 1.33, + 1.6600000000000001, + 1.71, + 1.16, + 0.58, + 0.16, + -0.15, + -0.01, + -0.06, + -0.24, + -0.48, + -0.75, + -0.8300000000000001, + -0.76, + -0.55, + -0.41000000000000003, + -0.24, + -0.26, + -0.25, + -0.27, + -0.48, + -0.63, + -0.7000000000000001, + -0.77, + -0.68, + -0.56, + -0.63, + -0.7000000000000001, + -0.7000000000000001, + -0.73, + -0.49, + -0.23, + -0.11, + -0.12, + -0.24, + -0.34, + -0.28, + -0.25, + -0.3, + -0.43, + -0.48, + -0.26, + 0.05, + 0.33, + 0.52, + 0.77, + 1.18, + 1.74, + 2.06, + 1.7, + 1.1500000000000001, + 0.71, + 0.62, + 0.7000000000000001, + 0.96, + 1.27, + 1.71, + 1.92, + 1.98, + 1.98, + 1.8900000000000001, + 1.86, + 1.67, + 1.56, + 1.1, + 0.8300000000000001, + 0.56, + 0.5, + 0.59, + 0.7000000000000001, + 0.8300000000000001, + 0.88, + 1.04, + 1.1400000000000001, + 1.22, + 1.19, + 0.87, + 0.46, + 0.17, + 0.29, + 0.9400000000000001, + 1.79, + 2.61, + 2.97, + 3.12, + 2.74, + 2.31, + 1.54, + 0.8200000000000001, + 0.2, + -0.3, + -0.47000000000000003, + -0.5700000000000001, + -0.61, + -0.5700000000000001, + -0.67, + -0.63, + -0.55, + -0.49, + -0.3, + -0.14, + 0.13, + 0.42, + 0.49, + 0.36, + 0.16, + -0.02, + -0.07, + -0.16, + -0.22, + -0.17, + -0.03, + 0.16, + 0.35000000000000003, + 0.44, + 0.59, + 0.5700000000000001, + 0.43, + 0.14, + -0.1, + -0.17, + -0.07, + 0.2, + 0.54, + 0.7000000000000001, + 0.74, + 0.59, + 0.36, + 0.21, + 0.1, + 0.07, + 0.17, + 0.21, + 0.16, + 0.0, + -0.1, + -0.05, + 0.05, + 0.2, + 0.27, + 0.32, + 0.37, + 0.5, + 0.5700000000000001, + 0.67, + 0.46, + 0.15, + -0.22, + -0.66, + -0.9400000000000001, + -1.11, + -1.12, + -0.9500000000000001, + -0.71, + -0.38, + -0.03, + 0.26, + 0.47000000000000003, + 0.55, + 0.67, + 0.56, + 0.52, + 0.31, + 0.17, + 0.14, + 0.2, + 0.21, + 0.26, + 0.17, + 0.16, + 0.13, + 0.05, + 0.07, + -0.09, + -0.31, + -0.5, + -0.65, + -0.67, + -0.68, + -0.6900000000000001, + -0.6900000000000001, + -0.6900000000000001, + -0.58, + -0.5, + -0.38, + -0.24, + 0.04, + 0.1, + 0.13, + 0.07, + 0.1, + 0.28, + 0.48, + 0.61, + 0.73, + 0.73, + 0.76, + 0.63, + 0.12, + -0.34, + -0.93, + -1.2, + -1.09, + -0.9, + -0.56, + -0.35000000000000003, + -0.28, + -0.24, + -0.1, + 0.04, + 0.14, + 0.15, + -0.07, + -0.44, + -0.62, + -0.86, + -0.7000000000000001, + -0.46, + -0.33, + -0.24, + -0.41000000000000003, + -0.73, + -1.24, + -1.54, + -1.62, + -1.3, + -0.89, + -0.46, + -0.02, + 0.24, + 0.46, + 0.51, + 0.53, + 0.79, + 1.02, + 1.19, + 1.1400000000000001, + 0.93, + 0.62, + 0.26, + 0.06, + 0.08, + 0.42, + 0.8, + 1.03, + 1.07, + 0.9, + 0.78, + 0.67, + 0.63, + 0.75, + 0.9500000000000001, + 1.19, + 1.43, + 1.45 + ], + [ + 1.17, + 1.12, + 0.87, + 0.62, + 0.52, + 0.45, + 0.4, + 0.38, + 0.46, + 0.65, + 0.98, + 1.48, + 2.16, + 3.0, + 3.86, + 4.5, + 4.78, + 4.42, + 3.71, + 2.8000000000000003, + 2.0100000000000002, + 1.68, + 1.52, + 1.44, + 1.29, + 0.86, + 0.22, + -0.33, + -0.85, + -0.75, + -0.37, + 0.06, + 0.39, + 0.55, + 0.55, + 0.52, + 0.52, + 0.52, + 0.6, + 0.64, + 0.7000000000000001, + 0.8300000000000001, + 1.19, + 1.77, + 2.2600000000000002, + 2.45, + 1.98, + 1.46, + 1.0, + 0.59, + 0.5, + 0.53, + 0.55, + 0.55, + 0.32, + 0.12, + -0.03, + -0.11, + -0.12, + -0.07, + 0.04, + 0.19, + 0.29, + 0.27, + 0.37, + 0.5700000000000001, + 0.91, + 1.28, + 1.6400000000000001, + 1.71, + 1.69, + 1.55, + 1.45, + 1.22, + 1.11, + 0.74, + 0.42, + 0.11, + 0.05, + 0.18, + 0.43, + 0.72, + 1.0, + 1.34, + 1.51, + 1.82, + 2.02, + 2.18, + 1.73, + 1.4000000000000001, + 1.11, + 1.1400000000000001, + 1.32, + 1.59, + 1.1300000000000001, + 0.7000000000000001, + 0.18, + -0.16, + 0.16, + 0.35000000000000003, + 0.42, + 0.2, + -0.2, + -0.53, + -0.73, + -0.64, + -0.5, + -0.41000000000000003, + -0.53, + -0.64, + -0.77, + -0.77, + -0.77, + -0.8, + -0.84, + -0.91, + -0.92, + -1.02, + -1.04, + -0.96, + -0.9500000000000001, + -0.7000000000000001, + -0.53, + -0.38, + -0.26, + -0.28, + -0.38, + -0.38, + -0.26, + -0.15, + -0.23, + -0.38, + -0.39, + -0.26, + 0.15, + 0.5700000000000001, + 0.8300000000000001, + 1.06, + 1.54, + 2.15, + 2.29, + 2.02, + 1.23, + 0.62, + 0.43, + 0.48, + 0.65, + 0.9500000000000001, + 1.18, + 1.4000000000000001, + 1.5, + 1.48, + 1.43, + 1.37, + 1.34, + 1.1500000000000001, + 1.06, + 0.74, + 0.68, + 0.68, + 0.79, + 0.9400000000000001, + 1.03, + 1.12, + 1.16, + 1.16, + 1.1400000000000001, + 0.92, + 0.54, + 0.03, + -0.4, + -0.29, + 0.44, + 1.41, + 2.34, + 2.91, + 2.98, + 2.95, + 2.4, + 1.9100000000000001, + 1.16, + 0.52, + 0.03, + -0.39, + -0.67, + -0.85, + -1.09, + -1.22, + -1.17, + -1.05, + -0.72, + -0.51, + -0.24, + 0.01, + 0.17, + 0.24, + 0.1, + -0.12, + -0.21, + -0.23, + -0.24, + -0.29, + -0.3, + -0.15, + -0.01, + 0.11, + 0.3, + 0.49, + 0.6900000000000001, + 0.53, + 0.3, + 0.05, + -0.07, + 0.09, + 0.34, + 0.56, + 0.71, + 0.64, + 0.47000000000000003, + 0.36, + 0.24, + 0.19, + 0.19, + 0.16, + 0.17, + 0.03, + -0.21, + -0.32, + -0.27, + -0.05, + 0.12, + 0.25, + 0.23, + 0.22, + 0.23, + 0.29, + 0.2, + 0.05, + -0.2, + -0.55, + -0.79, + -1.06, + -1.18, + -1.1500000000000001, + -1.04, + -0.74, + -0.44, + -0.04, + 0.25, + 0.34, + 0.37, + 0.27, + 0.3, + 0.18, + 0.11, + 0.04, + 0.01, + -0.03, + 0.0, + -0.16, + -0.29, + -0.33, + -0.34, + -0.12, + 0.01, + 0.0, + -0.21, + -0.53, + -0.6900000000000001, + -0.78, + -0.81, + -0.81, + -0.8200000000000001, + -0.74, + -0.63, + -0.48, + -0.47000000000000003, + -0.35000000000000003, + -0.23, + -0.1, + -0.08, + -0.2, + -0.11, + 0.07, + 0.27, + 0.41000000000000003, + 0.41000000000000003, + 0.37, + 0.18, + 0.02, + -0.22, + -0.63, + -0.8200000000000001, + -0.89, + -0.8200000000000001, + -0.51, + -0.28, + -0.16, + -0.14, + -0.17, + -0.12, + -0.03, + -0.04, + -0.15, + -0.41000000000000003, + -0.5700000000000001, + -0.71, + -0.59, + -0.37, + -0.22, + -0.12, + -0.18, + -0.46, + -0.89, + -1.46, + -1.97, + -1.9100000000000001, + -1.79, + -1.31, + -0.87, + -0.44, + -0.06, + 0.19, + 0.36, + 0.63, + 0.93, + 1.31, + 1.59, + 1.54, + 1.35, + 1.0, + 0.56, + 0.26, + 0.26, + 0.47000000000000003, + 0.87, + 1.04, + 0.98, + 0.9, + 0.77, + 0.74, + 0.74, + 0.8200000000000001, + 0.9500000000000001, + 1.11, + 1.11, + 1.12 + ], + [ + 1.3, + 1.23, + 1.02, + 0.8200000000000001, + 0.6900000000000001, + 0.6, + 0.53, + 0.52, + 0.55, + 0.72, + 1.01, + 1.48, + 2.18, + 3.04, + 3.97, + 4.65, + 4.78, + 4.5200000000000005, + 3.65, + 2.7600000000000002, + 2.11, + 1.7, + 1.6500000000000001, + 1.6500000000000001, + 1.45, + 1.1400000000000001, + 0.56, + -0.13, + -0.5, + -0.64, + -0.41000000000000003, + 0.01, + 0.29, + 0.5, + 0.56, + 0.53, + 0.45, + 0.4, + 0.38, + 0.33, + 0.32, + 0.44, + 0.8300000000000001, + 1.55, + 2.19, + 2.08, + 1.87, + 1.37, + 0.9400000000000001, + 0.62, + 0.43, + 0.39, + 0.43, + 0.24, + 0.01, + -0.19, + -0.35000000000000003, + -0.38, + -0.37, + -0.3, + -0.18, + -0.09, + -0.02, + -0.02, + 0.13, + 0.35000000000000003, + 0.81, + 1.28, + 1.67, + 2.0, + 1.96, + 1.93, + 1.62, + 1.42, + 1.06, + 0.75, + 0.3, + -0.08, + -0.16, + 0.01, + 0.27, + 0.61, + 0.88, + 1.2, + 1.6300000000000001, + 1.83, + 2.0300000000000002, + 1.92, + 1.85, + 1.41, + 1.2, + 0.98, + 0.99, + 0.63, + 0.35000000000000003, + -0.12, + -0.52, + -0.08, + 0.38, + 0.85, + 1.01, + 0.76, + 0.27, + -0.19, + -0.45, + -0.51, + -0.38, + -0.39, + -0.63, + -0.9500000000000001, + -1.04, + -1.1400000000000001, + -1.03, + -1.0, + -1.09, + -1.17, + -1.35, + -1.48, + -1.32, + -1.19, + -0.8300000000000001, + -0.58, + -0.5, + -0.4, + -0.41000000000000003, + -0.44, + -0.45, + -0.42, + -0.27, + -0.12, + -0.08, + -0.22, + -0.33, + -0.11, + 0.28, + 0.73, + 1.1300000000000001, + 1.36, + 1.75, + 2.25, + 2.65, + 2.14, + 1.26, + 0.6, + 0.26, + 0.28, + 0.38, + 0.52, + 0.7000000000000001, + 0.85, + 0.9500000000000001, + 0.9500000000000001, + 0.88, + 0.77, + 0.71, + 0.63, + 0.53, + 0.52, + 0.6, + 0.76, + 0.97, + 1.17, + 1.25, + 1.36, + 1.34, + 1.28, + 1.09, + 0.84, + 0.4, + -0.22, + -0.56, + -0.5700000000000001, + -0.01, + 1.04, + 1.85, + 2.36, + 2.66, + 2.5500000000000003, + 2.37, + 1.82, + 1.37, + 0.73, + 0.21, + -0.35000000000000003, + -0.85, + -1.26, + -1.6, + -1.67, + -1.69, + -1.29, + -0.91, + -0.51, + -0.24, + -0.06, + 0.07, + -0.02, + -0.19, + -0.34, + -0.37, + -0.33, + -0.3, + -0.33, + -0.32, + -0.33, + -0.25, + -0.18, + 0.02, + 0.28, + 0.4, + 0.48, + 0.23, + 0.01, + 0.02, + 0.17, + 0.41000000000000003, + 0.61, + 0.6, + 0.49, + 0.4, + 0.33, + 0.36, + 0.35000000000000003, + 0.29, + 0.23, + 0.02, + -0.28, + -0.56, + -0.71, + -0.61, + -0.3, + -0.01, + 0.11, + 0.11, + 0.04, + -0.02, + -0.07, + -0.2, + -0.31, + -0.53, + -0.67, + -0.85, + -1.0, + -1.08, + -1.08, + -0.9400000000000001, + -0.71, + -0.39, + -0.14, + 0.0, + 0.05, + -0.14, + -0.28, + -0.3, + -0.26, + -0.21, + -0.21, + -0.25, + -0.31, + -0.49, + -0.64, + -0.74, + -0.79, + -0.54, + -0.2, + 0.08, + 0.11, + -0.15, + -0.55, + -0.85, + -0.97, + -0.98, + -0.97, + -0.97, + -0.85, + -0.77, + -0.7000000000000001, + -0.68, + -0.58, + -0.47000000000000003, + -0.25, + -0.2, + -0.15, + -0.16, + -0.04, + 0.17, + 0.33, + 0.29, + 0.09, + -0.18, + -0.53, + -0.7000000000000001, + -0.77, + -0.75, + -0.56, + -0.37, + -0.15, + -0.02, + 0.04, + -0.08, + -0.15, + -0.11, + -0.01, + -0.03, + -0.2, + -0.4, + -0.6, + -0.63, + -0.45, + -0.34, + -0.2, + -0.17, + -0.3, + -0.46, + -0.93, + -1.43, + -1.81, + -2.08, + -1.83, + -1.6400000000000001, + -1.17, + -0.76, + -0.34, + 0.01, + 0.35000000000000003, + 0.68, + 1.12, + 1.6, + 1.77, + 1.84, + 1.6300000000000001, + 1.32, + 0.9400000000000001, + 0.56, + 0.47000000000000003, + 0.68, + 0.81, + 0.87, + 0.8200000000000001, + 0.71, + 0.68, + 0.67, + 0.72, + 0.75, + 0.8300000000000001, + 0.84, + 0.77, + 0.58 + ], + [ + 1.46, + 1.43, + 1.21, + 0.98, + 0.86, + 0.75, + 0.6900000000000001, + 0.65, + 0.71, + 0.8300000000000001, + 1.1, + 1.52, + 2.17, + 3.0700000000000003, + 3.95, + 4.57, + 4.76, + 4.3, + 3.64, + 2.7800000000000002, + 2.08, + 1.81, + 1.72, + 1.69, + 1.6600000000000001, + 1.32, + 0.9, + 0.37, + -0.16, + -0.34, + -0.3, + -0.11, + 0.16, + 0.29, + 0.38, + 0.3, + 0.15, + 0.05, + -0.04, + -0.1, + -0.17, + -0.08, + 0.48, + 1.19, + 1.56, + 1.73, + 1.4000000000000001, + 1.1400000000000001, + 0.87, + 0.55, + 0.36, + 0.25, + 0.18, + -0.04, + -0.24, + -0.47000000000000003, + -0.54, + -0.54, + -0.51, + -0.4, + -0.23, + -0.09, + -0.09, + -0.01, + -0.01, + 0.39, + 0.74, + 1.25, + 1.69, + 1.9000000000000001, + 2.06, + 1.81, + 1.61, + 1.24, + 0.91, + 0.55, + 0.08, + -0.25, + -0.39, + -0.26, + 0.02, + 0.19, + 0.39, + 0.72, + 1.16, + 1.55, + 1.62, + 1.54, + 1.37, + 1.1300000000000001, + 0.8300000000000001, + 0.48, + 0.1, + -0.34, + -0.63, + -1.05, + -0.61, + -0.1, + 0.71, + 1.3800000000000001, + 1.5, + 1.3, + 0.88, + 0.31, + -0.02, + -0.11, + -0.15, + -0.21, + -0.53, + -0.8200000000000001, + -1.18, + -1.1400000000000001, + -1.23, + -1.24, + -1.36, + -1.52, + -1.75, + -1.6, + -1.5, + -1.04, + -0.64, + -0.51, + -0.46, + -0.55, + -0.6, + -0.59, + -0.56, + -0.47000000000000003, + -0.28, + -0.07, + -0.01, + -0.05, + -0.17, + -0.09, + 0.34, + 0.91, + 1.25, + 1.48, + 1.8, + 2.37, + 2.57, + 2.37, + 1.53, + 0.5700000000000001, + 0.24, + 0.18, + 0.24, + 0.28, + 0.38, + 0.49, + 0.5700000000000001, + 0.56, + 0.44, + 0.34, + 0.2, + 0.19, + 0.14, + 0.34, + 0.53, + 0.85, + 1.09, + 1.22, + 1.3800000000000001, + 1.43, + 1.49, + 1.35, + 1.1300000000000001, + 0.8200000000000001, + 0.37, + -0.1, + -0.55, + -0.55, + -0.08, + 0.56, + 1.29, + 1.73, + 2.0, + 2.12, + 1.94, + 1.6600000000000001, + 1.21, + 0.8, + 0.22, + -0.37, + -0.97, + -1.59, + -1.78, + -2.02, + -1.74, + -1.4000000000000001, + -0.87, + -0.39, + -0.1, + 0.04, + -0.02, + -0.18, + -0.35000000000000003, + -0.46, + -0.46, + -0.33, + -0.26, + -0.28, + -0.35000000000000003, + -0.39, + -0.47000000000000003, + -0.42, + -0.34, + -0.13, + 0.08, + 0.04, + -0.04, + -0.1, + -0.07, + 0.17, + 0.45, + 0.51, + 0.44, + 0.31, + 0.25, + 0.35000000000000003, + 0.46, + 0.52, + 0.42, + 0.17, + -0.22, + -0.68, + -1.02, + -1.2, + -0.89, + -0.52, + -0.14, + 0.05, + 0.01, + -0.11, + -0.21, + -0.32, + -0.36, + -0.5, + -0.53, + -0.61, + -0.72, + -0.8300000000000001, + -0.96, + -0.96, + -0.8300000000000001, + -0.59, + -0.41000000000000003, + -0.29, + -0.31, + -0.45, + -0.6900000000000001, + -0.8, + -0.89, + -0.6900000000000001, + -0.55, + -0.46, + -0.5, + -0.65, + -0.91, + -1.06, + -1.17, + -1.03, + -0.7000000000000001, + -0.31, + 0.08, + 0.1, + -0.28, + -0.67, + -1.01, + -1.1300000000000001, + -1.06, + -1.0, + -0.89, + -0.89, + -0.81, + -0.84, + -0.78, + -0.76, + -0.46, + -0.24, + -0.06, + -0.02, + -0.08, + -0.05, + 0.1, + 0.31, + 0.32, + 0.05, + -0.39, + -0.8200000000000001, + -1.09, + -0.99, + -0.71, + -0.41000000000000003, + -0.05, + 0.05, + 0.18, + 0.06, + -0.07, + -0.16, + -0.16, + -0.08, + 0.02, + -0.12, + -0.34, + -0.59, + -0.66, + -0.68, + -0.58, + -0.52, + -0.51, + -0.48, + -0.5700000000000001, + -0.75, + -1.19, + -1.54, + -1.71, + -1.81, + -1.58, + -1.37, + -0.88, + -0.5, + -0.06, + 0.34, + 0.79, + 1.26, + 1.57, + 1.86, + 1.81, + 1.71, + 1.46, + 1.1300000000000001, + 0.87, + 0.74, + 0.73, + 0.72, + 0.64, + 0.51, + 0.46, + 0.47000000000000003, + 0.51, + 0.55, + 0.62, + 0.6900000000000001, + 0.66, + 0.5700000000000001, + 0.24 + ], + [ + 1.62, + 1.55, + 1.3900000000000001, + 1.2, + 1.05, + 0.9500000000000001, + 0.86, + 0.84, + 0.87, + 1.0, + 1.23, + 1.61, + 2.22, + 3.02, + 3.9, + 4.45, + 4.46, + 4.15, + 3.43, + 2.72, + 2.14, + 1.76, + 1.7, + 1.72, + 1.62, + 1.5, + 1.17, + 0.79, + 0.39, + 0.02, + -0.09, + -0.09, + -0.01, + 0.07, + 0.04, + -0.09, + -0.26, + -0.41000000000000003, + -0.52, + -0.6, + -0.67, + -0.45, + -0.07, + 0.6, + 1.06, + 1.02, + 0.87, + 0.88, + 0.78, + 0.56, + 0.28, + 0.27, + 0.13, + 0.02, + -0.26, + -0.41000000000000003, + -0.48, + -0.5, + -0.44, + -0.28, + 0.01, + 0.23, + 0.29, + 0.23, + 0.34, + 0.49, + 0.87, + 1.26, + 1.56, + 1.79, + 1.72, + 1.6, + 1.29, + 0.96, + 0.74, + 0.42, + 0.09, + -0.32, + -0.46, + -0.38, + -0.27, + -0.23, + -0.15, + 0.19, + 0.67, + 1.12, + 1.34, + 1.27, + 1.05, + 0.91, + 0.49, + 0.03, + -0.63, + -0.89, + -1.36, + -1.0, + -0.66, + 0.27, + 1.18, + 1.6500000000000001, + 1.9000000000000001, + 1.78, + 1.43, + 1.1300000000000001, + 0.77, + 0.63, + 0.62, + 0.4, + 0.09, + -0.43, + -0.68, + -1.03, + -1.1300000000000001, + -1.36, + -1.47, + -1.74, + -1.6300000000000001, + -1.61, + -1.21, + -0.78, + -0.54, + -0.42, + -0.52, + -0.7000000000000001, + -0.72, + -0.68, + -0.62, + -0.5, + -0.33, + -0.09, + 0.02, + -0.07, + -0.16, + -0.07, + 0.29, + 0.9, + 1.42, + 1.49, + 1.6400000000000001, + 2.09, + 2.69, + 2.45, + 1.76, + 0.9500000000000001, + 0.34, + 0.21, + 0.22, + 0.25, + 0.28, + 0.38, + 0.46, + 0.45, + 0.34, + 0.16, + 0.1, + 0.02, + 0.17, + 0.3, + 0.7000000000000001, + 0.98, + 1.1400000000000001, + 1.23, + 1.35, + 1.46, + 1.47, + 1.42, + 1.18, + 0.9, + 0.49, + 0.05, + -0.24, + -0.33, + -0.08, + 0.39, + 0.8, + 1.1400000000000001, + 1.42, + 1.61, + 1.58, + 1.32, + 1.01, + 0.63, + 0.24, + -0.35000000000000003, + -1.03, + -1.3900000000000001, + -1.81, + -1.74, + -1.6600000000000001, + -1.23, + -0.71, + -0.28, + 0.07, + 0.11, + -0.05, + -0.24, + -0.41000000000000003, + -0.47000000000000003, + -0.4, + -0.31, + -0.23, + -0.2, + -0.31, + -0.44, + -0.5700000000000001, + -0.7000000000000001, + -0.62, + -0.53, + -0.46, + -0.42, + -0.4, + -0.38, + -0.17, + 0.12, + 0.28, + 0.33, + 0.16, + 0.0, + 0.03, + 0.25, + 0.49, + 0.5700000000000001, + 0.5, + 0.09, + -0.41000000000000003, + -0.93, + -1.45, + -1.31, + -1.1400000000000001, + -0.53, + -0.09, + 0.03, + -0.01, + -0.18, + -0.34, + -0.38, + -0.4, + -0.32, + -0.31, + -0.36, + -0.47000000000000003, + -0.66, + -0.8300000000000001, + -0.84, + -0.66, + -0.45, + -0.32, + -0.37, + -0.51, + -0.81, + -0.98, + -1.27, + -1.12, + -1.02, + -0.74, + -0.61, + -0.61, + -0.84, + -1.05, + -1.34, + -1.36, + -1.21, + -0.92, + -0.47000000000000003, + -0.23, + -0.25, + -0.48, + -0.91, + -1.1400000000000001, + -1.1, + -1.01, + -0.8300000000000001, + -0.7000000000000001, + -0.7000000000000001, + -0.73, + -0.77, + -0.8200000000000001, + -0.62, + -0.37, + -0.09, + 0.16, + 0.09, + -0.02, + -0.1, + 0.0, + 0.11, + 0.19, + -0.09, + -0.65, + -1.1, + -1.36, + -1.31, + -0.89, + -0.43, + -0.17, + 0.12, + 0.1, + 0.08, + -0.07, + -0.24, + -0.21, + -0.16, + -0.11, + -0.1, + -0.37, + -0.6900000000000001, + -0.9500000000000001, + -1.08, + -1.06, + -1.02, + -0.92, + -0.78, + -0.72, + -0.79, + -0.93, + -1.2, + -1.33, + -1.45, + -1.47, + -1.1500000000000001, + -0.88, + -0.4, + -0.07, + 0.42, + 0.86, + 1.22, + 1.53, + 1.61, + 1.6300000000000001, + 1.51, + 1.37, + 1.1300000000000001, + 0.91, + 0.75, + 0.63, + 0.51, + 0.3, + 0.19, + 0.21, + 0.26, + 0.34, + 0.4, + 0.56, + 0.67, + 0.75, + 0.62, + 0.39 + ], + [ + 1.77, + 1.75, + 1.57, + 1.3800000000000001, + 1.23, + 1.1300000000000001, + 1.05, + 1.01, + 1.05, + 1.17, + 1.3800000000000001, + 1.71, + 2.25, + 3.0300000000000002, + 3.7800000000000002, + 4.18, + 4.19, + 3.74, + 3.22, + 2.58, + 2.05, + 1.75, + 1.61, + 1.61, + 1.6, + 1.51, + 1.42, + 1.16, + 0.88, + 0.54, + 0.23, + 0.06, + -0.04, + -0.13, + -0.26, + -0.44, + -0.65, + -0.8300000000000001, + -0.93, + -0.97, + -0.9400000000000001, + -0.8300000000000001, + -0.3, + 0.15, + 0.44, + 0.45, + 0.59, + 0.72, + 0.74, + 0.61, + 0.53, + 0.51, + 0.56, + 0.42, + 0.16, + -0.07, + -0.17, + -0.22, + -0.16, + 0.08, + 0.38, + 0.7000000000000001, + 0.81, + 0.6900000000000001, + 0.66, + 0.74, + 0.96, + 1.22, + 1.49, + 1.5, + 1.44, + 1.2, + 0.9400000000000001, + 0.8, + 0.66, + 0.52, + 0.25, + -0.07, + -0.34, + -0.43, + -0.43, + -0.43, + -0.45, + -0.22, + 0.43, + 0.9500000000000001, + 1.28, + 1.3, + 1.25, + 0.98, + 0.51, + -0.18, + -0.63, + -1.16, + -0.93, + -0.79, + 0.0, + 0.87, + 1.52, + 1.97, + 2.11, + 2.14, + 2.1, + 2.02, + 1.98, + 1.92, + 1.79, + 1.55, + 1.08, + 0.52, + -0.05, + -0.51, + -0.9, + -1.1300000000000001, + -1.4000000000000001, + -1.36, + -1.3900000000000001, + -1.1400000000000001, + -0.85, + -0.5700000000000001, + -0.35000000000000003, + -0.34, + -0.52, + -0.61, + -0.66, + -0.61, + -0.54, + -0.45, + -0.29, + -0.15, + -0.09, + -0.15, + -0.27, + -0.23, + 0.3, + 0.9400000000000001, + 1.31, + 1.42, + 1.41, + 1.7, + 2.2800000000000002, + 2.66, + 2.0300000000000002, + 1.2, + 0.64, + 0.35000000000000003, + 0.32, + 0.31, + 0.38, + 0.48, + 0.58, + 0.62, + 0.54, + 0.41000000000000003, + 0.26, + 0.32, + 0.37, + 0.68, + 0.98, + 1.19, + 1.27, + 1.34, + 1.35, + 1.45, + 1.5, + 1.35, + 1.2, + 0.89, + 0.56, + 0.24, + 0.01, + -0.03, + 0.09, + 0.32, + 0.5, + 0.7000000000000001, + 1.02, + 1.24, + 1.21, + 1.04, + 0.76, + 0.49, + 0.18, + -0.22, + -0.64, + -1.1, + -1.21, + -1.33, + -1.16, + -0.93, + -0.56, + -0.13, + 0.07, + 0.11, + -0.04, + -0.28, + -0.39, + -0.38, + -0.33, + -0.24, + -0.18, + -0.17, + -0.24, + -0.42, + -0.65, + -0.76, + -0.91, + -0.89, + -0.96, + -0.87, + -0.79, + -0.59, + -0.33, + -0.12, + 0.06, + -0.03, + -0.26, + -0.36, + -0.26, + 0.01, + 0.37, + 0.54, + 0.4, + 0.14, + -0.38, + -0.9400000000000001, + -1.16, + -1.34, + -0.8200000000000001, + -0.38, + -0.02, + 0.17, + 0.0, + -0.22, + -0.35000000000000003, + -0.39, + -0.25, + -0.05, + 0.02, + -0.02, + -0.21, + -0.49, + -0.64, + -0.6, + -0.42, + -0.16, + -0.06, + -0.21, + -0.49, + -0.74, + -1.1, + -1.16, + -1.28, + -0.9500000000000001, + -0.75, + -0.54, + -0.5, + -0.66, + -1.0, + -1.23, + -1.3800000000000001, + -1.29, + -1.07, + -0.8200000000000001, + -0.65, + -0.66, + -0.86, + -1.06, + -1.08, + -1.02, + -0.8300000000000001, + -0.65, + -0.6, + -0.52, + -0.63, + -0.68, + -0.63, + -0.51, + -0.25, + 0.07, + 0.12, + 0.11, + -0.08, + -0.28, + -0.3, + -0.21, + -0.27, + -0.56, + -0.99, + -1.45, + -1.67, + -1.53, + -1.21, + -0.74, + -0.37, + -0.14, + 0.03, + 0.06, + -0.03, + -0.09, + -0.24, + -0.19, + -0.17, + -0.25, + -0.45, + -0.85, + -1.3, + -1.41, + -1.44, + -1.33, + -1.17, + -1.03, + -0.88, + -0.89, + -0.93, + -0.99, + -1.08, + -1.1, + -1.04, + -0.86, + -0.45, + -0.16, + 0.28, + 0.6, + 0.99, + 1.25, + 1.37, + 1.37, + 1.3, + 1.2, + 1.04, + 0.88, + 0.67, + 0.48, + 0.33, + 0.11, + -0.03, + -0.05, + 0.0, + 0.14, + 0.24, + 0.42, + 0.58, + 0.8300000000000001, + 1.04, + 0.93, + 0.72 + ], + [ + 1.93, + 1.87, + 1.75, + 1.55, + 1.3800000000000001, + 1.28, + 1.21, + 1.2, + 1.23, + 1.35, + 1.53, + 1.84, + 2.32, + 2.97, + 3.62, + 3.95, + 3.73, + 3.34, + 2.86, + 2.39, + 1.94, + 1.6, + 1.53, + 1.5, + 1.5, + 1.49, + 1.45, + 1.48, + 1.26, + 1.01, + 0.63, + 0.26, + -0.01, + -0.25, + -0.46, + -0.7000000000000001, + -0.9400000000000001, + -1.1500000000000001, + -1.27, + -1.18, + -1.05, + -0.73, + -0.41000000000000003, + -0.04, + 0.11, + 0.21, + 0.33, + 0.61, + 0.8300000000000001, + 0.76, + 0.77, + 0.9400000000000001, + 1.17, + 1.0, + 0.68, + 0.41000000000000003, + 0.27, + 0.3, + 0.35000000000000003, + 0.5, + 0.85, + 1.1, + 1.08, + 1.01, + 0.8300000000000001, + 0.85, + 0.9400000000000001, + 1.1500000000000001, + 1.21, + 1.27, + 1.04, + 0.8200000000000001, + 0.6900000000000001, + 0.66, + 0.68, + 0.73, + 0.47000000000000003, + 0.18, + -0.14, + -0.4, + -0.41000000000000003, + -0.43, + -0.31, + 0.01, + 0.46, + 1.18, + 1.58, + 1.76, + 1.71, + 1.35, + 0.78, + 0.11, + -0.55, + -0.42, + -0.33, + 0.21, + 0.8200000000000001, + 1.46, + 1.97, + 2.22, + 2.31, + 2.45, + 2.72, + 2.97, + 3.27, + 3.34, + 3.15, + 2.85, + 2.13, + 1.48, + 0.6, + -0.03, + -0.5, + -0.8200000000000001, + -0.86, + -0.91, + -0.77, + -0.65, + -0.48, + -0.32, + -0.18, + -0.18, + -0.29, + -0.4, + -0.45, + -0.42, + -0.36, + -0.3, + -0.18, + -0.11, + -0.15, + -0.27, + -0.4, + -0.2, + 0.18, + 0.9, + 1.44, + 1.2, + 0.9, + 1.4000000000000001, + 2.04, + 2.39, + 2.29, + 1.58, + 0.89, + 0.6900000000000001, + 0.58, + 0.6, + 0.66, + 0.74, + 0.89, + 0.97, + 0.9500000000000001, + 0.86, + 0.76, + 0.75, + 0.88, + 1.08, + 1.32, + 1.53, + 1.52, + 1.52, + 1.5, + 1.5, + 1.3800000000000001, + 1.25, + 1.01, + 0.78, + 0.5, + 0.3, + 0.18, + 0.19, + 0.26, + 0.3, + 0.35000000000000003, + 0.46, + 0.66, + 0.86, + 0.91, + 0.7000000000000001, + 0.52, + 0.36, + 0.21, + 0.0, + -0.22, + -0.44, + -0.55, + -0.62, + -0.61, + -0.49, + -0.35000000000000003, + -0.13, + 0.03, + 0.04, + -0.1, + -0.24, + -0.28, + -0.25, + -0.17, + -0.11, + -0.04, + -0.05, + -0.1, + -0.3, + -0.5, + -0.78, + -0.89, + -1.1500000000000001, + -1.16, + -1.26, + -1.04, + -0.81, + -0.5700000000000001, + -0.37, + -0.34, + -0.48, + -0.62, + -0.72, + -0.56, + -0.18, + 0.14, + 0.34, + 0.36, + 0.18, + -0.12, + -0.47000000000000003, + -0.75, + -0.67, + -0.44, + -0.09, + 0.22, + 0.17, + 0.04, + -0.19, + -0.37, + -0.29, + -0.06, + 0.16, + 0.35000000000000003, + 0.26, + 0.0, + -0.24, + -0.37, + -0.32, + -0.05, + 0.19, + 0.21, + 0.13, + -0.19, + -0.5, + -0.75, + -0.98, + -0.86, + -0.74, + -0.48, + -0.27, + -0.24, + -0.33, + -0.65, + -1.04, + -1.21, + -1.27, + -1.16, + -1.07, + -0.99, + -1.0, + -1.08, + -1.06, + -1.02, + -0.88, + -0.72, + -0.67, + -0.59, + -0.6, + -0.5700000000000001, + -0.56, + -0.51, + -0.35000000000000003, + -0.17, + -0.03, + 0.04, + -0.05, + -0.24, + -0.43, + -0.61, + -0.68, + -0.8, + -1.06, + -1.42, + -1.75, + -1.84, + -1.75, + -1.36, + -1.01, + -0.63, + -0.35000000000000003, + -0.04, + 0.17, + 0.2, + 0.17, + 0.01, + -0.14, + -0.23, + -0.3, + -0.59, + -1.03, + -1.31, + -1.5, + -1.42, + -1.27, + -1.12, + -0.97, + -0.92, + -0.93, + -1.01, + -0.9500000000000001, + -0.91, + -0.8300000000000001, + -0.68, + -0.36, + 0.07, + 0.4, + 0.73, + 1.03, + 1.28, + 1.37, + 1.32, + 1.22, + 1.03, + 0.87, + 0.6900000000000001, + 0.49, + 0.27, + 0.07, + -0.1, + -0.23, + -0.26, + -0.24, + -0.06, + 0.1, + 0.3, + 0.48, + 0.73, + 1.04, + 1.17, + 1.32, + 1.09 + ], + [ + 2.04, + 2.0300000000000002, + 1.8800000000000001, + 1.67, + 1.54, + 1.41, + 1.37, + 1.37, + 1.43, + 1.53, + 1.72, + 1.97, + 2.39, + 2.94, + 3.44, + 3.5500000000000003, + 3.36, + 2.92, + 2.46, + 2.12, + 1.74, + 1.51, + 1.3900000000000001, + 1.4000000000000001, + 1.3900000000000001, + 1.4000000000000001, + 1.44, + 1.52, + 1.58, + 1.28, + 0.91, + 0.44, + -0.02, + -0.35000000000000003, + -0.62, + -0.86, + -1.12, + -1.34, + -1.4000000000000001, + -1.32, + -0.85, + -0.47000000000000003, + -0.15, + 0.02, + 0.03, + -0.03, + 0.25, + 0.5700000000000001, + 0.74, + 0.8300000000000001, + 1.01, + 1.37, + 1.55, + 1.53, + 1.16, + 0.81, + 0.77, + 0.9400000000000001, + 1.03, + 1.06, + 1.18, + 1.23, + 1.21, + 0.9500000000000001, + 0.81, + 0.75, + 0.8, + 0.86, + 0.92, + 0.78, + 0.59, + 0.44, + 0.39, + 0.5, + 0.71, + 0.63, + 0.51, + 0.18, + -0.14, + -0.26, + -0.23, + 0.01, + 0.39, + 0.72, + 1.21, + 1.71, + 2.22, + 2.43, + 2.3000000000000003, + 1.98, + 1.25, + 0.43, + 0.37, + 0.42, + 0.88, + 1.31, + 1.73, + 2.13, + 2.39, + 2.49, + 2.59, + 2.7800000000000002, + 3.13, + 3.8000000000000003, + 4.15, + 4.26, + 4.15, + 3.49, + 2.91, + 1.83, + 1.05, + 0.3, + -0.21, + -0.25, + -0.31, + -0.2, + -0.11, + -0.07, + -0.09, + 0.04, + 0.11, + 0.13, + 0.03, + -0.08, + -0.21, + -0.24, + -0.21, + -0.1, + 0.03, + 0.07, + -0.07, + -0.26, + -0.31, + -0.23, + 0.35000000000000003, + 0.98, + 1.2, + 1.06, + 0.87, + 0.97, + 1.81, + 2.5100000000000002, + 2.36, + 1.8900000000000001, + 1.47, + 1.23, + 1.17, + 1.1400000000000001, + 1.1, + 1.1300000000000001, + 1.23, + 1.34, + 1.3900000000000001, + 1.29, + 1.26, + 1.24, + 1.36, + 1.48, + 1.7, + 1.74, + 1.78, + 1.68, + 1.62, + 1.41, + 1.22, + 0.97, + 0.74, + 0.53, + 0.34, + 0.23, + 0.24, + 0.27, + 0.31, + 0.29, + 0.18, + 0.19, + 0.31, + 0.46, + 0.42, + 0.34, + 0.25, + 0.19, + 0.2, + 0.21, + 0.13, + 0.14, + 0.03, + 0.05, + -0.06, + -0.11, + -0.08, + -0.08, + 0.02, + 0.03, + -0.04, + -0.09, + -0.09, + 0.02, + 0.12, + 0.2, + 0.24, + 0.27, + 0.2, + 0.04, + -0.22, + -0.42, + -0.72, + -0.93, + -1.27, + -1.23, + -1.22, + -0.96, + -0.77, + -0.67, + -0.74, + -0.8300000000000001, + -0.92, + -0.89, + -0.66, + -0.34, + -0.04, + 0.16, + 0.27, + 0.25, + 0.16, + 0.01, + -0.15, + -0.09, + -0.01, + 0.23, + 0.25, + 0.22, + 0.03, + -0.2, + -0.27, + -0.21, + 0.04, + 0.37, + 0.48, + 0.43, + 0.21, + -0.01, + -0.1, + 0.01, + 0.22, + 0.37, + 0.47000000000000003, + 0.32, + 0.15, + -0.15, + -0.36, + -0.49, + -0.45, + -0.37, + -0.15, + -0.06, + 0.1, + -0.05, + -0.29, + -0.66, + -0.99, + -1.08, + -1.12, + -1.1, + -1.1300000000000001, + -1.1500000000000001, + -1.1, + -1.07, + -0.9500000000000001, + -0.81, + -0.79, + -0.76, + -0.74, + -0.74, + -0.59, + -0.46, + -0.35000000000000003, + -0.21, + -0.11, + -0.1, + -0.08, + -0.17, + -0.3, + -0.51, + -0.73, + -0.97, + -1.1500000000000001, + -1.4000000000000001, + -1.69, + -1.84, + -1.9000000000000001, + -1.6500000000000001, + -1.37, + -1.02, + -0.77, + -0.38, + -0.03, + 0.23, + 0.49, + 0.33, + 0.25, + -0.08, + -0.3, + -0.47000000000000003, + -0.67, + -0.9400000000000001, + -1.17, + -1.19, + -1.05, + -0.9, + -0.76, + -0.68, + -0.72, + -0.8300000000000001, + -0.93, + -0.96, + -0.78, + -0.63, + -0.37, + 0.01, + 0.42, + 0.96, + 1.18, + 1.51, + 1.52, + 1.54, + 1.36, + 1.1500000000000001, + 0.91, + 0.64, + 0.43, + 0.16, + -0.07, + -0.27, + -0.41000000000000003, + -0.4, + -0.4, + -0.24, + -0.08, + 0.16, + 0.37, + 0.58, + 0.8300000000000001, + 1.03, + 1.3, + 1.32, + 1.3900000000000001 + ], + [ + 2.18, + 2.14, + 2.07, + 1.8800000000000001, + 1.71, + 1.61, + 1.53, + 1.55, + 1.62, + 1.75, + 1.92, + 2.14, + 2.44, + 2.85, + 3.15, + 3.24, + 2.93, + 2.5100000000000002, + 2.18, + 1.84, + 1.57, + 1.34, + 1.31, + 1.32, + 1.31, + 1.27, + 1.43, + 1.62, + 1.67, + 1.52, + 1.08, + 0.51, + 0.02, + -0.44, + -0.73, + -0.91, + -1.11, + -1.32, + -1.3900000000000001, + -1.0, + -0.5700000000000001, + 0.0, + 0.36, + 0.27, + 0.07, + 0.05, + 0.12, + 0.48, + 0.73, + 0.9400000000000001, + 1.18, + 1.58, + 1.96, + 1.83, + 1.45, + 1.2, + 1.3, + 1.48, + 1.6, + 1.56, + 1.3, + 1.21, + 0.9500000000000001, + 0.74, + 0.63, + 0.58, + 0.59, + 0.56, + 0.49, + 0.31, + 0.18, + -0.02, + 0.16, + 0.36, + 0.45, + 0.39, + 0.17, + -0.08, + -0.2, + -0.1, + 0.21, + 0.93, + 1.51, + 1.92, + 2.29, + 2.7, + 3.0700000000000003, + 3.15, + 3.0500000000000003, + 2.57, + 1.8900000000000001, + 1.46, + 1.28, + 1.73, + 2.2600000000000002, + 2.43, + 2.56, + 2.65, + 2.74, + 2.7600000000000002, + 2.81, + 3.0, + 3.41, + 3.88, + 4.25, + 4.3500000000000005, + 3.97, + 3.5, + 2.62, + 1.81, + 1.04, + 0.42, + 0.4, + 0.36, + 0.5, + 0.56, + 0.6, + 0.54, + 0.51, + 0.46, + 0.55, + 0.58, + 0.51, + 0.31, + 0.16, + -0.03, + -0.02, + 0.2, + 0.34, + 0.33, + 0.17, + -0.05, + -0.16, + 0.08, + 0.5, + 1.02, + 1.28, + 0.96, + 0.58, + 1.01, + 1.81, + 2.39, + 2.63, + 2.3000000000000003, + 2.09, + 1.92, + 1.87, + 1.67, + 1.45, + 1.3900000000000001, + 1.3900000000000001, + 1.5, + 1.54, + 1.55, + 1.49, + 1.58, + 1.61, + 1.79, + 1.85, + 1.95, + 1.85, + 1.77, + 1.49, + 1.21, + 0.91, + 0.62, + 0.44, + 0.27, + 0.18, + 0.14, + 0.18, + 0.27, + 0.26, + 0.13, + -0.02, + -0.16, + -0.14, + -0.09, + -0.1, + -0.1, + -0.11, + 0.0, + 0.12, + 0.25, + 0.39, + 0.4, + 0.48, + 0.39, + 0.35000000000000003, + 0.21, + 0.11, + 0.11, + 0.12, + 0.15, + 0.15, + 0.15, + 0.24, + 0.36, + 0.51, + 0.62, + 0.68, + 0.72, + 0.64, + 0.51, + 0.3, + 0.06, + -0.23, + -0.58, + -0.8300000000000001, + -1.1, + -1.04, + -1.0, + -0.87, + -0.88, + -0.9500000000000001, + -1.06, + -1.08, + -0.93, + -0.6900000000000001, + -0.41000000000000003, + -0.14, + 0.03, + 0.18, + 0.33, + 0.36, + 0.31, + 0.27, + 0.21, + 0.3, + 0.28, + 0.28, + 0.2, + 0.03, + -0.11, + -0.21, + -0.11, + 0.12, + 0.32, + 0.48, + 0.41000000000000003, + 0.27, + 0.11, + 0.07, + 0.16, + 0.25, + 0.4, + 0.42, + 0.41000000000000003, + 0.24, + 0.11, + -0.08, + -0.13, + -0.23, + -0.15, + -0.15, + 0.01, + 0.07, + 0.21, + -0.03, + -0.32, + -0.62, + -0.8200000000000001, + -0.9, + -1.0, + -1.06, + -1.09, + -1.08, + -1.04, + -0.96, + -0.91, + -0.87, + -0.86, + -0.87, + -0.75, + -0.62, + -0.41000000000000003, + -0.18, + -0.09, + 0.0, + -0.02, + -0.1, + -0.13, + -0.19, + -0.39, + -0.7000000000000001, + -0.9500000000000001, + -1.21, + -1.44, + -1.6400000000000001, + -1.76, + -1.61, + -1.41, + -1.11, + -0.85, + -0.65, + -0.41000000000000003, + -0.08, + 0.26, + 0.31, + 0.38, + 0.04, + -0.23, + -0.52, + -0.68, + -0.77, + -0.8, + -0.8200000000000001, + -0.7000000000000001, + -0.56, + -0.41000000000000003, + -0.29, + -0.27, + -0.34, + -0.59, + -0.78, + -0.8, + -0.6900000000000001, + -0.46, + -0.22, + 0.11, + 0.58, + 1.01, + 1.49, + 1.54, + 1.6300000000000001, + 1.43, + 1.3, + 1.02, + 0.78, + 0.55, + 0.31, + 0.09, + -0.18, + -0.35000000000000003, + -0.39, + -0.41000000000000003, + -0.29, + -0.18, + 0.03, + 0.23, + 0.45, + 0.64, + 0.79, + 0.9400000000000001, + 1.1, + 1.23, + 1.31 + ], + [ + 2.2600000000000002, + 2.25, + 2.18, + 2.06, + 1.9000000000000001, + 1.8, + 1.75, + 1.75, + 1.83, + 1.96, + 2.11, + 2.27, + 2.5, + 2.71, + 2.93, + 2.89, + 2.62, + 2.27, + 1.9100000000000001, + 1.6400000000000001, + 1.37, + 1.25, + 1.22, + 1.27, + 1.28, + 1.33, + 1.45, + 1.74, + 1.94, + 1.73, + 1.25, + 0.6900000000000001, + 0.09, + -0.37, + -0.72, + -0.91, + -0.98, + -1.08, + -0.9400000000000001, + -0.61, + 0.02, + 0.62, + 0.78, + 0.74, + 0.37, + 0.13, + 0.26, + 0.47000000000000003, + 0.79, + 1.1, + 1.43, + 1.8800000000000001, + 2.12, + 2.09, + 1.75, + 1.51, + 1.59, + 1.85, + 1.8900000000000001, + 1.56, + 1.28, + 0.87, + 0.6, + 0.48, + 0.39, + 0.47000000000000003, + 0.46, + 0.35000000000000003, + 0.16, + 0.05, + -0.15, + -0.07, + 0.06, + 0.25, + 0.24, + 0.08, + -0.29, + -0.37, + -0.17, + 0.14, + 0.92, + 1.78, + 2.82, + 3.42, + 3.5700000000000003, + 3.85, + 3.93, + 4.01, + 3.74, + 3.3200000000000003, + 2.77, + 2.38, + 2.57, + 3.11, + 3.3200000000000003, + 3.42, + 3.13, + 2.89, + 2.84, + 2.85, + 2.9, + 3.02, + 3.29, + 3.45, + 3.65, + 3.5100000000000002, + 3.19, + 2.63, + 1.8800000000000001, + 1.3900000000000001, + 0.78, + 0.92, + 1.04, + 1.24, + 1.42, + 1.42, + 1.41, + 1.28, + 1.1, + 1.06, + 1.09, + 1.1500000000000001, + 1.16, + 0.99, + 0.7000000000000001, + 0.52, + 0.44, + 0.5700000000000001, + 0.74, + 0.71, + 0.43, + 0.19, + 0.17, + 0.34, + 0.8, + 1.3, + 1.26, + 0.92, + 0.7000000000000001, + 0.85, + 1.68, + 2.54, + 2.69, + 2.7, + 2.5300000000000002, + 2.52, + 2.24, + 1.79, + 1.47, + 1.25, + 1.25, + 1.34, + 1.4000000000000001, + 1.3900000000000001, + 1.3900000000000001, + 1.5, + 1.68, + 1.76, + 1.93, + 1.9100000000000001, + 1.87, + 1.6, + 1.27, + 0.89, + 0.52, + 0.32, + 0.18, + 0.13, + 0.11, + 0.12, + 0.17, + 0.21, + 0.12, + -0.05, + -0.34, + -0.52, + -0.59, + -0.63, + -0.58, + -0.6, + -0.41000000000000003, + -0.25, + 0.0, + 0.24, + 0.41000000000000003, + 0.5700000000000001, + 0.58, + 0.59, + 0.48, + 0.39, + 0.29, + 0.28, + 0.3, + 0.36, + 0.39, + 0.46, + 0.56, + 0.73, + 0.89, + 1.03, + 1.1400000000000001, + 1.1400000000000001, + 1.1300000000000001, + 0.99, + 0.84, + 0.59, + 0.34, + 0.0, + -0.33, + -0.59, + -0.81, + -0.8200000000000001, + -0.88, + -0.93, + -1.08, + -1.1500000000000001, + -1.1400000000000001, + -0.99, + -0.74, + -0.47000000000000003, + -0.24, + -0.05, + 0.17, + 0.36, + 0.46, + 0.48, + 0.4, + 0.35000000000000003, + 0.31, + 0.27, + 0.28, + 0.25, + 0.15, + 0.0, + -0.06, + -0.09, + 0.0, + 0.08, + 0.15, + 0.17, + 0.08, + 0.03, + 0.02, + 0.02, + 0.1, + 0.14, + 0.2, + 0.19, + 0.15, + 0.06, + 0.01, + -0.14, + -0.21, + -0.36, + -0.42, + -0.32, + -0.11, + 0.04, + 0.19, + -0.08, + -0.31, + -0.52, + -0.67, + -0.8, + -0.9400000000000001, + -1.0, + -1.05, + -1.03, + -1.04, + -1.02, + -0.9400000000000001, + -0.9, + -0.86, + -0.78, + -0.62, + -0.39, + -0.21, + 0.02, + 0.06, + 0.1, + 0.05, + 0.05, + 0.0, + -0.13, + -0.42, + -0.76, + -1.01, + -1.21, + -1.37, + -1.36, + -1.23, + -0.98, + -0.71, + -0.6, + -0.46, + -0.34, + -0.15, + -0.06, + -0.02, + -0.15, + -0.37, + -0.68, + -0.9500000000000001, + -0.99, + -0.86, + -0.71, + -0.4, + -0.27, + -0.12, + 0.01, + 0.12, + 0.15, + 0.0, + -0.25, + -0.55, + -0.66, + -0.49, + -0.29, + -0.17, + 0.03, + 0.45, + 0.92, + 1.24, + 1.41, + 1.29, + 1.11, + 0.92, + 0.74, + 0.56, + 0.48, + 0.33, + 0.21, + 0.04, + -0.07, + -0.12, + -0.1, + -0.06, + 0.07, + 0.23, + 0.43, + 0.58, + 0.7000000000000001, + 0.77, + 0.84, + 0.87, + 1.02, + 1.1500000000000001 + ], + [ + 2.37, + 2.35, + 2.33, + 2.18, + 2.04, + 1.95, + 1.92, + 1.94, + 2.02, + 2.13, + 2.2600000000000002, + 2.39, + 2.46, + 2.61, + 2.69, + 2.65, + 2.41, + 2.07, + 1.76, + 1.47, + 1.27, + 1.1300000000000001, + 1.19, + 1.27, + 1.34, + 1.41, + 1.6600000000000001, + 2.04, + 2.2, + 2.06, + 1.57, + 0.9400000000000001, + 0.35000000000000003, + -0.21, + -0.58, + -0.79, + -0.85, + -0.6900000000000001, + -0.48, + -0.01, + 0.62, + 1.04, + 1.33, + 1.04, + 0.7000000000000001, + 0.44, + 0.39, + 0.63, + 0.92, + 1.26, + 1.6600000000000001, + 2.02, + 2.3000000000000003, + 2.19, + 1.95, + 1.74, + 1.74, + 1.84, + 1.6400000000000001, + 1.31, + 0.8200000000000001, + 0.45, + 0.28, + 0.15, + 0.35000000000000003, + 0.45, + 0.44, + 0.28, + 0.09, + -0.07, + -0.08, + 0.03, + 0.17, + 0.31, + 0.2, + -0.18, + -0.4, + -0.45, + -0.14, + 0.51, + 1.35, + 2.66, + 3.79, + 4.5200000000000005, + 4.87, + 4.73, + 4.8, + 4.65, + 4.49, + 4.0, + 3.54, + 3.41, + 3.7, + 4.0, + 4.23, + 3.7600000000000002, + 3.18, + 2.83, + 2.66, + 2.72, + 2.84, + 2.94, + 2.94, + 2.98, + 2.77, + 2.6, + 2.32, + 1.77, + 1.41, + 0.86, + 1.1400000000000001, + 1.33, + 1.77, + 2.18, + 2.2, + 2.29, + 2.15, + 2.02, + 1.78, + 1.61, + 1.6400000000000001, + 1.81, + 1.8, + 1.77, + 1.52, + 1.26, + 1.1500000000000001, + 1.1300000000000001, + 1.2, + 0.97, + 0.7000000000000001, + 0.44, + 0.39, + 0.6, + 1.06, + 1.34, + 1.48, + 1.05, + 0.64, + 0.91, + 1.56, + 2.31, + 2.81, + 2.82, + 2.88, + 2.67, + 2.14, + 1.62, + 1.09, + 0.9, + 0.96, + 1.04, + 1.09, + 1.05, + 1.08, + 1.17, + 1.35, + 1.53, + 1.7, + 1.84, + 1.68, + 1.43, + 0.98, + 0.52, + 0.24, + 0.06, + 0.03, + 0.12, + 0.14, + 0.19, + 0.21, + 0.15, + 0.03, + -0.27, + -0.56, + -0.78, + -0.92, + -0.9500000000000001, + -1.0, + -0.84, + -0.6900000000000001, + -0.4, + -0.13, + 0.15, + 0.39, + 0.53, + 0.63, + 0.59, + 0.52, + 0.43, + 0.39, + 0.39, + 0.45, + 0.51, + 0.61, + 0.6900000000000001, + 0.8300000000000001, + 1.0, + 1.18, + 1.36, + 1.43, + 1.49, + 1.45, + 1.3900000000000001, + 1.23, + 1.08, + 0.8200000000000001, + 0.5700000000000001, + 0.24, + -0.06, + -0.34, + -0.63, + -0.73, + -0.93, + -1.04, + -1.17, + -1.1400000000000001, + -1.05, + -0.8200000000000001, + -0.54, + -0.32, + -0.1, + 0.13, + 0.37, + 0.54, + 0.53, + 0.48, + 0.37, + 0.27, + 0.28, + 0.3, + 0.38, + 0.41000000000000003, + 0.26, + 0.08, + -0.07, + -0.29, + -0.31, + -0.37, + -0.35000000000000003, + -0.29, + -0.29, + -0.28, + -0.27, + -0.28, + -0.25, + -0.22, + -0.2, + -0.17, + -0.16, + -0.22, + -0.3, + -0.55, + -0.78, + -0.84, + -0.8300000000000001, + -0.5, + -0.12, + 0.03, + 0.08, + -0.15, + -0.35000000000000003, + -0.53, + -0.73, + -0.88, + -1.01, + -1.05, + -1.05, + -1.07, + -1.02, + -0.99, + -0.88, + -0.8300000000000001, + -0.78, + -0.67, + -0.52, + -0.34, + -0.12, + 0.07, + 0.12, + 0.2, + 0.19, + 0.24, + 0.08, + -0.14, + -0.46, + -0.71, + -0.9, + -0.97, + -0.9400000000000001, + -0.78, + -0.53, + -0.41000000000000003, + -0.29, + -0.29, + -0.23, + -0.29, + -0.37, + -0.49, + -0.74, + -0.9, + -1.2, + -1.31, + -1.32, + -1.02, + -0.51, + -0.19, + 0.07, + 0.19, + 0.32, + 0.42, + 0.44, + 0.33, + -0.01, + -0.3, + -0.4, + -0.3, + -0.19, + -0.1, + -0.02, + 0.23, + 0.6900000000000001, + 1.02, + 1.04, + 0.8300000000000001, + 0.65, + 0.43, + 0.33, + 0.29, + 0.3, + 0.44, + 0.4, + 0.44, + 0.39, + 0.39, + 0.39, + 0.35000000000000003, + 0.42, + 0.5700000000000001, + 0.75, + 0.81, + 0.87, + 0.85, + 0.8300000000000001, + 0.8, + 0.81, + 0.92 + ], + [ + 2.43, + 2.42, + 2.41, + 2.29, + 2.16, + 2.04, + 2.0300000000000002, + 2.09, + 2.16, + 2.2600000000000002, + 2.37, + 2.43, + 2.48, + 2.44, + 2.49, + 2.45, + 2.25, + 1.95, + 1.6300000000000001, + 1.3900000000000001, + 1.17, + 1.1300000000000001, + 1.18, + 1.32, + 1.45, + 1.6, + 1.9000000000000001, + 2.34, + 2.67, + 2.45, + 1.93, + 1.31, + 0.66, + 0.1, + -0.4, + -0.63, + -0.64, + -0.48, + -0.04, + 0.48, + 0.91, + 1.3800000000000001, + 1.43, + 1.27, + 0.96, + 0.73, + 0.68, + 0.79, + 1.07, + 1.3800000000000001, + 1.72, + 2.05, + 2.2, + 2.18, + 1.95, + 1.82, + 1.72, + 1.42, + 1.16, + 0.67, + 0.22, + 0.06, + -0.09, + 0.16, + 0.37, + 0.56, + 0.59, + 0.32, + 0.06, + -0.03, + 0.06, + 0.16, + 0.35000000000000003, + 0.35000000000000003, + 0.22, + -0.07, + -0.27, + -0.23, + 0.06, + 0.6900000000000001, + 1.61, + 2.87, + 4.22, + 5.14, + 5.36, + 5.39, + 5.21, + 5.13, + 4.88, + 4.55, + 4.17, + 4.16, + 4.36, + 4.69, + 4.3100000000000005, + 3.58, + 2.88, + 2.38, + 2.38, + 2.63, + 2.8000000000000003, + 2.88, + 2.81, + 2.41, + 2.19, + 2.14, + 1.8800000000000001, + 1.67, + 1.25, + 1.35, + 1.51, + 1.94, + 2.43, + 2.66, + 2.7800000000000002, + 2.77, + 2.7600000000000002, + 2.5300000000000002, + 2.32, + 2.11, + 2.08, + 2.21, + 2.39, + 2.34, + 2.27, + 2.0300000000000002, + 1.8, + 1.72, + 1.46, + 1.21, + 0.78, + 0.52, + 0.44, + 0.63, + 0.89, + 1.27, + 1.42, + 1.27, + 0.89, + 0.8200000000000001, + 1.44, + 2.11, + 2.6, + 2.92, + 2.9, + 2.64, + 2.06, + 1.24, + 0.8, + 0.72, + 0.77, + 0.9, + 0.92, + 0.8200000000000001, + 0.76, + 0.77, + 0.86, + 1.1, + 1.33, + 1.48, + 1.48, + 1.12, + 0.67, + 0.26, + -0.03, + -0.1, + -0.03, + 0.08, + 0.23, + 0.26, + 0.24, + 0.15, + -0.09, + -0.39, + -0.68, + -0.9, + -0.99, + -1.06, + -1.05, + -0.98, + -0.76, + -0.5, + -0.22, + 0.07, + 0.29, + 0.47000000000000003, + 0.54, + 0.55, + 0.48, + 0.43, + 0.4, + 0.42, + 0.48, + 0.59, + 0.6900000000000001, + 0.8200000000000001, + 0.96, + 1.1400000000000001, + 1.35, + 1.5, + 1.61, + 1.6500000000000001, + 1.6500000000000001, + 1.59, + 1.51, + 1.37, + 1.21, + 0.98, + 0.77, + 0.45, + 0.12, + -0.19, + -0.54, + -0.68, + -0.86, + -0.92, + -0.98, + -0.88, + -0.73, + -0.51, + -0.34, + -0.16, + 0.04, + 0.29, + 0.5, + 0.59, + 0.52, + 0.42, + 0.32, + 0.28, + 0.42, + 0.6, + 0.63, + 0.6, + 0.28, + -0.17, + -0.49, + -0.88, + -0.93, + -0.89, + -0.8200000000000001, + -0.71, + -0.6900000000000001, + -0.6900000000000001, + -0.71, + -0.72, + -0.7000000000000001, + -0.66, + -0.62, + -0.55, + -0.55, + -0.7000000000000001, + -0.9400000000000001, + -1.16, + -1.32, + -1.1300000000000001, + -0.8300000000000001, + -0.37, + 0.0, + 0.04, + -0.07, + -0.28, + -0.51, + -0.71, + -0.9, + -1.01, + -0.96, + -0.96, + -0.87, + -0.87, + -0.84, + -0.8200000000000001, + -0.78, + -0.77, + -0.75, + -0.71, + -0.52, + -0.32, + -0.07, + 0.13, + 0.2, + 0.28, + 0.27, + 0.22, + -0.03, + -0.27, + -0.51, + -0.63, + -0.68, + -0.59, + -0.41000000000000003, + -0.3, + -0.16, + -0.16, + -0.13, + -0.2, + -0.31, + -0.55, + -0.85, + -1.01, + -1.24, + -1.4000000000000001, + -1.57, + -1.41, + -1.05, + -0.49, + 0.04, + 0.24, + 0.31, + 0.4, + 0.49, + 0.52, + 0.4, + 0.16, + -0.09, + -0.19, + -0.13, + -0.02, + -0.08, + -0.1, + 0.19, + 0.5700000000000001, + 0.84, + 0.78, + 0.54, + 0.21, + 0.08, + 0.0, + 0.05, + 0.21, + 0.38, + 0.63, + 0.71, + 0.87, + 0.91, + 0.8300000000000001, + 0.81, + 0.79, + 0.93, + 1.01, + 1.1, + 1.04, + 1.01, + 0.84, + 0.73, + 0.63, + 0.64 + ], + [ + 2.52, + 2.5300000000000002, + 2.58, + 2.45, + 2.31, + 2.21, + 2.15, + 2.2, + 2.2800000000000002, + 2.37, + 2.44, + 2.48, + 2.39, + 2.34, + 2.31, + 2.27, + 2.11, + 1.83, + 1.56, + 1.31, + 1.18, + 1.1400000000000001, + 1.24, + 1.3800000000000001, + 1.55, + 1.76, + 2.2, + 2.81, + 3.0700000000000003, + 2.94, + 2.38, + 1.6600000000000001, + 1.01, + 0.39, + -0.11, + -0.42, + -0.45, + -0.23, + 0.18, + 0.61, + 1.07, + 1.29, + 1.3800000000000001, + 1.31, + 1.1300000000000001, + 0.99, + 0.96, + 1.02, + 1.18, + 1.43, + 1.68, + 1.8900000000000001, + 1.94, + 1.8900000000000001, + 1.84, + 1.6600000000000001, + 1.37, + 1.02, + 0.39, + -0.09, + -0.27, + -0.43, + -0.09, + 0.2, + 0.54, + 0.8, + 0.66, + 0.39, + 0.05, + -0.11, + 0.02, + 0.21, + 0.3, + 0.27, + 0.21, + 0.21, + 0.07, + 0.1, + 0.36, + 0.7000000000000001, + 1.56, + 2.59, + 3.92, + 5.0200000000000005, + 5.45, + 5.47, + 5.36, + 5.21, + 5.03, + 4.64, + 4.36, + 4.38, + 4.73, + 4.58, + 3.97, + 3.08, + 2.2, + 1.99, + 2.32, + 2.67, + 3.0, + 3.0300000000000002, + 2.62, + 2.24, + 2.0300000000000002, + 1.96, + 2.13, + 1.96, + 2.0100000000000002, + 2.1, + 2.19, + 2.5300000000000002, + 2.77, + 2.94, + 3.0, + 2.98, + 2.95, + 2.84, + 2.58, + 2.39, + 2.33, + 2.46, + 2.64, + 2.81, + 2.73, + 2.61, + 2.37, + 2.0300000000000002, + 1.73, + 1.16, + 0.72, + 0.4, + 0.28, + 0.19, + 0.35000000000000003, + 0.88, + 1.26, + 1.37, + 1.24, + 1.06, + 1.25, + 1.8900000000000001, + 2.43, + 2.7600000000000002, + 2.95, + 2.64, + 2.0100000000000002, + 1.3, + 0.92, + 0.85, + 0.92, + 1.01, + 0.92, + 0.8, + 0.55, + 0.46, + 0.45, + 0.5700000000000001, + 0.87, + 1.06, + 1.04, + 0.76, + 0.37, + 0.01, + -0.18, + -0.21, + -0.11, + 0.05, + 0.19, + 0.28, + 0.25, + 0.14, + -0.1, + -0.44, + -0.73, + -0.8300000000000001, + -0.92, + -0.9500000000000001, + -0.97, + -0.92, + -0.76, + -0.56, + -0.3, + -0.06, + 0.17, + 0.33, + 0.43, + 0.44, + 0.43, + 0.39, + 0.39, + 0.41000000000000003, + 0.48, + 0.58, + 0.7000000000000001, + 0.8200000000000001, + 0.97, + 1.1500000000000001, + 1.36, + 1.53, + 1.6400000000000001, + 1.7, + 1.7, + 1.67, + 1.62, + 1.54, + 1.43, + 1.3, + 1.1400000000000001, + 0.97, + 0.65, + 0.33, + 0.03, + -0.2, + -0.31, + -0.38, + -0.41000000000000003, + -0.45, + -0.34, + -0.33, + -0.22, + -0.23, + -0.09, + 0.11, + 0.32, + 0.5, + 0.54, + 0.47000000000000003, + 0.42, + 0.41000000000000003, + 0.53, + 0.72, + 0.88, + 0.73, + 0.41000000000000003, + -0.16, + -0.85, + -1.21, + -1.43, + -1.37, + -1.24, + -1.1300000000000001, + -1.06, + -1.07, + -1.12, + -1.16, + -1.1500000000000001, + -1.1300000000000001, + -1.04, + -0.97, + -0.9500000000000001, + -1.07, + -1.24, + -1.47, + -1.44, + -1.25, + -0.84, + -0.39, + -0.02, + 0.14, + 0.02, + -0.22, + -0.44, + -0.66, + -0.8300000000000001, + -0.77, + -0.72, + -0.53, + -0.44, + -0.48, + -0.5, + -0.58, + -0.62, + -0.7000000000000001, + -0.77, + -0.76, + -0.68, + -0.44, + -0.18, + 0.02, + 0.16, + 0.18, + 0.17, + 0.08, + -0.06, + -0.3, + -0.47000000000000003, + -0.5700000000000001, + -0.51, + -0.4, + -0.28, + -0.15, + -0.16, + -0.14, + -0.12, + -0.16, + -0.31, + -0.5700000000000001, + -0.84, + -1.04, + -1.18, + -1.31, + -1.43, + -1.3800000000000001, + -0.92, + -0.33, + 0.12, + 0.26, + 0.27, + 0.16, + 0.2, + 0.17, + 0.1, + 0.09, + -0.05, + -0.07, + 0.02, + 0.04, + -0.02, + 0.02, + 0.22, + 0.67, + 0.9500000000000001, + 0.81, + 0.39, + 0.1, + -0.12, + -0.13, + -0.07, + 0.11, + 0.34, + 0.58, + 0.86, + 1.03, + 1.1500000000000001, + 1.1300000000000001, + 1.03, + 1.03, + 1.07, + 1.16, + 1.16, + 1.1300000000000001, + 0.9500000000000001, + 0.77, + 0.52, + 0.33, + 0.2 + ], + [ + 2.58, + 2.6, + 2.68, + 2.65, + 2.52, + 2.43, + 2.35, + 2.3000000000000003, + 2.37, + 2.42, + 2.49, + 2.5100000000000002, + 2.42, + 2.21, + 2.15, + 2.13, + 1.98, + 1.73, + 1.47, + 1.29, + 1.18, + 1.21, + 1.32, + 1.44, + 1.59, + 1.95, + 2.5500000000000003, + 3.17, + 3.59, + 3.36, + 2.7800000000000002, + 2.04, + 1.3, + 0.6900000000000001, + 0.21, + -0.1, + -0.22, + -0.04, + 0.25, + 0.66, + 0.86, + 1.05, + 1.2, + 1.21, + 1.24, + 1.23, + 1.17, + 1.2, + 1.29, + 1.43, + 1.56, + 1.57, + 1.56, + 1.46, + 1.4000000000000001, + 1.32, + 0.99, + 0.38, + -0.24, + -0.59, + -0.8, + -0.47000000000000003, + -0.13, + 0.32, + 0.71, + 0.8200000000000001, + 0.72, + 0.33, + -0.06, + -0.2, + -0.14, + 0.05, + 0.11, + 0.16, + 0.24, + 0.32, + 0.51, + 0.51, + 0.44, + 0.76, + 1.18, + 2.19, + 3.42, + 4.5200000000000005, + 5.25, + 5.4, + 5.26, + 5.1000000000000005, + 4.72, + 4.28, + 4.03, + 4.09, + 4.3100000000000005, + 4.16, + 3.4, + 2.37, + 1.77, + 1.85, + 2.35, + 3.13, + 3.42, + 3.27, + 2.87, + 2.34, + 2.13, + 2.32, + 2.48, + 2.69, + 2.82, + 2.8000000000000003, + 2.9, + 2.89, + 3.02, + 3.08, + 3.09, + 3.02, + 2.94, + 2.8000000000000003, + 2.61, + 2.4, + 2.36, + 2.52, + 2.83, + 3.0, + 3.19, + 3.04, + 2.75, + 2.4, + 1.71, + 1.1300000000000001, + 0.54, + 0.18, + -0.18, + -0.38, + -0.22, + 0.21, + 1.05, + 1.53, + 1.44, + 1.31, + 1.32, + 1.6300000000000001, + 2.2, + 2.68, + 2.85, + 2.75, + 2.17, + 1.76, + 1.41, + 1.28, + 1.32, + 1.1500000000000001, + 1.04, + 0.76, + 0.5, + 0.28, + 0.18, + 0.26, + 0.45, + 0.62, + 0.58, + 0.39, + 0.09, + -0.16, + -0.26, + -0.29, + -0.23, + -0.07, + 0.1, + 0.21, + 0.29, + 0.17, + -0.08, + -0.42, + -0.66, + -0.78, + -0.76, + -0.77, + -0.8, + -0.77, + -0.74, + -0.61, + -0.42, + -0.22, + -0.01, + 0.15, + 0.26, + 0.31, + 0.32, + 0.35000000000000003, + 0.35000000000000003, + 0.4, + 0.47000000000000003, + 0.56, + 0.67, + 0.76, + 0.9, + 1.08, + 1.28, + 1.48, + 1.6, + 1.67, + 1.68, + 1.67, + 1.6400000000000001, + 1.62, + 1.56, + 1.5, + 1.43, + 1.32, + 1.18, + 0.91, + 0.76, + 0.55, + 0.52, + 0.44, + 0.35000000000000003, + 0.29, + 0.12, + 0.11, + -0.08, + -0.13, + -0.2, + -0.08, + 0.1, + 0.25, + 0.43, + 0.48, + 0.49, + 0.55, + 0.6, + 0.73, + 0.8300000000000001, + 0.75, + 0.34, + -0.3, + -0.97, + -1.5, + -1.67, + -1.6400000000000001, + -1.5, + -1.4000000000000001, + -1.33, + -1.3900000000000001, + -1.46, + -1.52, + -1.54, + -1.49, + -1.41, + -1.31, + -1.27, + -1.28, + -1.3800000000000001, + -1.42, + -1.3, + -1.04, + -0.63, + -0.2, + 0.16, + 0.29, + 0.22, + -0.01, + -0.27, + -0.47000000000000003, + -0.49, + -0.43, + -0.22, + -0.01, + 0.04, + 0.05, + -0.14, + -0.24, + -0.43, + -0.55, + -0.7000000000000001, + -0.75, + -0.66, + -0.46, + -0.27, + -0.12, + -0.04, + -0.05, + -0.1, + -0.21, + -0.35000000000000003, + -0.46, + -0.61, + -0.5700000000000001, + -0.5, + -0.34, + -0.21, + -0.24, + -0.27, + -0.23, + -0.19, + -0.13, + -0.23, + -0.49, + -0.73, + -0.88, + -0.93, + -1.1, + -1.2, + -1.1, + -0.66, + -0.12, + 0.18, + 0.23, + -0.11, + -0.26, + -0.55, + -0.59, + -0.45, + -0.41000000000000003, + -0.2, + -0.13, + 0.01, + 0.09, + 0.17, + 0.27, + 0.58, + 1.05, + 1.26, + 1.1300000000000001, + 0.62, + 0.13, + -0.06, + -0.12, + -0.05, + 0.03, + 0.25, + 0.41000000000000003, + 0.68, + 0.91, + 1.04, + 1.1, + 1.03, + 1.02, + 1.05, + 1.08, + 1.08, + 0.9400000000000001, + 0.74, + 0.46, + 0.16, + -0.12, + -0.36 + ], + [ + 2.68, + 2.69, + 2.7800000000000002, + 2.79, + 2.75, + 2.63, + 2.5, + 2.44, + 2.44, + 2.48, + 2.5300000000000002, + 2.5500000000000003, + 2.46, + 2.25, + 2.08, + 2.0300000000000002, + 1.87, + 1.61, + 1.3800000000000001, + 1.21, + 1.21, + 1.29, + 1.4000000000000001, + 1.51, + 1.69, + 2.09, + 2.7800000000000002, + 3.5500000000000003, + 3.86, + 3.62, + 2.99, + 2.25, + 1.52, + 0.9500000000000001, + 0.47000000000000003, + 0.16, + 0.03, + 0.05, + 0.31, + 0.43, + 0.58, + 0.76, + 0.92, + 1.1500000000000001, + 1.3, + 1.3, + 1.27, + 1.26, + 1.32, + 1.37, + 1.34, + 1.26, + 1.01, + 0.91, + 0.85, + 0.75, + 0.43, + -0.18, + -0.58, + -0.9400000000000001, + -0.75, + -0.42, + -0.04, + 0.39, + 0.64, + 0.72, + 0.59, + 0.22, + -0.12, + -0.26, + -0.19, + -0.07, + 0.04, + 0.15, + 0.31, + 0.59, + 0.74, + 0.71, + 0.63, + 0.59, + 1.03, + 1.83, + 3.02, + 4.18, + 4.95, + 5.19, + 5.11, + 4.76, + 4.32, + 3.68, + 3.2800000000000002, + 3.38, + 3.5700000000000003, + 3.45, + 2.7600000000000002, + 1.93, + 1.6500000000000001, + 1.8800000000000001, + 2.72, + 3.47, + 3.9, + 3.72, + 3.29, + 2.7800000000000002, + 2.64, + 2.82, + 2.94, + 3.17, + 3.2600000000000002, + 3.29, + 3.12, + 3.06, + 3.11, + 3.19, + 3.1, + 2.98, + 2.79, + 2.56, + 2.35, + 2.16, + 2.17, + 2.46, + 2.79, + 3.2, + 3.36, + 3.33, + 3.0300000000000002, + 2.44, + 1.77, + 0.97, + 0.37, + -0.13, + -0.54, + -0.8200000000000001, + -0.75, + -0.1, + 0.81, + 1.45, + 1.59, + 1.35, + 1.25, + 1.51, + 1.99, + 2.49, + 2.7800000000000002, + 2.71, + 2.54, + 2.15, + 2.04, + 1.8900000000000001, + 1.48, + 1.3, + 1.02, + 0.74, + 0.51, + 0.29, + 0.16, + 0.2, + 0.26, + 0.34, + 0.28, + 0.09, + -0.11, + -0.22, + -0.32, + -0.36, + -0.32, + -0.21, + -0.02, + 0.2, + 0.27, + 0.22, + -0.03, + -0.39, + -0.63, + -0.68, + -0.65, + -0.6, + -0.61, + -0.66, + -0.68, + -0.66, + -0.56, + -0.38, + -0.21, + -0.04, + 0.07, + 0.15, + 0.2, + 0.25, + 0.31, + 0.37, + 0.46, + 0.55, + 0.64, + 0.73, + 0.8200000000000001, + 0.98, + 1.19, + 1.3800000000000001, + 1.53, + 1.61, + 1.6500000000000001, + 1.6500000000000001, + 1.6600000000000001, + 1.6500000000000001, + 1.6500000000000001, + 1.6300000000000001, + 1.61, + 1.59, + 1.53, + 1.48, + 1.34, + 1.34, + 1.28, + 1.25, + 1.1300000000000001, + 0.91, + 0.74, + 0.49, + 0.29, + 0.08, + -0.02, + -0.12, + -0.04, + 0.09, + 0.22, + 0.42, + 0.52, + 0.56, + 0.6, + 0.6, + 0.53, + 0.45, + 0.1, + -0.5, + -1.08, + -1.57, + -1.73, + -1.7, + -1.6500000000000001, + -1.55, + -1.61, + -1.67, + -1.76, + -1.83, + -1.83, + -1.78, + -1.6600000000000001, + -1.54, + -1.41, + -1.33, + -1.26, + -1.12, + -0.97, + -0.64, + -0.32, + 0.03, + 0.33, + 0.47000000000000003, + 0.4, + 0.25, + 0.01, + -0.14, + -0.16, + -0.07, + 0.14, + 0.25, + 0.33, + 0.25, + 0.11, + -0.12, + -0.31, + -0.53, + -0.68, + -0.71, + -0.59, + -0.49, + -0.42, + -0.37, + -0.41000000000000003, + -0.43, + -0.51, + -0.61, + -0.6900000000000001, + -0.79, + -0.75, + -0.71, + -0.45, + -0.28, + -0.23, + -0.27, + -0.35000000000000003, + -0.35000000000000003, + -0.16, + -0.05, + -0.17, + -0.4, + -0.65, + -0.76, + -0.86, + -1.02, + -1.07, + -0.8300000000000001, + -0.39, + 0.1, + 0.3, + -0.03, + -0.4, + -1.04, + -1.33, + -1.43, + -1.3, + -0.92, + -0.6900000000000001, + -0.37, + -0.17, + 0.14, + 0.36, + 0.64, + 1.09, + 1.47, + 1.72, + 1.45, + 0.93, + 0.39, + 0.11, + 0.05, + 0.06, + 0.12, + 0.12, + 0.28, + 0.44, + 0.66, + 0.86, + 0.92, + 0.97, + 0.96, + 0.9400000000000001, + 0.9400000000000001, + 0.8200000000000001, + 0.63, + 0.34, + 0.0, + -0.32, + -0.64, + -0.93 + ], + [ + 2.72, + 2.7600000000000002, + 2.86, + 2.88, + 2.85, + 2.7600000000000002, + 2.62, + 2.5100000000000002, + 2.5, + 2.5100000000000002, + 2.56, + 2.65, + 2.5500000000000003, + 2.35, + 2.18, + 1.97, + 1.78, + 1.51, + 1.26, + 1.16, + 1.2, + 1.36, + 1.51, + 1.58, + 1.73, + 2.19, + 2.95, + 3.65, + 3.7800000000000002, + 3.52, + 2.87, + 2.14, + 1.55, + 0.98, + 0.61, + 0.29, + 0.09, + 0.1, + 0.12, + 0.19, + 0.24, + 0.39, + 0.71, + 1.03, + 1.2, + 1.23, + 1.18, + 1.17, + 1.23, + 1.26, + 1.16, + 0.9, + 0.61, + 0.31, + 0.25, + 0.09, + -0.23, + -0.46, + -0.86, + -0.72, + -0.51, + -0.2, + 0.18, + 0.35000000000000003, + 0.51, + 0.54, + 0.36, + 0.16, + -0.06, + -0.18, + -0.08, + 0.03, + 0.19, + 0.3, + 0.55, + 0.79, + 0.8200000000000001, + 0.77, + 0.53, + 0.5, + 0.85, + 1.6600000000000001, + 2.69, + 3.83, + 4.5200000000000005, + 4.78, + 4.75, + 4.44, + 3.79, + 3.06, + 2.54, + 2.5300000000000002, + 2.81, + 2.74, + 2.24, + 1.77, + 1.6, + 2.14, + 2.92, + 3.61, + 4.03, + 4.01, + 3.59, + 3.46, + 3.33, + 3.11, + 3.21, + 3.17, + 3.24, + 3.14, + 2.95, + 2.9, + 2.97, + 3.0300000000000002, + 2.96, + 2.73, + 2.43, + 2.14, + 1.82, + 1.7, + 1.82, + 2.15, + 2.66, + 3.08, + 3.2800000000000002, + 3.24, + 2.84, + 2.25, + 1.52, + 0.72, + 0.21, + -0.28, + -0.76, + -1.08, + -0.9, + -0.18, + 0.65, + 1.25, + 1.4000000000000001, + 1.16, + 1.07, + 1.32, + 1.83, + 2.37, + 2.68, + 2.68, + 2.56, + 2.57, + 2.45, + 2.07, + 1.67, + 1.19, + 0.89, + 0.77, + 0.58, + 0.46, + 0.38, + 0.28, + 0.28, + 0.2, + 0.06, + -0.1, + -0.21, + -0.3, + -0.37, + -0.43, + -0.43, + -0.31, + -0.1, + 0.13, + 0.25, + 0.2, + -0.08, + -0.43, + -0.62, + -0.66, + -0.58, + -0.52, + -0.48, + -0.52, + -0.6, + -0.62, + -0.59, + -0.48, + -0.33, + -0.2, + -0.08, + 0.0, + 0.07, + 0.16, + 0.24, + 0.35000000000000003, + 0.44, + 0.55, + 0.64, + 0.7000000000000001, + 0.79, + 0.91, + 1.1, + 1.3, + 1.45, + 1.56, + 1.62, + 1.6500000000000001, + 1.68, + 1.7, + 1.71, + 1.71, + 1.72, + 1.74, + 1.75, + 1.76, + 1.77, + 1.78, + 1.8, + 1.77, + 1.6300000000000001, + 1.41, + 1.17, + 0.91, + 0.73, + 0.53, + 0.35000000000000003, + 0.25, + 0.1, + 0.13, + 0.19, + 0.33, + 0.49, + 0.54, + 0.47000000000000003, + 0.3, + 0.17, + -0.06, + -0.3, + -0.67, + -1.19, + -1.47, + -1.6400000000000001, + -1.74, + -1.69, + -1.82, + -1.8800000000000001, + -1.95, + -2.04, + -2.05, + -2.04, + -1.95, + -1.82, + -1.6400000000000001, + -1.46, + -1.25, + -1.03, + -0.86, + -0.62, + -0.38, + -0.15, + 0.14, + 0.33, + 0.47000000000000003, + 0.5, + 0.37, + 0.26, + 0.11, + 0.0, + 0.09, + 0.07, + 0.15, + 0.13, + 0.03, + -0.06, + -0.28, + -0.48, + -0.7000000000000001, + -0.76, + -0.72, + -0.64, + -0.6, + -0.65, + -0.81, + -0.85, + -0.9, + -0.9500000000000001, + -0.99, + -1.07, + -1.05, + -1.0, + -0.7000000000000001, + -0.44, + -0.15, + -0.09, + -0.21, + -0.31, + -0.26, + -0.05, + 0.0, + -0.14, + -0.44, + -0.72, + -0.88, + -1.04, + -1.1400000000000001, + -1.11, + -0.77, + -0.14, + 0.29, + 0.21, + -0.15, + -0.88, + -1.52, + -1.96, + -2.05, + -1.82, + -1.44, + -1.05, + -0.73, + -0.36, + -0.01, + 0.47000000000000003, + 0.92, + 1.33, + 1.7, + 1.85, + 1.54, + 1.05, + 0.62, + 0.36, + 0.33, + 0.31, + 0.25, + 0.23, + 0.24, + 0.39, + 0.56, + 0.75, + 0.89, + 0.9500000000000001, + 0.91, + 0.88, + 0.72, + 0.53, + 0.22, + -0.15, + -0.51, + -0.86, + -1.16, + -1.46 + ], + [ + 2.79, + 2.8000000000000003, + 2.9, + 2.91, + 2.85, + 2.7800000000000002, + 2.66, + 2.5500000000000003, + 2.5300000000000002, + 2.54, + 2.57, + 2.66, + 2.68, + 2.48, + 2.23, + 2.02, + 1.74, + 1.45, + 1.21, + 1.1300000000000001, + 1.23, + 1.43, + 1.57, + 1.62, + 1.77, + 2.27, + 2.98, + 3.46, + 3.5500000000000003, + 3.0100000000000002, + 2.41, + 1.85, + 1.28, + 0.93, + 0.56, + 0.27, + 0.07, + -0.05, + -0.05, + -0.1, + -0.08, + 0.07, + 0.41000000000000003, + 0.74, + 0.9, + 0.9400000000000001, + 0.87, + 0.9500000000000001, + 1.11, + 1.16, + 1.07, + 0.75, + 0.34, + -0.02, + -0.3, + -0.45, + -0.56, + -0.79, + -0.6, + -0.43, + -0.16, + 0.16, + 0.3, + 0.42, + 0.45, + 0.43, + 0.29, + 0.13, + 0.02, + 0.02, + 0.07, + 0.19, + 0.34, + 0.51, + 0.72, + 0.81, + 0.8200000000000001, + 0.55, + 0.32, + 0.24, + 0.58, + 1.2, + 2.24, + 3.13, + 3.7600000000000002, + 4.11, + 4.07, + 3.9, + 3.2600000000000002, + 2.45, + 1.9100000000000001, + 1.8800000000000001, + 2.16, + 2.21, + 1.87, + 1.55, + 1.73, + 2.19, + 2.75, + 3.43, + 3.63, + 3.69, + 3.85, + 3.74, + 3.5100000000000002, + 3.2800000000000002, + 2.88, + 2.7600000000000002, + 2.63, + 2.45, + 2.35, + 2.31, + 2.46, + 2.5100000000000002, + 2.49, + 2.23, + 1.93, + 1.54, + 1.26, + 1.1500000000000001, + 1.32, + 1.77, + 2.3000000000000003, + 2.66, + 2.89, + 2.6, + 2.21, + 1.71, + 0.96, + 0.58, + 0.11, + -0.3, + -0.78, + -1.09, + -0.86, + -0.17, + 0.65, + 1.07, + 0.99, + 0.81, + 0.78, + 1.12, + 1.81, + 2.35, + 2.63, + 2.65, + 2.61, + 2.64, + 2.5300000000000002, + 2.16, + 1.53, + 1.04, + 0.79, + 0.6900000000000001, + 0.74, + 0.6900000000000001, + 0.5700000000000001, + 0.44, + 0.26, + 0.07, + -0.11, + -0.27, + -0.34, + -0.37, + -0.43, + -0.48, + -0.49, + -0.37, + -0.16, + 0.01, + 0.15, + 0.02, + -0.26, + -0.5, + -0.6900000000000001, + -0.68, + -0.59, + -0.45, + -0.4, + -0.38, + -0.43, + -0.5, + -0.49, + -0.45, + -0.35000000000000003, + -0.26, + -0.17, + -0.09, + -0.01, + 0.08, + 0.19, + 0.31, + 0.43, + 0.54, + 0.62, + 0.6900000000000001, + 0.76, + 0.89, + 1.04, + 1.23, + 1.4000000000000001, + 1.51, + 1.61, + 1.6600000000000001, + 1.71, + 1.75, + 1.77, + 1.78, + 1.8, + 1.82, + 1.87, + 1.9000000000000001, + 1.95, + 1.96, + 2.0100000000000002, + 1.97, + 1.86, + 1.72, + 1.48, + 1.34, + 1.16, + 1.06, + 0.91, + 0.78, + 0.64, + 0.45, + 0.46, + 0.43, + 0.5, + 0.52, + 0.37, + 0.1, + -0.21, + -0.42, + -0.63, + -0.88, + -1.05, + -1.33, + -1.52, + -1.62, + -1.83, + -1.96, + -2.11, + -2.18, + -2.19, + -2.2, + -2.15, + -2.05, + -1.8800000000000001, + -1.67, + -1.43, + -1.18, + -0.9400000000000001, + -0.76, + -0.55, + -0.41000000000000003, + -0.2, + -0.04, + 0.17, + 0.29, + 0.36, + 0.39, + 0.3, + 0.17, + 0.06, + -0.14, + -0.18, + -0.33, + -0.41000000000000003, + -0.45, + -0.58, + -0.68, + -0.88, + -0.9500000000000001, + -0.93, + -0.8200000000000001, + -0.72, + -0.77, + -1.0, + -1.2, + -1.3, + -1.33, + -1.32, + -1.34, + -1.29, + -1.28, + -1.08, + -0.77, + -0.31, + -0.02, + 0.13, + 0.02, + -0.11, + -0.04, + 0.0, + -0.01, + -0.27, + -0.66, + -0.96, + -1.18, + -1.32, + -1.41, + -1.26, + -0.6900000000000001, + -0.06, + 0.23, + 0.14, + -0.41000000000000003, + -1.1500000000000001, + -1.71, + -2.16, + -2.16, + -1.8900000000000001, + -1.55, + -1.1300000000000001, + -0.88, + -0.53, + -0.16, + 0.31, + 0.84, + 1.23, + 1.52, + 1.44, + 1.31, + 0.96, + 0.68, + 0.7000000000000001, + 0.67, + 0.65, + 0.56, + 0.46, + 0.45, + 0.49, + 0.66, + 0.79, + 0.92, + 0.93, + 0.89, + 0.71, + 0.5, + 0.18, + -0.21, + -0.62, + -1.0, + -1.32, + -1.58, + -1.87 + ], + [ + 2.82, + 2.86, + 2.94, + 2.88, + 2.82, + 2.71, + 2.62, + 2.58, + 2.56, + 2.5300000000000002, + 2.56, + 2.6, + 2.63, + 2.5500000000000003, + 2.29, + 2.04, + 1.74, + 1.45, + 1.23, + 1.1500000000000001, + 1.3, + 1.48, + 1.59, + 1.6500000000000001, + 1.84, + 2.27, + 2.91, + 3.3200000000000003, + 3.0100000000000002, + 2.47, + 1.86, + 1.33, + 1.07, + 0.74, + 0.5, + 0.21, + -0.05, + -0.16, + -0.25, + -0.31, + -0.35000000000000003, + -0.19, + 0.02, + 0.27, + 0.42, + 0.36, + 0.43, + 0.65, + 0.93, + 1.1300000000000001, + 1.05, + 0.75, + 0.27, + -0.19, + -0.53, + -0.67, + -0.79, + -0.5700000000000001, + -0.35000000000000003, + -0.08, + 0.21, + 0.3, + 0.38, + 0.5, + 0.54, + 0.47000000000000003, + 0.32, + 0.11, + 0.0, + 0.03, + 0.08, + 0.19, + 0.28, + 0.48, + 0.65, + 0.75, + 0.62, + 0.34, + 0.03, + -0.07, + 0.03, + 0.64, + 1.31, + 2.15, + 2.73, + 2.99, + 3.21, + 3.0300000000000002, + 2.67, + 1.95, + 1.44, + 1.56, + 1.8, + 1.83, + 1.58, + 1.46, + 1.6300000000000001, + 2.0300000000000002, + 2.52, + 2.67, + 2.93, + 3.24, + 3.47, + 3.52, + 3.2800000000000002, + 2.7800000000000002, + 2.31, + 1.8800000000000001, + 1.6500000000000001, + 1.48, + 1.34, + 1.44, + 1.6, + 1.81, + 1.78, + 1.68, + 1.44, + 1.1, + 0.89, + 0.75, + 0.97, + 1.41, + 1.8900000000000001, + 2.2600000000000002, + 2.15, + 1.8800000000000001, + 1.44, + 0.93, + 0.6900000000000001, + 0.37, + 0.24, + -0.1, + -0.61, + -0.87, + -0.71, + 0.05, + 0.75, + 1.0, + 0.77, + 0.46, + 0.48, + 1.04, + 1.81, + 2.5, + 2.77, + 2.7800000000000002, + 2.72, + 2.67, + 2.57, + 2.15, + 1.5, + 0.9400000000000001, + 0.72, + 0.73, + 0.8300000000000001, + 0.86, + 0.74, + 0.47000000000000003, + 0.17, + -0.12, + -0.37, + -0.48, + -0.5, + -0.48, + -0.49, + -0.54, + -0.5, + -0.41000000000000003, + -0.29, + -0.11, + -0.12, + -0.23, + -0.44, + -0.68, + -0.75, + -0.72, + -0.6, + -0.45, + -0.3, + -0.25, + -0.23, + -0.26, + -0.31, + -0.28, + -0.27, + -0.22, + -0.17, + -0.1, + -0.03, + 0.07, + 0.17, + 0.27, + 0.4, + 0.51, + 0.6, + 0.68, + 0.76, + 0.87, + 1.03, + 1.18, + 1.34, + 1.48, + 1.58, + 1.68, + 1.75, + 1.8, + 1.83, + 1.85, + 1.87, + 1.8900000000000001, + 1.92, + 1.97, + 2.0, + 2.0300000000000002, + 2.02, + 2.0100000000000002, + 1.96, + 1.83, + 1.76, + 1.62, + 1.56, + 1.47, + 1.44, + 1.31, + 1.22, + 1.06, + 0.89, + 0.8300000000000001, + 0.72, + 0.66, + 0.46, + 0.16, + -0.25, + -0.51, + -0.7000000000000001, + -0.76, + -0.89, + -1.02, + -1.23, + -1.48, + -1.7, + -1.92, + -2.07, + -2.2, + -2.18, + -2.19, + -2.13, + -2.0, + -1.8, + -1.6, + -1.35, + -1.1500000000000001, + -0.99, + -0.84, + -0.75, + -0.6, + -0.45, + -0.28, + -0.1, + 0.05, + 0.17, + 0.24, + 0.23, + 0.11, + -0.15, + -0.37, + -0.65, + -0.8300000000000001, + -0.99, + -1.05, + -1.09, + -1.18, + -1.23, + -1.21, + -1.08, + -0.88, + -0.8200000000000001, + -0.99, + -1.28, + -1.54, + -1.67, + -1.67, + -1.6300000000000001, + -1.5, + -1.46, + -1.33, + -1.1300000000000001, + -0.77, + -0.3, + 0.14, + 0.27, + 0.27, + 0.15, + 0.02, + -0.02, + -0.21, + -0.61, + -0.99, + -1.3, + -1.5, + -1.62, + -1.6400000000000001, + -1.24, + -0.67, + -0.16, + 0.15, + -0.17, + -0.7000000000000001, + -1.18, + -1.76, + -1.8900000000000001, + -1.85, + -1.58, + -1.18, + -0.92, + -0.66, + -0.53, + -0.19, + 0.15, + 0.59, + 0.93, + 1.03, + 1.02, + 0.88, + 0.78, + 0.93, + 1.01, + 1.11, + 1.08, + 0.91, + 0.78, + 0.65, + 0.68, + 0.6900000000000001, + 0.8, + 0.85, + 0.84, + 0.71, + 0.48, + 0.18, + -0.21, + -0.63, + -1.05, + -1.41, + -1.6600000000000001, + -1.9000000000000001, + -2.11 + ], + [ + 2.85, + 2.87, + 2.93, + 2.86, + 2.73, + 2.63, + 2.58, + 2.5500000000000003, + 2.58, + 2.5500000000000003, + 2.49, + 2.5300000000000002, + 2.56, + 2.48, + 2.3000000000000003, + 2.04, + 1.77, + 1.49, + 1.28, + 1.26, + 1.34, + 1.49, + 1.6, + 1.6500000000000001, + 1.83, + 2.31, + 2.86, + 2.91, + 2.59, + 1.8800000000000001, + 1.26, + 0.99, + 0.76, + 0.73, + 0.51, + 0.25, + -0.01, + -0.25, + -0.33, + -0.43, + -0.45, + -0.46, + -0.28, + -0.21, + -0.22, + -0.21, + -0.03, + 0.29, + 0.6900000000000001, + 1.0, + 0.92, + 0.67, + 0.18, + -0.32, + -0.59, + -0.76, + -0.5700000000000001, + -0.32, + 0.04, + 0.33, + 0.26, + 0.26, + 0.37, + 0.48, + 0.62, + 0.55, + 0.33, + 0.05, + -0.14, + -0.17, + -0.08, + -0.03, + 0.06, + 0.23, + 0.46, + 0.56, + 0.45, + 0.19, + -0.15, + -0.38, + -0.34, + -0.11, + 0.53, + 1.0, + 1.51, + 1.83, + 2.0300000000000002, + 2.19, + 1.8800000000000001, + 1.52, + 1.3, + 1.37, + 1.6600000000000001, + 1.72, + 1.53, + 1.35, + 1.57, + 1.9100000000000001, + 2.1, + 2.17, + 2.41, + 2.73, + 2.92, + 3.0, + 2.65, + 2.08, + 1.5, + 1.02, + 0.61, + 0.43, + 0.36, + 0.54, + 0.8200000000000001, + 1.09, + 1.25, + 1.35, + 1.24, + 1.17, + 0.88, + 0.88, + 0.9500000000000001, + 1.35, + 1.78, + 1.87, + 1.74, + 1.32, + 0.87, + 0.63, + 0.47000000000000003, + 0.53, + 0.5, + 0.33, + -0.14, + -0.53, + -0.24, + 0.32, + 0.9400000000000001, + 1.1, + 0.71, + 0.24, + 0.32, + 0.91, + 1.8800000000000001, + 2.69, + 3.0300000000000002, + 3.04, + 2.94, + 2.86, + 2.63, + 2.21, + 1.6500000000000001, + 1.1, + 0.79, + 0.86, + 0.96, + 0.99, + 0.8300000000000001, + 0.48, + 0.05, + -0.32, + -0.61, + -0.6900000000000001, + -0.67, + -0.61, + -0.58, + -0.5700000000000001, + -0.55, + -0.51, + -0.41000000000000003, + -0.38, + -0.37, + -0.46, + -0.66, + -0.77, + -0.81, + -0.74, + -0.6, + -0.43, + -0.26, + -0.09, + -0.04, + -0.02, + -0.04, + -0.09, + -0.13, + -0.14, + -0.12, + -0.06, + 0.01, + 0.09, + 0.17, + 0.27, + 0.37, + 0.49, + 0.6, + 0.68, + 0.78, + 0.89, + 1.02, + 1.17, + 1.31, + 1.44, + 1.58, + 1.68, + 1.78, + 1.83, + 1.8800000000000001, + 1.9100000000000001, + 1.93, + 1.95, + 1.97, + 2.0, + 2.0300000000000002, + 2.0300000000000002, + 2.0300000000000002, + 2.02, + 1.98, + 1.94, + 1.8800000000000001, + 1.84, + 1.79, + 1.77, + 1.73, + 1.74, + 1.6400000000000001, + 1.59, + 1.43, + 1.28, + 1.16, + 1.01, + 0.8300000000000001, + 0.51, + 0.2, + -0.19, + -0.31, + -0.4, + -0.43, + -0.5700000000000001, + -0.77, + -1.05, + -1.27, + -1.5, + -1.71, + -1.81, + -1.94, + -1.92, + -1.9000000000000001, + -1.72, + -1.57, + -1.35, + -1.23, + -1.1, + -1.04, + -1.02, + -0.97, + -0.85, + -0.71, + -0.52, + -0.33, + -0.18, + -0.05, + 0.0, + 0.02, + -0.15, + -0.43, + -0.73, + -1.03, + -1.26, + -1.3900000000000001, + -1.5, + -1.51, + -1.53, + -1.51, + -1.37, + -1.1, + -0.91, + -0.91, + -1.12, + -1.49, + -1.81, + -1.93, + -1.94, + -1.78, + -1.6400000000000001, + -1.44, + -1.32, + -1.1300000000000001, + -0.77, + -0.32, + 0.11, + 0.43, + 0.41000000000000003, + 0.21, + 0.01, + -0.28, + -0.65, + -1.0, + -1.36, + -1.6300000000000001, + -1.76, + -1.81, + -1.57, + -1.21, + -0.65, + -0.16, + -0.26, + -0.53, + -0.89, + -1.34, + -1.51, + -1.61, + -1.37, + -1.05, + -0.73, + -0.48, + -0.3, + -0.17, + -0.06, + 0.27, + 0.5, + 0.75, + 0.79, + 0.79, + 0.73, + 0.99, + 1.2, + 1.41, + 1.53, + 1.36, + 1.2, + 0.92, + 0.77, + 0.64, + 0.63, + 0.62, + 0.64, + 0.58, + 0.4, + 0.15, + -0.2, + -0.58, + -1.01, + -1.3900000000000001, + -1.67, + -1.9100000000000001, + -2.07, + -2.27 + ], + [ + 2.86, + 2.89, + 2.97, + 2.86, + 2.69, + 2.57, + 2.5100000000000002, + 2.5500000000000003, + 2.6, + 2.57, + 2.47, + 2.44, + 2.49, + 2.44, + 2.27, + 2.06, + 1.8, + 1.55, + 1.3900000000000001, + 1.31, + 1.4000000000000001, + 1.5, + 1.55, + 1.6, + 1.83, + 2.24, + 2.6, + 2.68, + 2.11, + 1.35, + 0.91, + 0.64, + 0.75, + 0.77, + 0.78, + 0.52, + 0.16, + -0.07, + -0.28, + -0.35000000000000003, + -0.47000000000000003, + -0.45, + -0.51, + -0.53, + -0.64, + -0.54, + -0.4, + 0.03, + 0.42, + 0.54, + 0.61, + 0.31, + -0.11, + -0.42, + -0.7000000000000001, + -0.56, + -0.34, + 0.1, + 0.49, + 0.47000000000000003, + 0.28, + 0.07, + 0.16, + 0.39, + 0.53, + 0.5700000000000001, + 0.27, + -0.03, + -0.21, + -0.32, + -0.23, + -0.21, + -0.11, + 0.02, + 0.26, + 0.42, + 0.33, + 0.08, + -0.17, + -0.47000000000000003, + -0.54, + -0.37, + -0.14, + 0.29, + 0.47000000000000003, + 0.78, + 0.96, + 1.16, + 1.26, + 1.08, + 1.1300000000000001, + 1.48, + 1.77, + 1.84, + 1.61, + 1.53, + 1.6500000000000001, + 1.99, + 2.08, + 2.29, + 2.38, + 2.46, + 2.63, + 2.32, + 1.93, + 1.46, + 0.87, + 0.33, + -0.02, + -0.34, + -0.26, + -0.13, + 0.3, + 0.68, + 1.05, + 1.31, + 1.51, + 1.49, + 1.43, + 1.28, + 1.41, + 1.6600000000000001, + 1.84, + 1.8900000000000001, + 1.51, + 1.06, + 0.73, + 0.54, + 0.59, + 0.76, + 0.98, + 0.8300000000000001, + 0.54, + 0.26, + 0.17, + 0.72, + 1.1400000000000001, + 0.96, + 0.6, + 0.11, + 0.03, + 0.78, + 1.86, + 2.67, + 3.19, + 3.23, + 3.14, + 2.96, + 2.74, + 2.39, + 1.84, + 1.37, + 1.1, + 1.01, + 1.11, + 1.11, + 0.87, + 0.49, + 0.02, + -0.46, + -0.71, + -0.87, + -0.81, + -0.73, + -0.6900000000000001, + -0.67, + -0.71, + -0.67, + -0.64, + -0.62, + -0.61, + -0.6900000000000001, + -0.75, + -0.8300000000000001, + -0.81, + -0.71, + -0.5700000000000001, + -0.39, + -0.19, + -0.01, + 0.14, + 0.17, + 0.15, + 0.05, + -0.02, + -0.07, + -0.06, + -0.02, + 0.05, + 0.12, + 0.19, + 0.28, + 0.38, + 0.5, + 0.61, + 0.72, + 0.81, + 0.93, + 1.06, + 1.18, + 1.32, + 1.43, + 1.57, + 1.69, + 1.79, + 1.86, + 1.9100000000000001, + 1.95, + 1.98, + 2.0, + 2.0100000000000002, + 2.0300000000000002, + 2.04, + 2.04, + 2.04, + 2.0300000000000002, + 2.0100000000000002, + 1.99, + 1.97, + 1.94, + 1.93, + 1.9100000000000001, + 1.9000000000000001, + 1.9000000000000001, + 1.93, + 1.87, + 1.86, + 1.71, + 1.6, + 1.47, + 1.34, + 1.12, + 0.81, + 0.6, + 0.35000000000000003, + 0.29, + 0.23, + 0.11, + -0.11, + -0.33, + -0.56, + -0.75, + -0.9500000000000001, + -1.16, + -1.27, + -1.41, + -1.32, + -1.28, + -1.1, + -1.03, + -0.97, + -0.99, + -1.06, + -1.1400000000000001, + -1.12, + -1.06, + -0.9400000000000001, + -0.75, + -0.62, + -0.45, + -0.4, + -0.32, + -0.4, + -0.56, + -0.79, + -1.1, + -1.29, + -1.48, + -1.6500000000000001, + -1.72, + -1.81, + -1.78, + -1.6400000000000001, + -1.35, + -1.06, + -0.86, + -0.88, + -1.19, + -1.61, + -1.8900000000000001, + -2.09, + -2.0300000000000002, + -1.8800000000000001, + -1.6, + -1.3800000000000001, + -1.23, + -1.07, + -0.81, + -0.36, + 0.13, + 0.44, + 0.47000000000000003, + 0.2, + -0.25, + -0.7000000000000001, + -1.1, + -1.44, + -1.69, + -1.82, + -1.9000000000000001, + -1.73, + -1.5, + -1.0, + -0.51, + -0.44, + -0.53, + -0.81, + -1.1500000000000001, + -1.3, + -1.42, + -1.28, + -0.99, + -0.64, + -0.34, + -0.07, + 0.07, + 0.25, + 0.39, + 0.52, + 0.72, + 0.8200000000000001, + 0.84, + 0.8300000000000001, + 1.02, + 1.26, + 1.49, + 1.73, + 1.57, + 1.46, + 1.17, + 0.9, + 0.68, + 0.52, + 0.45, + 0.42, + 0.34, + 0.25, + 0.05, + -0.23, + -0.56, + -0.9400000000000001, + -1.31, + -1.6, + -1.86, + -2.0, + -2.16, + -2.34 + ], + [ + 2.87, + 2.88, + 2.92, + 2.87, + 2.69, + 2.52, + 2.46, + 2.5100000000000002, + 2.5300000000000002, + 2.5300000000000002, + 2.47, + 2.41, + 2.41, + 2.37, + 2.2600000000000002, + 2.06, + 1.85, + 1.6400000000000001, + 1.45, + 1.4000000000000001, + 1.43, + 1.48, + 1.51, + 1.57, + 1.72, + 2.1, + 2.49, + 2.39, + 1.82, + 1.26, + 0.71, + 0.68, + 0.8300000000000001, + 1.12, + 1.19, + 1.02, + 0.64, + 0.25, + 0.06, + -0.14, + -0.22, + -0.35000000000000003, + -0.4, + -0.5700000000000001, + -0.59, + -0.63, + -0.31, + -0.08, + 0.11, + 0.17, + 0.1, + -0.11, + -0.25, + -0.56, + -0.48, + -0.31, + 0.12, + 0.61, + 0.79, + 0.63, + 0.2, + -0.06, + -0.06, + 0.22, + 0.4, + 0.35000000000000003, + 0.27, + 0.04, + -0.17, + -0.11, + -0.16, + -0.09, + -0.11, + 0.05, + 0.24, + 0.28, + 0.23, + 0.05, + -0.18, + -0.31, + -0.43, + -0.4, + -0.23, + -0.15, + -0.01, + 0.01, + 0.24, + 0.32, + 0.49, + 0.73, + 1.16, + 1.71, + 2.23, + 2.2600000000000002, + 2.02, + 1.79, + 2.07, + 2.38, + 2.73, + 2.82, + 2.69, + 2.63, + 2.2, + 1.79, + 1.3800000000000001, + 0.93, + 0.59, + 0.15, + -0.27, + -0.41000000000000003, + -0.59, + -0.28, + 0.02, + 0.51, + 0.99, + 1.3900000000000001, + 1.8, + 1.8900000000000001, + 1.94, + 1.85, + 1.9000000000000001, + 2.02, + 2.15, + 1.8800000000000001, + 1.45, + 0.97, + 0.65, + 0.58, + 0.71, + 1.06, + 1.34, + 1.52, + 1.25, + 0.97, + 0.9500000000000001, + 0.91, + 0.87, + 0.72, + 0.1, + -0.32, + -0.15, + 0.46, + 1.49, + 2.54, + 2.88, + 3.1, + 3.0, + 2.85, + 2.68, + 2.37, + 2.0100000000000002, + 1.55, + 1.27, + 1.18, + 1.17, + 1.08, + 0.91, + 0.46, + 0.01, + -0.43, + -0.78, + -0.88, + -0.91, + -0.88, + -0.84, + -0.92, + -0.96, + -0.96, + -0.92, + -0.8300000000000001, + -0.81, + -0.79, + -0.8300000000000001, + -0.8200000000000001, + -0.77, + -0.66, + -0.51, + -0.35000000000000003, + -0.14, + 0.06, + 0.19, + 0.28, + 0.21, + 0.13, + 0.01, + -0.05, + -0.04, + 0.01, + 0.07, + 0.15, + 0.21, + 0.28, + 0.39, + 0.51, + 0.64, + 0.75, + 0.86, + 0.98, + 1.11, + 1.23, + 1.35, + 1.46, + 1.58, + 1.7, + 1.81, + 1.8800000000000001, + 1.93, + 1.97, + 2.0100000000000002, + 2.0300000000000002, + 2.05, + 2.06, + 2.07, + 2.07, + 2.07, + 2.06, + 2.04, + 2.0300000000000002, + 2.02, + 2.02, + 2.02, + 2.02, + 2.0, + 2.0100000000000002, + 2.0300000000000002, + 2.07, + 2.05, + 2.0300000000000002, + 1.93, + 1.8800000000000001, + 1.78, + 1.71, + 1.56, + 1.3800000000000001, + 1.22, + 1.1, + 1.0, + 0.89, + 0.72, + 0.5, + 0.32, + 0.15, + -0.03, + -0.25, + -0.45, + -0.5700000000000001, + -0.68, + -0.63, + -0.63, + -0.64, + -0.7000000000000001, + -0.8300000000000001, + -0.99, + -1.1, + -1.21, + -1.19, + -1.1400000000000001, + -1.05, + -0.92, + -0.87, + -0.8, + -0.8, + -0.86, + -0.99, + -1.2, + -1.33, + -1.46, + -1.55, + -1.68, + -1.87, + -1.94, + -1.9100000000000001, + -1.6400000000000001, + -1.29, + -0.93, + -0.68, + -0.77, + -1.09, + -1.43, + -1.84, + -1.9100000000000001, + -1.97, + -1.77, + -1.49, + -1.28, + -1.1400000000000001, + -1.01, + -0.78, + -0.41000000000000003, + 0.1, + 0.39, + 0.33, + 0.0, + -0.62, + -1.1500000000000001, + -1.53, + -1.79, + -1.8800000000000001, + -1.93, + -1.8, + -1.62, + -1.19, + -0.75, + -0.54, + -0.5, + -0.71, + -1.01, + -1.1400000000000001, + -1.26, + -1.19, + -0.99, + -0.72, + -0.37, + -0.07, + 0.15, + 0.4, + 0.58, + 0.79, + 0.91, + 0.97, + 0.96, + 0.96, + 1.0, + 1.19, + 1.35, + 1.62, + 1.44, + 1.37, + 1.16, + 0.92, + 0.72, + 0.5, + 0.44, + 0.36, + 0.26, + 0.16, + -0.04, + -0.25, + -0.54, + -0.85, + -1.19, + -1.49, + -1.75, + -1.9000000000000001, + -2.06, + -2.21, + -2.38 + ], + [ + 2.86, + 2.88, + 2.94, + 2.83, + 2.67, + 2.52, + 2.4, + 2.38, + 2.43, + 2.42, + 2.37, + 2.34, + 2.33, + 2.3000000000000003, + 2.21, + 2.09, + 1.9100000000000001, + 1.72, + 1.55, + 1.42, + 1.43, + 1.47, + 1.49, + 1.51, + 1.69, + 2.0, + 2.34, + 2.39, + 2.07, + 1.3800000000000001, + 1.09, + 0.97, + 1.25, + 1.6300000000000001, + 1.8, + 1.6400000000000001, + 1.25, + 0.84, + 0.5, + 0.32, + 0.13, + 0.02, + -0.14, + -0.26, + -0.36, + -0.23, + -0.06, + 0.11, + 0.08, + 0.04, + -0.15, + -0.12, + -0.24, + -0.22, + -0.15, + 0.15, + 0.63, + 1.0, + 1.1, + 0.78, + 0.21, + -0.16, + -0.05, + 0.1, + 0.24, + 0.27, + 0.26, + 0.24, + 0.29, + 0.25, + 0.24, + 0.21, + 0.17, + 0.22, + 0.26, + 0.27, + 0.14, + -0.01, + -0.12, + -0.2, + -0.25, + -0.26, + -0.26, + -0.27, + -0.26, + -0.25, + -0.27, + -0.14, + 0.0, + 0.58, + 1.32, + 2.31, + 3.0100000000000002, + 3.0300000000000002, + 2.6, + 2.43, + 2.58, + 3.0500000000000003, + 3.49, + 3.2800000000000002, + 3.0500000000000003, + 2.45, + 1.83, + 1.26, + 0.84, + 0.6900000000000001, + 0.51, + 0.31, + 0.02, + -0.26, + -0.32, + -0.35000000000000003, + 0.01, + 0.36, + 0.81, + 1.34, + 1.68, + 2.07, + 2.06, + 2.11, + 2.16, + 2.31, + 2.2600000000000002, + 1.95, + 1.42, + 0.88, + 0.56, + 0.54, + 0.79, + 1.25, + 1.74, + 1.94, + 2.02, + 1.77, + 1.46, + 1.12, + 0.56, + 0.01, + -0.5, + -0.64, + -0.59, + 0.24, + 1.18, + 1.82, + 2.34, + 2.36, + 2.39, + 2.33, + 2.25, + 2.14, + 1.83, + 1.54, + 1.25, + 1.1, + 1.02, + 0.96, + 0.67, + 0.39, + -0.05, + -0.43, + -0.71, + -0.9, + -0.9500000000000001, + -0.99, + -1.07, + -1.18, + -1.25, + -1.27, + -1.16, + -1.04, + -0.9400000000000001, + -0.89, + -0.85, + -0.8200000000000001, + -0.73, + -0.61, + -0.48, + -0.31, + -0.14, + 0.04, + 0.2, + 0.23, + 0.23, + 0.1, + -0.01, + -0.05, + -0.04, + 0.01, + 0.08, + 0.13, + 0.19, + 0.28, + 0.39, + 0.52, + 0.65, + 0.78, + 0.89, + 1.02, + 1.1500000000000001, + 1.28, + 1.3900000000000001, + 1.49, + 1.61, + 1.73, + 1.82, + 1.9000000000000001, + 1.94, + 1.99, + 2.0300000000000002, + 2.06, + 2.07, + 2.08, + 2.09, + 2.1, + 2.1, + 2.1, + 2.09, + 2.07, + 2.07, + 2.08, + 2.09, + 2.09, + 2.08, + 2.09, + 2.12, + 2.16, + 2.21, + 2.2, + 2.2, + 2.16, + 2.16, + 2.14, + 2.17, + 2.0300000000000002, + 1.94, + 1.81, + 1.74, + 1.62, + 1.49, + 1.33, + 1.17, + 1.03, + 0.85, + 0.67, + 0.45, + 0.25, + 0.1, + -0.05, + -0.15, + -0.29, + -0.44, + -0.62, + -0.78, + -0.98, + -1.07, + -1.22, + -1.22, + -1.25, + -1.2, + -1.19, + -1.1300000000000001, + -1.1500000000000001, + -1.23, + -1.36, + -1.47, + -1.52, + -1.51, + -1.55, + -1.68, + -1.8800000000000001, + -2.0300000000000002, + -1.9000000000000001, + -1.6500000000000001, + -1.21, + -0.75, + -0.55, + -0.49, + -0.71, + -1.1, + -1.24, + -1.49, + -1.48, + -1.44, + -1.3, + -1.1, + -1.0, + -0.9, + -0.73, + -0.37, + -0.09, + 0.12, + 0.04, + -0.49, + -1.03, + -1.54, + -1.8900000000000001, + -1.97, + -2.0, + -1.87, + -1.69, + -1.29, + -0.87, + -0.58, + -0.38, + -0.53, + -0.78, + -0.93, + -1.04, + -1.02, + -0.92, + -0.73, + -0.45, + -0.21, + 0.05, + 0.33, + 0.58, + 0.86, + 1.06, + 1.21, + 1.1500000000000001, + 1.07, + 1.0, + 0.99, + 1.07, + 1.25, + 1.1, + 0.98, + 0.8, + 0.66, + 0.5700000000000001, + 0.41000000000000003, + 0.39, + 0.39, + 0.37, + 0.25, + 0.05, + -0.19, + -0.45, + -0.73, + -1.04, + -1.32, + -1.61, + -1.77, + -1.93, + -2.07, + -2.23, + -2.37 + ], + [ + 2.8000000000000003, + 2.82, + 2.84, + 2.79, + 2.65, + 2.49, + 2.37, + 2.2800000000000002, + 2.2600000000000002, + 2.27, + 2.2600000000000002, + 2.25, + 2.2600000000000002, + 2.23, + 2.19, + 2.11, + 1.99, + 1.81, + 1.6400000000000001, + 1.5, + 1.42, + 1.46, + 1.49, + 1.53, + 1.61, + 1.98, + 2.41, + 2.62, + 2.48, + 2.15, + 1.71, + 1.73, + 1.96, + 2.24, + 2.47, + 2.33, + 1.8900000000000001, + 1.45, + 1.08, + 0.79, + 0.58, + 0.39, + 0.19, + 0.07, + 0.01, + 0.14, + 0.31, + 0.48, + 0.41000000000000003, + 0.18, + 0.13, + 0.1, + 0.04, + 0.11, + 0.18, + 0.5, + 0.87, + 1.23, + 1.29, + 0.84, + 0.36, + 0.04, + -0.01, + 0.17, + 0.25, + 0.33, + 0.4, + 0.61, + 0.77, + 0.68, + 0.65, + 0.46, + 0.4, + 0.33, + 0.35000000000000003, + 0.27, + 0.1, + -0.06, + -0.12, + -0.15, + -0.18, + -0.22, + -0.29, + -0.36, + -0.39, + -0.37, + -0.37, + -0.33, + 0.07, + 0.59, + 1.8, + 3.11, + 3.7800000000000002, + 4.07, + 3.39, + 2.97, + 3.19, + 3.71, + 3.6, + 3.44, + 2.77, + 2.02, + 1.34, + 0.7000000000000001, + 0.43, + 0.48, + 0.6, + 0.53, + 0.36, + 0.09, + -0.06, + -0.08, + -0.02, + 0.27, + 0.5700000000000001, + 0.98, + 1.44, + 1.71, + 1.93, + 2.0300000000000002, + 2.2, + 2.4, + 2.42, + 2.1, + 1.49, + 0.96, + 0.6, + 0.54, + 0.89, + 1.37, + 1.95, + 2.41, + 2.5, + 2.49, + 2.04, + 1.37, + 0.52, + -0.53, + -0.78, + -1.0, + -0.45, + 0.11, + 0.84, + 1.33, + 1.46, + 1.47, + 1.44, + 1.48, + 1.54, + 1.56, + 1.45, + 1.19, + 0.97, + 0.79, + 0.7000000000000001, + 0.56, + 0.43, + 0.12, + -0.15, + -0.47000000000000003, + -0.71, + -0.88, + -0.99, + -1.09, + -1.21, + -1.34, + -1.49, + -1.44, + -1.33, + -1.19, + -1.05, + -0.96, + -0.89, + -0.81, + -0.71, + -0.6, + -0.47000000000000003, + -0.33, + -0.18, + -0.01, + 0.1, + 0.18, + 0.12, + 0.03, + -0.05, + -0.11, + -0.08, + -0.02, + 0.04, + 0.1, + 0.18, + 0.26, + 0.39, + 0.52, + 0.66, + 0.79, + 0.92, + 1.05, + 1.19, + 1.31, + 1.43, + 1.52, + 1.6300000000000001, + 1.74, + 1.84, + 1.9100000000000001, + 1.96, + 2.0100000000000002, + 2.05, + 2.08, + 2.09, + 2.1, + 2.11, + 2.13, + 2.15, + 2.15, + 2.14, + 2.13, + 2.12, + 2.13, + 2.14, + 2.15, + 2.14, + 2.15, + 2.19, + 2.25, + 2.31, + 2.38, + 2.38, + 2.41, + 2.43, + 2.49, + 2.48, + 2.5, + 2.38, + 2.34, + 2.25, + 2.19, + 2.07, + 1.97, + 1.85, + 1.74, + 1.61, + 1.43, + 1.26, + 1.0, + 0.78, + 0.53, + 0.29, + 0.09, + -0.13, + -0.27, + -0.47000000000000003, + -0.6, + -0.81, + -0.9400000000000001, + -1.1300000000000001, + -1.1500000000000001, + -1.24, + -1.21, + -1.22, + -1.28, + -1.4000000000000001, + -1.56, + -1.6500000000000001, + -1.67, + -1.57, + -1.54, + -1.71, + -1.8900000000000001, + -2.0, + -1.94, + -1.59, + -1.17, + -0.71, + -0.3, + -0.19, + -0.21, + -0.31, + -0.49, + -0.61, + -0.79, + -0.89, + -0.9, + -0.87, + -0.8, + -0.72, + -0.59, + -0.48, + -0.31, + -0.34, + -0.61, + -0.99, + -1.5, + -1.8900000000000001, + -2.02, + -2.1, + -1.96, + -1.79, + -1.42, + -1.01, + -0.68, + -0.34, + -0.44, + -0.56, + -0.75, + -0.86, + -0.86, + -0.79, + -0.64, + -0.46, + -0.29, + -0.1, + 0.14, + 0.41000000000000003, + 0.7000000000000001, + 0.99, + 1.27, + 1.33, + 1.31, + 1.17, + 0.99, + 0.9500000000000001, + 0.9, + 0.78, + 0.59, + 0.38, + 0.19, + 0.19, + 0.17, + 0.19, + 0.26, + 0.32, + 0.34, + 0.23, + -0.03, + -0.28, + -0.56, + -0.8200000000000001, + -1.09, + -1.3800000000000001, + -1.58, + -1.77, + -1.9000000000000001, + -2.06, + -2.21, + -2.35 + ], + [ + 2.74, + 2.75, + 2.8000000000000003, + 2.71, + 2.61, + 2.48, + 2.33, + 2.24, + 2.16, + 2.13, + 2.14, + 2.16, + 2.18, + 2.19, + 2.18, + 2.13, + 2.0300000000000002, + 1.8900000000000001, + 1.71, + 1.54, + 1.47, + 1.45, + 1.47, + 1.52, + 1.67, + 1.94, + 2.5, + 3.02, + 3.06, + 2.91, + 2.7600000000000002, + 2.68, + 2.82, + 3.0300000000000002, + 3.04, + 2.88, + 2.47, + 1.98, + 1.59, + 1.25, + 0.91, + 0.6, + 0.39, + 0.22, + 0.21, + 0.37, + 0.65, + 0.78, + 0.84, + 0.64, + 0.49, + 0.29, + 0.22, + 0.1, + 0.18, + 0.39, + 0.77, + 1.12, + 1.2, + 0.99, + 0.53, + 0.26, + 0.29, + 0.38, + 0.45, + 0.52, + 0.76, + 0.99, + 0.99, + 0.99, + 0.7000000000000001, + 0.55, + 0.41000000000000003, + 0.34, + 0.35000000000000003, + 0.29, + 0.12, + -0.09, + -0.18, + -0.16, + -0.13, + -0.2, + -0.29, + -0.39, + -0.47000000000000003, + -0.39, + -0.29, + -0.09, + 0.27, + 1.1500000000000001, + 2.21, + 3.5100000000000002, + 4.72, + 4.23, + 3.81, + 3.4, + 3.58, + 3.5500000000000003, + 3.46, + 2.87, + 2.12, + 1.48, + 0.79, + 0.32, + 0.16, + 0.29, + 0.61, + 0.72, + 0.52, + 0.3, + 0.11, + 0.07, + 0.04, + 0.13, + 0.33, + 0.6, + 1.0, + 1.35, + 1.6, + 1.8, + 2.09, + 2.47, + 2.52, + 2.29, + 1.82, + 1.22, + 0.88, + 0.81, + 1.0, + 1.55, + 2.11, + 2.6, + 2.95, + 2.89, + 2.7, + 1.85, + 0.75, + -0.1, + -0.93, + -0.66, + -0.26, + 0.42, + 0.92, + 1.09, + 0.91, + 0.78, + 0.63, + 0.67, + 0.81, + 0.85, + 0.8300000000000001, + 0.68, + 0.46, + 0.3, + 0.19, + 0.12, + -0.02, + -0.16, + -0.38, + -0.56, + -0.77, + -0.91, + -1.03, + -1.1500000000000001, + -1.28, + -1.44, + -1.5, + -1.52, + -1.41, + -1.26, + -1.1400000000000001, + -1.03, + -0.93, + -0.8300000000000001, + -0.72, + -0.61, + -0.51, + -0.4, + -0.26, + -0.12, + 0.0, + 0.04, + 0.04, + -0.04, + -0.13, + -0.16, + -0.15, + -0.07, + 0.0, + 0.08, + 0.16, + 0.27, + 0.4, + 0.54, + 0.68, + 0.81, + 0.9400000000000001, + 1.07, + 1.21, + 1.33, + 1.45, + 1.55, + 1.6500000000000001, + 1.75, + 1.84, + 1.92, + 1.97, + 2.02, + 2.07, + 2.1, + 2.11, + 2.12, + 2.14, + 2.17, + 2.19, + 2.2, + 2.2, + 2.18, + 2.17, + 2.17, + 2.19, + 2.2, + 2.21, + 2.23, + 2.27, + 2.34, + 2.41, + 2.47, + 2.5500000000000003, + 2.58, + 2.66, + 2.69, + 2.74, + 2.7, + 2.67, + 2.61, + 2.59, + 2.5100000000000002, + 2.45, + 2.37, + 2.3000000000000003, + 2.22, + 2.11, + 2.0, + 1.82, + 1.6400000000000001, + 1.33, + 1.06, + 0.77, + 0.51, + 0.36, + 0.18, + 0.06, + -0.11, + -0.3, + -0.55, + -0.7000000000000001, + -0.87, + -0.93, + -1.0, + -1.1, + -1.22, + -1.45, + -1.67, + -1.81, + -1.8, + -1.72, + -1.69, + -1.74, + -1.93, + -2.0100000000000002, + -1.84, + -1.58, + -1.09, + -0.62, + -0.2, + 0.19, + 0.32, + 0.45, + 0.37, + 0.29, + 0.0, + -0.27, + -0.46, + -0.56, + -0.5700000000000001, + -0.52, + -0.52, + -0.56, + -0.7000000000000001, + -0.9400000000000001, + -1.21, + -1.53, + -1.86, + -2.0, + -2.11, + -2.0100000000000002, + -1.9000000000000001, + -1.56, + -1.2, + -0.89, + -0.52, + -0.6, + -0.63, + -0.8300000000000001, + -0.91, + -0.91, + -0.8300000000000001, + -0.67, + -0.48, + -0.31, + -0.2, + -0.05, + 0.18, + 0.46, + 0.74, + 1.04, + 1.27, + 1.47, + 1.3900000000000001, + 1.29, + 1.1500000000000001, + 0.96, + 0.75, + 0.45, + 0.16, + -0.16, + -0.21, + -0.2, + -0.12, + -0.03, + 0.04, + 0.15, + 0.15, + 0.02, + -0.17, + -0.43, + -0.62, + -0.85, + -1.09, + -1.33, + -1.56, + -1.7, + -1.85, + -2.0100000000000002, + -2.17, + -2.29 + ], + [ + 2.62, + 2.63, + 2.64, + 2.6, + 2.5300000000000002, + 2.45, + 2.34, + 2.23, + 2.13, + 2.04, + 2.0, + 2.04, + 2.09, + 2.14, + 2.17, + 2.14, + 2.08, + 1.96, + 1.78, + 1.61, + 1.49, + 1.45, + 1.44, + 1.5, + 1.6300000000000001, + 2.08, + 2.64, + 3.17, + 3.61, + 3.67, + 3.7, + 3.7600000000000002, + 3.8200000000000003, + 3.8200000000000003, + 3.68, + 3.35, + 2.89, + 2.45, + 2.04, + 1.6, + 1.1, + 0.65, + 0.38, + 0.23, + 0.33, + 0.48, + 0.8, + 1.12, + 1.09, + 1.01, + 0.71, + 0.37, + 0.06, + -0.17, + -0.15, + 0.01, + 0.38, + 0.81, + 1.02, + 0.93, + 0.7000000000000001, + 0.54, + 0.55, + 0.63, + 0.74, + 0.88, + 1.09, + 1.1400000000000001, + 1.17, + 0.89, + 0.61, + 0.51, + 0.33, + 0.35000000000000003, + 0.37, + 0.35000000000000003, + 0.18, + -0.06, + -0.2, + -0.19, + -0.1, + -0.06, + -0.15, + -0.27, + -0.36, + -0.39, + -0.18, + 0.16, + 0.72, + 1.54, + 2.63, + 3.93, + 4.15, + 4.2, + 3.52, + 3.22, + 3.22, + 3.22, + 2.74, + 2.07, + 1.54, + 1.02, + 0.53, + 0.11, + -0.02, + 0.24, + 0.5700000000000001, + 0.7000000000000001, + 0.58, + 0.3, + 0.11, + -0.02, + -0.05, + -0.07, + 0.02, + 0.31, + 0.61, + 1.03, + 1.31, + 1.6, + 1.93, + 2.27, + 2.56, + 2.4, + 2.06, + 1.68, + 1.33, + 1.23, + 1.35, + 1.67, + 2.21, + 2.71, + 3.0700000000000003, + 3.29, + 3.0100000000000002, + 2.5500000000000003, + 1.46, + 0.37, + -0.14, + -0.35000000000000003, + 0.22, + 0.9, + 1.21, + 1.21, + 0.9400000000000001, + 0.5, + 0.32, + 0.22, + 0.21, + 0.24, + 0.18, + 0.07, + -0.1, + -0.25, + -0.37, + -0.4, + -0.46, + -0.54, + -0.62, + -0.77, + -0.88, + -1.01, + -1.09, + -1.2, + -1.32, + -1.42, + -1.5, + -1.48, + -1.41, + -1.3, + -1.2, + -1.08, + -0.96, + -0.85, + -0.74, + -0.65, + -0.5700000000000001, + -0.48, + -0.35000000000000003, + -0.23, + -0.11, + -0.04, + -0.04, + -0.1, + -0.16, + -0.23, + -0.17, + -0.11, + 0.0, + 0.09, + 0.19, + 0.29, + 0.42, + 0.5700000000000001, + 0.71, + 0.84, + 0.97, + 1.1, + 1.23, + 1.35, + 1.47, + 1.57, + 1.67, + 1.77, + 1.86, + 1.93, + 1.99, + 2.0300000000000002, + 2.08, + 2.11, + 2.13, + 2.15, + 2.17, + 2.2, + 2.23, + 2.25, + 2.2600000000000002, + 2.24, + 2.22, + 2.22, + 2.24, + 2.25, + 2.2800000000000002, + 2.31, + 2.36, + 2.42, + 2.49, + 2.56, + 2.64, + 2.72, + 2.77, + 2.86, + 2.85, + 2.84, + 2.81, + 2.79, + 2.75, + 2.71, + 2.66, + 2.61, + 2.5500000000000003, + 2.5, + 2.42, + 2.33, + 2.22, + 2.02, + 1.81, + 1.5, + 1.26, + 1.04, + 0.88, + 0.77, + 0.66, + 0.46, + 0.26, + 0.02, + -0.21, + -0.37, + -0.52, + -0.6900000000000001, + -0.89, + -1.19, + -1.51, + -1.77, + -1.96, + -2.0100000000000002, + -1.92, + -1.87, + -1.92, + -1.96, + -1.9000000000000001, + -1.75, + -1.3800000000000001, + -0.99, + -0.55, + -0.07, + 0.31, + 0.78, + 0.9400000000000001, + 1.12, + 0.91, + 0.65, + 0.3, + -0.04, + -0.23, + -0.32, + -0.38, + -0.47000000000000003, + -0.7000000000000001, + -1.1, + -1.45, + -1.6600000000000001, + -1.8900000000000001, + -1.93, + -2.0100000000000002, + -1.94, + -1.8900000000000001, + -1.6300000000000001, + -1.35, + -1.11, + -0.8200000000000001, + -0.92, + -0.99, + -1.18, + -1.31, + -1.28, + -1.16, + -0.9500000000000001, + -0.7000000000000001, + -0.46, + -0.27, + -0.15, + -0.04, + 0.14, + 0.4, + 0.6900000000000001, + 0.9500000000000001, + 1.26, + 1.4000000000000001, + 1.49, + 1.41, + 1.35, + 1.05, + 0.7000000000000001, + 0.3, + -0.18, + -0.38, + -0.51, + -0.43, + -0.32, + -0.26, + -0.21, + -0.18, + -0.19, + -0.29, + -0.45, + -0.6, + -0.72, + -0.85, + -1.05, + -1.27, + -1.47, + -1.6400000000000001, + -1.79, + -1.95, + -2.1, + -2.23 + ], + [ + 2.5, + 2.5100000000000002, + 2.52, + 2.46, + 2.44, + 2.39, + 2.33, + 2.23, + 2.11, + 1.98, + 1.8800000000000001, + 1.8900000000000001, + 1.97, + 2.05, + 2.12, + 2.16, + 2.14, + 2.05, + 1.84, + 1.6500000000000001, + 1.52, + 1.43, + 1.42, + 1.44, + 1.75, + 2.14, + 2.75, + 3.4, + 3.83, + 4.25, + 4.45, + 4.71, + 4.75, + 4.62, + 4.32, + 3.79, + 3.29, + 2.88, + 2.48, + 1.93, + 1.3, + 0.76, + 0.31, + 0.35000000000000003, + 0.4, + 0.68, + 0.96, + 1.2, + 1.36, + 1.1500000000000001, + 0.88, + 0.39, + -0.19, + -0.42, + -0.51, + -0.31, + 0.04, + 0.44, + 0.79, + 0.84, + 0.74, + 0.65, + 0.68, + 0.8200000000000001, + 0.93, + 1.1500000000000001, + 1.23, + 1.32, + 1.1300000000000001, + 0.8, + 0.77, + 0.5700000000000001, + 0.51, + 0.41000000000000003, + 0.5, + 0.55, + 0.32, + -0.04, + -0.25, + -0.24, + -0.14, + 0.02, + 0.1, + -0.03, + -0.18, + -0.27, + -0.23, + 0.22, + 0.91, + 1.67, + 2.8000000000000003, + 3.33, + 3.75, + 3.29, + 2.7800000000000002, + 2.7600000000000002, + 2.79, + 2.54, + 1.96, + 1.47, + 1.09, + 0.74, + 0.41000000000000003, + 0.09, + -0.05, + 0.13, + 0.53, + 0.73, + 0.5, + 0.2, + -0.03, + -0.2, + -0.27, + -0.36, + -0.17, + 0.01, + 0.47000000000000003, + 0.85, + 1.21, + 1.42, + 1.72, + 2.06, + 2.23, + 2.31, + 2.12, + 1.96, + 1.81, + 1.7, + 1.74, + 1.92, + 2.27, + 2.73, + 3.12, + 3.33, + 3.37, + 2.83, + 2.15, + 1.12, + 0.35000000000000003, + 0.32, + 0.66, + 1.21, + 1.68, + 1.52, + 1.1400000000000001, + 0.68, + 0.29, + 0.06, + -0.13, + -0.23, + -0.34, + -0.46, + -0.59, + -0.74, + -0.81, + -0.9, + -0.91, + -0.9500000000000001, + -0.96, + -1.0, + -1.08, + -1.1400000000000001, + -1.22, + -1.27, + -1.36, + -1.42, + -1.46, + -1.44, + -1.3900000000000001, + -1.32, + -1.22, + -1.11, + -0.99, + -0.86, + -0.76, + -0.6900000000000001, + -0.62, + -0.52, + -0.42, + -0.28, + -0.18, + -0.09, + -0.06, + -0.1, + -0.18, + -0.2, + -0.2, + -0.09, + 0.02, + 0.13, + 0.22, + 0.33, + 0.46, + 0.6, + 0.74, + 0.88, + 1.0, + 1.12, + 1.25, + 1.3800000000000001, + 1.49, + 1.6, + 1.7, + 1.8, + 1.8800000000000001, + 1.94, + 1.99, + 2.0300000000000002, + 2.08, + 2.11, + 2.14, + 2.16, + 2.19, + 2.22, + 2.2600000000000002, + 2.29, + 2.3000000000000003, + 2.3000000000000003, + 2.29, + 2.2800000000000002, + 2.29, + 2.32, + 2.35, + 2.39, + 2.44, + 2.49, + 2.56, + 2.64, + 2.72, + 2.7800000000000002, + 2.86, + 2.89, + 2.93, + 2.91, + 2.89, + 2.87, + 2.86, + 2.82, + 2.79, + 2.74, + 2.71, + 2.66, + 2.6, + 2.5300000000000002, + 2.43, + 2.29, + 2.08, + 1.87, + 1.6500000000000001, + 1.51, + 1.3900000000000001, + 1.35, + 1.18, + 1.05, + 0.81, + 0.58, + 0.36, + 0.14, + -0.07, + -0.33, + -0.6900000000000001, + -1.16, + -1.54, + -1.85, + -2.04, + -2.11, + -2.11, + -2.06, + -2.04, + -1.9000000000000001, + -1.77, + -1.51, + -1.19, + -0.9, + -0.51, + -0.15, + 0.35000000000000003, + 0.8200000000000001, + 1.33, + 1.42, + 1.43, + 1.1400000000000001, + 0.77, + 0.43, + 0.12, + -0.06, + -0.22, + -0.44, + -0.86, + -1.31, + -1.6600000000000001, + -1.9000000000000001, + -1.86, + -1.87, + -1.76, + -1.7, + -1.54, + -1.37, + -1.26, + -1.08, + -1.24, + -1.4000000000000001, + -1.62, + -1.86, + -1.83, + -1.72, + -1.45, + -1.1300000000000001, + -0.8, + -0.48, + -0.28, + -0.18, + -0.1, + 0.02, + 0.23, + 0.49, + 0.78, + 1.08, + 1.35, + 1.45, + 1.5, + 1.37, + 1.21, + 0.76, + 0.23, + -0.18, + -0.55, + -0.59, + -0.55, + -0.48, + -0.47000000000000003, + -0.47000000000000003, + -0.51, + -0.55, + -0.61, + -0.72, + -0.77, + -0.8300000000000001, + -0.89, + -1.01, + -1.2, + -1.3800000000000001, + -1.55, + -1.71, + -1.8800000000000001, + -2.04, + -2.16 + ], + [ + 2.38, + 2.38, + 2.34, + 2.27, + 2.2800000000000002, + 2.31, + 2.25, + 2.2, + 2.06, + 1.8900000000000001, + 1.78, + 1.75, + 1.81, + 1.93, + 2.0300000000000002, + 2.14, + 2.18, + 2.04, + 1.8900000000000001, + 1.67, + 1.51, + 1.42, + 1.35, + 1.52, + 1.8, + 2.2800000000000002, + 2.85, + 3.42, + 4.0, + 4.47, + 5.0, + 5.26, + 5.46, + 5.28, + 4.8, + 4.25, + 3.69, + 3.3000000000000003, + 2.95, + 2.43, + 1.68, + 0.9500000000000001, + 0.67, + 0.49, + 0.7000000000000001, + 0.87, + 1.11, + 1.34, + 1.36, + 1.31, + 0.9, + 0.4, + -0.13, + -0.58, + -0.64, + -0.49, + -0.17, + 0.24, + 0.5700000000000001, + 0.72, + 0.66, + 0.58, + 0.61, + 0.76, + 0.97, + 1.18, + 1.35, + 1.3800000000000001, + 1.23, + 1.19, + 1.11, + 0.99, + 0.81, + 0.75, + 0.77, + 0.7000000000000001, + 0.46, + 0.04, + -0.35000000000000003, + -0.41000000000000003, + -0.28, + -0.06, + 0.24, + 0.3, + 0.06, + -0.2, + -0.28, + -0.08, + 0.55, + 1.4000000000000001, + 2.16, + 2.84, + 2.77, + 2.35, + 2.32, + 2.35, + 2.38, + 2.06, + 1.57, + 1.05, + 0.79, + 0.64, + 0.37, + 0.08, + -0.04, + 0.14, + 0.48, + 0.64, + 0.49, + 0.11, + -0.19, + -0.26, + -0.42, + -0.34, + -0.33, + 0.06, + 0.42, + 0.87, + 1.27, + 1.43, + 1.55, + 1.71, + 1.83, + 1.86, + 1.9100000000000001, + 1.94, + 2.06, + 2.09, + 2.07, + 2.18, + 2.4, + 2.72, + 3.0300000000000002, + 3.31, + 3.3000000000000003, + 3.14, + 2.36, + 1.61, + 0.96, + 0.66, + 1.02, + 1.55, + 1.76, + 1.81, + 1.32, + 0.8, + 0.32, + -0.07, + -0.35000000000000003, + -0.61, + -0.75, + -0.84, + -0.9400000000000001, + -1.04, + -1.1500000000000001, + -1.25, + -1.35, + -1.32, + -1.3, + -1.28, + -1.31, + -1.33, + -1.35, + -1.4000000000000001, + -1.44, + -1.46, + -1.45, + -1.43, + -1.3800000000000001, + -1.31, + -1.23, + -1.12, + -0.99, + -0.87, + -0.78, + -0.7000000000000001, + -0.62, + -0.53, + -0.42, + -0.31, + -0.19, + -0.09, + -0.05, + -0.06, + -0.12, + -0.18, + -0.14, + -0.06, + 0.06, + 0.17, + 0.27, + 0.37, + 0.5, + 0.64, + 0.78, + 0.91, + 1.04, + 1.16, + 1.28, + 1.41, + 1.53, + 1.6400000000000001, + 1.74, + 1.82, + 1.9000000000000001, + 1.95, + 2.0, + 2.04, + 2.08, + 2.12, + 2.15, + 2.18, + 2.21, + 2.25, + 2.29, + 2.32, + 2.34, + 2.35, + 2.34, + 2.34, + 2.36, + 2.38, + 2.42, + 2.46, + 2.5100000000000002, + 2.56, + 2.63, + 2.72, + 2.77, + 2.82, + 2.86, + 2.9, + 2.92, + 2.94, + 2.93, + 2.92, + 2.91, + 2.9, + 2.86, + 2.84, + 2.8000000000000003, + 2.77, + 2.72, + 2.66, + 2.57, + 2.42, + 2.25, + 2.08, + 1.93, + 1.82, + 1.79, + 1.7, + 1.67, + 1.48, + 1.34, + 1.1, + 0.92, + 0.68, + 0.42, + 0.09, + -0.42, + -0.92, + -1.45, + -1.77, + -1.95, + -2.05, + -2.09, + -2.09, + -1.94, + -1.82, + -1.56, + -1.31, + -1.1400000000000001, + -0.89, + -0.6900000000000001, + -0.38, + 0.16, + 0.8200000000000001, + 1.27, + 1.7, + 1.6600000000000001, + 1.56, + 1.23, + 0.9, + 0.5700000000000001, + 0.25, + -0.02, + -0.37, + -0.8200000000000001, + -1.3, + -1.6600000000000001, + -1.71, + -1.69, + -1.55, + -1.43, + -1.33, + -1.2, + -1.28, + -1.24, + -1.48, + -1.73, + -1.97, + -2.2800000000000002, + -2.32, + -2.3000000000000003, + -2.0300000000000002, + -1.67, + -1.28, + -0.86, + -0.54, + -0.31, + -0.22, + -0.24, + -0.17, + 0.0, + 0.23, + 0.5700000000000001, + 0.89, + 1.22, + 1.44, + 1.45, + 1.42, + 1.18, + 0.87, + 0.36, + -0.16, + -0.46, + -0.62, + -0.6, + -0.58, + -0.59, + -0.68, + -0.73, + -0.78, + -0.85, + -0.9, + -0.9400000000000001, + -0.92, + -0.9400000000000001, + -1.01, + -1.1400000000000001, + -1.31, + -1.47, + -1.6400000000000001, + -1.81, + -1.96, + -2.09 + ], + [ + 2.25, + 2.24, + 2.19, + 2.14, + 2.13, + 2.15, + 2.15, + 2.08, + 1.99, + 1.82, + 1.67, + 1.6300000000000001, + 1.67, + 1.77, + 1.9100000000000001, + 2.02, + 2.04, + 1.99, + 1.8, + 1.6400000000000001, + 1.5, + 1.4000000000000001, + 1.4000000000000001, + 1.51, + 1.9000000000000001, + 2.38, + 2.86, + 3.37, + 3.96, + 4.6000000000000005, + 5.11, + 5.6000000000000005, + 5.75, + 5.65, + 5.18, + 4.53, + 4.03, + 3.7800000000000002, + 3.48, + 2.93, + 2.2600000000000002, + 1.58, + 1.1, + 1.06, + 1.06, + 1.16, + 1.26, + 1.36, + 1.37, + 1.18, + 0.91, + 0.4, + -0.09, + -0.47000000000000003, + -0.68, + -0.5700000000000001, + -0.3, + 0.1, + 0.47000000000000003, + 0.59, + 0.47000000000000003, + 0.37, + 0.41000000000000003, + 0.56, + 0.91, + 1.18, + 1.46, + 1.59, + 1.61, + 1.68, + 1.56, + 1.52, + 1.2, + 1.04, + 0.97, + 0.91, + 0.56, + 0.02, + -0.35000000000000003, + -0.5700000000000001, + -0.47000000000000003, + -0.11, + 0.25, + 0.54, + 0.43, + -0.1, + -0.45, + -0.45, + -0.09, + 0.74, + 1.55, + 2.08, + 2.08, + 2.04, + 1.96, + 2.21, + 2.32, + 1.97, + 1.4000000000000001, + 1.0, + 0.73, + 0.5700000000000001, + 0.36, + 0.09, + -0.04, + 0.13, + 0.51, + 0.68, + 0.43, + 0.04, + -0.08, + -0.18, + -0.14, + -0.2, + 0.0, + 0.18, + 0.55, + 0.9500000000000001, + 1.19, + 1.42, + 1.3800000000000001, + 1.3, + 1.29, + 1.27, + 1.43, + 1.78, + 2.06, + 2.31, + 2.36, + 2.38, + 2.5100000000000002, + 2.67, + 2.89, + 3.06, + 3.19, + 2.91, + 2.47, + 1.82, + 1.29, + 1.12, + 1.24, + 1.55, + 1.81, + 1.61, + 1.28, + 0.68, + 0.14, + -0.29, + -0.67, + -0.92, + -1.06, + -1.1400000000000001, + -1.17, + -1.24, + -1.37, + -1.51, + -1.62, + -1.68, + -1.58, + -1.54, + -1.51, + -1.51, + -1.51, + -1.52, + -1.53, + -1.53, + -1.51, + -1.47, + -1.41, + -1.33, + -1.25, + -1.1400000000000001, + -1.02, + -0.89, + -0.78, + -0.6900000000000001, + -0.61, + -0.52, + -0.42, + -0.3, + -0.18, + -0.08, + -0.01, + -0.02, + -0.04, + -0.08, + -0.09, + 0.0, + 0.1, + 0.22, + 0.32, + 0.43, + 0.54, + 0.67, + 0.81, + 0.9500000000000001, + 1.07, + 1.19, + 1.32, + 1.44, + 1.57, + 1.68, + 1.78, + 1.86, + 1.92, + 1.97, + 2.0, + 2.04, + 2.08, + 2.12, + 2.16, + 2.2, + 2.24, + 2.2800000000000002, + 2.32, + 2.36, + 2.38, + 2.39, + 2.4, + 2.41, + 2.42, + 2.45, + 2.49, + 2.52, + 2.57, + 2.63, + 2.7, + 2.7600000000000002, + 2.82, + 2.84, + 2.86, + 2.88, + 2.9, + 2.92, + 2.94, + 2.95, + 2.95, + 2.94, + 2.92, + 2.89, + 2.87, + 2.84, + 2.8000000000000003, + 2.74, + 2.63, + 2.5, + 2.35, + 2.2, + 2.09, + 2.0100000000000002, + 1.97, + 1.96, + 1.8900000000000001, + 1.83, + 1.68, + 1.58, + 1.3800000000000001, + 1.23, + 0.9400000000000001, + 0.59, + 0.11, + -0.53, + -1.01, + -1.4000000000000001, + -1.6, + -1.7, + -1.77, + -1.72, + -1.67, + -1.49, + -1.33, + -1.24, + -1.1300000000000001, + -1.06, + -0.9500000000000001, + -0.6, + -0.15, + 0.51, + 1.23, + 1.55, + 1.86, + 1.73, + 1.62, + 1.28, + 0.9500000000000001, + 0.6, + 0.2, + -0.18, + -0.66, + -1.11, + -1.37, + -1.46, + -1.34, + -1.19, + -1.07, + -0.9500000000000001, + -1.1500000000000001, + -1.28, + -1.6, + -1.93, + -2.19, + -2.52, + -2.61, + -2.69, + -2.5, + -2.2, + -1.78, + -1.32, + -0.92, + -0.58, + -0.38, + -0.34, + -0.34, + -0.32, + -0.2, + 0.09, + 0.39, + 0.78, + 1.1300000000000001, + 1.33, + 1.42, + 1.33, + 1.2, + 0.89, + 0.52, + 0.01, + -0.41000000000000003, + -0.5700000000000001, + -0.63, + -0.64, + -0.68, + -0.75, + -0.8300000000000001, + -0.89, + -0.9500000000000001, + -1.0, + -1.02, + -1.0, + -0.98, + -1.01, + -1.11, + -1.24, + -1.4000000000000001, + -1.56, + -1.72, + -1.8800000000000001, + -2.0 + ], + [ + 2.15, + 2.14, + 2.09, + 2.0, + 2.0, + 1.99, + 1.99, + 1.96, + 1.85, + 1.72, + 1.58, + 1.5, + 1.53, + 1.6300000000000001, + 1.74, + 1.8, + 1.82, + 1.75, + 1.6400000000000001, + 1.55, + 1.45, + 1.3800000000000001, + 1.37, + 1.57, + 1.94, + 2.36, + 2.7800000000000002, + 3.3000000000000003, + 3.87, + 4.51, + 5.16, + 5.59, + 5.88, + 5.74, + 5.3, + 4.73, + 4.34, + 4.1, + 3.85, + 3.44, + 2.84, + 2.25, + 1.87, + 1.69, + 1.57, + 1.49, + 1.46, + 1.42, + 1.31, + 1.02, + 0.71, + 0.38, + -0.09, + -0.44, + -0.64, + -0.67, + -0.37, + 0.07, + 0.38, + 0.4, + 0.29, + 0.13, + 0.15, + 0.52, + 0.87, + 1.28, + 1.62, + 1.74, + 1.92, + 1.82, + 1.8900000000000001, + 1.58, + 1.35, + 1.12, + 1.09, + 0.92, + 0.63, + 0.17, + -0.29, + -0.47000000000000003, + -0.48, + -0.19, + 0.39, + 0.73, + 0.6, + 0.15, + -0.5700000000000001, + -0.91, + -0.54, + 0.05, + 1.08, + 1.79, + 1.97, + 1.95, + 2.13, + 2.35, + 2.35, + 2.08, + 1.56, + 1.08, + 0.88, + 0.67, + 0.42, + 0.11, + -0.01, + 0.27, + 0.64, + 0.77, + 0.56, + 0.25, + 0.04, + 0.22, + 0.32, + 0.37, + 0.45, + 0.55, + 0.66, + 0.8300000000000001, + 0.99, + 1.05, + 1.05, + 0.86, + 0.63, + 0.6900000000000001, + 0.99, + 1.47, + 2.11, + 2.42, + 2.52, + 2.54, + 2.54, + 2.64, + 2.65, + 2.75, + 2.7600000000000002, + 2.62, + 2.29, + 1.8900000000000001, + 1.55, + 1.4000000000000001, + 1.42, + 1.48, + 1.44, + 1.23, + 0.79, + 0.3, + -0.21, + -0.66, + -1.0, + -1.24, + -1.37, + -1.37, + -1.3800000000000001, + -1.41, + -1.52, + -1.7, + -1.86, + -1.86, + -1.82, + -1.71, + -1.6600000000000001, + -1.6300000000000001, + -1.62, + -1.61, + -1.62, + -1.59, + -1.57, + -1.51, + -1.44, + -1.36, + -1.27, + -1.16, + -1.05, + -0.93, + -0.8, + -0.7000000000000001, + -0.6, + -0.51, + -0.41000000000000003, + -0.29, + -0.17, + -0.07, + 0.01, + 0.05, + 0.02, + -0.01, + 0.0, + 0.04, + 0.15, + 0.27, + 0.37, + 0.48, + 0.59, + 0.71, + 0.85, + 0.98, + 1.11, + 1.24, + 1.36, + 1.49, + 1.61, + 1.72, + 1.82, + 1.8800000000000001, + 1.94, + 1.98, + 2.0100000000000002, + 2.05, + 2.08, + 2.12, + 2.17, + 2.21, + 2.2600000000000002, + 2.3000000000000003, + 2.35, + 2.38, + 2.41, + 2.43, + 2.44, + 2.45, + 2.48, + 2.5100000000000002, + 2.54, + 2.59, + 2.64, + 2.69, + 2.74, + 2.79, + 2.83, + 2.85, + 2.86, + 2.85, + 2.87, + 2.89, + 2.92, + 2.97, + 2.97, + 2.97, + 2.96, + 2.94, + 2.91, + 2.88, + 2.84, + 2.77, + 2.67, + 2.56, + 2.43, + 2.31, + 2.2, + 2.14, + 2.08, + 2.08, + 2.05, + 2.0, + 1.94, + 1.85, + 1.78, + 1.61, + 1.46, + 1.1400000000000001, + 0.77, + 0.21, + -0.32, + -0.67, + -0.89, + -1.02, + -1.06, + -1.08, + -1.07, + -1.02, + -1.1, + -1.12, + -1.17, + -1.21, + -1.05, + -0.86, + -0.39, + 0.14, + 0.75, + 1.32, + 1.54, + 1.77, + 1.62, + 1.48, + 1.1500000000000001, + 0.81, + 0.43, + 0.03, + -0.41000000000000003, + -0.78, + -1.04, + -1.07, + -0.99, + -0.86, + -0.72, + -0.9400000000000001, + -1.16, + -1.6, + -2.02, + -2.29, + -2.59, + -2.71, + -2.79, + -2.72, + -2.58, + -2.2, + -1.75, + -1.31, + -0.9400000000000001, + -0.65, + -0.49, + -0.43, + -0.42, + -0.39, + -0.23, + 0.01, + 0.33, + 0.6900000000000001, + 1.03, + 1.29, + 1.29, + 1.23, + 1.1300000000000001, + 0.97, + 0.56, + 0.13, + -0.28, + -0.56, + -0.65, + -0.7000000000000001, + -0.75, + -0.8, + -0.87, + -0.9500000000000001, + -1.01, + -1.07, + -1.08, + -1.05, + -1.02, + -1.02, + -1.08, + -1.2, + -1.33, + -1.48, + -1.6300000000000001, + -1.77, + -1.9000000000000001 + ], + [ + 2.0, + 2.0300000000000002, + 2.0300000000000002, + 1.94, + 1.8800000000000001, + 1.86, + 1.83, + 1.78, + 1.71, + 1.58, + 1.47, + 1.4000000000000001, + 1.4000000000000001, + 1.47, + 1.51, + 1.55, + 1.51, + 1.45, + 1.46, + 1.42, + 1.37, + 1.32, + 1.36, + 1.54, + 1.9100000000000001, + 2.31, + 2.74, + 3.19, + 3.7800000000000002, + 4.39, + 4.99, + 5.5, + 5.72, + 5.66, + 5.23, + 4.76, + 4.41, + 4.21, + 4.0200000000000005, + 3.69, + 3.27, + 2.89, + 2.6, + 2.3000000000000003, + 2.12, + 1.87, + 1.68, + 1.56, + 1.32, + 0.97, + 0.48, + 0.14, + -0.18, + -0.52, + -0.75, + -0.68, + -0.34, + 0.05, + 0.25, + 0.24, + 0.02, + -0.12, + 0.17, + 0.52, + 0.96, + 1.3800000000000001, + 1.55, + 1.73, + 1.67, + 1.6400000000000001, + 1.51, + 1.33, + 1.05, + 0.91, + 0.8300000000000001, + 0.85, + 0.62, + 0.41000000000000003, + 0.08, + -0.12, + -0.14, + 0.02, + 0.47000000000000003, + 0.86, + 0.81, + 0.19, + -0.54, + -0.96, + -0.96, + -0.11, + 0.84, + 1.68, + 2.17, + 2.25, + 2.45, + 2.57, + 2.52, + 2.2, + 1.75, + 1.42, + 1.26, + 1.05, + 0.63, + 0.28, + 0.14, + 0.37, + 0.85, + 1.07, + 0.79, + 0.47000000000000003, + 0.48, + 0.63, + 0.8300000000000001, + 1.0, + 0.99, + 1.0, + 0.8, + 0.55, + 0.56, + 0.51, + 0.46, + 0.29, + 0.13, + 0.15, + 0.59, + 1.42, + 2.08, + 2.52, + 2.65, + 2.56, + 2.54, + 2.45, + 2.43, + 2.4, + 2.36, + 2.2600000000000002, + 2.02, + 1.87, + 1.76, + 1.6300000000000001, + 1.53, + 1.33, + 0.89, + 0.59, + 0.16, + -0.26, + -0.63, + -1.0, + -1.29, + -1.51, + -1.59, + -1.59, + -1.54, + -1.57, + -1.6600000000000001, + -1.82, + -1.94, + -2.0, + -1.9100000000000001, + -1.82, + -1.74, + -1.69, + -1.68, + -1.67, + -1.6600000000000001, + -1.6400000000000001, + -1.6, + -1.55, + -1.47, + -1.3800000000000001, + -1.29, + -1.2, + -1.08, + -0.96, + -0.8300000000000001, + -0.71, + -0.61, + -0.51, + -0.41000000000000003, + -0.29, + -0.17, + -0.06, + 0.04, + 0.08, + 0.1, + 0.07, + 0.06, + 0.11, + 0.2, + 0.31, + 0.43, + 0.53, + 0.64, + 0.76, + 0.89, + 1.02, + 1.1500000000000001, + 1.28, + 1.41, + 1.53, + 1.6600000000000001, + 1.77, + 1.85, + 1.9100000000000001, + 1.95, + 1.99, + 2.02, + 2.05, + 2.09, + 2.13, + 2.18, + 2.23, + 2.2800000000000002, + 2.33, + 2.37, + 2.41, + 2.44, + 2.46, + 2.48, + 2.49, + 2.52, + 2.56, + 2.6, + 2.65, + 2.7, + 2.74, + 2.7800000000000002, + 2.81, + 2.83, + 2.86, + 2.87, + 2.86, + 2.84, + 2.87, + 2.91, + 2.96, + 3.0, + 3.0, + 3.0, + 2.98, + 2.96, + 2.92, + 2.86, + 2.79, + 2.71, + 2.61, + 2.5300000000000002, + 2.43, + 2.34, + 2.2600000000000002, + 2.22, + 2.19, + 2.18, + 2.15, + 2.11, + 2.07, + 2.02, + 1.97, + 1.82, + 1.7, + 1.36, + 1.04, + 0.59, + 0.27, + 0.06, + -0.07, + -0.14, + -0.24, + -0.3, + -0.59, + -0.77, + -0.98, + -1.1300000000000001, + -1.12, + -1.05, + -0.88, + -0.65, + -0.22, + 0.19, + 0.6900000000000001, + 1.1, + 1.29, + 1.43, + 1.3, + 1.18, + 0.88, + 0.5700000000000001, + 0.2, + -0.13, + -0.46, + -0.66, + -0.72, + -0.66, + -0.54, + -0.7000000000000001, + -0.92, + -1.45, + -2.0, + -2.31, + -2.58, + -2.69, + -2.74, + -2.72, + -2.66, + -2.44, + -2.1, + -1.67, + -1.28, + -0.97, + -0.79, + -0.63, + -0.52, + -0.47000000000000003, + -0.37, + -0.22, + 0.0, + 0.28, + 0.61, + 0.9400000000000001, + 1.1300000000000001, + 1.19, + 1.1500000000000001, + 1.08, + 0.89, + 0.59, + 0.13, + -0.27, + -0.54, + -0.73, + -0.8, + -0.84, + -0.89, + -0.9400000000000001, + -1.01, + -1.08, + -1.1300000000000001, + -1.12, + -1.1, + -1.05, + -1.03, + -1.07, + -1.1500000000000001, + -1.27, + -1.4000000000000001, + -1.53, + -1.67, + -1.79 + ], + [ + 1.92, + 1.93, + 1.93, + 1.87, + 1.8, + 1.74, + 1.7, + 1.62, + 1.55, + 1.46, + 1.35, + 1.27, + 1.26, + 1.27, + 1.29, + 1.24, + 1.19, + 1.21, + 1.23, + 1.27, + 1.27, + 1.25, + 1.29, + 1.52, + 1.86, + 2.2800000000000002, + 2.7, + 3.18, + 3.71, + 4.29, + 4.7700000000000005, + 5.23, + 5.48, + 5.36, + 4.95, + 4.49, + 4.2, + 4.04, + 3.83, + 3.6, + 3.5100000000000002, + 3.3200000000000003, + 3.0500000000000003, + 2.84, + 2.52, + 2.24, + 2.0100000000000002, + 1.81, + 1.5, + 1.01, + 0.47000000000000003, + -0.14, + -0.43, + -0.6900000000000001, + -0.8, + -0.61, + -0.25, + 0.08, + 0.23, + -0.01, + -0.26, + -0.09, + 0.17, + 0.6, + 1.05, + 1.21, + 1.36, + 1.29, + 1.1500000000000001, + 1.07, + 0.92, + 0.76, + 0.54, + 0.43, + 0.41000000000000003, + 0.47000000000000003, + 0.67, + 0.56, + 0.71, + 0.56, + 0.42, + 0.53, + 0.72, + 1.02, + 0.89, + 0.35000000000000003, + -0.33, + -0.8200000000000001, + -0.75, + -0.15, + 0.8200000000000001, + 1.76, + 2.23, + 2.5500000000000003, + 2.69, + 2.85, + 2.72, + 2.38, + 2.06, + 1.93, + 1.8, + 1.6300000000000001, + 1.17, + 0.51, + 0.32, + 0.53, + 0.97, + 1.19, + 1.06, + 0.84, + 0.81, + 0.99, + 1.24, + 1.3900000000000001, + 1.51, + 1.26, + 0.89, + 0.44, + -0.03, + -0.05, + -0.13, + -0.23, + -0.34, + -0.17, + 0.44, + 1.28, + 2.11, + 2.56, + 2.58, + 2.5, + 2.38, + 2.3000000000000003, + 2.22, + 2.16, + 2.11, + 1.97, + 1.86, + 1.79, + 1.85, + 1.9000000000000001, + 1.6400000000000001, + 1.1500000000000001, + 0.62, + -0.07, + -0.39, + -0.67, + -0.96, + -1.2, + -1.45, + -1.6400000000000001, + -1.72, + -1.7, + -1.67, + -1.6600000000000001, + -1.74, + -1.84, + -1.96, + -1.98, + -1.93, + -1.85, + -1.78, + -1.74, + -1.69, + -1.68, + -1.67, + -1.6500000000000001, + -1.6300000000000001, + -1.57, + -1.5, + -1.41, + -1.32, + -1.22, + -1.11, + -0.98, + -0.85, + -0.73, + -0.62, + -0.52, + -0.41000000000000003, + -0.29, + -0.16, + -0.05, + 0.05, + 0.12, + 0.14, + 0.14, + 0.14, + 0.17, + 0.26, + 0.37, + 0.48, + 0.59, + 0.7000000000000001, + 0.81, + 0.9400000000000001, + 1.07, + 1.2, + 1.33, + 1.46, + 1.58, + 1.7, + 1.8, + 1.8800000000000001, + 1.93, + 1.96, + 2.0, + 2.0300000000000002, + 2.07, + 2.11, + 2.15, + 2.2, + 2.2600000000000002, + 2.31, + 2.36, + 2.4, + 2.44, + 2.47, + 2.49, + 2.5100000000000002, + 2.5300000000000002, + 2.56, + 2.6, + 2.65, + 2.7, + 2.74, + 2.7800000000000002, + 2.8000000000000003, + 2.82, + 2.84, + 2.86, + 2.87, + 2.87, + 2.86, + 2.86, + 2.9, + 2.95, + 3.0, + 3.04, + 3.04, + 3.02, + 2.99, + 2.93, + 2.87, + 2.81, + 2.74, + 2.68, + 2.61, + 2.5500000000000003, + 2.47, + 2.4, + 2.36, + 2.34, + 2.32, + 2.3000000000000003, + 2.27, + 2.25, + 2.24, + 2.19, + 2.15, + 2.04, + 1.96, + 1.6600000000000001, + 1.47, + 1.19, + 1.03, + 0.9, + 0.75, + 0.64, + 0.28, + -0.04, + -0.45, + -0.75, + -0.89, + -0.9400000000000001, + -0.87, + -0.77, + -0.67, + -0.56, + -0.22, + 0.03, + 0.46, + 0.76, + 0.9400000000000001, + 1.09, + 1.0, + 0.91, + 0.64, + 0.39, + 0.08, + -0.15, + -0.34, + -0.4, + -0.36, + -0.49, + -0.67, + -1.18, + -1.78, + -2.21, + -2.5500000000000003, + -2.63, + -2.67, + -2.63, + -2.56, + -2.46, + -2.27, + -1.94, + -1.59, + -1.26, + -1.1, + -0.93, + -0.81, + -0.68, + -0.49, + -0.36, + -0.21, + -0.01, + 0.26, + 0.55, + 0.8200000000000001, + 1.01, + 1.08, + 1.07, + 0.99, + 0.8200000000000001, + 0.47000000000000003, + 0.05, + -0.34, + -0.63, + -0.81, + -0.93, + -0.97, + -1.0, + -1.04, + -1.1, + -1.16, + -1.17, + -1.16, + -1.12, + -1.07, + -1.04, + -1.05, + -1.12, + -1.21, + -1.31, + -1.43, + -1.55, + -1.67 + ], + [ + 1.78, + 1.82, + 1.83, + 1.78, + 1.71, + 1.6500000000000001, + 1.58, + 1.5, + 1.42, + 1.33, + 1.22, + 1.1400000000000001, + 1.07, + 1.06, + 1.0, + 0.9500000000000001, + 0.9500000000000001, + 0.96, + 1.03, + 1.1, + 1.12, + 1.1300000000000001, + 1.23, + 1.46, + 1.84, + 2.2800000000000002, + 2.73, + 3.22, + 3.72, + 4.18, + 4.63, + 4.94, + 5.11, + 4.87, + 4.43, + 3.92, + 3.63, + 3.49, + 3.33, + 3.39, + 3.38, + 3.4, + 3.2800000000000002, + 3.08, + 2.83, + 2.56, + 2.35, + 2.13, + 1.85, + 1.26, + 0.51, + -0.11, + -0.66, + -0.81, + -0.68, + -0.42, + 0.04, + 0.36, + 0.29, + 0.05, + -0.09, + -0.02, + 0.25, + 0.64, + 0.8200000000000001, + 0.97, + 0.96, + 0.8300000000000001, + 0.67, + 0.48, + 0.37, + 0.21, + 0.04, + -0.08, + -0.06, + 0.08, + 0.34, + 0.85, + 0.99, + 1.24, + 1.1300000000000001, + 1.03, + 1.19, + 1.16, + 1.02, + 0.55, + -0.08, + -0.48, + -0.48, + -0.09, + 0.72, + 1.55, + 2.17, + 2.5300000000000002, + 2.85, + 3.0100000000000002, + 2.97, + 2.72, + 2.5300000000000002, + 2.47, + 2.49, + 2.25, + 1.6600000000000001, + 1.01, + 0.5, + 0.61, + 0.93, + 1.1500000000000001, + 1.2, + 1.06, + 1.04, + 1.19, + 1.4000000000000001, + 1.6, + 1.6500000000000001, + 1.47, + 0.93, + 0.29, + -0.18, + -0.53, + -0.52, + -0.5700000000000001, + -0.55, + -0.28, + 0.39, + 1.27, + 2.07, + 2.42, + 2.45, + 2.29, + 2.14, + 2.12, + 2.06, + 2.06, + 2.0100000000000002, + 1.83, + 1.6500000000000001, + 1.73, + 1.94, + 2.0100000000000002, + 1.86, + 1.24, + 0.41000000000000003, + -0.2, + -0.65, + -0.85, + -0.99, + -1.2, + -1.43, + -1.61, + -1.71, + -1.71, + -1.7, + -1.7, + -1.75, + -1.84, + -1.8900000000000001, + -1.9000000000000001, + -1.9000000000000001, + -1.87, + -1.83, + -1.79, + -1.74, + -1.68, + -1.68, + -1.67, + -1.6400000000000001, + -1.59, + -1.51, + -1.42, + -1.33, + -1.23, + -1.11, + -0.99, + -0.86, + -0.74, + -0.63, + -0.52, + -0.41000000000000003, + -0.29, + -0.16, + -0.05, + 0.06, + 0.14, + 0.18, + 0.2, + 0.2, + 0.24, + 0.31, + 0.42, + 0.53, + 0.64, + 0.75, + 0.87, + 0.99, + 1.12, + 1.25, + 1.3800000000000001, + 1.51, + 1.6400000000000001, + 1.74, + 1.84, + 1.8900000000000001, + 1.94, + 1.98, + 2.0100000000000002, + 2.05, + 2.09, + 2.13, + 2.19, + 2.24, + 2.29, + 2.35, + 2.4, + 2.44, + 2.47, + 2.5, + 2.5300000000000002, + 2.5500000000000003, + 2.58, + 2.6, + 2.65, + 2.7, + 2.75, + 2.79, + 2.8000000000000003, + 2.82, + 2.84, + 2.85, + 2.87, + 2.88, + 2.88, + 2.87, + 2.87, + 2.89, + 2.94, + 2.99, + 3.0300000000000002, + 3.0700000000000003, + 3.0500000000000003, + 3.0, + 2.94, + 2.89, + 2.83, + 2.8000000000000003, + 2.75, + 2.71, + 2.65, + 2.59, + 2.54, + 2.5, + 2.47, + 2.46, + 2.44, + 2.42, + 2.41, + 2.4, + 2.4, + 2.37, + 2.36, + 2.2800000000000002, + 2.23, + 2.04, + 1.95, + 1.8, + 1.6600000000000001, + 1.52, + 1.24, + 0.91, + 0.4, + -0.05, + -0.37, + -0.58, + -0.61, + -0.5700000000000001, + -0.54, + -0.56, + -0.54, + -0.52, + -0.27, + -0.07, + 0.29, + 0.5700000000000001, + 0.75, + 0.91, + 0.84, + 0.72, + 0.49, + 0.29, + 0.07, + -0.07, + -0.13, + -0.27, + -0.42, + -0.84, + -1.4000000000000001, + -1.9000000000000001, + -2.36, + -2.49, + -2.54, + -2.49, + -2.42, + -2.33, + -2.24, + -2.07, + -1.82, + -1.52, + -1.34, + -1.19, + -1.11, + -0.97, + -0.73, + -0.54, + -0.35000000000000003, + -0.2, + 0.03, + 0.27, + 0.52, + 0.75, + 0.91, + 0.98, + 0.98, + 0.91, + 0.66, + 0.28, + -0.13, + -0.5, + -0.77, + -0.96, + -1.06, + -1.1, + -1.12, + -1.1300000000000001, + -1.18, + -1.2, + -1.21, + -1.17, + -1.1300000000000001, + -1.08, + -1.04, + -1.05, + -1.1, + -1.16, + -1.23, + -1.33, + -1.43, + -1.55 + ], + [ + 1.7, + 1.71, + 1.72, + 1.69, + 1.62, + 1.55, + 1.47, + 1.3900000000000001, + 1.3, + 1.19, + 1.08, + 0.97, + 0.89, + 0.8, + 0.74, + 0.7000000000000001, + 0.7000000000000001, + 0.74, + 0.81, + 0.88, + 0.93, + 1.02, + 1.16, + 1.45, + 1.86, + 2.32, + 2.81, + 3.29, + 3.75, + 4.17, + 4.49, + 4.76, + 4.7, + 4.41, + 3.69, + 3.17, + 2.89, + 2.75, + 2.86, + 2.95, + 3.17, + 3.27, + 3.2600000000000002, + 3.15, + 3.0100000000000002, + 2.85, + 2.65, + 2.48, + 2.13, + 1.56, + 0.72, + -0.11, + -0.61, + -0.76, + -0.5700000000000001, + 0.0, + 0.45, + 0.8200000000000001, + 0.77, + 0.53, + 0.37, + 0.22, + 0.4, + 0.41000000000000003, + 0.5, + 0.6, + 0.58, + 0.52, + 0.36, + 0.15, + -0.04, + -0.19, + -0.36, + -0.48, + -0.52, + -0.35000000000000003, + 0.03, + 0.53, + 1.1400000000000001, + 1.36, + 1.55, + 1.48, + 1.42, + 1.4000000000000001, + 1.18, + 0.74, + 0.23, + -0.17, + -0.35000000000000003, + -0.15, + 0.42, + 1.09, + 1.83, + 2.38, + 2.85, + 3.25, + 3.3000000000000003, + 3.25, + 3.15, + 3.23, + 3.21, + 2.86, + 2.2600000000000002, + 1.51, + 0.98, + 0.78, + 0.99, + 1.18, + 1.21, + 1.21, + 1.17, + 1.25, + 1.3900000000000001, + 1.62, + 1.67, + 1.49, + 1.01, + 0.37, + -0.17, + -0.48, + -0.61, + -0.58, + -0.46, + -0.13, + 0.49, + 1.35, + 2.0100000000000002, + 2.36, + 2.33, + 2.15, + 2.0, + 1.93, + 2.0100000000000002, + 2.05, + 1.98, + 1.78, + 1.56, + 1.55, + 1.8800000000000001, + 2.14, + 1.96, + 1.43, + 0.5700000000000001, + -0.17, + -0.5700000000000001, + -0.75, + -0.88, + -1.05, + -1.27, + -1.47, + -1.58, + -1.6400000000000001, + -1.6400000000000001, + -1.67, + -1.72, + -1.77, + -1.81, + -1.85, + -1.86, + -1.8900000000000001, + -1.8900000000000001, + -1.86, + -1.8, + -1.74, + -1.71, + -1.7, + -1.67, + -1.62, + -1.53, + -1.44, + -1.34, + -1.23, + -1.11, + -0.99, + -0.86, + -0.74, + -0.63, + -0.52, + -0.41000000000000003, + -0.29, + -0.16, + -0.04, + 0.07, + 0.16, + 0.23, + 0.26, + 0.28, + 0.32, + 0.38, + 0.46, + 0.5700000000000001, + 0.68, + 0.79, + 0.91, + 1.03, + 1.16, + 1.29, + 1.43, + 1.56, + 1.68, + 1.79, + 1.86, + 1.9100000000000001, + 1.95, + 1.99, + 2.0300000000000002, + 2.07, + 2.11, + 2.17, + 2.22, + 2.2800000000000002, + 2.33, + 2.38, + 2.43, + 2.47, + 2.5, + 2.52, + 2.5500000000000003, + 2.59, + 2.62, + 2.66, + 2.7, + 2.74, + 2.79, + 2.81, + 2.83, + 2.84, + 2.85, + 2.87, + 2.89, + 2.89, + 2.89, + 2.89, + 2.89, + 2.9, + 2.92, + 2.97, + 3.02, + 3.0500000000000003, + 3.04, + 2.99, + 2.95, + 2.89, + 2.88, + 2.84, + 2.82, + 2.7800000000000002, + 2.74, + 2.69, + 2.65, + 2.62, + 2.59, + 2.57, + 2.5500000000000003, + 2.5300000000000002, + 2.5300000000000002, + 2.5300000000000002, + 2.5300000000000002, + 2.54, + 2.54, + 2.56, + 2.5100000000000002, + 2.49, + 2.4, + 2.32, + 2.19, + 2.0, + 1.75, + 1.37, + 0.9, + 0.44, + 0.09, + -0.11, + -0.18, + -0.17, + -0.19, + -0.24, + -0.31, + -0.34, + -0.33, + -0.14, + 0.03, + 0.34, + 0.6, + 0.77, + 0.85, + 0.73, + 0.59, + 0.39, + 0.25, + 0.12, + -0.02, + -0.16, + -0.49, + -0.9400000000000001, + -1.4000000000000001, + -1.8800000000000001, + -2.12, + -2.2, + -2.21, + -2.16, + -2.12, + -2.09, + -2.04, + -1.95, + -1.75, + -1.58, + -1.41, + -1.3, + -1.21, + -0.99, + -0.75, + -0.5, + -0.31, + -0.11, + 0.11, + 0.34, + 0.5700000000000001, + 0.73, + 0.85, + 0.91, + 0.91, + 0.75, + 0.46, + 0.05, + -0.37, + -0.71, + -0.9500000000000001, + -1.12, + -1.2, + -1.23, + -1.21, + -1.22, + -1.22, + -1.24, + -1.22, + -1.18, + -1.1400000000000001, + -1.09, + -1.07, + -1.07, + -1.1, + -1.1400000000000001, + -1.17, + -1.23, + -1.32, + -1.42 + ], + [ + 1.58, + 1.61, + 1.62, + 1.59, + 1.52, + 1.46, + 1.3900000000000001, + 1.3, + 1.18, + 1.06, + 0.91, + 0.79, + 0.67, + 0.58, + 0.5, + 0.46, + 0.47000000000000003, + 0.51, + 0.5700000000000001, + 0.63, + 0.75, + 0.88, + 1.12, + 1.48, + 1.9100000000000001, + 2.41, + 2.89, + 3.37, + 3.8200000000000003, + 4.2, + 4.49, + 4.62, + 4.5200000000000005, + 3.85, + 3.13, + 2.41, + 2.11, + 2.17, + 2.2800000000000002, + 2.56, + 2.83, + 3.04, + 3.1, + 3.13, + 3.09, + 3.0100000000000002, + 2.9, + 2.7, + 2.36, + 1.73, + 0.86, + 0.0, + -0.6, + -0.73, + -0.4, + 0.16, + 0.88, + 1.23, + 1.3900000000000001, + 1.18, + 0.8300000000000001, + 0.67, + 0.37, + 0.26, + 0.25, + 0.28, + 0.39, + 0.37, + 0.24, + 0.03, + -0.22, + -0.47000000000000003, + -0.67, + -0.88, + -0.92, + -0.8200000000000001, + -0.43, + 0.08, + 0.67, + 1.1500000000000001, + 1.33, + 1.55, + 1.53, + 1.51, + 1.32, + 1.06, + 0.62, + 0.15, + -0.12, + -0.24, + 0.04, + 0.6900000000000001, + 1.3900000000000001, + 2.14, + 2.86, + 3.4, + 3.7800000000000002, + 3.8200000000000003, + 4.0, + 4.05, + 3.94, + 3.58, + 3.0100000000000002, + 2.27, + 1.71, + 1.48, + 1.3800000000000001, + 1.49, + 1.5, + 1.46, + 1.3800000000000001, + 1.3800000000000001, + 1.51, + 1.67, + 1.72, + 1.51, + 1.12, + 0.6, + 0.11, + -0.16, + -0.28, + -0.26, + -0.13, + 0.17, + 0.78, + 1.44, + 2.09, + 2.44, + 2.42, + 2.25, + 2.08, + 1.97, + 2.02, + 2.09, + 2.05, + 1.78, + 1.5, + 1.47, + 1.74, + 2.07, + 2.05, + 1.54, + 0.79, + 0.04, + -0.41000000000000003, + -0.58, + -0.7000000000000001, + -0.87, + -1.08, + -1.28, + -1.42, + -1.48, + -1.56, + -1.6, + -1.6600000000000001, + -1.71, + -1.77, + -1.81, + -1.87, + -1.9100000000000001, + -1.94, + -1.94, + -1.8900000000000001, + -1.84, + -1.79, + -1.76, + -1.71, + -1.6300000000000001, + -1.54, + -1.44, + -1.33, + -1.22, + -1.1, + -0.99, + -0.86, + -0.75, + -0.64, + -0.52, + -0.41000000000000003, + -0.28, + -0.15, + -0.03, + 0.08, + 0.19, + 0.27, + 0.33, + 0.37, + 0.4, + 0.45, + 0.52, + 0.61, + 0.72, + 0.8300000000000001, + 0.9500000000000001, + 1.08, + 1.2, + 1.33, + 1.47, + 1.61, + 1.73, + 1.83, + 1.9000000000000001, + 1.94, + 1.96, + 2.0, + 2.04, + 2.09, + 2.15, + 2.21, + 2.27, + 2.32, + 2.37, + 2.43, + 2.47, + 2.5100000000000002, + 2.5300000000000002, + 2.5500000000000003, + 2.58, + 2.62, + 2.67, + 2.71, + 2.75, + 2.79, + 2.82, + 2.84, + 2.85, + 2.86, + 2.87, + 2.88, + 2.9, + 2.9, + 2.9, + 2.91, + 2.91, + 2.92, + 2.93, + 2.94, + 2.99, + 3.0100000000000002, + 3.0, + 2.98, + 2.94, + 2.92, + 2.9, + 2.89, + 2.87, + 2.84, + 2.81, + 2.7800000000000002, + 2.74, + 2.71, + 2.69, + 2.67, + 2.65, + 2.63, + 2.62, + 2.63, + 2.64, + 2.65, + 2.68, + 2.7, + 2.72, + 2.7, + 2.69, + 2.61, + 2.49, + 2.31, + 2.09, + 1.73, + 1.3800000000000001, + 0.96, + 0.65, + 0.46, + 0.37, + 0.35000000000000003, + 0.33, + 0.27, + 0.17, + 0.09, + 0.02, + 0.01, + 0.15, + 0.31, + 0.5700000000000001, + 0.77, + 0.84, + 0.78, + 0.63, + 0.49, + 0.35000000000000003, + 0.23, + 0.09, + -0.16, + -0.5, + -0.86, + -1.28, + -1.52, + -1.6300000000000001, + -1.7, + -1.69, + -1.76, + -1.83, + -1.8900000000000001, + -1.97, + -1.9100000000000001, + -1.82, + -1.6600000000000001, + -1.52, + -1.4000000000000001, + -1.19, + -0.97, + -0.68, + -0.43, + -0.22, + -0.01, + 0.21, + 0.45, + 0.64, + 0.79, + 0.84, + 0.86, + 0.76, + 0.53, + 0.18, + -0.26, + -0.65, + -0.9400000000000001, + -1.1500000000000001, + -1.27, + -1.34, + -1.32, + -1.3, + -1.27, + -1.27, + -1.26, + -1.24, + -1.21, + -1.16, + -1.1300000000000001, + -1.12, + -1.11, + -1.12, + -1.12, + -1.1400000000000001, + -1.17, + -1.24, + -1.33 + ], + [ + 1.51, + 1.51, + 1.52, + 1.48, + 1.44, + 1.4000000000000001, + 1.32, + 1.2, + 1.07, + 0.91, + 0.75, + 0.58, + 0.46, + 0.34, + 0.26, + 0.23, + 0.24, + 0.27, + 0.32, + 0.43, + 0.5700000000000001, + 0.79, + 1.11, + 1.5, + 1.97, + 2.47, + 2.96, + 3.43, + 3.88, + 4.26, + 4.55, + 4.65, + 4.3100000000000005, + 3.64, + 2.65, + 1.93, + 1.53, + 1.58, + 1.79, + 2.09, + 2.45, + 2.7, + 2.91, + 3.0100000000000002, + 3.08, + 3.08, + 3.0, + 2.81, + 2.42, + 1.71, + 0.84, + -0.05, + -0.66, + -0.86, + -0.51, + 0.12, + 0.84, + 1.46, + 1.62, + 1.6, + 1.27, + 0.87, + 0.52, + 0.32, + 0.28, + 0.29, + 0.4, + 0.41000000000000003, + 0.29, + 0.05, + -0.25, + -0.58, + -0.93, + -1.16, + -1.29, + -1.2, + -0.9500000000000001, + -0.45, + -0.05, + 0.44, + 0.85, + 1.07, + 1.3900000000000001, + 1.3900000000000001, + 1.53, + 1.34, + 1.07, + 0.66, + 0.2, + 0.0, + -0.03, + 0.41000000000000003, + 1.1300000000000001, + 1.94, + 2.7800000000000002, + 3.5300000000000002, + 4.03, + 4.43, + 4.63, + 4.78, + 4.67, + 4.39, + 3.83, + 3.42, + 2.86, + 2.5300000000000002, + 2.42, + 2.23, + 2.2, + 2.0100000000000002, + 1.8800000000000001, + 1.81, + 1.8900000000000001, + 1.95, + 1.93, + 1.73, + 1.36, + 0.9400000000000001, + 0.59, + 0.34, + 0.26, + 0.26, + 0.36, + 0.63, + 0.99, + 1.6500000000000001, + 2.18, + 2.5300000000000002, + 2.68, + 2.5300000000000002, + 2.34, + 2.24, + 2.15, + 2.19, + 2.12, + 1.86, + 1.5, + 1.41, + 1.62, + 1.9100000000000001, + 1.97, + 1.58, + 0.88, + 0.22, + -0.24, + -0.47000000000000003, + -0.58, + -0.74, + -0.9400000000000001, + -1.11, + -1.25, + -1.36, + -1.44, + -1.53, + -1.6, + -1.68, + -1.74, + -1.81, + -1.8800000000000001, + -1.94, + -1.98, + -1.99, + -1.96, + -1.9100000000000001, + -1.86, + -1.81, + -1.72, + -1.6300000000000001, + -1.53, + -1.43, + -1.32, + -1.21, + -1.1, + -0.98, + -0.86, + -0.74, + -0.63, + -0.51, + -0.38, + -0.25, + -0.13, + -0.01, + 0.11, + 0.22, + 0.32, + 0.39, + 0.45, + 0.49, + 0.53, + 0.59, + 0.67, + 0.75, + 0.87, + 0.99, + 1.11, + 1.24, + 1.37, + 1.51, + 1.6500000000000001, + 1.78, + 1.8800000000000001, + 1.94, + 1.97, + 1.99, + 2.0100000000000002, + 2.07, + 2.13, + 2.19, + 2.25, + 2.31, + 2.37, + 2.42, + 2.47, + 2.5100000000000002, + 2.5500000000000003, + 2.57, + 2.59, + 2.62, + 2.65, + 2.71, + 2.75, + 2.8000000000000003, + 2.83, + 2.85, + 2.86, + 2.87, + 2.88, + 2.89, + 2.9, + 2.91, + 2.91, + 2.92, + 2.92, + 2.93, + 2.93, + 2.94, + 2.95, + 2.96, + 2.98, + 2.98, + 2.96, + 2.96, + 2.94, + 2.93, + 2.91, + 2.9, + 2.87, + 2.86, + 2.83, + 2.81, + 2.79, + 2.77, + 2.75, + 2.73, + 2.72, + 2.71, + 2.71, + 2.72, + 2.74, + 2.77, + 2.79, + 2.82, + 2.83, + 2.82, + 2.79, + 2.67, + 2.5100000000000002, + 2.29, + 2.07, + 1.74, + 1.48, + 1.22, + 1.06, + 0.99, + 0.9500000000000001, + 0.9400000000000001, + 0.87, + 0.79, + 0.66, + 0.53, + 0.43, + 0.39, + 0.52, + 0.67, + 0.86, + 0.91, + 0.84, + 0.6900000000000001, + 0.55, + 0.43, + 0.31, + 0.15, + -0.11, + -0.38, + -0.71, + -0.91, + -1.01, + -1.08, + -1.1, + -1.23, + -1.42, + -1.61, + -1.84, + -1.94, + -1.97, + -1.8900000000000001, + -1.78, + -1.6400000000000001, + -1.45, + -1.24, + -0.9500000000000001, + -0.66, + -0.39, + -0.18, + 0.04, + 0.28, + 0.51, + 0.7000000000000001, + 0.8200000000000001, + 0.87, + 0.75, + 0.54, + 0.23, + -0.2, + -0.61, + -0.9400000000000001, + -1.2, + -1.35, + -1.46, + -1.46, + -1.44, + -1.3800000000000001, + -1.34, + -1.31, + -1.3, + -1.28, + -1.25, + -1.23, + -1.21, + -1.18, + -1.17, + -1.1500000000000001, + -1.12, + -1.1, + -1.12, + -1.17, + -1.25 + ], + [ + 1.42, + 1.43, + 1.42, + 1.3900000000000001, + 1.37, + 1.34, + 1.25, + 1.12, + 0.9400000000000001, + 0.77, + 0.56, + 0.4, + 0.24, + 0.12, + 0.02, + -0.02, + -0.01, + 0.02, + 0.12, + 0.26, + 0.47000000000000003, + 0.75, + 1.11, + 1.55, + 2.0100000000000002, + 2.5100000000000002, + 3.0, + 3.49, + 3.94, + 4.34, + 4.62, + 4.59, + 4.26, + 3.42, + 2.42, + 1.6, + 1.21, + 1.06, + 1.28, + 1.61, + 1.99, + 2.38, + 2.65, + 2.86, + 2.98, + 3.0300000000000002, + 2.97, + 2.7800000000000002, + 2.31, + 1.62, + 0.71, + -0.18, + -0.78, + -1.01, + -0.77, + -0.13, + 0.55, + 1.2, + 1.6300000000000001, + 1.59, + 1.47, + 1.06, + 0.79, + 0.62, + 0.5700000000000001, + 0.64, + 0.61, + 0.59, + 0.46, + 0.22, + -0.12, + -0.49, + -0.92, + -1.23, + -1.41, + -1.4000000000000001, + -1.22, + -1.01, + -0.62, + -0.33, + 0.08, + 0.52, + 0.84, + 1.26, + 1.43, + 1.6, + 1.3800000000000001, + 1.12, + 0.72, + 0.34, + 0.26, + 0.43, + 1.0, + 1.78, + 2.6, + 3.44, + 4.0600000000000005, + 4.58, + 5.01, + 5.23, + 5.2700000000000005, + 5.0200000000000005, + 4.91, + 4.51, + 4.29, + 3.98, + 3.74, + 3.56, + 3.23, + 3.0100000000000002, + 2.75, + 2.66, + 2.5500000000000003, + 2.5100000000000002, + 2.39, + 2.13, + 1.82, + 1.51, + 1.2, + 1.05, + 0.9400000000000001, + 0.92, + 0.98, + 1.11, + 1.43, + 1.77, + 2.31, + 2.62, + 2.7600000000000002, + 2.83, + 2.66, + 2.5, + 2.41, + 2.2600000000000002, + 2.12, + 1.9000000000000001, + 1.57, + 1.33, + 1.46, + 1.73, + 1.75, + 1.49, + 0.9500000000000001, + 0.3, + -0.16, + -0.39, + -0.54, + -0.6900000000000001, + -0.84, + -1.01, + -1.1300000000000001, + -1.25, + -1.37, + -1.46, + -1.57, + -1.6500000000000001, + -1.74, + -1.83, + -1.9100000000000001, + -1.96, + -1.99, + -2.0, + -1.99, + -1.95, + -1.8900000000000001, + -1.81, + -1.72, + -1.62, + -1.51, + -1.41, + -1.3, + -1.19, + -1.08, + -0.96, + -0.84, + -0.72, + -0.6, + -0.47000000000000003, + -0.34, + -0.22, + -0.09, + 0.03, + 0.15, + 0.27, + 0.37, + 0.46, + 0.53, + 0.58, + 0.63, + 0.68, + 0.73, + 0.81, + 0.89, + 1.01, + 1.1400000000000001, + 1.27, + 1.41, + 1.55, + 1.68, + 1.82, + 1.93, + 1.99, + 2.0100000000000002, + 2.02, + 2.04, + 2.09, + 2.16, + 2.23, + 2.3000000000000003, + 2.36, + 2.42, + 2.47, + 2.5100000000000002, + 2.5500000000000003, + 2.59, + 2.62, + 2.64, + 2.67, + 2.71, + 2.75, + 2.79, + 2.83, + 2.85, + 2.87, + 2.88, + 2.9, + 2.9, + 2.91, + 2.91, + 2.92, + 2.93, + 2.93, + 2.93, + 2.94, + 2.94, + 2.95, + 2.96, + 2.97, + 2.97, + 2.97, + 2.96, + 2.96, + 2.95, + 2.94, + 2.93, + 2.91, + 2.9, + 2.88, + 2.87, + 2.85, + 2.84, + 2.82, + 2.81, + 2.79, + 2.7800000000000002, + 2.77, + 2.7800000000000002, + 2.7800000000000002, + 2.8000000000000003, + 2.82, + 2.85, + 2.86, + 2.88, + 2.88, + 2.85, + 2.8000000000000003, + 2.64, + 2.48, + 2.2600000000000002, + 2.08, + 1.85, + 1.69, + 1.58, + 1.54, + 1.53, + 1.52, + 1.48, + 1.3900000000000001, + 1.26, + 1.07, + 0.89, + 0.8, + 0.78, + 0.9, + 0.97, + 1.03, + 0.93, + 0.78, + 0.62, + 0.51, + 0.41000000000000003, + 0.25, + 0.06, + -0.18, + -0.37, + -0.47000000000000003, + -0.53, + -0.5700000000000001, + -0.6900000000000001, + -0.9400000000000001, + -1.22, + -1.56, + -1.81, + -1.96, + -2.0, + -1.96, + -1.86, + -1.73, + -1.54, + -1.31, + -1.02, + -0.74, + -0.49, + -0.24, + -0.02, + 0.22, + 0.45, + 0.64, + 0.75, + 0.72, + 0.53, + 0.23, + -0.2, + -0.61, + -0.97, + -1.26, + -1.44, + -1.57, + -1.61, + -1.61, + -1.54, + -1.47, + -1.42, + -1.3900000000000001, + -1.36, + -1.35, + -1.33, + -1.32, + -1.3, + -1.27, + -1.23, + -1.18, + -1.11, + -1.07, + -1.05, + -1.08, + -1.1500000000000001 + ], + [ + 1.37, + 1.36, + 1.34, + 1.32, + 1.31, + 1.28, + 1.19, + 1.01, + 0.8300000000000001, + 0.61, + 0.41000000000000003, + 0.2, + 0.04, + -0.12, + -0.22, + -0.28, + -0.28, + -0.19, + -0.06, + 0.15, + 0.42, + 0.75, + 1.16, + 1.59, + 2.07, + 2.5500000000000003, + 3.04, + 3.5300000000000002, + 4.0, + 4.4, + 4.58, + 4.58, + 4.05, + 3.22, + 2.2800000000000002, + 1.44, + 0.89, + 0.77, + 0.8200000000000001, + 1.17, + 1.6, + 2.02, + 2.4, + 2.64, + 2.82, + 2.89, + 2.86, + 2.63, + 2.19, + 1.45, + 0.5700000000000001, + -0.18, + -0.8300000000000001, + -0.9500000000000001, + -0.81, + -0.34, + 0.34, + 0.91, + 1.35, + 1.58, + 1.44, + 1.26, + 1.02, + 0.93, + 0.92, + 0.9400000000000001, + 0.9, + 0.8200000000000001, + 0.67, + 0.45, + 0.16, + -0.23, + -0.61, + -1.01, + -1.1500000000000001, + -1.25, + -1.25, + -1.1300000000000001, + -1.02, + -0.78, + -0.51, + -0.06, + 0.41000000000000003, + 0.86, + 1.28, + 1.45, + 1.56, + 1.34, + 1.12, + 0.79, + 0.59, + 0.73, + 1.07, + 1.72, + 2.47, + 3.17, + 3.89, + 4.49, + 5.05, + 5.48, + 5.61, + 5.78, + 5.72, + 5.69, + 5.5, + 5.47, + 5.24, + 5.05, + 4.74, + 4.37, + 4.14, + 3.81, + 3.66, + 3.36, + 3.13, + 2.82, + 2.54, + 2.25, + 2.0300000000000002, + 1.85, + 1.72, + 1.67, + 1.68, + 1.75, + 1.87, + 2.17, + 2.39, + 2.69, + 2.83, + 2.88, + 2.9, + 2.75, + 2.54, + 2.33, + 2.08, + 1.8, + 1.5, + 1.27, + 1.25, + 1.4000000000000001, + 1.52, + 1.34, + 0.9, + 0.37, + -0.12, + -0.43, + -0.5700000000000001, + -0.71, + -0.85, + -0.9500000000000001, + -1.07, + -1.18, + -1.3, + -1.42, + -1.53, + -1.6400000000000001, + -1.74, + -1.84, + -1.9100000000000001, + -1.97, + -1.99, + -2.0, + -1.98, + -1.95, + -1.8800000000000001, + -1.8, + -1.7, + -1.59, + -1.48, + -1.3800000000000001, + -1.26, + -1.16, + -1.04, + -0.92, + -0.79, + -0.67, + -0.54, + -0.41000000000000003, + -0.28, + -0.16, + -0.04, + 0.09, + 0.2, + 0.33, + 0.43, + 0.53, + 0.61, + 0.68, + 0.73, + 0.77, + 0.81, + 0.87, + 0.9500000000000001, + 1.04, + 1.17, + 1.3, + 1.43, + 1.58, + 1.72, + 1.84, + 1.94, + 2.0100000000000002, + 2.0300000000000002, + 2.05, + 2.08, + 2.13, + 2.2, + 2.27, + 2.33, + 2.4, + 2.45, + 2.5100000000000002, + 2.54, + 2.58, + 2.61, + 2.65, + 2.7, + 2.73, + 2.7600000000000002, + 2.79, + 2.81, + 2.84, + 2.87, + 2.88, + 2.9, + 2.91, + 2.92, + 2.93, + 2.93, + 2.93, + 2.94, + 2.93, + 2.94, + 2.94, + 2.95, + 2.95, + 2.96, + 2.96, + 2.96, + 2.96, + 2.96, + 2.95, + 2.95, + 2.94, + 2.93, + 2.92, + 2.9, + 2.89, + 2.88, + 2.87, + 2.86, + 2.85, + 2.84, + 2.83, + 2.82, + 2.82, + 2.82, + 2.83, + 2.84, + 2.86, + 2.87, + 2.9, + 2.9, + 2.9, + 2.88, + 2.83, + 2.7600000000000002, + 2.6, + 2.45, + 2.2800000000000002, + 2.14, + 2.0100000000000002, + 1.95, + 1.93, + 1.97, + 1.96, + 1.96, + 1.87, + 1.76, + 1.58, + 1.36, + 1.19, + 1.12, + 1.1, + 1.17, + 1.1500000000000001, + 1.05, + 0.91, + 0.76, + 0.65, + 0.56, + 0.46, + 0.3, + 0.16, + 0.04, + -0.07, + -0.13, + -0.24, + -0.5, + -0.79, + -1.18, + -1.53, + -1.77, + -1.95, + -1.98, + -1.96, + -1.9100000000000001, + -1.79, + -1.6500000000000001, + -1.42, + -1.21, + -0.9500000000000001, + -0.71, + -0.48, + -0.24, + -0.01, + 0.2, + 0.36, + 0.45, + 0.33, + 0.11, + -0.29, + -0.67, + -1.03, + -1.34, + -1.53, + -1.69, + -1.75, + -1.77, + -1.72, + -1.6500000000000001, + -1.57, + -1.52, + -1.48, + -1.46, + -1.45, + -1.44, + -1.42, + -1.3900000000000001, + -1.34, + -1.27, + -1.19, + -1.1, + -1.02, + -0.98, + -0.99, + -1.05 + ], + [ + 1.31, + 1.31, + 1.31, + 1.27, + 1.28, + 1.25, + 1.12, + 0.93, + 0.72, + 0.5, + 0.26, + 0.04, + -0.16, + -0.32, + -0.47000000000000003, + -0.53, + -0.5, + -0.39, + -0.18, + 0.09, + 0.41000000000000003, + 0.81, + 1.22, + 1.67, + 2.12, + 2.58, + 3.06, + 3.54, + 4.0200000000000005, + 4.32, + 4.54, + 4.29, + 3.81, + 2.99, + 2.04, + 1.29, + 0.75, + 0.48, + 0.5700000000000001, + 0.81, + 1.28, + 1.74, + 2.14, + 2.44, + 2.62, + 2.69, + 2.6, + 2.42, + 1.8900000000000001, + 1.25, + 0.52, + -0.21, + -0.55, + -0.76, + -0.5700000000000001, + -0.19, + 0.31, + 0.87, + 1.23, + 1.47, + 1.48, + 1.29, + 1.11, + 1.03, + 1.04, + 1.0, + 1.04, + 0.9500000000000001, + 0.85, + 0.65, + 0.42, + 0.09, + -0.27, + -0.55, + -0.76, + -0.91, + -1.0, + -1.08, + -1.05, + -0.9500000000000001, + -0.71, + -0.4, + 0.1, + 0.54, + 0.98, + 1.32, + 1.43, + 1.49, + 1.31, + 1.16, + 1.04, + 1.03, + 1.34, + 1.79, + 2.41, + 3.0300000000000002, + 3.68, + 4.34, + 5.04, + 5.58, + 6.07, + 6.3100000000000005, + 6.46, + 6.49, + 6.5600000000000005, + 6.55, + 6.63, + 6.43, + 6.33, + 5.98, + 5.68, + 5.38, + 4.97, + 4.62, + 4.17, + 3.85, + 3.49, + 3.21, + 2.93, + 2.7, + 2.54, + 2.43, + 2.42, + 2.41, + 2.46, + 2.5300000000000002, + 2.71, + 2.8000000000000003, + 2.92, + 2.96, + 2.97, + 2.91, + 2.68, + 2.36, + 2.05, + 1.69, + 1.33, + 1.05, + 0.99, + 1.1, + 1.2, + 1.1500000000000001, + 0.8200000000000001, + 0.32, + -0.17, + -0.51, + -0.7000000000000001, + -0.8200000000000001, + -0.91, + -1.0, + -1.06, + -1.16, + -1.26, + -1.3900000000000001, + -1.51, + -1.6300000000000001, + -1.73, + -1.83, + -1.9100000000000001, + -1.95, + -1.98, + -1.97, + -1.95, + -1.9100000000000001, + -1.85, + -1.76, + -1.6600000000000001, + -1.54, + -1.43, + -1.32, + -1.21, + -1.09, + -0.98, + -0.85, + -0.73, + -0.59, + -0.46, + -0.33, + -0.2, + -0.08, + 0.04, + 0.16, + 0.29, + 0.41000000000000003, + 0.52, + 0.62, + 0.71, + 0.79, + 0.85, + 0.89, + 0.92, + 0.96, + 1.01, + 1.1, + 1.21, + 1.34, + 1.47, + 1.62, + 1.75, + 1.87, + 1.96, + 2.0100000000000002, + 2.06, + 2.08, + 2.12, + 2.17, + 2.24, + 2.3000000000000003, + 2.36, + 2.42, + 2.48, + 2.5300000000000002, + 2.57, + 2.61, + 2.64, + 2.69, + 2.74, + 2.77, + 2.8000000000000003, + 2.82, + 2.83, + 2.85, + 2.87, + 2.89, + 2.91, + 2.92, + 2.93, + 2.93, + 2.93, + 2.94, + 2.94, + 2.94, + 2.94, + 2.94, + 2.95, + 2.95, + 2.95, + 2.95, + 2.95, + 2.95, + 2.95, + 2.94, + 2.94, + 2.93, + 2.92, + 2.91, + 2.9, + 2.89, + 2.88, + 2.88, + 2.87, + 2.86, + 2.86, + 2.85, + 2.85, + 2.85, + 2.85, + 2.86, + 2.88, + 2.89, + 2.9, + 2.9, + 2.91, + 2.9, + 2.89, + 2.86, + 2.79, + 2.72, + 2.57, + 2.47, + 2.34, + 2.25, + 2.2, + 2.2, + 2.22, + 2.2600000000000002, + 2.23, + 2.21, + 2.1, + 1.97, + 1.78, + 1.58, + 1.42, + 1.36, + 1.31, + 1.29, + 1.21, + 1.06, + 0.96, + 0.87, + 0.8, + 0.71, + 0.62, + 0.51, + 0.4, + 0.29, + 0.14, + -0.11, + -0.39, + -0.78, + -1.1400000000000001, + -1.44, + -1.7, + -1.83, + -1.9000000000000001, + -1.92, + -1.9000000000000001, + -1.85, + -1.72, + -1.59, + -1.4000000000000001, + -1.24, + -1.02, + -0.8300000000000001, + -0.62, + -0.44, + -0.29, + -0.18, + -0.22, + -0.29, + -0.6, + -0.88, + -1.19, + -1.47, + -1.6400000000000001, + -1.8, + -1.86, + -1.92, + -1.8800000000000001, + -1.83, + -1.74, + -1.6600000000000001, + -1.62, + -1.58, + -1.56, + -1.55, + -1.54, + -1.52, + -1.47, + -1.4000000000000001, + -1.3, + -1.19, + -1.08, + -0.98, + -0.91, + -0.91, + -0.9500000000000001 + ], + [ + 1.28, + 1.28, + 1.29, + 1.28, + 1.27, + 1.2, + 1.08, + 0.87, + 0.64, + 0.39, + 0.13, + -0.11, + -0.32, + -0.51, + -0.65, + -0.71, + -0.65, + -0.49, + -0.21, + 0.09, + 0.48, + 0.87, + 1.3, + 1.72, + 2.14, + 2.58, + 3.0300000000000002, + 3.5100000000000002, + 3.87, + 4.22, + 4.17, + 3.99, + 3.43, + 2.64, + 1.8800000000000001, + 1.1300000000000001, + 0.66, + 0.43, + 0.41000000000000003, + 0.7000000000000001, + 1.07, + 1.56, + 1.96, + 2.27, + 2.43, + 2.42, + 2.29, + 1.94, + 1.53, + 0.92, + 0.31, + -0.11, + -0.44, + -0.46, + -0.31, + 0.01, + 0.46, + 0.89, + 1.24, + 1.3800000000000001, + 1.37, + 1.22, + 1.02, + 0.87, + 0.8200000000000001, + 0.88, + 0.89, + 0.97, + 0.87, + 0.74, + 0.5, + 0.28, + -0.06, + -0.29, + -0.53, + -0.66, + -0.86, + -0.97, + -0.98, + -0.92, + -0.72, + -0.42, + -0.1, + 0.36, + 0.75, + 1.09, + 1.36, + 1.44, + 1.5, + 1.42, + 1.3900000000000001, + 1.43, + 1.57, + 1.9100000000000001, + 2.43, + 2.96, + 3.58, + 4.3100000000000005, + 5.05, + 5.78, + 6.37, + 6.78, + 6.98, + 7.13, + 7.23, + 7.33, + 7.41, + 7.53, + 7.38, + 7.36, + 7.01, + 6.78, + 6.28, + 5.87, + 5.39, + 4.97, + 4.58, + 4.23, + 3.89, + 3.59, + 3.3200000000000003, + 3.19, + 3.08, + 3.04, + 3.0, + 3.02, + 3.0300000000000002, + 3.09, + 3.1, + 3.13, + 3.08, + 3.0, + 2.81, + 2.47, + 2.0300000000000002, + 1.62, + 1.16, + 0.84, + 0.68, + 0.78, + 0.92, + 0.87, + 0.66, + 0.18, + -0.32, + -0.65, + -0.87, + -0.98, + -1.05, + -1.08, + -1.12, + -1.17, + -1.27, + -1.3800000000000001, + -1.5, + -1.62, + -1.72, + -1.81, + -1.87, + -1.92, + -1.92, + -1.92, + -1.8800000000000001, + -1.84, + -1.76, + -1.68, + -1.58, + -1.47, + -1.35, + -1.24, + -1.1300000000000001, + -1.01, + -0.89, + -0.77, + -0.64, + -0.51, + -0.37, + -0.24, + -0.11, + 0.01, + 0.14, + 0.26, + 0.39, + 0.51, + 0.62, + 0.73, + 0.8300000000000001, + 0.91, + 0.98, + 1.02, + 1.05, + 1.07, + 1.11, + 1.18, + 1.28, + 1.4000000000000001, + 1.54, + 1.67, + 1.8, + 1.8900000000000001, + 1.97, + 2.02, + 2.06, + 2.11, + 2.15, + 2.21, + 2.27, + 2.33, + 2.39, + 2.44, + 2.5, + 2.56, + 2.59, + 2.63, + 2.68, + 2.72, + 2.7600000000000002, + 2.8000000000000003, + 2.82, + 2.83, + 2.84, + 2.86, + 2.87, + 2.89, + 2.91, + 2.91, + 2.93, + 2.93, + 2.94, + 2.94, + 2.93, + 2.93, + 2.93, + 2.93, + 2.94, + 2.94, + 2.94, + 2.94, + 2.94, + 2.94, + 2.93, + 2.93, + 2.92, + 2.92, + 2.91, + 2.9, + 2.89, + 2.89, + 2.88, + 2.87, + 2.87, + 2.86, + 2.86, + 2.86, + 2.86, + 2.86, + 2.87, + 2.88, + 2.89, + 2.9, + 2.91, + 2.91, + 2.91, + 2.91, + 2.89, + 2.87, + 2.83, + 2.7600000000000002, + 2.69, + 2.59, + 2.5100000000000002, + 2.43, + 2.4, + 2.39, + 2.4, + 2.41, + 2.41, + 2.36, + 2.32, + 2.19, + 2.06, + 1.8800000000000001, + 1.7, + 1.56, + 1.49, + 1.41, + 1.34, + 1.26, + 1.17, + 1.1, + 1.05, + 0.98, + 0.89, + 0.81, + 0.68, + 0.53, + 0.28, + -0.01, + -0.37, + -0.73, + -1.04, + -1.34, + -1.52, + -1.68, + -1.77, + -1.83, + -1.85, + -1.83, + -1.78, + -1.68, + -1.59, + -1.45, + -1.36, + -1.19, + -1.11, + -0.98, + -0.9400000000000001, + -0.9400000000000001, + -0.99, + -1.16, + -1.33, + -1.53, + -1.71, + -1.81, + -1.93, + -1.97, + -2.0300000000000002, + -2.0100000000000002, + -1.98, + -1.9000000000000001, + -1.81, + -1.74, + -1.7, + -1.67, + -1.6600000000000001, + -1.6500000000000001, + -1.6400000000000001, + -1.6, + -1.54, + -1.44, + -1.33, + -1.2, + -1.07, + -0.9500000000000001, + -0.89, + -0.86, + -0.91 + ], + [ + 1.24, + 1.24, + 1.27, + 1.27, + 1.23, + 1.17, + 1.0, + 0.8, + 0.56, + 0.3, + 0.04, + -0.21, + -0.42, + -0.61, + -0.73, + -0.75, + -0.67, + -0.42, + -0.16, + 0.21, + 0.56, + 0.97, + 1.35, + 1.74, + 2.13, + 2.52, + 2.95, + 3.29, + 3.67, + 3.72, + 3.74, + 3.41, + 2.91, + 2.29, + 1.57, + 1.07, + 0.65, + 0.46, + 0.49, + 0.67, + 1.09, + 1.49, + 1.8900000000000001, + 2.16, + 2.25, + 2.17, + 1.8800000000000001, + 1.48, + 0.99, + 0.49, + 0.13, + -0.22, + -0.36, + -0.36, + -0.25, + 0.06, + 0.45, + 0.85, + 1.1, + 1.2, + 1.16, + 0.9500000000000001, + 0.77, + 0.59, + 0.49, + 0.55, + 0.67, + 0.76, + 0.8, + 0.65, + 0.47000000000000003, + 0.22, + -0.05, + -0.3, + -0.49, + -0.6900000000000001, + -0.86, + -0.9500000000000001, + -0.97, + -0.85, + -0.65, + -0.41000000000000003, + -0.11, + 0.18, + 0.55, + 0.9, + 1.18, + 1.42, + 1.47, + 1.57, + 1.57, + 1.6500000000000001, + 1.72, + 1.93, + 2.2800000000000002, + 2.8000000000000003, + 3.42, + 4.19, + 5.05, + 5.88, + 6.55, + 7.05, + 7.36, + 7.54, + 7.66, + 7.75, + 7.84, + 7.930000000000001, + 8.040000000000001, + 7.92, + 7.91, + 7.51, + 7.25, + 6.71, + 6.36, + 5.84, + 5.51, + 5.05, + 4.74, + 4.3, + 4.0200000000000005, + 3.75, + 3.64, + 3.52, + 3.46, + 3.41, + 3.39, + 3.38, + 3.37, + 3.33, + 3.2600000000000002, + 3.12, + 2.9, + 2.61, + 2.15, + 1.61, + 1.11, + 0.64, + 0.51, + 0.5, + 0.59, + 0.62, + 0.36, + -0.05, + -0.47000000000000003, + -0.84, + -1.02, + -1.1300000000000001, + -1.17, + -1.18, + -1.19, + -1.22, + -1.28, + -1.3800000000000001, + -1.49, + -1.61, + -1.71, + -1.77, + -1.82, + -1.83, + -1.84, + -1.8, + -1.77, + -1.71, + -1.6500000000000001, + -1.55, + -1.46, + -1.36, + -1.25, + -1.1500000000000001, + -1.03, + -0.91, + -0.79, + -0.67, + -0.54, + -0.41000000000000003, + -0.27, + -0.14, + -0.01, + 0.12, + 0.25, + 0.38, + 0.51, + 0.63, + 0.75, + 0.86, + 0.96, + 1.04, + 1.11, + 1.16, + 1.18, + 1.2, + 1.24, + 1.3, + 1.4000000000000001, + 1.52, + 1.6300000000000001, + 1.76, + 1.85, + 1.92, + 1.98, + 2.0300000000000002, + 2.08, + 2.13, + 2.19, + 2.2600000000000002, + 2.32, + 2.37, + 2.41, + 2.46, + 2.5100000000000002, + 2.56, + 2.6, + 2.65, + 2.7, + 2.75, + 2.79, + 2.81, + 2.82, + 2.83, + 2.85, + 2.86, + 2.87, + 2.88, + 2.89, + 2.91, + 2.92, + 2.93, + 2.94, + 2.93, + 2.93, + 2.92, + 2.92, + 2.92, + 2.92, + 2.92, + 2.92, + 2.92, + 2.92, + 2.92, + 2.91, + 2.91, + 2.9, + 2.89, + 2.89, + 2.88, + 2.88, + 2.88, + 2.87, + 2.87, + 2.86, + 2.86, + 2.85, + 2.85, + 2.85, + 2.86, + 2.87, + 2.88, + 2.89, + 2.9, + 2.91, + 2.91, + 2.91, + 2.91, + 2.89, + 2.87, + 2.84, + 2.8000000000000003, + 2.73, + 2.68, + 2.6, + 2.56, + 2.52, + 2.52, + 2.5, + 2.52, + 2.48, + 2.45, + 2.37, + 2.32, + 2.19, + 2.07, + 1.9000000000000001, + 1.74, + 1.61, + 1.52, + 1.45, + 1.3900000000000001, + 1.35, + 1.29, + 1.24, + 1.17, + 1.1, + 0.99, + 0.88, + 0.65, + 0.39, + 0.05, + -0.3, + -0.61, + -0.92, + -1.1300000000000001, + -1.32, + -1.47, + -1.61, + -1.69, + -1.74, + -1.75, + -1.73, + -1.7, + -1.6300000000000001, + -1.59, + -1.52, + -1.51, + -1.46, + -1.52, + -1.53, + -1.6500000000000001, + -1.72, + -1.8800000000000001, + -1.93, + -2.06, + -2.05, + -2.1, + -2.08, + -2.1, + -2.08, + -2.07, + -2.0100000000000002, + -1.93, + -1.85, + -1.79, + -1.76, + -1.74, + -1.73, + -1.72, + -1.71, + -1.6600000000000001, + -1.59, + -1.47, + -1.35, + -1.21, + -1.07, + -0.97, + -0.88, + -0.87, + -0.89 + ], + [ + 1.21, + 1.23, + 1.27, + 1.24, + 1.2, + 1.1, + 0.9400000000000001, + 0.74, + 0.49, + 0.24, + -0.02, + -0.24, + -0.44, + -0.59, + -0.67, + -0.66, + -0.51, + -0.29, + 0.01, + 0.35000000000000003, + 0.67, + 1.03, + 1.35, + 1.71, + 2.04, + 2.42, + 2.72, + 3.04, + 3.17, + 3.23, + 3.08, + 2.7800000000000002, + 2.37, + 1.83, + 1.35, + 0.93, + 0.68, + 0.55, + 0.58, + 0.79, + 1.08, + 1.47, + 1.86, + 2.05, + 2.15, + 1.96, + 1.59, + 1.16, + 0.59, + 0.27, + -0.08, + -0.24, + -0.39, + -0.42, + -0.34, + -0.11, + 0.29, + 0.63, + 0.8300000000000001, + 0.89, + 0.79, + 0.65, + 0.46, + 0.29, + 0.24, + 0.22, + 0.4, + 0.5700000000000001, + 0.6, + 0.55, + 0.4, + 0.17, + -0.03, + -0.32, + -0.49, + -0.71, + -0.85, + -0.9500000000000001, + -0.9400000000000001, + -0.8, + -0.62, + -0.4, + -0.19, + 0.06, + 0.33, + 0.66, + 0.98, + 1.18, + 1.37, + 1.45, + 1.6, + 1.6300000000000001, + 1.72, + 1.86, + 2.06, + 2.5100000000000002, + 3.13, + 3.93, + 4.9, + 5.78, + 6.5600000000000005, + 7.1000000000000005, + 7.49, + 7.75, + 7.87, + 7.96, + 8.0, + 8.06, + 8.120000000000001, + 8.18, + 8.040000000000001, + 7.94, + 7.54, + 7.21, + 6.73, + 6.37, + 5.91, + 5.6000000000000005, + 5.12, + 4.76, + 4.3500000000000005, + 4.11, + 3.89, + 3.79, + 3.7, + 3.64, + 3.6, + 3.5700000000000003, + 3.54, + 3.47, + 3.38, + 3.19, + 2.98, + 2.66, + 2.29, + 1.72, + 1.1, + 0.7000000000000001, + 0.35000000000000003, + 0.34, + 0.36, + 0.32, + 0.12, + -0.2, + -0.63, + -0.89, + -1.09, + -1.18, + -1.22, + -1.24, + -1.24, + -1.25, + -1.3, + -1.37, + -1.47, + -1.57, + -1.6500000000000001, + -1.72, + -1.73, + -1.73, + -1.71, + -1.6600000000000001, + -1.62, + -1.56, + -1.49, + -1.41, + -1.33, + -1.23, + -1.1400000000000001, + -1.04, + -0.93, + -0.81, + -0.6900000000000001, + -0.5700000000000001, + -0.44, + -0.31, + -0.17, + -0.04, + 0.1, + 0.22, + 0.36, + 0.48, + 0.63, + 0.74, + 0.87, + 0.98, + 1.09, + 1.16, + 1.24, + 1.28, + 1.32, + 1.34, + 1.3800000000000001, + 1.45, + 1.54, + 1.6400000000000001, + 1.74, + 1.82, + 1.9000000000000001, + 1.95, + 2.0, + 2.05, + 2.11, + 2.17, + 2.24, + 2.31, + 2.36, + 2.41, + 2.45, + 2.49, + 2.52, + 2.57, + 2.62, + 2.68, + 2.73, + 2.77, + 2.8000000000000003, + 2.81, + 2.82, + 2.84, + 2.85, + 2.86, + 2.87, + 2.88, + 2.89, + 2.9, + 2.92, + 2.93, + 2.93, + 2.93, + 2.92, + 2.92, + 2.92, + 2.91, + 2.91, + 2.91, + 2.9, + 2.91, + 2.9, + 2.9, + 2.9, + 2.89, + 2.88, + 2.87, + 2.87, + 2.86, + 2.86, + 2.86, + 2.86, + 2.85, + 2.85, + 2.84, + 2.84, + 2.84, + 2.85, + 2.85, + 2.86, + 2.87, + 2.88, + 2.89, + 2.9, + 2.9, + 2.9, + 2.9, + 2.88, + 2.87, + 2.84, + 2.8000000000000003, + 2.7600000000000002, + 2.7, + 2.65, + 2.61, + 2.58, + 2.56, + 2.5500000000000003, + 2.52, + 2.5100000000000002, + 2.44, + 2.37, + 2.3000000000000003, + 2.24, + 2.13, + 2.0, + 1.85, + 1.7, + 1.59, + 1.52, + 1.47, + 1.44, + 1.4000000000000001, + 1.34, + 1.28, + 1.19, + 1.1, + 0.9400000000000001, + 0.75, + 0.45, + 0.13, + -0.17, + -0.48, + -0.71, + -0.92, + -1.11, + -1.27, + -1.41, + -1.52, + -1.59, + -1.62, + -1.6300000000000001, + -1.62, + -1.61, + -1.59, + -1.59, + -1.61, + -1.69, + -1.76, + -1.94, + -2.02, + -2.21, + -2.21, + -2.31, + -2.2600000000000002, + -2.2800000000000002, + -2.22, + -2.19, + -2.14, + -2.12, + -2.07, + -2.0100000000000002, + -1.94, + -1.86, + -1.81, + -1.78, + -1.77, + -1.76, + -1.76, + -1.73, + -1.69, + -1.61, + -1.5, + -1.3800000000000001, + -1.25, + -1.1300000000000001, + -1.01, + -0.9500000000000001, + -0.9, + -0.9400000000000001 + ], + [ + 1.1300000000000001, + 1.18, + 1.21, + 1.21, + 1.17, + 1.07, + 0.93, + 0.73, + 0.5, + 0.25, + 0.01, + -0.2, + -0.37, + -0.5, + -0.56, + -0.52, + -0.39, + -0.17, + 0.12, + 0.4, + 0.72, + 1.0, + 1.3, + 1.61, + 1.9100000000000001, + 2.23, + 2.49, + 2.71, + 2.7800000000000002, + 2.7800000000000002, + 2.58, + 2.33, + 1.94, + 1.53, + 1.1500000000000001, + 0.86, + 0.6900000000000001, + 0.6, + 0.65, + 0.81, + 1.08, + 1.4000000000000001, + 1.74, + 1.99, + 2.02, + 1.8900000000000001, + 1.53, + 1.03, + 0.58, + 0.15, + -0.06, + -0.25, + -0.38, + -0.48, + -0.44, + -0.29, + 0.04, + 0.37, + 0.55, + 0.58, + 0.51, + 0.4, + 0.24, + 0.15, + 0.05, + 0.1, + 0.18, + 0.39, + 0.5, + 0.49, + 0.41000000000000003, + 0.25, + 0.07, + -0.16, + -0.38, + -0.58, + -0.76, + -0.87, + -0.88, + -0.79, + -0.62, + -0.44, + -0.27, + -0.09, + 0.15, + 0.41000000000000003, + 0.73, + 0.9500000000000001, + 1.1500000000000001, + 1.28, + 1.43, + 1.55, + 1.6500000000000001, + 1.74, + 1.95, + 2.2, + 2.84, + 3.6, + 4.6000000000000005, + 5.58, + 6.3500000000000005, + 6.97, + 7.44, + 7.76, + 7.930000000000001, + 7.99, + 8.03, + 8.05, + 8.09, + 8.120000000000001, + 8.1, + 7.94, + 7.71, + 7.3100000000000005, + 6.94, + 6.5200000000000005, + 6.13, + 5.71, + 5.32, + 4.87, + 4.48, + 4.19, + 3.97, + 3.85, + 3.77, + 3.71, + 3.66, + 3.62, + 3.58, + 3.5300000000000002, + 3.4, + 3.23, + 2.98, + 2.73, + 2.35, + 1.9000000000000001, + 1.29, + 0.74, + 0.44, + 0.24, + 0.24, + 0.17, + 0.01, + -0.27, + -0.58, + -0.86, + -1.04, + -1.1500000000000001, + -1.21, + -1.23, + -1.24, + -1.25, + -1.28, + -1.34, + -1.42, + -1.52, + -1.59, + -1.6400000000000001, + -1.6500000000000001, + -1.6400000000000001, + -1.6, + -1.56, + -1.49, + -1.45, + -1.37, + -1.32, + -1.23, + -1.1500000000000001, + -1.06, + -0.97, + -0.87, + -0.76, + -0.64, + -0.51, + -0.39, + -0.25, + -0.12, + 0.02, + 0.15, + 0.29, + 0.41000000000000003, + 0.55, + 0.67, + 0.8200000000000001, + 0.93, + 1.07, + 1.1500000000000001, + 1.26, + 1.32, + 1.3900000000000001, + 1.42, + 1.45, + 1.49, + 1.56, + 1.6400000000000001, + 1.74, + 1.82, + 1.87, + 1.93, + 1.97, + 2.02, + 2.07, + 2.13, + 2.2, + 2.27, + 2.33, + 2.4, + 2.44, + 2.48, + 2.5, + 2.5300000000000002, + 2.57, + 2.62, + 2.68, + 2.75, + 2.7800000000000002, + 2.81, + 2.82, + 2.83, + 2.84, + 2.85, + 2.86, + 2.87, + 2.88, + 2.89, + 2.9, + 2.91, + 2.92, + 2.93, + 2.93, + 2.92, + 2.92, + 2.91, + 2.91, + 2.9, + 2.9, + 2.9, + 2.9, + 2.89, + 2.89, + 2.88, + 2.88, + 2.87, + 2.86, + 2.85, + 2.85, + 2.85, + 2.85, + 2.84, + 2.84, + 2.83, + 2.83, + 2.83, + 2.83, + 2.83, + 2.84, + 2.84, + 2.85, + 2.86, + 2.87, + 2.88, + 2.89, + 2.89, + 2.88, + 2.87, + 2.86, + 2.83, + 2.8000000000000003, + 2.7600000000000002, + 2.71, + 2.67, + 2.62, + 2.59, + 2.56, + 2.54, + 2.5, + 2.47, + 2.41, + 2.34, + 2.27, + 2.21, + 2.14, + 2.04, + 1.9100000000000001, + 1.76, + 1.6300000000000001, + 1.54, + 1.49, + 1.46, + 1.44, + 1.3900000000000001, + 1.32, + 1.25, + 1.1400000000000001, + 1.0, + 0.79, + 0.55, + 0.24, + -0.04, + -0.31, + -0.53, + -0.75, + -0.91, + -1.11, + -1.25, + -1.3800000000000001, + -1.45, + -1.5, + -1.53, + -1.54, + -1.55, + -1.55, + -1.57, + -1.61, + -1.71, + -1.85, + -2.0, + -2.19, + -2.2800000000000002, + -2.38, + -2.35, + -2.35, + -2.32, + -2.3000000000000003, + -2.22, + -2.17, + -2.12, + -2.07, + -2.0100000000000002, + -1.94, + -1.87, + -1.82, + -1.78, + -1.77, + -1.77, + -1.77, + -1.75, + -1.7, + -1.6300000000000001, + -1.53, + -1.43, + -1.3, + -1.19, + -1.08, + -1.01, + -0.97, + -0.98 + ], + [ + 1.02, + 1.12, + 1.18, + 1.19, + 1.16, + 1.05, + 0.93, + 0.71, + 0.5, + 0.25, + 0.03, + -0.17, + -0.34, + -0.44, + -0.49, + -0.44, + -0.31, + -0.11, + 0.17, + 0.43, + 0.73, + 0.97, + 1.29, + 1.51, + 1.87, + 2.12, + 2.39, + 2.54, + 2.61, + 2.56, + 2.37, + 2.1, + 1.75, + 1.3800000000000001, + 1.06, + 0.8200000000000001, + 0.68, + 0.62, + 0.68, + 0.8300000000000001, + 1.06, + 1.41, + 1.68, + 1.92, + 2.0100000000000002, + 1.8, + 1.55, + 1.0, + 0.56, + 0.19, + -0.05, + -0.24, + -0.39, + -0.47000000000000003, + -0.52, + -0.32, + -0.04, + 0.24, + 0.41000000000000003, + 0.43, + 0.38, + 0.27, + 0.17, + 0.08, + 0.02, + 0.02, + 0.18, + 0.31, + 0.45, + 0.5, + 0.41000000000000003, + 0.33, + 0.11, + -0.05, + -0.31, + -0.5, + -0.6900000000000001, + -0.8200000000000001, + -0.8300000000000001, + -0.77, + -0.63, + -0.47000000000000003, + -0.31, + -0.14, + 0.06, + 0.36, + 0.6, + 0.86, + 1.02, + 1.21, + 1.31, + 1.49, + 1.59, + 1.73, + 1.83, + 2.24, + 2.61, + 3.58, + 4.47, + 5.47, + 6.25, + 6.890000000000001, + 7.41, + 7.72, + 7.91, + 7.98, + 8.01, + 8.02, + 8.07, + 8.08, + 8.06, + 7.95, + 7.66, + 7.38, + 6.93, + 6.6000000000000005, + 6.13, + 5.78, + 5.28, + 4.87, + 4.48, + 4.18, + 3.98, + 3.85, + 3.77, + 3.71, + 3.66, + 3.62, + 3.58, + 3.52, + 3.39, + 3.19, + 2.97, + 2.72, + 2.44, + 1.86, + 1.3900000000000001, + 0.81, + 0.45, + 0.28, + 0.2, + 0.11, + 0.0, + -0.29, + -0.55, + -0.8200000000000001, + -1.0, + -1.12, + -1.18, + -1.21, + -1.23, + -1.25, + -1.27, + -1.32, + -1.41, + -1.48, + -1.56, + -1.59, + -1.61, + -1.59, + -1.56, + -1.5, + -1.45, + -1.3900000000000001, + -1.33, + -1.27, + -1.19, + -1.11, + -1.03, + -0.9400000000000001, + -0.84, + -0.73, + -0.61, + -0.48, + -0.36, + -0.23, + -0.1, + 0.04, + 0.17, + 0.31, + 0.43, + 0.58, + 0.7000000000000001, + 0.84, + 0.96, + 1.09, + 1.19, + 1.28, + 1.36, + 1.42, + 1.46, + 1.5, + 1.54, + 1.61, + 1.69, + 1.78, + 1.84, + 1.9000000000000001, + 1.94, + 1.98, + 2.0300000000000002, + 2.07, + 2.14, + 2.21, + 2.2800000000000002, + 2.34, + 2.41, + 2.45, + 2.49, + 2.5100000000000002, + 2.54, + 2.57, + 2.63, + 2.7, + 2.75, + 2.79, + 2.81, + 2.82, + 2.83, + 2.84, + 2.85, + 2.86, + 2.87, + 2.88, + 2.89, + 2.89, + 2.9, + 2.91, + 2.93, + 2.92, + 2.92, + 2.91, + 2.91, + 2.9, + 2.9, + 2.9, + 2.9, + 2.89, + 2.89, + 2.88, + 2.88, + 2.87, + 2.86, + 2.85, + 2.85, + 2.85, + 2.85, + 2.84, + 2.84, + 2.83, + 2.83, + 2.83, + 2.83, + 2.83, + 2.83, + 2.83, + 2.84, + 2.84, + 2.86, + 2.86, + 2.87, + 2.88, + 2.88, + 2.88, + 2.87, + 2.85, + 2.83, + 2.8000000000000003, + 2.7600000000000002, + 2.71, + 2.67, + 2.62, + 2.58, + 2.5500000000000003, + 2.52, + 2.48, + 2.45, + 2.38, + 2.31, + 2.25, + 2.2, + 2.12, + 2.05, + 1.9100000000000001, + 1.77, + 1.6400000000000001, + 1.54, + 1.49, + 1.47, + 1.44, + 1.3900000000000001, + 1.33, + 1.25, + 1.1500000000000001, + 0.99, + 0.8300000000000001, + 0.54, + 0.32, + 0.0, + -0.21, + -0.48, + -0.64, + -0.87, + -1.03, + -1.2, + -1.31, + -1.3900000000000001, + -1.45, + -1.48, + -1.5, + -1.51, + -1.52, + -1.54, + -1.61, + -1.7, + -1.86, + -2.0100000000000002, + -2.19, + -2.31, + -2.36, + -2.36, + -2.36, + -2.35, + -2.29, + -2.23, + -2.16, + -2.11, + -2.05, + -2.0, + -1.93, + -1.87, + -1.82, + -1.78, + -1.77, + -1.77, + -1.77, + -1.75, + -1.71, + -1.6300000000000001, + -1.55, + -1.43, + -1.34, + -1.21, + -1.1300000000000001, + -1.04, + -1.0, + -1.0 + ], + [ + 1.07, + 1.12, + 1.16, + 1.19, + 1.1300000000000001, + 1.0, + 0.88, + 0.63, + 0.46, + 0.17, + 0.01, + -0.23, + -0.34, + -0.44, + -0.48, + -0.37, + -0.27, + 0.0, + 0.24, + 0.53, + 0.81, + 1.06, + 1.37, + 1.61, + 1.96, + 2.16, + 2.44, + 2.52, + 2.56, + 2.48, + 2.22, + 2.0100000000000002, + 1.57, + 1.32, + 0.96, + 0.79, + 0.66, + 0.63, + 0.74, + 0.87, + 1.17, + 1.46, + 1.73, + 1.96, + 1.9000000000000001, + 1.74, + 1.3800000000000001, + 0.84, + 0.51, + 0.08, + -0.08, + -0.3, + -0.39, + -0.49, + -0.47000000000000003, + -0.23, + -0.03, + 0.28, + 0.4, + 0.39, + 0.35000000000000003, + 0.22, + 0.13, + 0.06, + 0.01, + 0.08, + 0.19, + 0.33, + 0.48, + 0.46, + 0.4, + 0.28, + 0.06, + -0.1, + -0.37, + -0.51, + -0.73, + -0.8, + -0.8, + -0.75, + -0.5700000000000001, + -0.45, + -0.26, + -0.12, + 0.15, + 0.38, + 0.67, + 0.89, + 1.06, + 1.23, + 1.36, + 1.52, + 1.62, + 1.77, + 1.97, + 2.37, + 2.86, + 3.91, + 4.61, + 5.7700000000000005, + 6.32, + 7.09, + 7.44, + 7.79, + 7.930000000000001, + 7.99, + 8.01, + 8.03, + 8.06, + 8.06, + 8.040000000000001, + 7.84, + 7.59, + 7.24, + 6.8100000000000005, + 6.47, + 5.99, + 5.66, + 5.12, + 4.8100000000000005, + 4.34, + 4.15, + 3.92, + 3.84, + 3.74, + 3.7, + 3.65, + 3.61, + 3.5500000000000003, + 3.49, + 3.31, + 3.15, + 2.89, + 2.65, + 2.23, + 1.74, + 1.24, + 0.66, + 0.44, + 0.21, + 0.16, + 0.06, + -0.08, + -0.39, + -0.58, + -0.89, + -1.01, + -1.1400000000000001, + -1.18, + -1.21, + -1.23, + -1.25, + -1.27, + -1.35, + -1.41, + -1.5, + -1.57, + -1.58, + -1.59, + -1.57, + -1.53, + -1.49, + -1.42, + -1.37, + -1.29, + -1.24, + -1.1500000000000001, + -1.09, + -0.99, + -0.92, + -0.8, + -0.71, + -0.56, + -0.46, + -0.31, + -0.2, + -0.05, + 0.07, + 0.22, + 0.35000000000000003, + 0.48, + 0.62, + 0.74, + 0.9, + 1.0, + 1.1400000000000001, + 1.21, + 1.32, + 1.37, + 1.44, + 1.47, + 1.52, + 1.56, + 1.6500000000000001, + 1.71, + 1.81, + 1.86, + 1.92, + 1.95, + 2.0, + 2.04, + 2.1, + 2.16, + 2.23, + 2.31, + 2.36, + 2.43, + 2.46, + 2.5, + 2.52, + 2.5500000000000003, + 2.59, + 2.66, + 2.71, + 2.77, + 2.79, + 2.81, + 2.82, + 2.83, + 2.84, + 2.86, + 2.87, + 2.88, + 2.89, + 2.89, + 2.9, + 2.9, + 2.92, + 2.92, + 2.93, + 2.92, + 2.91, + 2.91, + 2.91, + 2.9, + 2.9, + 2.89, + 2.89, + 2.89, + 2.89, + 2.88, + 2.87, + 2.86, + 2.85, + 2.85, + 2.85, + 2.85, + 2.84, + 2.84, + 2.83, + 2.83, + 2.83, + 2.83, + 2.83, + 2.83, + 2.83, + 2.83, + 2.84, + 2.85, + 2.86, + 2.87, + 2.88, + 2.88, + 2.87, + 2.86, + 2.85, + 2.82, + 2.79, + 2.74, + 2.7, + 2.65, + 2.6, + 2.57, + 2.5300000000000002, + 2.5100000000000002, + 2.47, + 2.42, + 2.35, + 2.3000000000000003, + 2.22, + 2.18, + 2.09, + 2.02, + 1.86, + 1.76, + 1.6, + 1.53, + 1.48, + 1.46, + 1.42, + 1.3900000000000001, + 1.3, + 1.23, + 1.1, + 0.96, + 0.74, + 0.49, + 0.24, + -0.08, + -0.27, + -0.54, + -0.6900000000000001, + -0.93, + -1.05, + -1.23, + -1.31, + -1.4000000000000001, + -1.44, + -1.48, + -1.5, + -1.51, + -1.52, + -1.56, + -1.61, + -1.76, + -1.8800000000000001, + -2.07, + -2.23, + -2.31, + -2.37, + -2.36, + -2.35, + -2.33, + -2.2800000000000002, + -2.22, + -2.14, + -2.1, + -2.0300000000000002, + -1.98, + -1.9100000000000001, + -1.86, + -1.8, + -1.78, + -1.77, + -1.77, + -1.75, + -1.74, + -1.68, + -1.62, + -1.52, + -1.42, + -1.31, + -1.19, + -1.11, + -1.02, + -1.01, + -1.01 + ] + ] +} diff --git a/examples/v.json b/examples/v.json new file mode 100644 index 0000000..f01858e --- /dev/null +++ b/examples/v.json @@ -0,0 +1,81337 @@ +{ + "_metadata": { + "dtype": "float64", + "param": "10v/heightAboveGround/10", + "param_attrs": { + "name": "10 metre V wind component", + "stepType": "instant" + }, + "shape": [ + 233, + 347 + ], + "source": "wrfd03", + "time": "2019-07-31 00:00:00", + "unit": "m_per_s", + "unit_string": "m/s" + }, + "array": [ + [ + 1.8900000000000001, + 2.13, + 1.98, + 1.83, + 1.83, + 1.85, + 1.86, + 1.8900000000000001, + 1.8900000000000001, + 1.9000000000000001, + 1.9100000000000001, + 1.8900000000000001, + 1.86, + 1.83, + 1.79, + 1.77, + 1.74, + 1.71, + 1.6500000000000001, + 1.59, + 1.52, + 1.44, + 1.34, + 1.22, + 1.12, + 1.03, + 0.97, + 0.93, + 0.88, + 0.8300000000000001, + 0.77, + 0.75, + 0.75, + 0.78, + 0.81, + 0.87, + 0.93, + 0.99, + 1.04, + 1.07, + 1.07, + 1.05, + 1.0, + 0.96, + 0.93, + 0.9, + 0.88, + 0.85, + 0.8300000000000001, + 0.81, + 0.81, + 0.8, + 0.8200000000000001, + 0.84, + 0.91, + 1.0, + 1.12, + 1.25, + 1.35, + 1.43, + 1.49, + 1.53, + 1.53, + 1.52, + 1.51, + 1.5, + 1.48, + 1.48, + 1.48, + 1.46, + 1.44, + 1.47, + 1.52, + 1.7, + 1.92, + 2.19, + 2.42, + 2.59, + 2.75, + 2.87, + 2.96, + 2.98, + 2.98, + 2.9, + 2.74, + 2.56, + 2.36, + 2.24, + 2.22, + 2.18, + 2.16, + 2.14, + 2.05, + 1.92, + 1.8, + 1.6600000000000001, + 1.58, + 1.52, + 1.47, + 1.42, + 1.4000000000000001, + 1.4000000000000001, + 1.36, + 1.31, + 1.17, + 1.03, + 0.81, + 0.6, + 0.43, + 0.29, + 0.22, + 0.14, + 0.05, + -0.17, + -0.36, + -0.73, + -1.0, + -1.3, + -1.49, + -1.49, + -1.42, + -1.1, + -0.76, + -0.37, + 0.11, + 0.76, + 1.3900000000000001, + 1.9100000000000001, + 2.27, + 2.46, + 2.57, + 2.62, + 2.69, + 2.7800000000000002, + 2.81, + 2.91, + 3.1, + 3.3200000000000003, + 3.58, + 3.83, + 4.0200000000000005, + 4.19, + 4.2700000000000005, + 4.3100000000000005, + 4.2700000000000005, + 4.2700000000000005, + 4.22, + 4.13, + 3.93, + 3.56, + 3.27, + 2.96, + 2.68, + 2.37, + 2.04, + 1.95, + 1.94, + 1.98, + 1.85, + 1.6400000000000001, + 1.3800000000000001, + 1.1300000000000001, + 0.92, + 0.8300000000000001, + 0.8, + 0.8, + 0.8300000000000001, + 0.71, + 0.55, + 0.28, + 0.03, + -0.22, + -0.41000000000000003, + -0.6, + -0.73, + -0.8, + -0.85, + -0.86, + -0.84, + -0.81, + -0.77, + -0.71, + -0.67, + -0.63, + -0.6, + -0.5700000000000001, + -0.52, + -0.44, + -0.33, + -0.21, + -0.07, + 0.04, + 0.16, + 0.26, + 0.36, + 0.44, + 0.53, + 0.62, + 0.68, + 0.77, + 0.8, + 0.8, + 0.74, + 0.6, + 0.45, + 0.28, + 0.12, + -0.05, + -0.24, + -0.4, + -0.5700000000000001, + -0.71, + -0.85, + -0.89, + -0.92, + -0.88, + -0.84, + -0.8200000000000001, + -0.78, + -0.74, + -0.71, + -0.67, + -0.66, + -0.67, + -0.68, + -0.72, + -0.75, + -0.79, + -0.8200000000000001, + -0.85, + -0.89, + -0.9500000000000001, + -1.03, + -1.1400000000000001, + -1.2, + -1.26, + -1.3, + -1.35, + -1.35, + -1.32, + -1.22, + -1.17, + -1.1500000000000001, + -1.1300000000000001, + -1.08, + -0.98, + -0.8300000000000001, + -0.61, + -0.34, + -0.05, + 0.22, + 0.42, + 0.5700000000000001, + 0.7000000000000001, + 0.8300000000000001, + 0.96, + 1.07, + 1.18, + 1.27, + 1.35, + 1.45, + 1.51, + 1.55, + 1.6, + 1.6500000000000001, + 1.7, + 1.73, + 1.71, + 1.68, + 1.6400000000000001, + 1.61, + 1.59, + 1.6300000000000001, + 1.71, + 1.85, + 1.97, + 2.0100000000000002, + 2.0100000000000002, + 1.93, + 1.85, + 1.86, + 1.9000000000000001, + 2.0100000000000002, + 2.13, + 2.24, + 2.36, + 2.42, + 2.44, + 2.42, + 2.39, + 2.39, + 2.39, + 2.35, + 2.25, + 2.15, + 2.04, + 1.96, + 1.95, + 1.96, + 2.02, + 2.09, + 2.14, + 2.19, + 2.19, + 2.2, + 2.19, + 2.17, + 2.16, + 2.15, + 2.14, + 2.11, + 2.05, + 1.97, + 1.87, + 1.76, + 1.67, + 1.59, + 1.53, + 1.5, + 1.47, + 1.43, + 1.3800000000000001, + 1.36, + 1.32, + 1.28, + 1.24, + 1.22, + 1.19, + 1.17, + 1.1400000000000001, + 1.12, + 1.11, + 1.1, + 1.12, + 1.1500000000000001, + 1.18, + 1.21, + 1.24, + 1.26, + 1.29, + 1.3, + 1.33, + 1.36, + 1.3800000000000001, + 1.3800000000000001, + 1.37, + 1.36 + ], + [ + 1.78, + 2.0100000000000002, + 1.93, + 1.84, + 1.82, + 1.83, + 1.84, + 1.85, + 1.86, + 1.86, + 1.87, + 1.85, + 1.82, + 1.77, + 1.73, + 1.69, + 1.6600000000000001, + 1.62, + 1.55, + 1.48, + 1.4000000000000001, + 1.3, + 1.18, + 1.05, + 0.96, + 0.89, + 0.86, + 0.8300000000000001, + 0.81, + 0.77, + 0.75, + 0.73, + 0.76, + 0.8, + 0.87, + 0.9400000000000001, + 1.01, + 1.07, + 1.1, + 1.09, + 1.06, + 1.0, + 0.9500000000000001, + 0.91, + 0.87, + 0.84, + 0.81, + 0.78, + 0.76, + 0.75, + 0.75, + 0.77, + 0.79, + 0.85, + 0.93, + 1.05, + 1.19, + 1.32, + 1.41, + 1.49, + 1.56, + 1.57, + 1.54, + 1.52, + 1.52, + 1.5, + 1.51, + 1.51, + 1.52, + 1.52, + 1.53, + 1.55, + 1.6300000000000001, + 1.76, + 1.99, + 2.27, + 2.49, + 2.68, + 2.82, + 2.94, + 2.97, + 2.97, + 2.92, + 2.81, + 2.69, + 2.49, + 2.36, + 2.31, + 2.27, + 2.22, + 2.15, + 2.11, + 2.08, + 2.0, + 1.9100000000000001, + 1.8, + 1.7, + 1.6300000000000001, + 1.58, + 1.52, + 1.5, + 1.47, + 1.44, + 1.33, + 1.17, + 0.93, + 0.66, + 0.43, + 0.26, + 0.15, + 0.08, + -0.01, + -0.24, + -0.45, + -0.8200000000000001, + -1.11, + -1.42, + -1.6500000000000001, + -1.67, + -1.6600000000000001, + -1.37, + -1.06, + -0.73, + -0.37, + 0.16, + 0.84, + 1.55, + 2.08, + 2.4, + 2.52, + 2.54, + 2.56, + 2.58, + 2.65, + 2.74, + 2.85, + 3.0700000000000003, + 3.29, + 3.5700000000000003, + 3.79, + 3.98, + 4.1, + 4.23, + 4.23, + 4.19, + 4.16, + 4.14, + 4.1, + 3.95, + 3.75, + 3.48, + 3.2600000000000002, + 3.0, + 2.68, + 2.36, + 2.16, + 2.24, + 2.25, + 2.07, + 1.78, + 1.47, + 1.16, + 0.9500000000000001, + 0.81, + 0.76, + 0.79, + 0.73, + 0.66, + 0.44, + 0.17, + -0.11, + -0.38, + -0.63, + -0.84, + -0.98, + -1.02, + -1.03, + -1.01, + -0.97, + -0.93, + -0.88, + -0.8200000000000001, + -0.76, + -0.73, + -0.71, + -0.6900000000000001, + -0.6900000000000001, + -0.6, + -0.51, + -0.36, + -0.21, + -0.06, + 0.07, + 0.2, + 0.31, + 0.43, + 0.52, + 0.5700000000000001, + 0.6, + 0.56, + 0.53, + 0.43, + 0.31, + 0.15, + 0.0, + -0.15, + -0.27, + -0.39, + -0.53, + -0.67, + -0.81, + -0.9500000000000001, + -1.04, + -1.1, + -1.09, + -1.06, + -1.04, + -1.02, + -1.01, + -0.96, + -0.89, + -0.8300000000000001, + -0.77, + -0.77, + -0.77, + -0.81, + -0.84, + -0.88, + -0.91, + -0.9400000000000001, + -0.96, + -1.0, + -1.07, + -1.1400000000000001, + -1.23, + -1.27, + -1.33, + -1.36, + -1.3800000000000001, + -1.27, + -1.1500000000000001, + -1.09, + -1.07, + -1.05, + -0.99, + -0.86, + -0.67, + -0.41000000000000003, + -0.1, + 0.19, + 0.44, + 0.63, + 0.74, + 0.84, + 0.97, + 1.07, + 1.2, + 1.28, + 1.35, + 1.41, + 1.48, + 1.56, + 1.61, + 1.6600000000000001, + 1.73, + 1.78, + 1.8, + 1.79, + 1.75, + 1.7, + 1.6500000000000001, + 1.6400000000000001, + 1.67, + 1.78, + 1.9100000000000001, + 1.98, + 2.0300000000000002, + 1.98, + 1.9100000000000001, + 1.86, + 1.86, + 1.94, + 2.05, + 2.16, + 2.29, + 2.37, + 2.42, + 2.42, + 2.38, + 2.38, + 2.39, + 2.37, + 2.31, + 2.22, + 2.09, + 2.0, + 1.96, + 1.96, + 2.0, + 2.06, + 2.11, + 2.16, + 2.18, + 2.19, + 2.18, + 2.17, + 2.16, + 2.14, + 2.14, + 2.13, + 2.09, + 2.0300000000000002, + 1.94, + 1.84, + 1.74, + 1.6600000000000001, + 1.61, + 1.58, + 1.57, + 1.55, + 1.52, + 1.49, + 1.45, + 1.42, + 1.37, + 1.35, + 1.32, + 1.31, + 1.28, + 1.26, + 1.23, + 1.21, + 1.19, + 1.18, + 1.22, + 1.25, + 1.29, + 1.31, + 1.33, + 1.33, + 1.35, + 1.36, + 1.3800000000000001, + 1.4000000000000001, + 1.3900000000000001, + 1.3800000000000001, + 1.3800000000000001 + ], + [ + 1.8800000000000001, + 2.14, + 1.95, + 1.81, + 1.79, + 1.79, + 1.79, + 1.8, + 1.8, + 1.8, + 1.8, + 1.78, + 1.75, + 1.7, + 1.6500000000000001, + 1.61, + 1.57, + 1.52, + 1.46, + 1.3800000000000001, + 1.29, + 1.17, + 1.04, + 0.92, + 0.81, + 0.77, + 0.75, + 0.74, + 0.73, + 0.73, + 0.73, + 0.76, + 0.79, + 0.85, + 0.93, + 1.01, + 1.08, + 1.11, + 1.1, + 1.07, + 1.0, + 0.9500000000000001, + 0.89, + 0.84, + 0.8, + 0.77, + 0.72, + 0.6900000000000001, + 0.67, + 0.67, + 0.6900000000000001, + 0.72, + 0.78, + 0.84, + 0.96, + 1.1, + 1.24, + 1.36, + 1.45, + 1.53, + 1.59, + 1.59, + 1.56, + 1.55, + 1.54, + 1.54, + 1.55, + 1.57, + 1.59, + 1.6, + 1.61, + 1.6500000000000001, + 1.72, + 1.84, + 2.04, + 2.2600000000000002, + 2.5100000000000002, + 2.67, + 2.82, + 2.9, + 2.91, + 2.85, + 2.77, + 2.69, + 2.56, + 2.47, + 2.42, + 2.39, + 2.34, + 2.27, + 2.17, + 2.1, + 2.09, + 2.07, + 1.98, + 1.9100000000000001, + 1.81, + 1.73, + 1.6400000000000001, + 1.58, + 1.52, + 1.5, + 1.43, + 1.31, + 1.08, + 0.78, + 0.46, + 0.2, + 0.0, + -0.12, + -0.21, + -0.46, + -0.68, + -1.05, + -1.36, + -1.6400000000000001, + -1.9000000000000001, + -1.9000000000000001, + -1.9100000000000001, + -1.6300000000000001, + -1.34, + -1.01, + -0.6900000000000001, + -0.33, + 0.18, + 0.9400000000000001, + 1.71, + 2.23, + 2.5, + 2.6, + 2.56, + 2.5, + 2.52, + 2.5100000000000002, + 2.59, + 2.7, + 2.91, + 3.19, + 3.44, + 3.72, + 3.85, + 3.99, + 4.07, + 4.12, + 4.14, + 4.09, + 4.08, + 4.08, + 4.03, + 3.89, + 3.72, + 3.54, + 3.3200000000000003, + 2.98, + 2.72, + 2.57, + 2.5300000000000002, + 2.47, + 2.32, + 1.92, + 1.58, + 1.27, + 0.97, + 0.8, + 0.7000000000000001, + 0.62, + 0.58, + 0.42, + 0.24, + 0.01, + -0.26, + -0.52, + -0.79, + -1.01, + -1.1300000000000001, + -1.2, + -1.16, + -1.1400000000000001, + -1.09, + -1.05, + -1.0, + -0.9400000000000001, + -0.89, + -0.8300000000000001, + -0.8, + -0.79, + -0.75, + -0.71, + -0.58, + -0.45, + -0.28, + -0.13, + 0.03, + 0.17, + 0.33, + 0.46, + 0.54, + 0.5700000000000001, + 0.52, + 0.41000000000000003, + 0.25, + 0.1, + -0.09, + -0.25, + -0.41000000000000003, + -0.52, + -0.63, + -0.74, + -0.8300000000000001, + -0.97, + -1.09, + -1.2, + -1.28, + -1.29, + -1.27, + -1.26, + -1.24, + -1.24, + -1.23, + -1.17, + -1.08, + -0.98, + -0.91, + -0.86, + -0.87, + -0.89, + -0.9400000000000001, + -0.98, + -1.01, + -1.02, + -1.04, + -1.05, + -1.08, + -1.1300000000000001, + -1.19, + -1.25, + -1.29, + -1.33, + -1.26, + -1.1300000000000001, + -1.04, + -0.99, + -0.99, + -0.98, + -0.89, + -0.73, + -0.49, + -0.18, + 0.14, + 0.43, + 0.67, + 0.81, + 0.91, + 1.02, + 1.1500000000000001, + 1.26, + 1.37, + 1.44, + 1.48, + 1.51, + 1.55, + 1.61, + 1.67, + 1.73, + 1.8, + 1.86, + 1.8800000000000001, + 1.87, + 1.82, + 1.76, + 1.7, + 1.67, + 1.73, + 1.82, + 1.9100000000000001, + 1.99, + 1.99, + 1.96, + 1.9000000000000001, + 1.85, + 1.8800000000000001, + 1.96, + 2.07, + 2.19, + 2.29, + 2.37, + 2.38, + 2.36, + 2.34, + 2.35, + 2.36, + 2.33, + 2.2600000000000002, + 2.14, + 2.0300000000000002, + 1.97, + 1.95, + 1.99, + 2.0300000000000002, + 2.08, + 2.13, + 2.14, + 2.16, + 2.17, + 2.16, + 2.15, + 2.14, + 2.13, + 2.13, + 2.11, + 2.08, + 2.0100000000000002, + 1.92, + 1.81, + 1.71, + 1.6500000000000001, + 1.6300000000000001, + 1.6300000000000001, + 1.6300000000000001, + 1.6400000000000001, + 1.62, + 1.6, + 1.59, + 1.55, + 1.53, + 1.49, + 1.48, + 1.45, + 1.43, + 1.41, + 1.4000000000000001, + 1.37, + 1.33, + 1.31, + 1.33, + 1.3800000000000001, + 1.4000000000000001, + 1.41, + 1.41, + 1.4000000000000001, + 1.3900000000000001, + 1.3900000000000001, + 1.3900000000000001, + 1.3900000000000001, + 1.3900000000000001, + 1.3800000000000001, + 1.3900000000000001 + ], + [ + 1.74, + 1.98, + 1.9000000000000001, + 1.79, + 1.76, + 1.74, + 1.73, + 1.73, + 1.73, + 1.72, + 1.71, + 1.7, + 1.6600000000000001, + 1.61, + 1.56, + 1.51, + 1.47, + 1.42, + 1.36, + 1.28, + 1.18, + 1.06, + 0.93, + 0.79, + 0.72, + 0.66, + 0.66, + 0.65, + 0.66, + 0.6900000000000001, + 0.73, + 0.77, + 0.8300000000000001, + 0.89, + 0.97, + 1.05, + 1.09, + 1.09, + 1.06, + 0.99, + 0.92, + 0.86, + 0.81, + 0.76, + 0.72, + 0.67, + 0.63, + 0.58, + 0.56, + 0.5700000000000001, + 0.61, + 0.68, + 0.75, + 0.86, + 0.99, + 1.1400000000000001, + 1.28, + 1.3800000000000001, + 1.45, + 1.52, + 1.59, + 1.6, + 1.57, + 1.56, + 1.57, + 1.59, + 1.61, + 1.6400000000000001, + 1.6600000000000001, + 1.68, + 1.69, + 1.72, + 1.78, + 1.8800000000000001, + 2.02, + 2.21, + 2.39, + 2.58, + 2.72, + 2.81, + 2.81, + 2.71, + 2.61, + 2.5500000000000003, + 2.48, + 2.46, + 2.43, + 2.39, + 2.39, + 2.27, + 2.15, + 2.12, + 2.11, + 2.07, + 2.02, + 1.95, + 1.8800000000000001, + 1.78, + 1.67, + 1.57, + 1.5, + 1.43, + 1.37, + 1.19, + 0.92, + 0.56, + 0.18, + -0.14, + -0.38, + -0.56, + -0.78, + -0.99, + -1.32, + -1.6500000000000001, + -1.8800000000000001, + -2.16, + -2.14, + -2.15, + -1.87, + -1.6, + -1.25, + -0.92, + -0.65, + -0.34, + 0.3, + 1.12, + 1.86, + 2.37, + 2.62, + 2.67, + 2.64, + 2.57, + 2.49, + 2.47, + 2.42, + 2.5500000000000003, + 2.7, + 2.97, + 3.25, + 3.48, + 3.67, + 3.79, + 3.9, + 4.0, + 4.07, + 4.07, + 4.0600000000000005, + 4.0600000000000005, + 4.08, + 4.0, + 3.86, + 3.65, + 3.39, + 3.2, + 2.98, + 2.84, + 2.73, + 2.67, + 2.33, + 2.0100000000000002, + 1.6600000000000001, + 1.35, + 1.03, + 0.78, + 0.59, + 0.44, + 0.31, + 0.16, + 0.0, + -0.17, + -0.37, + -0.61, + -0.8300000000000001, + -1.05, + -1.2, + -1.24, + -1.26, + -1.23, + -1.2, + -1.17, + -1.1300000000000001, + -1.08, + -1.02, + -0.9500000000000001, + -0.88, + -0.84, + -0.8, + -0.72, + -0.62, + -0.47000000000000003, + -0.32, + -0.15, + 0.02, + 0.2, + 0.38, + 0.49, + 0.56, + 0.54, + 0.43, + 0.25, + 0.01, + -0.22, + -0.43, + -0.63, + -0.76, + -0.88, + -1.0, + -1.09, + -1.22, + -1.32, + -1.43, + -1.51, + -1.53, + -1.53, + -1.51, + -1.49, + -1.48, + -1.47, + -1.45, + -1.3800000000000001, + -1.28, + -1.16, + -1.05, + -1.0, + -0.97, + -1.0, + -1.04, + -1.08, + -1.12, + -1.1300000000000001, + -1.12, + -1.1, + -1.09, + -1.11, + -1.1500000000000001, + -1.17, + -1.22, + -1.18, + -1.09, + -0.99, + -0.91, + -0.91, + -0.9500000000000001, + -0.91, + -0.8, + -0.6, + -0.29, + 0.06, + 0.4, + 0.6900000000000001, + 0.87, + 1.0, + 1.07, + 1.17, + 1.29, + 1.43, + 1.5, + 1.58, + 1.61, + 1.61, + 1.6400000000000001, + 1.68, + 1.74, + 1.8, + 1.8800000000000001, + 1.95, + 1.97, + 1.95, + 1.9000000000000001, + 1.82, + 1.74, + 1.73, + 1.75, + 1.84, + 1.92, + 1.96, + 1.96, + 1.93, + 1.8900000000000001, + 1.87, + 1.8900000000000001, + 1.98, + 2.09, + 2.2, + 2.3000000000000003, + 2.33, + 2.33, + 2.3000000000000003, + 2.29, + 2.31, + 2.32, + 2.2800000000000002, + 2.17, + 2.06, + 1.99, + 1.95, + 1.98, + 2.0100000000000002, + 2.06, + 2.1, + 2.11, + 2.13, + 2.14, + 2.15, + 2.14, + 2.13, + 2.12, + 2.11, + 2.11, + 2.1, + 2.07, + 1.99, + 1.8800000000000001, + 1.75, + 1.6600000000000001, + 1.6300000000000001, + 1.6400000000000001, + 1.67, + 1.69, + 1.71, + 1.73, + 1.74, + 1.74, + 1.73, + 1.71, + 1.67, + 1.6500000000000001, + 1.62, + 1.6, + 1.58, + 1.58, + 1.55, + 1.5, + 1.46, + 1.48, + 1.49, + 1.49, + 1.48, + 1.46, + 1.44, + 1.4000000000000001, + 1.3800000000000001, + 1.36, + 1.36, + 1.35, + 1.36, + 1.36 + ], + [ + 1.85, + 2.12, + 1.92, + 1.75, + 1.72, + 1.68, + 1.67, + 1.6600000000000001, + 1.6600000000000001, + 1.6400000000000001, + 1.62, + 1.6, + 1.56, + 1.52, + 1.46, + 1.41, + 1.36, + 1.32, + 1.26, + 1.18, + 1.08, + 0.96, + 0.8200000000000001, + 0.73, + 0.63, + 0.61, + 0.58, + 0.59, + 0.61, + 0.66, + 0.73, + 0.79, + 0.85, + 0.91, + 0.98, + 1.02, + 1.03, + 1.01, + 0.9500000000000001, + 0.88, + 0.81, + 0.76, + 0.71, + 0.67, + 0.59, + 0.54, + 0.48, + 0.45, + 0.44, + 0.46, + 0.53, + 0.62, + 0.74, + 0.87, + 1.04, + 1.2, + 1.33, + 1.3900000000000001, + 1.45, + 1.52, + 1.57, + 1.58, + 1.57, + 1.57, + 1.6, + 1.6400000000000001, + 1.67, + 1.71, + 1.74, + 1.74, + 1.75, + 1.77, + 1.82, + 1.8800000000000001, + 1.96, + 2.09, + 2.24, + 2.42, + 2.59, + 2.7, + 2.72, + 2.67, + 2.58, + 2.5100000000000002, + 2.49, + 2.44, + 2.39, + 2.32, + 2.3000000000000003, + 2.2600000000000002, + 2.16, + 2.1, + 2.09, + 2.07, + 2.0300000000000002, + 1.99, + 1.92, + 1.83, + 1.69, + 1.55, + 1.44, + 1.35, + 1.21, + 1.01, + 0.6900000000000001, + 0.26, + -0.17, + -0.56, + -0.89, + -1.1500000000000001, + -1.3900000000000001, + -1.6300000000000001, + -1.92, + -2.09, + -2.33, + -2.31, + -2.34, + -2.07, + -1.8, + -1.44, + -1.1, + -0.85, + -0.64, + -0.21, + 0.46, + 1.29, + 2.06, + 2.52, + 2.7, + 2.7600000000000002, + 2.73, + 2.67, + 2.59, + 2.49, + 2.44, + 2.4, + 2.57, + 2.73, + 3.0100000000000002, + 3.2600000000000002, + 3.45, + 3.59, + 3.74, + 3.88, + 3.97, + 4.0200000000000005, + 3.98, + 3.99, + 4.0, + 3.97, + 3.79, + 3.5, + 3.29, + 3.17, + 3.08, + 2.89, + 2.7800000000000002, + 2.5500000000000003, + 2.34, + 2.02, + 1.72, + 1.3800000000000001, + 1.04, + 0.76, + 0.5, + 0.29, + 0.08, + -0.06, + -0.2, + -0.34, + -0.49, + -0.65, + -0.8300000000000001, + -1.02, + -1.17, + -1.27, + -1.31, + -1.32, + -1.32, + -1.31, + -1.29, + -1.25, + -1.16, + -1.06, + -0.98, + -0.9, + -0.84, + -0.75, + -0.64, + -0.5, + -0.34, + -0.16, + 0.02, + 0.21, + 0.36, + 0.47000000000000003, + 0.49, + 0.41000000000000003, + 0.27, + 0.0, + -0.26, + -0.54, + -0.78, + -0.96, + -1.12, + -1.25, + -1.3800000000000001, + -1.52, + -1.6400000000000001, + -1.73, + -1.81, + -1.82, + -1.81, + -1.79, + -1.76, + -1.75, + -1.73, + -1.71, + -1.67, + -1.6, + -1.49, + -1.37, + -1.26, + -1.16, + -1.1300000000000001, + -1.12, + -1.1500000000000001, + -1.18, + -1.22, + -1.25, + -1.22, + -1.17, + -1.12, + -1.09, + -1.08, + -1.08, + -1.06, + -1.0, + -0.93, + -0.85, + -0.84, + -0.9, + -0.92, + -0.87, + -0.73, + -0.46, + -0.12, + 0.29, + 0.67, + 0.91, + 1.1, + 1.1500000000000001, + 1.2, + 1.29, + 1.42, + 1.51, + 1.59, + 1.6500000000000001, + 1.71, + 1.72, + 1.73, + 1.77, + 1.82, + 1.8900000000000001, + 1.97, + 2.0300000000000002, + 2.05, + 2.0300000000000002, + 1.97, + 1.8900000000000001, + 1.81, + 1.76, + 1.81, + 1.87, + 1.93, + 1.95, + 1.95, + 1.93, + 1.9000000000000001, + 1.87, + 1.9100000000000001, + 1.99, + 2.11, + 2.22, + 2.2800000000000002, + 2.3000000000000003, + 2.2800000000000002, + 2.25, + 2.25, + 2.2800000000000002, + 2.27, + 2.21, + 2.11, + 2.0100000000000002, + 1.95, + 1.97, + 2.0100000000000002, + 2.05, + 2.09, + 2.1, + 2.11, + 2.11, + 2.12, + 2.12, + 2.12, + 2.1, + 2.08, + 2.08, + 2.08, + 2.08, + 2.05, + 1.96, + 1.83, + 1.7, + 1.6300000000000001, + 1.62, + 1.68, + 1.74, + 1.77, + 1.8, + 1.86, + 1.9000000000000001, + 1.9100000000000001, + 1.9000000000000001, + 1.86, + 1.84, + 1.79, + 1.76, + 1.73, + 1.73, + 1.73, + 1.71, + 1.6600000000000001, + 1.6, + 1.58, + 1.57, + 1.55, + 1.51, + 1.47, + 1.42, + 1.3800000000000001, + 1.34, + 1.31, + 1.31, + 1.31, + 1.33, + 1.34 + ], + [ + 1.71, + 1.94, + 1.8800000000000001, + 1.78, + 1.7, + 1.68, + 1.6400000000000001, + 1.6400000000000001, + 1.62, + 1.6, + 1.57, + 1.53, + 1.48, + 1.41, + 1.36, + 1.31, + 1.27, + 1.22, + 1.16, + 1.08, + 0.98, + 0.87, + 0.76, + 0.66, + 0.61, + 0.56, + 0.56, + 0.55, + 0.6, + 0.65, + 0.73, + 0.8, + 0.86, + 0.91, + 0.93, + 0.9400000000000001, + 0.93, + 0.88, + 0.81, + 0.74, + 0.68, + 0.63, + 0.58, + 0.5, + 0.44, + 0.37, + 0.32, + 0.3, + 0.29, + 0.36, + 0.44, + 0.58, + 0.73, + 0.89, + 1.08, + 1.25, + 1.37, + 1.44, + 1.48, + 1.52, + 1.54, + 1.55, + 1.54, + 1.56, + 1.6300000000000001, + 1.7, + 1.73, + 1.78, + 1.77, + 1.78, + 1.77, + 1.79, + 1.81, + 1.84, + 1.8900000000000001, + 1.96, + 2.12, + 2.2800000000000002, + 2.46, + 2.62, + 2.67, + 2.66, + 2.62, + 2.58, + 2.5300000000000002, + 2.45, + 2.36, + 2.2600000000000002, + 2.2, + 2.18, + 2.14, + 2.1, + 2.09, + 2.06, + 2.02, + 2.0100000000000002, + 1.98, + 1.85, + 1.69, + 1.51, + 1.36, + 1.2, + 1.02, + 0.76, + 0.39, + -0.06, + -0.56, + -1.01, + -1.3900000000000001, + -1.72, + -1.92, + -2.17, + -2.27, + -2.43, + -2.4, + -2.41, + -2.2, + -1.96, + -1.59, + -1.23, + -0.96, + -0.75, + -0.48, + -0.08, + 0.66, + 1.54, + 2.21, + 2.6, + 2.79, + 2.84, + 2.84, + 2.81, + 2.74, + 2.62, + 2.49, + 2.44, + 2.43, + 2.61, + 2.8000000000000003, + 3.0500000000000003, + 3.25, + 3.45, + 3.58, + 3.73, + 3.87, + 3.85, + 3.79, + 3.77, + 3.8200000000000003, + 3.75, + 3.5, + 3.25, + 3.08, + 2.99, + 2.93, + 2.79, + 2.56, + 2.39, + 2.22, + 2.02, + 1.71, + 1.4000000000000001, + 1.06, + 0.73, + 0.45, + 0.18, + -0.03, + -0.21, + -0.36, + -0.48, + -0.6, + -0.7000000000000001, + -0.84, + -1.01, + -1.17, + -1.31, + -1.3900000000000001, + -1.45, + -1.48, + -1.5, + -1.49, + -1.42, + -1.33, + -1.21, + -1.09, + -1.01, + -0.92, + -0.8300000000000001, + -0.71, + -0.56, + -0.39, + -0.21, + -0.02, + 0.13, + 0.26, + 0.3, + 0.26, + 0.16, + -0.06, + -0.3, + -0.6, + -0.87, + -1.1, + -1.29, + -1.45, + -1.62, + -1.76, + -1.94, + -2.04, + -2.14, + -2.15, + -2.14, + -2.09, + -2.04, + -2.02, + -2.0, + -1.98, + -1.94, + -1.8900000000000001, + -1.82, + -1.73, + -1.61, + -1.49, + -1.3800000000000001, + -1.3, + -1.29, + -1.28, + -1.32, + -1.34, + -1.36, + -1.35, + -1.24, + -1.1500000000000001, + -1.08, + -1.01, + -0.98, + -0.93, + -0.87, + -0.8, + -0.77, + -0.81, + -0.86, + -0.88, + -0.8200000000000001, + -0.63, + -0.36, + 0.06, + 0.5, + 0.87, + 1.16, + 1.25, + 1.31, + 1.32, + 1.37, + 1.48, + 1.6, + 1.6500000000000001, + 1.71, + 1.77, + 1.81, + 1.82, + 1.84, + 1.9000000000000001, + 1.98, + 2.05, + 2.1, + 2.13, + 2.11, + 2.06, + 1.98, + 1.8900000000000001, + 1.85, + 1.86, + 1.92, + 1.97, + 1.98, + 1.97, + 1.94, + 1.9000000000000001, + 1.9000000000000001, + 1.92, + 2.0100000000000002, + 2.12, + 2.22, + 2.2800000000000002, + 2.2800000000000002, + 2.24, + 2.22, + 2.23, + 2.24, + 2.23, + 2.17, + 2.07, + 1.98, + 1.99, + 2.0100000000000002, + 2.06, + 2.1, + 2.1, + 2.11, + 2.1, + 2.09, + 2.1, + 2.1, + 2.09, + 2.07, + 2.05, + 2.04, + 2.05, + 2.06, + 2.0300000000000002, + 1.94, + 1.8, + 1.68, + 1.61, + 1.6500000000000001, + 1.72, + 1.78, + 1.84, + 1.9100000000000001, + 1.99, + 2.04, + 2.08, + 2.02, + 1.98, + 1.9000000000000001, + 1.87, + 1.82, + 1.82, + 1.82, + 1.82, + 1.8, + 1.75, + 1.7, + 1.6500000000000001, + 1.61, + 1.56, + 1.5, + 1.43, + 1.3800000000000001, + 1.32, + 1.29, + 1.27, + 1.26, + 1.29, + 1.31, + 1.34 + ], + [ + 1.82, + 2.04, + 1.92, + 1.81, + 1.75, + 1.71, + 1.68, + 1.6600000000000001, + 1.6400000000000001, + 1.6, + 1.56, + 1.49, + 1.43, + 1.34, + 1.26, + 1.22, + 1.17, + 1.12, + 1.06, + 0.98, + 0.88, + 0.78, + 0.68, + 0.63, + 0.58, + 0.56, + 0.54, + 0.56, + 0.6, + 0.67, + 0.74, + 0.81, + 0.85, + 0.87, + 0.86, + 0.8300000000000001, + 0.78, + 0.72, + 0.65, + 0.58, + 0.52, + 0.47000000000000003, + 0.4, + 0.33, + 0.26, + 0.19, + 0.17, + 0.15, + 0.2, + 0.26, + 0.39, + 0.55, + 0.72, + 0.92, + 1.1, + 1.28, + 1.4000000000000001, + 1.48, + 1.51, + 1.51, + 1.51, + 1.5, + 1.51, + 1.56, + 1.6300000000000001, + 1.71, + 1.78, + 1.77, + 1.79, + 1.76, + 1.77, + 1.77, + 1.77, + 1.79, + 1.81, + 1.9100000000000001, + 2.05, + 2.23, + 2.39, + 2.54, + 2.63, + 2.63, + 2.64, + 2.63, + 2.5500000000000003, + 2.47, + 2.32, + 2.19, + 2.15, + 2.12, + 2.09, + 2.07, + 2.07, + 2.06, + 2.06, + 2.05, + 1.97, + 1.85, + 1.6400000000000001, + 1.43, + 1.23, + 1.03, + 0.79, + 0.48, + 0.09, + -0.41000000000000003, + -0.91, + -1.3900000000000001, + -1.81, + -2.08, + -2.35, + -2.41, + -2.54, + -2.48, + -2.45, + -2.2800000000000002, + -2.07, + -1.74, + -1.35, + -1.04, + -0.78, + -0.5700000000000001, + -0.34, + 0.21, + 0.99, + 1.76, + 2.34, + 2.71, + 2.87, + 2.93, + 2.96, + 2.97, + 2.91, + 2.8000000000000003, + 2.63, + 2.46, + 2.45, + 2.48, + 2.68, + 2.88, + 3.13, + 3.38, + 3.49, + 3.59, + 3.65, + 3.63, + 3.54, + 3.5, + 3.49, + 3.39, + 3.2, + 2.98, + 2.84, + 2.81, + 2.74, + 2.54, + 2.31, + 2.24, + 2.13, + 1.94, + 1.71, + 1.3900000000000001, + 1.06, + 0.71, + 0.39, + 0.12, + -0.12, + -0.32, + -0.51, + -0.62, + -0.7000000000000001, + -0.79, + -0.89, + -1.05, + -1.25, + -1.41, + -1.53, + -1.61, + -1.68, + -1.73, + -1.69, + -1.62, + -1.49, + -1.36, + -1.24, + -1.1400000000000001, + -1.05, + -0.9500000000000001, + -0.8300000000000001, + -0.67, + -0.49, + -0.29, + -0.14, + -0.01, + 0.04, + 0.01, + -0.07, + -0.23, + -0.44, + -0.7000000000000001, + -0.96, + -1.2, + -1.41, + -1.58, + -1.75, + -1.92, + -2.11, + -2.24, + -2.41, + -2.43, + -2.46, + -2.41, + -2.35, + -2.3000000000000003, + -2.27, + -2.24, + -2.21, + -2.17, + -2.12, + -2.05, + -1.96, + -1.85, + -1.72, + -1.61, + -1.52, + -1.47, + -1.46, + -1.47, + -1.48, + -1.51, + -1.41, + -1.3, + -1.16, + -1.05, + -0.98, + -0.9, + -0.85, + -0.78, + -0.74, + -0.73, + -0.76, + -0.81, + -0.81, + -0.72, + -0.54, + -0.21, + 0.2, + 0.6900000000000001, + 1.12, + 1.31, + 1.42, + 1.4000000000000001, + 1.3900000000000001, + 1.44, + 1.54, + 1.62, + 1.7, + 1.76, + 1.84, + 1.86, + 1.8900000000000001, + 1.93, + 1.99, + 2.06, + 2.12, + 2.17, + 2.21, + 2.21, + 2.16, + 2.08, + 2.0, + 1.93, + 1.95, + 1.99, + 2.02, + 2.0300000000000002, + 2.0, + 1.96, + 1.93, + 1.92, + 1.96, + 2.0300000000000002, + 2.14, + 2.23, + 2.27, + 2.2600000000000002, + 2.23, + 2.22, + 2.22, + 2.23, + 2.2, + 2.13, + 2.05, + 2.02, + 2.02, + 2.07, + 2.12, + 2.12, + 2.12, + 2.09, + 2.07, + 2.07, + 2.08, + 2.07, + 2.05, + 2.02, + 1.99, + 2.0, + 2.0300000000000002, + 2.04, + 2.02, + 1.93, + 1.78, + 1.6600000000000001, + 1.6300000000000001, + 1.6600000000000001, + 1.72, + 1.8, + 1.8900000000000001, + 1.99, + 2.08, + 2.19, + 2.14, + 2.11, + 1.97, + 1.87, + 1.81, + 1.8, + 1.81, + 1.84, + 1.84, + 1.81, + 1.76, + 1.72, + 1.67, + 1.61, + 1.54, + 1.45, + 1.37, + 1.3, + 1.25, + 1.22, + 1.21, + 1.24, + 1.27, + 1.31, + 1.35 + ], + [ + 1.7, + 1.93, + 1.93, + 1.85, + 1.8, + 1.75, + 1.71, + 1.68, + 1.6500000000000001, + 1.6, + 1.55, + 1.49, + 1.4000000000000001, + 1.3, + 1.21, + 1.1500000000000001, + 1.1, + 1.04, + 0.97, + 0.89, + 0.79, + 0.6900000000000001, + 0.62, + 0.58, + 0.5700000000000001, + 0.5700000000000001, + 0.5700000000000001, + 0.58, + 0.63, + 0.7000000000000001, + 0.76, + 0.8200000000000001, + 0.85, + 0.8300000000000001, + 0.79, + 0.71, + 0.64, + 0.5700000000000001, + 0.49, + 0.42, + 0.35000000000000003, + 0.29, + 0.21, + 0.15, + 0.09, + 0.07, + 0.04, + 0.07, + 0.12, + 0.23, + 0.37, + 0.55, + 0.74, + 0.92, + 1.11, + 1.28, + 1.42, + 1.49, + 1.5, + 1.48, + 1.44, + 1.43, + 1.46, + 1.51, + 1.59, + 1.68, + 1.71, + 1.73, + 1.72, + 1.72, + 1.73, + 1.74, + 1.74, + 1.73, + 1.78, + 1.8800000000000001, + 2.04, + 2.23, + 2.39, + 2.52, + 2.57, + 2.5500000000000003, + 2.54, + 2.54, + 2.5100000000000002, + 2.4, + 2.27, + 2.16, + 2.09, + 2.08, + 2.04, + 2.05, + 2.05, + 2.08, + 2.1, + 2.06, + 1.98, + 1.79, + 1.56, + 1.32, + 1.07, + 0.8200000000000001, + 0.53, + 0.18, + -0.24, + -0.71, + -1.21, + -1.67, + -2.0, + -2.3000000000000003, + -2.41, + -2.56, + -2.52, + -2.5100000000000002, + -2.36, + -2.17, + -1.9000000000000001, + -1.55, + -1.19, + -0.8300000000000001, + -0.61, + -0.42, + -0.04, + 0.58, + 1.31, + 2.0100000000000002, + 2.5500000000000003, + 2.87, + 3.0300000000000002, + 3.06, + 3.09, + 3.13, + 3.12, + 3.0, + 2.83, + 2.61, + 2.44, + 2.48, + 2.5500000000000003, + 2.7600000000000002, + 3.0, + 3.2, + 3.37, + 3.4, + 3.43, + 3.35, + 3.23, + 3.18, + 3.13, + 3.0300000000000002, + 2.9, + 2.75, + 2.68, + 2.64, + 2.52, + 2.34, + 2.23, + 2.1, + 2.0300000000000002, + 1.8900000000000001, + 1.6500000000000001, + 1.3800000000000001, + 1.02, + 0.68, + 0.34, + 0.04, + -0.21, + -0.42, + -0.6, + -0.74, + -0.8300000000000001, + -0.89, + -1.0, + -1.16, + -1.35, + -1.55, + -1.69, + -1.8, + -1.8900000000000001, + -1.9100000000000001, + -1.9100000000000001, + -1.79, + -1.6600000000000001, + -1.52, + -1.3800000000000001, + -1.28, + -1.19, + -1.09, + -0.98, + -0.8200000000000001, + -0.62, + -0.45, + -0.3, + -0.24, + -0.26, + -0.34, + -0.49, + -0.66, + -0.89, + -1.1300000000000001, + -1.34, + -1.56, + -1.72, + -1.8800000000000001, + -2.04, + -2.2, + -2.35, + -2.5100000000000002, + -2.61, + -2.68, + -2.67, + -2.64, + -2.59, + -2.54, + -2.5, + -2.46, + -2.43, + -2.39, + -2.34, + -2.2800000000000002, + -2.19, + -2.07, + -1.93, + -1.8, + -1.71, + -1.6400000000000001, + -1.6300000000000001, + -1.59, + -1.6, + -1.55, + -1.48, + -1.31, + -1.1400000000000001, + -1.04, + -0.9500000000000001, + -0.88, + -0.81, + -0.75, + -0.71, + -0.7000000000000001, + -0.7000000000000001, + -0.71, + -0.67, + -0.58, + -0.38, + -0.08, + 0.4, + 0.89, + 1.27, + 1.53, + 1.55, + 1.51, + 1.47, + 1.46, + 1.56, + 1.6500000000000001, + 1.72, + 1.81, + 1.85, + 1.8900000000000001, + 1.94, + 2.0100000000000002, + 2.08, + 2.14, + 2.19, + 2.24, + 2.2800000000000002, + 2.3000000000000003, + 2.2800000000000002, + 2.2, + 2.11, + 2.04, + 2.02, + 2.06, + 2.09, + 2.07, + 2.04, + 1.99, + 1.95, + 1.96, + 1.99, + 2.07, + 2.16, + 2.24, + 2.27, + 2.2600000000000002, + 2.23, + 2.22, + 2.22, + 2.22, + 2.18, + 2.12, + 2.08, + 2.06, + 2.1, + 2.15, + 2.14, + 2.14, + 2.1, + 2.07, + 2.06, + 2.06, + 2.06, + 2.05, + 2.02, + 1.98, + 1.97, + 1.98, + 2.0, + 2.0300000000000002, + 2.0, + 1.8900000000000001, + 1.76, + 1.6600000000000001, + 1.6300000000000001, + 1.6500000000000001, + 1.71, + 1.8, + 1.9100000000000001, + 2.0, + 2.13, + 2.13, + 2.16, + 1.99, + 1.87, + 1.72, + 1.6600000000000001, + 1.67, + 1.74, + 1.79, + 1.82, + 1.79, + 1.74, + 1.69, + 1.6300000000000001, + 1.57, + 1.46, + 1.36, + 1.26, + 1.18, + 1.1400000000000001, + 1.12, + 1.1500000000000001, + 1.2, + 1.25, + 1.31, + 1.35 + ], + [ + 1.8, + 2.0100000000000002, + 1.95, + 1.86, + 1.8, + 1.76, + 1.71, + 1.6600000000000001, + 1.62, + 1.56, + 1.51, + 1.46, + 1.3800000000000001, + 1.28, + 1.18, + 1.11, + 1.05, + 0.97, + 0.9, + 0.8, + 0.6900000000000001, + 0.62, + 0.55, + 0.55, + 0.5700000000000001, + 0.58, + 0.59, + 0.62, + 0.67, + 0.73, + 0.79, + 0.8300000000000001, + 0.85, + 0.81, + 0.73, + 0.64, + 0.54, + 0.45, + 0.36, + 0.27, + 0.19, + 0.11, + 0.05, + -0.02, + -0.03, + -0.05, + -0.03, + 0.0, + 0.11, + 0.23, + 0.4, + 0.59, + 0.77, + 0.93, + 1.12, + 1.3, + 1.42, + 1.48, + 1.48, + 1.41, + 1.36, + 1.36, + 1.3900000000000001, + 1.44, + 1.51, + 1.58, + 1.62, + 1.6400000000000001, + 1.6500000000000001, + 1.68, + 1.69, + 1.7, + 1.7, + 1.71, + 1.74, + 1.87, + 2.05, + 2.22, + 2.39, + 2.49, + 2.5, + 2.46, + 2.38, + 2.37, + 2.37, + 2.31, + 2.23, + 2.14, + 2.1, + 2.08, + 2.07, + 2.05, + 2.06, + 2.1, + 2.09, + 2.07, + 1.92, + 1.73, + 1.47, + 1.21, + 0.93, + 0.6, + 0.27, + -0.14, + -0.5700000000000001, + -1.02, + -1.46, + -1.77, + -2.07, + -2.21, + -2.36, + -2.42, + -2.46, + -2.4, + -2.29, + -2.07, + -1.78, + -1.44, + -1.05, + -0.75, + -0.48, + -0.19, + 0.28, + 0.9, + 1.61, + 2.24, + 2.73, + 3.04, + 3.16, + 3.21, + 3.24, + 3.29, + 3.31, + 3.25, + 3.04, + 2.81, + 2.6, + 2.48, + 2.54, + 2.6, + 2.83, + 3.0300000000000002, + 3.12, + 3.13, + 3.11, + 3.02, + 2.92, + 2.87, + 2.81, + 2.69, + 2.58, + 2.5500000000000003, + 2.5100000000000002, + 2.47, + 2.39, + 2.32, + 2.21, + 2.11, + 1.97, + 1.81, + 1.58, + 1.28, + 0.9500000000000001, + 0.59, + 0.24, + -0.05, + -0.31, + -0.52, + -0.7000000000000001, + -0.8300000000000001, + -0.93, + -1.02, + -1.1400000000000001, + -1.3, + -1.5, + -1.69, + -1.85, + -1.98, + -2.0300000000000002, + -2.08, + -2.02, + -1.95, + -1.81, + -1.67, + -1.52, + -1.4000000000000001, + -1.31, + -1.23, + -1.12, + -0.98, + -0.81, + -0.65, + -0.55, + -0.54, + -0.6, + -0.75, + -0.92, + -1.12, + -1.33, + -1.52, + -1.72, + -1.8800000000000001, + -2.04, + -2.17, + -2.32, + -2.45, + -2.59, + -2.7, + -2.8000000000000003, + -2.85, + -2.87, + -2.85, + -2.81, + -2.7600000000000002, + -2.71, + -2.67, + -2.63, + -2.6, + -2.59, + -2.52, + -2.41, + -2.27, + -2.11, + -1.96, + -1.84, + -1.76, + -1.69, + -1.6600000000000001, + -1.62, + -1.59, + -1.46, + -1.31, + -1.1500000000000001, + -1.02, + -0.9400000000000001, + -0.87, + -0.8, + -0.74, + -0.6900000000000001, + -0.64, + -0.6, + -0.55, + -0.49, + -0.38, + -0.2, + 0.13, + 0.56, + 1.05, + 1.48, + 1.6500000000000001, + 1.73, + 1.62, + 1.53, + 1.55, + 1.6, + 1.68, + 1.75, + 1.8, + 1.84, + 1.8900000000000001, + 1.96, + 2.05, + 2.15, + 2.22, + 2.2600000000000002, + 2.31, + 2.37, + 2.4, + 2.38, + 2.32, + 2.21, + 2.13, + 2.1, + 2.12, + 2.13, + 2.13, + 2.08, + 2.02, + 2.0, + 2.0, + 2.04, + 2.1, + 2.18, + 2.25, + 2.2800000000000002, + 2.27, + 2.24, + 2.23, + 2.23, + 2.21, + 2.18, + 2.13, + 2.09, + 2.13, + 2.17, + 2.18, + 2.18, + 2.13, + 2.07, + 2.06, + 2.05, + 2.05, + 2.06, + 2.0300000000000002, + 1.99, + 1.96, + 1.95, + 1.95, + 1.97, + 1.97, + 1.92, + 1.82, + 1.7, + 1.61, + 1.6, + 1.62, + 1.6600000000000001, + 1.75, + 1.85, + 1.97, + 1.98, + 2.0100000000000002, + 1.8900000000000001, + 1.77, + 1.56, + 1.42, + 1.3800000000000001, + 1.48, + 1.57, + 1.72, + 1.75, + 1.75, + 1.7, + 1.6300000000000001, + 1.56, + 1.45, + 1.35, + 1.22, + 1.12, + 1.05, + 1.0, + 1.03, + 1.06, + 1.1400000000000001, + 1.21, + 1.29, + 1.35 + ], + [ + 1.72, + 1.94, + 1.94, + 1.86, + 1.79, + 1.73, + 1.68, + 1.6300000000000001, + 1.57, + 1.52, + 1.47, + 1.43, + 1.3800000000000001, + 1.28, + 1.17, + 1.09, + 1.01, + 0.93, + 0.8300000000000001, + 0.73, + 0.63, + 0.54, + 0.52, + 0.53, + 0.56, + 0.59, + 0.62, + 0.66, + 0.7000000000000001, + 0.75, + 0.8, + 0.84, + 0.8300000000000001, + 0.79, + 0.7000000000000001, + 0.58, + 0.47000000000000003, + 0.36, + 0.26, + 0.14, + 0.04, + -0.03, + -0.1, + -0.11, + -0.13, + -0.11, + -0.09, + 0.0, + 0.11, + 0.28, + 0.47000000000000003, + 0.65, + 0.81, + 0.98, + 1.1500000000000001, + 1.31, + 1.42, + 1.46, + 1.4000000000000001, + 1.34, + 1.28, + 1.28, + 1.32, + 1.36, + 1.43, + 1.5, + 1.54, + 1.57, + 1.62, + 1.6600000000000001, + 1.68, + 1.69, + 1.69, + 1.7, + 1.76, + 1.85, + 2.02, + 2.17, + 2.31, + 2.41, + 2.41, + 2.3000000000000003, + 2.21, + 2.18, + 2.17, + 2.19, + 2.17, + 2.14, + 2.12, + 2.1, + 2.12, + 2.06, + 2.06, + 2.04, + 2.05, + 1.95, + 1.82, + 1.59, + 1.35, + 1.08, + 0.77, + 0.4, + -0.03, + -0.46, + -0.91, + -1.32, + -1.57, + -1.83, + -1.92, + -2.05, + -2.15, + -2.23, + -2.29, + -2.2800000000000002, + -2.18, + -2.0100000000000002, + -1.71, + -1.3800000000000001, + -1.02, + -0.68, + -0.37, + 0.04, + 0.55, + 1.18, + 1.83, + 2.36, + 2.8000000000000003, + 3.09, + 3.23, + 3.27, + 3.33, + 3.44, + 3.5100000000000002, + 3.44, + 3.3000000000000003, + 3.0100000000000002, + 2.7600000000000002, + 2.63, + 2.58, + 2.64, + 2.69, + 2.85, + 2.89, + 2.9, + 2.82, + 2.74, + 2.65, + 2.61, + 2.56, + 2.46, + 2.37, + 2.33, + 2.36, + 2.33, + 2.38, + 2.35, + 2.3000000000000003, + 2.22, + 2.0100000000000002, + 1.78, + 1.51, + 1.17, + 0.84, + 0.49, + 0.17, + -0.15, + -0.38, + -0.61, + -0.77, + -0.91, + -1.02, + -1.1500000000000001, + -1.28, + -1.44, + -1.6300000000000001, + -1.8, + -1.97, + -2.06, + -2.14, + -2.13, + -2.11, + -2.04, + -1.95, + -1.8, + -1.6500000000000001, + -1.52, + -1.41, + -1.33, + -1.27, + -1.1400000000000001, + -1.01, + -0.9, + -0.86, + -0.88, + -1.0, + -1.16, + -1.35, + -1.54, + -1.7, + -1.8800000000000001, + -2.0300000000000002, + -2.2, + -2.33, + -2.47, + -2.58, + -2.71, + -2.8000000000000003, + -2.9, + -2.98, + -3.04, + -3.0700000000000003, + -3.0700000000000003, + -3.04, + -2.99, + -2.94, + -2.88, + -2.86, + -2.86, + -2.85, + -2.7800000000000002, + -2.65, + -2.44, + -2.2600000000000002, + -2.07, + -1.93, + -1.79, + -1.71, + -1.6300000000000001, + -1.59, + -1.52, + -1.42, + -1.27, + -1.1300000000000001, + -1.02, + -0.9400000000000001, + -0.87, + -0.81, + -0.73, + -0.64, + -0.55, + -0.43, + -0.34, + -0.25, + -0.14, + 0.04, + 0.33, + 0.73, + 1.2, + 1.57, + 1.82, + 1.82, + 1.74, + 1.6600000000000001, + 1.6300000000000001, + 1.67, + 1.7, + 1.74, + 1.76, + 1.82, + 1.8900000000000001, + 1.98, + 2.1, + 2.2, + 2.27, + 2.32, + 2.37, + 2.43, + 2.46, + 2.46, + 2.39, + 2.3000000000000003, + 2.2, + 2.15, + 2.17, + 2.18, + 2.17, + 2.12, + 2.07, + 2.0300000000000002, + 2.04, + 2.07, + 2.13, + 2.2, + 2.2600000000000002, + 2.29, + 2.27, + 2.25, + 2.23, + 2.22, + 2.2, + 2.16, + 2.12, + 2.14, + 2.18, + 2.2, + 2.23, + 2.18, + 2.13, + 2.08, + 2.04, + 2.0300000000000002, + 2.02, + 2.0100000000000002, + 1.99, + 1.95, + 1.94, + 1.92, + 1.9100000000000001, + 1.9100000000000001, + 1.87, + 1.81, + 1.71, + 1.6, + 1.54, + 1.52, + 1.5, + 1.54, + 1.62, + 1.73, + 1.76, + 1.79, + 1.6600000000000001, + 1.52, + 1.31, + 1.1, + 0.99, + 1.0, + 1.1300000000000001, + 1.37, + 1.51, + 1.6600000000000001, + 1.6500000000000001, + 1.61, + 1.54, + 1.42, + 1.32, + 1.17, + 1.05, + 0.96, + 0.89, + 0.89, + 0.91, + 0.99, + 1.07, + 1.17, + 1.27, + 1.35 + ], + [ + 1.8, + 2.0100000000000002, + 1.95, + 1.84, + 1.77, + 1.69, + 1.6400000000000001, + 1.59, + 1.54, + 1.51, + 1.47, + 1.43, + 1.37, + 1.27, + 1.16, + 1.07, + 0.99, + 0.89, + 0.79, + 0.6900000000000001, + 0.59, + 0.53, + 0.5, + 0.52, + 0.56, + 0.6, + 0.64, + 0.67, + 0.72, + 0.74, + 0.77, + 0.79, + 0.78, + 0.73, + 0.65, + 0.53, + 0.4, + 0.29, + 0.15, + 0.03, + -0.07, + -0.16, + -0.18, + -0.19, + -0.17, + -0.14, + -0.08, + 0.01, + 0.17, + 0.35000000000000003, + 0.54, + 0.72, + 0.88, + 1.04, + 1.2, + 1.33, + 1.41, + 1.37, + 1.31, + 1.25, + 1.2, + 1.22, + 1.26, + 1.32, + 1.3900000000000001, + 1.44, + 1.47, + 1.54, + 1.62, + 1.67, + 1.69, + 1.7, + 1.7, + 1.72, + 1.77, + 1.86, + 1.98, + 2.11, + 2.18, + 2.2600000000000002, + 2.27, + 2.17, + 2.05, + 1.99, + 1.98, + 1.99, + 2.05, + 2.07, + 2.05, + 2.06, + 2.04, + 2.02, + 1.94, + 1.9100000000000001, + 1.85, + 1.75, + 1.6, + 1.41, + 1.16, + 0.93, + 0.59, + 0.16, + -0.3, + -0.8200000000000001, + -1.25, + -1.51, + -1.72, + -1.71, + -1.77, + -1.85, + -1.94, + -2.08, + -2.15, + -2.16, + -2.11, + -1.93, + -1.69, + -1.36, + -1.02, + -0.67, + -0.29, + 0.19, + 0.81, + 1.43, + 1.99, + 2.48, + 2.8000000000000003, + 3.06, + 3.19, + 3.25, + 3.41, + 3.54, + 3.6, + 3.59, + 3.42, + 3.21, + 2.94, + 2.77, + 2.74, + 2.74, + 2.74, + 2.73, + 2.77, + 2.7600000000000002, + 2.67, + 2.52, + 2.46, + 2.47, + 2.44, + 2.39, + 2.31, + 2.33, + 2.33, + 2.37, + 2.39, + 2.39, + 2.39, + 2.2600000000000002, + 2.11, + 1.81, + 1.49, + 1.1400000000000001, + 0.77, + 0.46, + 0.13, + -0.15, + -0.43, + -0.63, + -0.81, + -0.9400000000000001, + -1.09, + -1.23, + -1.3900000000000001, + -1.55, + -1.71, + -1.8900000000000001, + -2.0, + -2.1, + -2.12, + -2.13, + -2.12, + -2.09, + -2.02, + -1.92, + -1.76, + -1.6, + -1.5, + -1.43, + -1.3800000000000001, + -1.32, + -1.24, + -1.2, + -1.18, + -1.26, + -1.3800000000000001, + -1.55, + -1.73, + -1.8900000000000001, + -2.05, + -2.17, + -2.32, + -2.45, + -2.58, + -2.69, + -2.81, + -2.91, + -3.0100000000000002, + -3.1, + -3.19, + -3.2600000000000002, + -3.3200000000000003, + -3.3200000000000003, + -3.3000000000000003, + -3.25, + -3.18, + -3.14, + -3.14, + -3.16, + -3.15, + -3.0700000000000003, + -2.85, + -2.63, + -2.35, + -2.14, + -1.93, + -1.77, + -1.6300000000000001, + -1.53, + -1.49, + -1.43, + -1.33, + -1.21, + -1.09, + -1.0, + -0.93, + -0.88, + -0.8, + -0.71, + -0.58, + -0.4, + -0.25, + -0.09, + 0.02, + 0.13, + 0.3, + 0.56, + 0.92, + 1.32, + 1.68, + 1.8800000000000001, + 1.92, + 1.84, + 1.76, + 1.73, + 1.74, + 1.75, + 1.72, + 1.76, + 1.82, + 1.9100000000000001, + 2.02, + 2.13, + 2.22, + 2.29, + 2.34, + 2.39, + 2.46, + 2.5, + 2.5, + 2.45, + 2.35, + 2.25, + 2.2, + 2.2, + 2.23, + 2.23, + 2.16, + 2.11, + 2.09, + 2.08, + 2.11, + 2.14, + 2.21, + 2.27, + 2.29, + 2.2800000000000002, + 2.25, + 2.22, + 2.21, + 2.18, + 2.14, + 2.14, + 2.16, + 2.19, + 2.22, + 2.23, + 2.2, + 2.13, + 2.08, + 2.02, + 1.98, + 1.96, + 1.93, + 1.9100000000000001, + 1.8800000000000001, + 1.85, + 1.84, + 1.82, + 1.79, + 1.75, + 1.68, + 1.58, + 1.48, + 1.42, + 1.35, + 1.33, + 1.35, + 1.43, + 1.48, + 1.53, + 1.41, + 1.25, + 1.01, + 0.74, + 0.5700000000000001, + 0.47000000000000003, + 0.54, + 0.75, + 1.0, + 1.3, + 1.43, + 1.5, + 1.45, + 1.35, + 1.25, + 1.12, + 0.98, + 0.88, + 0.79, + 0.78, + 0.78, + 0.85, + 0.93, + 1.04, + 1.1500000000000001, + 1.26, + 1.36 + ], + [ + 1.75, + 1.97, + 1.96, + 1.84, + 1.75, + 1.69, + 1.62, + 1.58, + 1.55, + 1.52, + 1.49, + 1.44, + 1.34, + 1.24, + 1.1400000000000001, + 1.05, + 0.96, + 0.86, + 0.77, + 0.67, + 0.6, + 0.54, + 0.52, + 0.53, + 0.5700000000000001, + 0.61, + 0.65, + 0.68, + 0.7000000000000001, + 0.7000000000000001, + 0.7000000000000001, + 0.67, + 0.66, + 0.61, + 0.53, + 0.44, + 0.32, + 0.18, + 0.04, + -0.07, + -0.18, + -0.22, + -0.24, + -0.21, + -0.18, + -0.12, + -0.06, + 0.07, + 0.24, + 0.44, + 0.63, + 0.8, + 0.96, + 1.11, + 1.24, + 1.34, + 1.33, + 1.28, + 1.2, + 1.1400000000000001, + 1.1400000000000001, + 1.16, + 1.24, + 1.32, + 1.3800000000000001, + 1.42, + 1.47, + 1.53, + 1.6300000000000001, + 1.71, + 1.71, + 1.7, + 1.7, + 1.72, + 1.77, + 1.84, + 1.94, + 2.0100000000000002, + 2.08, + 2.13, + 2.12, + 2.0300000000000002, + 1.9100000000000001, + 1.79, + 1.76, + 1.78, + 1.84, + 1.8800000000000001, + 1.8800000000000001, + 1.8800000000000001, + 1.86, + 1.81, + 1.74, + 1.67, + 1.59, + 1.49, + 1.35, + 1.1500000000000001, + 0.9500000000000001, + 0.7000000000000001, + 0.38, + -0.08, + -0.66, + -1.17, + -1.54, + -1.78, + -1.69, + -1.6500000000000001, + -1.6400000000000001, + -1.69, + -1.85, + -1.99, + -2.05, + -2.07, + -1.99, + -1.86, + -1.62, + -1.34, + -1.0, + -0.68, + -0.22, + 0.38, + 1.01, + 1.6600000000000001, + 2.19, + 2.57, + 2.87, + 3.0100000000000002, + 3.13, + 3.27, + 3.43, + 3.54, + 3.62, + 3.58, + 3.46, + 3.24, + 3.02, + 2.91, + 2.92, + 2.87, + 2.79, + 2.75, + 2.7, + 2.68, + 2.6, + 2.46, + 2.36, + 2.39, + 2.48, + 2.45, + 2.5, + 2.5100000000000002, + 2.5, + 2.49, + 2.38, + 2.34, + 2.29, + 2.21, + 2.07, + 1.86, + 1.51, + 1.16, + 0.84, + 0.52, + 0.21, + -0.09, + -0.35000000000000003, + -0.58, + -0.75, + -0.9, + -1.04, + -1.22, + -1.3900000000000001, + -1.59, + -1.77, + -1.8800000000000001, + -1.99, + -2.0300000000000002, + -2.06, + -2.09, + -2.09, + -2.1, + -2.07, + -1.98, + -1.85, + -1.7, + -1.58, + -1.54, + -1.52, + -1.5, + -1.51, + -1.5, + -1.54, + -1.62, + -1.75, + -1.9100000000000001, + -2.06, + -2.21, + -2.32, + -2.44, + -2.5500000000000003, + -2.67, + -2.77, + -2.88, + -3.0, + -3.11, + -3.21, + -3.31, + -3.39, + -3.48, + -3.54, + -3.58, + -3.5500000000000003, + -3.52, + -3.47, + -3.44, + -3.45, + -3.5, + -3.48, + -3.3200000000000003, + -3.11, + -2.75, + -2.45, + -2.13, + -1.8900000000000001, + -1.67, + -1.5, + -1.42, + -1.36, + -1.31, + -1.21, + -1.12, + -1.04, + -0.97, + -0.93, + -0.86, + -0.79, + -0.68, + -0.49, + -0.28, + -0.01, + 0.16, + 0.3, + 0.43, + 0.6, + 0.84, + 1.1400000000000001, + 1.49, + 1.77, + 1.97, + 1.99, + 1.94, + 1.86, + 1.84, + 1.82, + 1.8, + 1.79, + 1.81, + 1.86, + 1.9100000000000001, + 2.02, + 2.14, + 2.22, + 2.2800000000000002, + 2.33, + 2.4, + 2.47, + 2.5300000000000002, + 2.54, + 2.48, + 2.39, + 2.29, + 2.24, + 2.2600000000000002, + 2.2800000000000002, + 2.25, + 2.19, + 2.14, + 2.13, + 2.12, + 2.12, + 2.15, + 2.21, + 2.2600000000000002, + 2.3000000000000003, + 2.2800000000000002, + 2.25, + 2.22, + 2.18, + 2.15, + 2.13, + 2.12, + 2.17, + 2.2, + 2.23, + 2.23, + 2.19, + 2.13, + 2.07, + 1.99, + 1.93, + 1.87, + 1.85, + 1.81, + 1.78, + 1.73, + 1.71, + 1.69, + 1.6600000000000001, + 1.61, + 1.53, + 1.41, + 1.31, + 1.2, + 1.1300000000000001, + 1.09, + 1.11, + 1.1400000000000001, + 1.2, + 1.12, + 0.99, + 0.73, + 0.43, + 0.21, + 0.04, + 0.01, + 0.09, + 0.34, + 0.65, + 0.9400000000000001, + 1.18, + 1.23, + 1.21, + 1.12, + 1.01, + 0.89, + 0.79, + 0.6900000000000001, + 0.68, + 0.67, + 0.73, + 0.8, + 0.92, + 1.04, + 1.17, + 1.28, + 1.37 + ], + [ + 1.8, + 2.0100000000000002, + 1.97, + 1.85, + 1.76, + 1.69, + 1.6300000000000001, + 1.59, + 1.56, + 1.56, + 1.52, + 1.43, + 1.33, + 1.22, + 1.11, + 1.04, + 0.96, + 0.86, + 0.77, + 0.7000000000000001, + 0.64, + 0.58, + 0.56, + 0.5700000000000001, + 0.6, + 0.62, + 0.65, + 0.67, + 0.66, + 0.63, + 0.5700000000000001, + 0.54, + 0.48, + 0.43, + 0.38, + 0.3, + 0.2, + 0.07, + -0.06, + -0.17, + -0.22, + -0.26, + -0.24, + -0.2, + -0.14, + -0.09, + 0.01, + 0.16, + 0.34, + 0.54, + 0.72, + 0.87, + 1.01, + 1.1400000000000001, + 1.24, + 1.25, + 1.23, + 1.1500000000000001, + 1.07, + 1.06, + 1.07, + 1.1400000000000001, + 1.22, + 1.31, + 1.3800000000000001, + 1.44, + 1.49, + 1.56, + 1.67, + 1.71, + 1.71, + 1.69, + 1.7, + 1.71, + 1.74, + 1.8, + 1.83, + 1.8900000000000001, + 1.94, + 1.98, + 1.94, + 1.85, + 1.71, + 1.6, + 1.52, + 1.52, + 1.61, + 1.6500000000000001, + 1.68, + 1.6600000000000001, + 1.62, + 1.53, + 1.49, + 1.43, + 1.36, + 1.25, + 1.1, + 0.9, + 0.6900000000000001, + 0.44, + 0.08, + -0.44, + -1.01, + -1.52, + -1.8800000000000001, + -1.87, + -1.79, + -1.62, + -1.57, + -1.67, + -1.82, + -1.9000000000000001, + -1.96, + -1.9100000000000001, + -1.83, + -1.7, + -1.51, + -1.26, + -0.98, + -0.61, + -0.1, + 0.55, + 1.26, + 1.8900000000000001, + 2.37, + 2.72, + 2.88, + 3.02, + 3.12, + 3.2600000000000002, + 3.37, + 3.49, + 3.5, + 3.45, + 3.34, + 3.16, + 3.0100000000000002, + 2.96, + 3.02, + 3.04, + 2.9, + 2.75, + 2.7, + 2.65, + 2.58, + 2.45, + 2.39, + 2.46, + 2.56, + 2.72, + 2.77, + 2.81, + 2.8000000000000003, + 2.62, + 2.47, + 2.19, + 2.02, + 1.99, + 1.9000000000000001, + 1.78, + 1.56, + 1.26, + 0.99, + 0.68, + 0.39, + 0.08, + -0.2, + -0.44, + -0.62, + -0.77, + -0.92, + -1.1, + -1.31, + -1.52, + -1.72, + -1.86, + -1.92, + -1.95, + -1.99, + -2.02, + -2.07, + -2.11, + -2.09, + -2.0300000000000002, + -1.93, + -1.81, + -1.72, + -1.69, + -1.7, + -1.74, + -1.78, + -1.86, + -1.92, + -1.99, + -2.11, + -2.24, + -2.39, + -2.49, + -2.6, + -2.66, + -2.7600000000000002, + -2.86, + -2.95, + -3.0700000000000003, + -3.18, + -3.3000000000000003, + -3.42, + -3.5, + -3.58, + -3.66, + -3.74, + -3.7800000000000002, + -3.81, + -3.7800000000000002, + -3.7600000000000002, + -3.73, + -3.7600000000000002, + -3.79, + -3.75, + -3.6, + -3.2800000000000002, + -2.92, + -2.49, + -2.14, + -1.8, + -1.54, + -1.3800000000000001, + -1.28, + -1.25, + -1.21, + -1.1300000000000001, + -1.04, + -0.98, + -0.9400000000000001, + -0.9, + -0.85, + -0.77, + -0.63, + -0.42, + -0.11, + 0.16, + 0.41000000000000003, + 0.5700000000000001, + 0.73, + 0.91, + 1.1400000000000001, + 1.42, + 1.6600000000000001, + 1.9100000000000001, + 2.05, + 2.09, + 2.0300000000000002, + 1.96, + 1.9100000000000001, + 1.8900000000000001, + 1.8800000000000001, + 1.8900000000000001, + 1.8900000000000001, + 1.8900000000000001, + 1.94, + 1.99, + 2.09, + 2.16, + 2.22, + 2.29, + 2.35, + 2.46, + 2.5300000000000002, + 2.54, + 2.5, + 2.42, + 2.33, + 2.3000000000000003, + 2.31, + 2.32, + 2.2800000000000002, + 2.2, + 2.15, + 2.14, + 2.13, + 2.12, + 2.14, + 2.2, + 2.2600000000000002, + 2.2800000000000002, + 2.25, + 2.22, + 2.19, + 2.15, + 2.13, + 2.1, + 2.14, + 2.18, + 2.23, + 2.25, + 2.24, + 2.19, + 2.13, + 2.06, + 1.98, + 1.8900000000000001, + 1.83, + 1.8, + 1.74, + 1.67, + 1.62, + 1.57, + 1.54, + 1.51, + 1.45, + 1.33, + 1.21, + 1.05, + 0.9400000000000001, + 0.8200000000000001, + 0.77, + 0.76, + 0.8, + 0.75, + 0.66, + 0.46, + 0.18, + -0.08, + -0.29, + -0.39, + -0.38, + -0.26, + -0.04, + 0.28, + 0.59, + 0.81, + 0.93, + 0.91, + 0.85, + 0.74, + 0.66, + 0.56, + 0.5700000000000001, + 0.56, + 0.63, + 0.7000000000000001, + 0.8200000000000001, + 0.9500000000000001, + 1.08, + 1.2, + 1.3, + 1.3800000000000001 + ], + [ + 1.77, + 1.99, + 1.97, + 1.85, + 1.77, + 1.71, + 1.67, + 1.61, + 1.57, + 1.55, + 1.51, + 1.42, + 1.31, + 1.2, + 1.1300000000000001, + 1.06, + 0.97, + 0.88, + 0.8, + 0.73, + 0.67, + 0.63, + 0.61, + 0.61, + 0.62, + 0.63, + 0.64, + 0.64, + 0.61, + 0.53, + 0.46, + 0.37, + 0.31, + 0.26, + 0.21, + 0.16, + 0.07, + -0.03, + -0.15, + -0.21, + -0.26, + -0.24, + -0.2, + -0.14, + -0.08, + 0.0, + 0.11, + 0.27, + 0.47000000000000003, + 0.64, + 0.79, + 0.92, + 1.01, + 1.11, + 1.12, + 1.12, + 1.05, + 0.97, + 0.9500000000000001, + 0.9500000000000001, + 1.02, + 1.09, + 1.19, + 1.29, + 1.4000000000000001, + 1.47, + 1.52, + 1.61, + 1.67, + 1.69, + 1.68, + 1.6500000000000001, + 1.6500000000000001, + 1.67, + 1.69, + 1.7, + 1.72, + 1.7, + 1.75, + 1.75, + 1.71, + 1.55, + 1.41, + 1.36, + 1.29, + 1.31, + 1.3900000000000001, + 1.47, + 1.51, + 1.48, + 1.42, + 1.34, + 1.29, + 1.26, + 1.22, + 1.09, + 0.91, + 0.7000000000000001, + 0.43, + 0.16, + -0.28, + -0.8, + -1.3900000000000001, + -1.8800000000000001, + -2.06, + -2.06, + -1.85, + -1.67, + -1.61, + -1.69, + -1.74, + -1.8, + -1.75, + -1.67, + -1.58, + -1.45, + -1.32, + -1.1400000000000001, + -0.89, + -0.55, + 0.05, + 0.84, + 1.53, + 2.1, + 2.56, + 2.79, + 2.95, + 3.0100000000000002, + 3.11, + 3.18, + 3.2800000000000002, + 3.35, + 3.36, + 3.2600000000000002, + 3.12, + 3.0100000000000002, + 2.9, + 2.97, + 3.11, + 3.14, + 3.02, + 2.85, + 2.73, + 2.69, + 2.6, + 2.5100000000000002, + 2.5300000000000002, + 2.61, + 2.79, + 2.95, + 3.13, + 3.18, + 3.14, + 2.97, + 2.57, + 2.21, + 1.82, + 1.6500000000000001, + 1.69, + 1.6500000000000001, + 1.55, + 1.3800000000000001, + 1.1300000000000001, + 0.88, + 0.5700000000000001, + 0.27, + -0.02, + -0.28, + -0.47000000000000003, + -0.63, + -0.78, + -0.96, + -1.17, + -1.41, + -1.62, + -1.78, + -1.86, + -1.8900000000000001, + -1.92, + -1.99, + -2.06, + -2.1, + -2.11, + -2.08, + -2.0300000000000002, + -1.95, + -1.9100000000000001, + -1.8900000000000001, + -1.94, + -2.0, + -2.13, + -2.23, + -2.34, + -2.41, + -2.47, + -2.6, + -2.67, + -2.77, + -2.81, + -2.88, + -2.96, + -3.0500000000000003, + -3.15, + -3.2600000000000002, + -3.38, + -3.5, + -3.58, + -3.64, + -3.7, + -3.77, + -3.85, + -3.94, + -3.97, + -4.01, + -3.98, + -3.95, + -3.97, + -4.0, + -3.96, + -3.7800000000000002, + -3.47, + -3.0300000000000002, + -2.59, + -2.11, + -1.74, + -1.45, + -1.26, + -1.2, + -1.18, + -1.1400000000000001, + -1.06, + -0.98, + -0.93, + -0.89, + -0.87, + -0.8200000000000001, + -0.75, + -0.59, + -0.33, + -0.01, + 0.36, + 0.61, + 0.81, + 0.98, + 1.21, + 1.45, + 1.62, + 1.83, + 1.99, + 2.11, + 2.14, + 2.1, + 2.0100000000000002, + 1.95, + 1.94, + 1.94, + 1.96, + 1.97, + 1.95, + 1.95, + 1.99, + 2.02, + 2.09, + 2.15, + 2.22, + 2.31, + 2.41, + 2.52, + 2.5500000000000003, + 2.5100000000000002, + 2.43, + 2.38, + 2.36, + 2.36, + 2.36, + 2.29, + 2.19, + 2.15, + 2.14, + 2.13, + 2.11, + 2.14, + 2.19, + 2.24, + 2.24, + 2.21, + 2.18, + 2.15, + 2.14, + 2.11, + 2.11, + 2.14, + 2.22, + 2.27, + 2.2800000000000002, + 2.2600000000000002, + 2.22, + 2.16, + 2.09, + 2.0, + 1.8900000000000001, + 1.81, + 1.76, + 1.68, + 1.58, + 1.49, + 1.43, + 1.3800000000000001, + 1.34, + 1.24, + 1.11, + 0.93, + 0.77, + 0.58, + 0.45, + 0.36, + 0.34, + 0.31, + 0.23, + 0.11, + -0.1, + -0.32, + -0.54, + -0.67, + -0.7000000000000001, + -0.67, + -0.55, + -0.32, + -0.06, + 0.23, + 0.43, + 0.56, + 0.61, + 0.55, + 0.52, + 0.43, + 0.44, + 0.44, + 0.54, + 0.62, + 0.74, + 0.86, + 1.0, + 1.1400000000000001, + 1.25, + 1.33, + 1.41 + ], + [ + 1.77, + 1.99, + 1.96, + 1.84, + 1.77, + 1.71, + 1.6600000000000001, + 1.58, + 1.53, + 1.48, + 1.44, + 1.3800000000000001, + 1.28, + 1.22, + 1.1500000000000001, + 1.08, + 0.99, + 0.9, + 0.8200000000000001, + 0.75, + 0.7000000000000001, + 0.66, + 0.63, + 0.62, + 0.62, + 0.62, + 0.61, + 0.59, + 0.53, + 0.45, + 0.34, + 0.25, + 0.15, + 0.1, + 0.04, + -0.01, + -0.07, + -0.16, + -0.2, + -0.25, + -0.23, + -0.2, + -0.12, + -0.04, + 0.03, + 0.12, + 0.24, + 0.42, + 0.5700000000000001, + 0.71, + 0.8200000000000001, + 0.89, + 0.9500000000000001, + 0.93, + 0.9400000000000001, + 0.88, + 0.8200000000000001, + 0.79, + 0.78, + 0.85, + 0.92, + 1.05, + 1.1500000000000001, + 1.28, + 1.4000000000000001, + 1.48, + 1.55, + 1.58, + 1.61, + 1.62, + 1.58, + 1.57, + 1.59, + 1.6, + 1.61, + 1.61, + 1.57, + 1.55, + 1.51, + 1.5, + 1.3900000000000001, + 1.23, + 1.1400000000000001, + 1.08, + 1.11, + 1.1500000000000001, + 1.2, + 1.28, + 1.36, + 1.37, + 1.28, + 1.21, + 1.17, + 1.17, + 1.11, + 0.99, + 0.79, + 0.53, + 0.25, + -0.12, + -0.5700000000000001, + -1.1300000000000001, + -1.7, + -2.0300000000000002, + -2.2, + -2.1, + -1.9000000000000001, + -1.74, + -1.68, + -1.62, + -1.6300000000000001, + -1.56, + -1.46, + -1.3900000000000001, + -1.29, + -1.22, + -1.12, + -1.0, + -0.8200000000000001, + -0.43, + 0.25, + 1.05, + 1.8, + 2.34, + 2.67, + 2.89, + 2.97, + 3.04, + 3.06, + 3.12, + 3.16, + 3.21, + 3.18, + 3.0700000000000003, + 2.94, + 2.82, + 2.83, + 2.96, + 3.16, + 3.25, + 3.14, + 2.98, + 2.88, + 2.81, + 2.73, + 2.69, + 2.72, + 2.84, + 3.02, + 3.2600000000000002, + 3.44, + 3.56, + 3.5300000000000002, + 3.38, + 3.0, + 2.33, + 1.84, + 1.51, + 1.47, + 1.53, + 1.52, + 1.41, + 1.23, + 0.99, + 0.72, + 0.41000000000000003, + 0.12, + -0.14, + -0.36, + -0.52, + -0.6900000000000001, + -0.87, + -1.07, + -1.31, + -1.51, + -1.68, + -1.81, + -1.87, + -1.9100000000000001, + -1.99, + -2.0300000000000002, + -2.07, + -2.09, + -2.09, + -2.09, + -2.09, + -2.07, + -2.09, + -2.15, + -2.2800000000000002, + -2.44, + -2.65, + -2.7600000000000002, + -2.81, + -2.87, + -2.86, + -2.93, + -2.98, + -3.0300000000000002, + -3.11, + -3.2, + -3.2800000000000002, + -3.39, + -3.46, + -3.5700000000000003, + -3.63, + -3.66, + -3.69, + -3.7, + -3.79, + -3.89, + -3.99, + -4.08, + -4.11, + -4.1, + -4.07, + -4.05, + -4.08, + -4.0600000000000005, + -3.89, + -3.6, + -3.16, + -2.63, + -2.14, + -1.71, + -1.4000000000000001, + -1.24, + -1.18, + -1.1500000000000001, + -1.1, + -1.02, + -0.9400000000000001, + -0.88, + -0.84, + -0.8200000000000001, + -0.79, + -0.71, + -0.55, + -0.27, + 0.13, + 0.5, + 0.8, + 1.0, + 1.23, + 1.46, + 1.6400000000000001, + 1.8, + 1.8900000000000001, + 2.0, + 2.12, + 2.16, + 2.12, + 2.04, + 1.98, + 1.98, + 1.99, + 2.0, + 2.02, + 2.02, + 2.0100000000000002, + 2.0100000000000002, + 2.02, + 2.0100000000000002, + 2.08, + 2.19, + 2.2800000000000002, + 2.39, + 2.5, + 2.54, + 2.5100000000000002, + 2.47, + 2.44, + 2.42, + 2.41, + 2.37, + 2.29, + 2.19, + 2.14, + 2.14, + 2.13, + 2.11, + 2.12, + 2.17, + 2.22, + 2.21, + 2.19, + 2.16, + 2.14, + 2.13, + 2.12, + 2.12, + 2.16, + 2.24, + 2.31, + 2.32, + 2.3000000000000003, + 2.2600000000000002, + 2.22, + 2.16, + 2.0300000000000002, + 1.9000000000000001, + 1.81, + 1.74, + 1.6300000000000001, + 1.48, + 1.37, + 1.27, + 1.22, + 1.12, + 1.01, + 0.8300000000000001, + 0.65, + 0.43, + 0.23, + 0.05, + -0.06, + -0.14, + -0.21, + -0.29, + -0.43, + -0.58, + -0.76, + -0.89, + -0.93, + -0.92, + -0.8300000000000001, + -0.71, + -0.52, + -0.28, + -0.08, + 0.12, + 0.24, + 0.3, + 0.35000000000000003, + 0.31, + 0.35000000000000003, + 0.36, + 0.45, + 0.56, + 0.6900000000000001, + 0.8200000000000001, + 0.9500000000000001, + 1.09, + 1.22, + 1.31, + 1.3900000000000001, + 1.44 + ], + [ + 1.76, + 1.98, + 1.94, + 1.82, + 1.74, + 1.68, + 1.6, + 1.52, + 1.44, + 1.3900000000000001, + 1.35, + 1.3, + 1.26, + 1.2, + 1.1400000000000001, + 1.06, + 0.99, + 0.9, + 0.8200000000000001, + 0.75, + 0.7000000000000001, + 0.67, + 0.64, + 0.62, + 0.6, + 0.58, + 0.56, + 0.51, + 0.45, + 0.35000000000000003, + 0.24, + 0.13, + 0.03, + -0.06, + -0.12, + -0.17, + -0.23, + -0.24, + -0.28, + -0.24, + -0.2, + -0.12, + -0.02, + 0.07, + 0.16, + 0.25, + 0.39, + 0.52, + 0.63, + 0.73, + 0.76, + 0.8, + 0.75, + 0.72, + 0.64, + 0.59, + 0.5700000000000001, + 0.55, + 0.64, + 0.72, + 0.88, + 1.01, + 1.1500000000000001, + 1.29, + 1.3800000000000001, + 1.45, + 1.48, + 1.48, + 1.49, + 1.47, + 1.46, + 1.47, + 1.5, + 1.52, + 1.53, + 1.5, + 1.46, + 1.41, + 1.36, + 1.23, + 1.12, + 1.01, + 0.92, + 0.9, + 0.93, + 0.9500000000000001, + 1.0, + 1.1, + 1.18, + 1.23, + 1.17, + 1.1, + 1.08, + 1.05, + 0.97, + 0.85, + 0.65, + 0.39, + 0.09, + -0.3, + -0.8, + -1.36, + -1.75, + -2.09, + -2.1, + -1.99, + -1.85, + -1.7, + -1.6, + -1.53, + -1.42, + -1.29, + -1.21, + -1.1300000000000001, + -1.1, + -1.08, + -1.02, + -0.92, + -0.73, + -0.29, + 0.41000000000000003, + 1.28, + 2.0100000000000002, + 2.48, + 2.8000000000000003, + 2.93, + 3.0100000000000002, + 3.0300000000000002, + 3.0500000000000003, + 3.0500000000000003, + 3.08, + 3.0700000000000003, + 3.0300000000000002, + 2.92, + 2.79, + 2.74, + 2.79, + 2.96, + 3.18, + 3.33, + 3.2800000000000002, + 3.17, + 3.14, + 3.0700000000000003, + 3.0, + 2.95, + 3.02, + 3.14, + 3.23, + 3.47, + 3.67, + 3.79, + 3.87, + 3.73, + 3.37, + 2.72, + 2.0100000000000002, + 1.6300000000000001, + 1.42, + 1.42, + 1.45, + 1.37, + 1.22, + 1.01, + 0.78, + 0.51, + 0.22, + -0.04, + -0.26, + -0.46, + -0.63, + -0.84, + -1.04, + -1.24, + -1.44, + -1.6, + -1.73, + -1.85, + -1.92, + -1.94, + -1.96, + -1.99, + -2.0, + -2.06, + -2.11, + -2.15, + -2.17, + -2.22, + -2.33, + -2.49, + -2.73, + -2.95, + -3.13, + -3.19, + -3.15, + -3.14, + -3.09, + -3.14, + -3.25, + -3.34, + -3.45, + -3.5500000000000003, + -3.59, + -3.65, + -3.69, + -3.7, + -3.67, + -3.63, + -3.66, + -3.7600000000000002, + -3.86, + -3.94, + -4.05, + -4.1, + -4.09, + -4.0600000000000005, + -4.04, + -4.0600000000000005, + -4.04, + -3.94, + -3.64, + -3.21, + -2.68, + -2.15, + -1.71, + -1.41, + -1.27, + -1.19, + -1.16, + -1.09, + -1.01, + -0.92, + -0.84, + -0.79, + -0.76, + -0.73, + -0.65, + -0.48, + -0.16, + 0.25, + 0.65, + 0.9400000000000001, + 1.19, + 1.41, + 1.62, + 1.79, + 1.87, + 1.92, + 1.98, + 2.08, + 2.15, + 2.12, + 2.06, + 2.02, + 2.0100000000000002, + 2.0100000000000002, + 2.0300000000000002, + 2.05, + 2.06, + 2.06, + 2.04, + 1.98, + 1.97, + 2.05, + 2.16, + 2.27, + 2.39, + 2.5100000000000002, + 2.5500000000000003, + 2.54, + 2.5100000000000002, + 2.49, + 2.48, + 2.43, + 2.37, + 2.2800000000000002, + 2.2, + 2.13, + 2.12, + 2.11, + 2.11, + 2.1, + 2.13, + 2.17, + 2.19, + 2.17, + 2.18, + 2.16, + 2.14, + 2.13, + 2.15, + 2.2, + 2.2800000000000002, + 2.36, + 2.39, + 2.38, + 2.33, + 2.2800000000000002, + 2.18, + 2.02, + 1.8900000000000001, + 1.82, + 1.74, + 1.6, + 1.42, + 1.24, + 1.1300000000000001, + 1.01, + 0.91, + 0.76, + 0.5700000000000001, + 0.36, + 0.14, + -0.08, + -0.27, + -0.44, + -0.55, + -0.64, + -0.72, + -0.8300000000000001, + -0.9500000000000001, + -1.05, + -1.08, + -1.07, + -0.98, + -0.88, + -0.74, + -0.58, + -0.41000000000000003, + -0.23, + -0.12, + 0.01, + 0.13, + 0.18, + 0.27, + 0.31, + 0.41000000000000003, + 0.52, + 0.65, + 0.8, + 0.9400000000000001, + 1.08, + 1.21, + 1.32, + 1.3900000000000001, + 1.45, + 1.5 + ], + [ + 1.72, + 1.95, + 1.9000000000000001, + 1.76, + 1.68, + 1.6, + 1.52, + 1.44, + 1.36, + 1.31, + 1.27, + 1.22, + 1.18, + 1.1300000000000001, + 1.06, + 1.01, + 0.93, + 0.87, + 0.8, + 0.74, + 0.7000000000000001, + 0.66, + 0.62, + 0.59, + 0.56, + 0.52, + 0.48, + 0.44, + 0.37, + 0.27, + 0.17, + 0.04, + -0.08, + -0.17, + -0.27, + -0.32, + -0.34, + -0.34, + -0.29, + -0.23, + -0.15, + -0.04, + 0.08, + 0.18, + 0.27, + 0.37, + 0.47000000000000003, + 0.56, + 0.63, + 0.64, + 0.66, + 0.6, + 0.54, + 0.43, + 0.35000000000000003, + 0.32, + 0.3, + 0.39, + 0.48, + 0.68, + 0.86, + 1.03, + 1.18, + 1.26, + 1.32, + 1.33, + 1.31, + 1.31, + 1.29, + 1.3, + 1.32, + 1.35, + 1.4000000000000001, + 1.43, + 1.44, + 1.42, + 1.4000000000000001, + 1.35, + 1.25, + 1.11, + 0.97, + 0.86, + 0.8200000000000001, + 0.8200000000000001, + 0.77, + 0.78, + 0.8, + 0.89, + 1.01, + 1.06, + 1.03, + 0.98, + 0.93, + 0.85, + 0.76, + 0.6, + 0.43, + 0.22, + -0.06, + -0.47000000000000003, + -0.97, + -1.34, + -1.74, + -1.79, + -1.79, + -1.68, + -1.53, + -1.51, + -1.41, + -1.36, + -1.22, + -1.1300000000000001, + -1.08, + -1.07, + -1.12, + -1.09, + -1.05, + -0.91, + -0.65, + -0.21, + 0.58, + 1.46, + 2.12, + 2.6, + 2.86, + 3.0, + 3.04, + 3.06, + 3.06, + 3.0500000000000003, + 3.0300000000000002, + 3.02, + 2.94, + 2.83, + 2.75, + 2.74, + 2.82, + 3.0100000000000002, + 3.24, + 3.38, + 3.44, + 3.49, + 3.47, + 3.44, + 3.35, + 3.3200000000000003, + 3.37, + 3.4, + 3.49, + 3.49, + 3.68, + 3.7600000000000002, + 3.8200000000000003, + 3.83, + 3.43, + 3.0300000000000002, + 2.38, + 1.81, + 1.56, + 1.41, + 1.36, + 1.31, + 1.1500000000000001, + 0.97, + 0.77, + 0.54, + 0.28, + 0.02, + -0.21, + -0.4, + -0.59, + -0.8, + -1.02, + -1.21, + -1.36, + -1.51, + -1.6500000000000001, + -1.77, + -1.86, + -1.86, + -1.85, + -1.85, + -1.9100000000000001, + -1.99, + -2.09, + -2.17, + -2.23, + -2.32, + -2.44, + -2.64, + -2.9, + -3.17, + -3.38, + -3.44, + -3.41, + -3.3200000000000003, + -3.27, + -3.27, + -3.38, + -3.5100000000000002, + -3.63, + -3.72, + -3.74, + -3.7600000000000002, + -3.7600000000000002, + -3.73, + -3.65, + -3.59, + -3.63, + -3.7, + -3.75, + -3.83, + -3.9, + -3.98, + -3.98, + -3.95, + -3.97, + -3.99, + -3.97, + -3.86, + -3.61, + -3.17, + -2.65, + -2.12, + -1.7, + -1.42, + -1.27, + -1.21, + -1.17, + -1.11, + -1.02, + -0.91, + -0.81, + -0.72, + -0.68, + -0.63, + -0.56, + -0.35000000000000003, + -0.03, + 0.4, + 0.8, + 1.09, + 1.33, + 1.55, + 1.75, + 1.9000000000000001, + 1.95, + 1.94, + 2.0, + 2.07, + 2.13, + 2.12, + 2.08, + 2.04, + 2.0100000000000002, + 2.02, + 2.04, + 2.07, + 2.09, + 2.09, + 2.0300000000000002, + 1.96, + 1.94, + 2.02, + 2.15, + 2.2600000000000002, + 2.42, + 2.54, + 2.6, + 2.59, + 2.54, + 2.5300000000000002, + 2.5, + 2.43, + 2.35, + 2.2600000000000002, + 2.17, + 2.1, + 2.08, + 2.07, + 2.06, + 2.04, + 2.06, + 2.08, + 2.11, + 2.17, + 2.18, + 2.18, + 2.15, + 2.16, + 2.18, + 2.23, + 2.32, + 2.42, + 2.46, + 2.46, + 2.41, + 2.32, + 2.17, + 2.0, + 1.8800000000000001, + 1.82, + 1.74, + 1.59, + 1.3800000000000001, + 1.18, + 0.99, + 0.86, + 0.7000000000000001, + 0.54, + 0.34, + 0.13, + -0.07, + -0.28, + -0.5, + -0.67, + -0.85, + -0.9400000000000001, + -1.0, + -1.06, + -1.1500000000000001, + -1.17, + -1.1500000000000001, + -1.05, + -0.9500000000000001, + -0.8200000000000001, + -0.7000000000000001, + -0.56, + -0.43, + -0.34, + -0.23, + -0.11, + 0.01, + 0.15, + 0.25, + 0.39, + 0.5, + 0.64, + 0.8, + 0.9500000000000001, + 1.09, + 1.22, + 1.33, + 1.42, + 1.48, + 1.52, + 1.54 + ], + [ + 1.74, + 1.97, + 1.85, + 1.7, + 1.6, + 1.53, + 1.46, + 1.3800000000000001, + 1.32, + 1.26, + 1.18, + 1.1300000000000001, + 1.06, + 1.0, + 0.9500000000000001, + 0.89, + 0.85, + 0.8, + 0.76, + 0.71, + 0.67, + 0.63, + 0.59, + 0.54, + 0.49, + 0.44, + 0.4, + 0.35000000000000003, + 0.29, + 0.22, + 0.11, + 0.0, + -0.13, + -0.24, + -0.34, + -0.39, + -0.4, + -0.35000000000000003, + -0.28, + -0.19, + -0.09, + 0.03, + 0.15, + 0.26, + 0.35000000000000003, + 0.43, + 0.5, + 0.55, + 0.54, + 0.54, + 0.48, + 0.41000000000000003, + 0.31, + 0.19, + 0.15, + 0.11, + 0.19, + 0.29, + 0.49, + 0.71, + 0.91, + 1.09, + 1.1500000000000001, + 1.19, + 1.17, + 1.12, + 1.1, + 1.08, + 1.1, + 1.1500000000000001, + 1.18, + 1.24, + 1.29, + 1.34, + 1.37, + 1.4000000000000001, + 1.3800000000000001, + 1.36, + 1.25, + 1.11, + 0.9500000000000001, + 0.89, + 0.88, + 0.8300000000000001, + 0.78, + 0.68, + 0.7000000000000001, + 0.74, + 0.87, + 0.9, + 0.86, + 0.8, + 0.72, + 0.62, + 0.48, + 0.34, + 0.17, + -0.01, + -0.29, + -0.66, + -0.96, + -1.33, + -1.37, + -1.4000000000000001, + -1.26, + -1.12, + -1.12, + -1.1, + -1.22, + -1.19, + -1.21, + -1.2, + -1.2, + -1.3, + -1.29, + -1.27, + -1.16, + -0.93, + -0.63, + -0.05, + 0.72, + 1.56, + 2.27, + 2.68, + 2.95, + 3.0500000000000003, + 3.09, + 3.1, + 3.1, + 3.09, + 3.0700000000000003, + 3.0300000000000002, + 2.95, + 2.87, + 2.84, + 2.87, + 3.02, + 3.17, + 3.39, + 3.58, + 3.75, + 3.83, + 3.86, + 3.83, + 3.74, + 3.69, + 3.72, + 3.73, + 3.5500000000000003, + 3.52, + 3.38, + 3.41, + 3.36, + 3.3000000000000003, + 3.3000000000000003, + 2.89, + 2.63, + 2.15, + 1.71, + 1.49, + 1.35, + 1.24, + 1.09, + 0.9400000000000001, + 0.75, + 0.53, + 0.3, + 0.06, + -0.17, + -0.37, + -0.56, + -0.76, + -0.98, + -1.16, + -1.3, + -1.4000000000000001, + -1.53, + -1.6500000000000001, + -1.72, + -1.73, + -1.72, + -1.74, + -1.83, + -1.94, + -2.06, + -2.17, + -2.2800000000000002, + -2.39, + -2.54, + -2.74, + -3.0, + -3.3000000000000003, + -3.5100000000000002, + -3.61, + -3.6, + -3.5100000000000002, + -3.44, + -3.44, + -3.45, + -3.5700000000000003, + -3.68, + -3.74, + -3.79, + -3.79, + -3.8000000000000003, + -3.7600000000000002, + -3.69, + -3.65, + -3.64, + -3.67, + -3.67, + -3.67, + -3.75, + -3.8200000000000003, + -3.84, + -3.86, + -3.87, + -3.88, + -3.86, + -3.72, + -3.45, + -3.04, + -2.5, + -2.04, + -1.6500000000000001, + -1.3900000000000001, + -1.26, + -1.2, + -1.16, + -1.12, + -1.03, + -0.91, + -0.77, + -0.66, + -0.56, + -0.51, + -0.39, + -0.2, + 0.16, + 0.59, + 0.9400000000000001, + 1.23, + 1.47, + 1.69, + 1.87, + 2.0, + 2.07, + 2.06, + 2.04, + 2.11, + 2.15, + 2.14, + 2.1, + 2.06, + 2.02, + 2.0100000000000002, + 2.05, + 2.1, + 2.12, + 2.06, + 2.0, + 1.95, + 1.93, + 2.0, + 2.13, + 2.27, + 2.44, + 2.6, + 2.65, + 2.64, + 2.59, + 2.5500000000000003, + 2.5, + 2.41, + 2.3000000000000003, + 2.2, + 2.11, + 2.04, + 2.02, + 2.0100000000000002, + 1.98, + 1.95, + 1.95, + 1.98, + 2.07, + 2.13, + 2.15, + 2.15, + 2.17, + 2.17, + 2.2, + 2.25, + 2.35, + 2.44, + 2.5100000000000002, + 2.5, + 2.46, + 2.34, + 2.18, + 2.02, + 1.87, + 1.8, + 1.74, + 1.56, + 1.35, + 1.1300000000000001, + 0.92, + 0.72, + 0.56, + 0.36, + 0.16, + -0.02, + -0.2, + -0.39, + -0.61, + -0.8300000000000001, + -1.0, + -1.11, + -1.1300000000000001, + -1.16, + -1.18, + -1.17, + -1.06, + -0.97, + -0.85, + -0.73, + -0.63, + -0.52, + -0.45, + -0.38, + -0.28, + -0.17, + 0.0, + 0.15, + 0.3, + 0.45, + 0.62, + 0.78, + 0.9500000000000001, + 1.1, + 1.23, + 1.34, + 1.43, + 1.5, + 1.54, + 1.56, + 1.56 + ], + [ + 1.6600000000000001, + 1.8800000000000001, + 1.79, + 1.6300000000000001, + 1.54, + 1.48, + 1.42, + 1.35, + 1.29, + 1.19, + 1.11, + 1.02, + 0.9400000000000001, + 0.87, + 0.8200000000000001, + 0.78, + 0.75, + 0.72, + 0.6900000000000001, + 0.66, + 0.61, + 0.5700000000000001, + 0.52, + 0.47000000000000003, + 0.41000000000000003, + 0.35000000000000003, + 0.3, + 0.26, + 0.21, + 0.15, + 0.09, + -0.01, + -0.11, + -0.23, + -0.31, + -0.37, + -0.37, + -0.31, + -0.23, + -0.14, + -0.05, + 0.07, + 0.19, + 0.29, + 0.37, + 0.44, + 0.5, + 0.5, + 0.47000000000000003, + 0.42, + 0.35000000000000003, + 0.27, + 0.15, + 0.11, + 0.05, + 0.11, + 0.19, + 0.36, + 0.59, + 0.79, + 0.99, + 1.07, + 1.09, + 1.03, + 0.9500000000000001, + 0.89, + 0.86, + 0.88, + 0.9400000000000001, + 1.01, + 1.08, + 1.1400000000000001, + 1.2, + 1.26, + 1.32, + 1.36, + 1.4000000000000001, + 1.4000000000000001, + 1.33, + 1.18, + 1.08, + 1.03, + 1.03, + 0.99, + 0.86, + 0.76, + 0.6900000000000001, + 0.75, + 0.76, + 0.73, + 0.67, + 0.59, + 0.51, + 0.4, + 0.24, + 0.07, + -0.1, + -0.31, + -0.54, + -0.73, + -1.0, + -0.99, + -1.0, + -0.84, + -0.66, + -0.6, + -0.63, + -0.84, + -1.04, + -1.29, + -1.42, + -1.52, + -1.6500000000000001, + -1.6500000000000001, + -1.62, + -1.5, + -1.24, + -0.97, + -0.52, + 0.05, + 0.9, + 1.76, + 2.36, + 2.79, + 3.0, + 3.11, + 3.15, + 3.16, + 3.18, + 3.17, + 3.15, + 3.12, + 3.09, + 3.06, + 3.0700000000000003, + 3.19, + 3.33, + 3.52, + 3.7, + 3.94, + 4.13, + 4.22, + 4.25, + 4.16, + 4.08, + 4.05, + 4.07, + 3.89, + 3.67, + 3.34, + 3.13, + 2.87, + 2.77, + 2.64, + 2.63, + 2.7, + 2.5, + 2.31, + 1.9000000000000001, + 1.55, + 1.37, + 1.23, + 1.09, + 0.93, + 0.74, + 0.53, + 0.3, + 0.06, + -0.17, + -0.36, + -0.56, + -0.76, + -0.93, + -1.11, + -1.23, + -1.32, + -1.4000000000000001, + -1.5, + -1.58, + -1.59, + -1.61, + -1.68, + -1.77, + -1.9000000000000001, + -2.04, + -2.18, + -2.32, + -2.47, + -2.62, + -2.83, + -3.09, + -3.39, + -3.63, + -3.73, + -3.74, + -3.71, + -3.64, + -3.56, + -3.5500000000000003, + -3.54, + -3.63, + -3.69, + -3.73, + -3.79, + -3.8000000000000003, + -3.8200000000000003, + -3.79, + -3.74, + -3.74, + -3.72, + -3.67, + -3.6, + -3.66, + -3.72, + -3.75, + -3.7600000000000002, + -3.7800000000000002, + -3.7800000000000002, + -3.69, + -3.54, + -3.21, + -2.7600000000000002, + -2.36, + -1.92, + -1.58, + -1.36, + -1.22, + -1.17, + -1.1500000000000001, + -1.11, + -1.04, + -0.9, + -0.74, + -0.58, + -0.46, + -0.33, + -0.22, + 0.03, + 0.38, + 0.74, + 1.09, + 1.3800000000000001, + 1.62, + 1.81, + 1.99, + 2.12, + 2.17, + 2.18, + 2.17, + 2.18, + 2.21, + 2.19, + 2.15, + 2.1, + 2.06, + 2.0300000000000002, + 2.08, + 2.14, + 2.1, + 2.04, + 1.98, + 1.93, + 1.95, + 2.0100000000000002, + 2.1, + 2.25, + 2.43, + 2.58, + 2.68, + 2.65, + 2.62, + 2.57, + 2.5, + 2.39, + 2.25, + 2.14, + 2.05, + 2.0100000000000002, + 1.99, + 1.96, + 1.92, + 1.8800000000000001, + 1.87, + 1.96, + 2.05, + 2.1, + 2.11, + 2.1, + 2.12, + 2.16, + 2.19, + 2.25, + 2.35, + 2.45, + 2.5100000000000002, + 2.52, + 2.45, + 2.35, + 2.2, + 2.0300000000000002, + 1.8900000000000001, + 1.78, + 1.6600000000000001, + 1.51, + 1.32, + 1.09, + 0.87, + 0.65, + 0.44, + 0.24, + 0.05, + -0.12, + -0.28, + -0.46, + -0.67, + -0.88, + -1.08, + -1.16, + -1.19, + -1.18, + -1.16, + -1.07, + -0.96, + -0.85, + -0.75, + -0.67, + -0.58, + -0.54, + -0.48, + -0.4, + -0.31, + -0.13, + 0.04, + 0.21, + 0.37, + 0.55, + 0.73, + 0.92, + 1.09, + 1.25, + 1.37, + 1.45, + 1.51, + 1.56, + 1.58, + 1.58, + 1.52 + ], + [ + 1.72, + 1.96, + 1.77, + 1.57, + 1.51, + 1.46, + 1.4000000000000001, + 1.33, + 1.25, + 1.1500000000000001, + 1.04, + 0.9400000000000001, + 0.85, + 0.78, + 0.71, + 0.68, + 0.64, + 0.62, + 0.6, + 0.56, + 0.52, + 0.47000000000000003, + 0.43, + 0.37, + 0.31, + 0.25, + 0.19, + 0.14, + 0.11, + 0.08, + 0.05, + 0.02, + -0.07, + -0.14, + -0.22, + -0.26, + -0.26, + -0.22, + -0.14, + -0.07, + 0.03, + 0.11, + 0.22, + 0.3, + 0.37, + 0.44, + 0.48, + 0.47000000000000003, + 0.43, + 0.36, + 0.32, + 0.22, + 0.18, + 0.12, + 0.15, + 0.2, + 0.33, + 0.51, + 0.6900000000000001, + 0.88, + 0.97, + 1.01, + 0.97, + 0.85, + 0.72, + 0.66, + 0.64, + 0.7000000000000001, + 0.8, + 0.91, + 0.99, + 1.03, + 1.09, + 1.16, + 1.25, + 1.32, + 1.3800000000000001, + 1.41, + 1.37, + 1.3, + 1.21, + 1.21, + 1.22, + 1.1400000000000001, + 0.98, + 0.8200000000000001, + 0.75, + 0.6900000000000001, + 0.62, + 0.56, + 0.45, + 0.39, + 0.31, + 0.21, + 0.05, + -0.15, + -0.38, + -0.59, + -0.71, + -0.85, + -0.78, + -0.71, + -0.54, + -0.34, + -0.27, + -0.25, + -0.43, + -0.78, + -1.16, + -1.55, + -1.84, + -2.04, + -2.12, + -2.06, + -1.92, + -1.62, + -1.31, + -0.89, + -0.45, + 0.29, + 1.12, + 1.9000000000000001, + 2.5300000000000002, + 2.87, + 3.09, + 3.18, + 3.23, + 3.2600000000000002, + 3.2800000000000002, + 3.3000000000000003, + 3.29, + 3.3000000000000003, + 3.3000000000000003, + 3.33, + 3.43, + 3.5700000000000003, + 3.7600000000000002, + 3.93, + 4.13, + 4.36, + 4.51, + 4.6000000000000005, + 4.5200000000000005, + 4.45, + 4.38, + 4.36, + 4.2, + 4.0200000000000005, + 3.64, + 3.24, + 2.87, + 2.54, + 2.24, + 2.12, + 2.06, + 2.22, + 2.35, + 2.17, + 1.95, + 1.62, + 1.3800000000000001, + 1.22, + 1.08, + 0.91, + 0.73, + 0.5, + 0.28, + 0.05, + -0.18, + -0.41000000000000003, + -0.6, + -0.78, + -0.9400000000000001, + -1.06, + -1.17, + -1.22, + -1.29, + -1.36, + -1.43, + -1.48, + -1.53, + -1.62, + -1.75, + -1.8800000000000001, + -2.0300000000000002, + -2.18, + -2.34, + -2.5100000000000002, + -2.69, + -2.9, + -3.21, + -3.52, + -3.72, + -3.85, + -3.87, + -3.85, + -3.79, + -3.69, + -3.6, + -3.5700000000000003, + -3.56, + -3.6, + -3.64, + -3.7, + -3.77, + -3.81, + -3.87, + -3.88, + -3.87, + -3.83, + -3.74, + -3.69, + -3.68, + -3.68, + -3.69, + -3.69, + -3.7, + -3.63, + -3.5300000000000002, + -3.27, + -2.9, + -2.52, + -2.14, + -1.82, + -1.53, + -1.31, + -1.21, + -1.1500000000000001, + -1.1400000000000001, + -1.11, + -1.03, + -0.9, + -0.7000000000000001, + -0.51, + -0.31, + -0.16, + 0.04, + 0.27, + 0.58, + 0.9400000000000001, + 1.27, + 1.55, + 1.76, + 1.94, + 2.06, + 2.18, + 2.27, + 2.2600000000000002, + 2.2800000000000002, + 2.3000000000000003, + 2.29, + 2.25, + 2.2, + 2.15, + 2.1, + 2.1, + 2.12, + 2.11, + 2.09, + 2.02, + 1.96, + 1.96, + 1.97, + 2.0, + 2.08, + 2.2, + 2.38, + 2.5300000000000002, + 2.6, + 2.67, + 2.65, + 2.62, + 2.5300000000000002, + 2.4, + 2.24, + 2.1, + 2.04, + 2.0, + 1.99, + 1.95, + 1.8800000000000001, + 1.82, + 1.86, + 1.95, + 2.02, + 2.07, + 2.06, + 2.04, + 2.05, + 2.1, + 2.17, + 2.24, + 2.33, + 2.43, + 2.5100000000000002, + 2.5, + 2.45, + 2.34, + 2.2, + 2.0300000000000002, + 1.87, + 1.72, + 1.6, + 1.45, + 1.27, + 1.06, + 0.8200000000000001, + 0.58, + 0.36, + 0.16, + -0.03, + -0.16, + -0.29, + -0.46, + -0.67, + -0.9, + -1.08, + -1.19, + -1.19, + -1.16, + -1.1, + -1.0, + -0.89, + -0.78, + -0.72, + -0.64, + -0.62, + -0.59, + -0.53, + -0.45, + -0.27, + -0.08, + 0.12, + 0.3, + 0.47000000000000003, + 0.65, + 0.84, + 1.04, + 1.22, + 1.36, + 1.48, + 1.53, + 1.57, + 1.6, + 1.61, + 1.55, + 1.49 + ], + [ + 1.59, + 1.8, + 1.7, + 1.56, + 1.49, + 1.44, + 1.3800000000000001, + 1.3, + 1.22, + 1.12, + 1.01, + 0.9, + 0.8, + 0.72, + 0.65, + 0.59, + 0.55, + 0.51, + 0.49, + 0.45, + 0.4, + 0.35000000000000003, + 0.31, + 0.26, + 0.21, + 0.15, + 0.09, + 0.03, + 0.01, + -0.01, + 0.01, + 0.01, + 0.0, + -0.05, + -0.09, + -0.12, + -0.12, + -0.08, + -0.04, + 0.03, + 0.1, + 0.19, + 0.26, + 0.33, + 0.38, + 0.46, + 0.5, + 0.49, + 0.43, + 0.41000000000000003, + 0.35000000000000003, + 0.31, + 0.25, + 0.26, + 0.29, + 0.37, + 0.5, + 0.62, + 0.78, + 0.87, + 0.91, + 0.88, + 0.79, + 0.68, + 0.55, + 0.46, + 0.49, + 0.53, + 0.68, + 0.8, + 0.87, + 0.91, + 0.96, + 1.04, + 1.1300000000000001, + 1.22, + 1.28, + 1.35, + 1.35, + 1.32, + 1.3, + 1.32, + 1.29, + 1.18, + 1.01, + 0.81, + 0.66, + 0.53, + 0.42, + 0.3, + 0.21, + 0.18, + 0.13, + 0.03, + -0.12, + -0.38, + -0.64, + -0.81, + -0.92, + -0.8, + -0.64, + -0.42, + -0.2, + -0.14, + -0.11, + -0.29, + -0.61, + -0.99, + -1.51, + -1.94, + -2.25, + -2.49, + -2.43, + -2.34, + -1.98, + -1.6600000000000001, + -1.21, + -0.78, + -0.19, + 0.5, + 1.33, + 2.13, + 2.64, + 2.99, + 3.17, + 3.27, + 3.3200000000000003, + 3.36, + 3.4, + 3.42, + 3.46, + 3.49, + 3.54, + 3.63, + 3.7800000000000002, + 3.95, + 4.19, + 4.36, + 4.54, + 4.7, + 4.88, + 4.84, + 4.7700000000000005, + 4.7, + 4.64, + 4.49, + 4.33, + 3.94, + 3.5100000000000002, + 3.06, + 2.64, + 2.27, + 1.94, + 1.73, + 1.74, + 1.81, + 1.98, + 2.0300000000000002, + 1.81, + 1.57, + 1.32, + 1.16, + 0.99, + 0.85, + 0.63, + 0.43, + 0.22, + 0.0, + -0.23, + -0.47000000000000003, + -0.67, + -0.84, + -0.97, + -1.07, + -1.12, + -1.16, + -1.19, + -1.26, + -1.31, + -1.3800000000000001, + -1.45, + -1.58, + -1.73, + -1.9000000000000001, + -2.04, + -2.2, + -2.36, + -2.5300000000000002, + -2.73, + -2.99, + -3.31, + -3.59, + -3.8200000000000003, + -3.9, + -3.93, + -3.89, + -3.8200000000000003, + -3.71, + -3.58, + -3.54, + -3.5100000000000002, + -3.5, + -3.5300000000000002, + -3.6, + -3.68, + -3.7800000000000002, + -3.87, + -3.95, + -3.92, + -3.92, + -3.83, + -3.7600000000000002, + -3.69, + -3.66, + -3.63, + -3.62, + -3.5700000000000003, + -3.49, + -3.29, + -2.98, + -2.63, + -2.27, + -1.99, + -1.74, + -1.49, + -1.32, + -1.19, + -1.17, + -1.1400000000000001, + -1.11, + -1.04, + -0.88, + -0.67, + -0.42, + -0.18, + 0.07, + 0.27, + 0.52, + 0.81, + 1.1300000000000001, + 1.46, + 1.71, + 1.9100000000000001, + 2.0100000000000002, + 2.08, + 2.19, + 2.27, + 2.34, + 2.39, + 2.41, + 2.38, + 2.32, + 2.24, + 2.19, + 2.17, + 2.15, + 2.16, + 2.13, + 2.05, + 1.99, + 1.96, + 1.97, + 1.97, + 1.98, + 2.02, + 2.14, + 2.3000000000000003, + 2.45, + 2.5500000000000003, + 2.64, + 2.7, + 2.66, + 2.58, + 2.42, + 2.24, + 2.12, + 2.0300000000000002, + 2.0100000000000002, + 2.0100000000000002, + 1.96, + 1.86, + 1.84, + 1.85, + 1.8800000000000001, + 1.96, + 1.99, + 1.97, + 1.99, + 2.0, + 2.04, + 2.12, + 2.22, + 2.32, + 2.42, + 2.48, + 2.5, + 2.44, + 2.34, + 2.2, + 2.02, + 1.85, + 1.68, + 1.53, + 1.3900000000000001, + 1.2, + 1.0, + 0.75, + 0.51, + 0.29, + 0.09, + -0.04, + -0.14, + -0.25, + -0.42, + -0.65, + -0.89, + -1.1, + -1.18, + -1.18, + -1.1400000000000001, + -1.06, + -0.96, + -0.84, + -0.8, + -0.73, + -0.71, + -0.68, + -0.64, + -0.58, + -0.41000000000000003, + -0.22, + 0.0, + 0.21, + 0.39, + 0.56, + 0.74, + 0.9400000000000001, + 1.1400000000000001, + 1.31, + 1.45, + 1.54, + 1.6, + 1.62, + 1.6300000000000001, + 1.59, + 1.53, + 1.45 + ], + [ + 1.6600000000000001, + 1.9100000000000001, + 1.7, + 1.52, + 1.46, + 1.42, + 1.35, + 1.27, + 1.19, + 1.09, + 0.99, + 0.88, + 0.78, + 0.6900000000000001, + 0.61, + 0.54, + 0.48, + 0.44, + 0.38, + 0.34, + 0.27, + 0.24, + 0.2, + 0.17, + 0.13, + 0.09, + 0.02, + -0.03, + -0.08, + -0.05, + -0.02, + 0.02, + 0.05, + 0.06, + 0.04, + 0.02, + 0.02, + 0.04, + 0.08, + 0.13, + 0.19, + 0.27, + 0.32, + 0.37, + 0.43, + 0.51, + 0.55, + 0.55, + 0.53, + 0.49, + 0.47000000000000003, + 0.42, + 0.39, + 0.4, + 0.43, + 0.51, + 0.58, + 0.68, + 0.76, + 0.8, + 0.79, + 0.72, + 0.63, + 0.51, + 0.41000000000000003, + 0.37, + 0.36, + 0.47000000000000003, + 0.58, + 0.7000000000000001, + 0.77, + 0.79, + 0.8200000000000001, + 0.9, + 1.0, + 1.08, + 1.1500000000000001, + 1.2, + 1.25, + 1.25, + 1.26, + 1.24, + 1.18, + 1.08, + 0.86, + 0.68, + 0.49, + 0.31, + 0.18, + 0.05, + 0.05, + 0.01, + -0.02, + -0.11, + -0.34, + -0.59, + -0.86, + -1.06, + -1.02, + -0.84, + -0.5700000000000001, + -0.27, + -0.14, + -0.14, + -0.32, + -0.64, + -1.01, + -1.47, + -1.87, + -2.25, + -2.56, + -2.6, + -2.6, + -2.25, + -1.92, + -1.46, + -1.04, + -0.53, + 0.02, + 0.79, + 1.6, + 2.2600000000000002, + 2.8000000000000003, + 3.11, + 3.2800000000000002, + 3.36, + 3.41, + 3.46, + 3.5, + 3.5500000000000003, + 3.61, + 3.69, + 3.7600000000000002, + 3.86, + 4.01, + 4.25, + 4.49, + 4.75, + 4.8500000000000005, + 5.01, + 5.0600000000000005, + 5.08, + 5.04, + 4.96, + 4.83, + 4.65, + 4.3100000000000005, + 3.85, + 3.3000000000000003, + 2.81, + 2.38, + 2.0, + 1.7, + 1.53, + 1.49, + 1.6400000000000001, + 1.71, + 1.76, + 1.68, + 1.43, + 1.18, + 0.98, + 0.84, + 0.64, + 0.48, + 0.29, + 0.11, + -0.08, + -0.3, + -0.51, + -0.73, + -0.89, + -1.0, + -1.07, + -1.1, + -1.12, + -1.1500000000000001, + -1.19, + -1.26, + -1.31, + -1.42, + -1.55, + -1.74, + -1.92, + -2.08, + -2.23, + -2.38, + -2.54, + -2.77, + -3.04, + -3.34, + -3.64, + -3.79, + -3.88, + -3.89, + -3.85, + -3.74, + -3.59, + -3.5, + -3.47, + -3.44, + -3.42, + -3.42, + -3.52, + -3.6, + -3.72, + -3.84, + -3.86, + -3.89, + -3.84, + -3.8200000000000003, + -3.72, + -3.65, + -3.58, + -3.5300000000000002, + -3.5, + -3.44, + -3.3000000000000003, + -3.0700000000000003, + -2.7800000000000002, + -2.42, + -2.12, + -1.93, + -1.73, + -1.52, + -1.34, + -1.26, + -1.2, + -1.19, + -1.1500000000000001, + -1.04, + -0.88, + -0.63, + -0.35000000000000003, + -0.03, + 0.28, + 0.55, + 0.78, + 1.06, + 1.36, + 1.62, + 1.85, + 1.97, + 2.0100000000000002, + 2.08, + 2.19, + 2.32, + 2.43, + 2.52, + 2.5300000000000002, + 2.49, + 2.38, + 2.27, + 2.25, + 2.23, + 2.2600000000000002, + 2.24, + 2.16, + 2.05, + 1.97, + 1.94, + 1.93, + 1.94, + 1.94, + 1.96, + 2.07, + 2.25, + 2.42, + 2.5300000000000002, + 2.62, + 2.7, + 2.72, + 2.6, + 2.46, + 2.29, + 2.13, + 2.06, + 2.02, + 2.0300000000000002, + 2.0, + 1.96, + 1.8900000000000001, + 1.85, + 1.83, + 1.85, + 1.8800000000000001, + 1.9000000000000001, + 1.93, + 1.98, + 2.02, + 2.07, + 2.19, + 2.3000000000000003, + 2.4, + 2.48, + 2.48, + 2.45, + 2.34, + 2.21, + 2.02, + 1.82, + 1.6400000000000001, + 1.48, + 1.3, + 1.1300000000000001, + 0.89, + 0.65, + 0.42, + 0.21, + 0.07, + -0.02, + -0.1, + -0.19, + -0.35000000000000003, + -0.62, + -0.9, + -1.11, + -1.23, + -1.21, + -1.1400000000000001, + -1.06, + -0.9500000000000001, + -0.9, + -0.84, + -0.81, + -0.79, + -0.75, + -0.71, + -0.5700000000000001, + -0.38, + -0.14, + 0.09, + 0.29, + 0.46, + 0.63, + 0.81, + 1.01, + 1.2, + 1.3800000000000001, + 1.5, + 1.6, + 1.6400000000000001, + 1.67, + 1.6300000000000001, + 1.58, + 1.5, + 1.42 + ], + [ + 1.51, + 1.71, + 1.61, + 1.49, + 1.42, + 1.37, + 1.31, + 1.24, + 1.16, + 1.06, + 0.96, + 0.86, + 0.76, + 0.67, + 0.59, + 0.52, + 0.46, + 0.39, + 0.34, + 0.27, + 0.21, + 0.14, + 0.13, + 0.11, + 0.09, + 0.05, + 0.0, + -0.07, + -0.07, + -0.07, + -0.01, + 0.05, + 0.1, + 0.14, + 0.13, + 0.12, + 0.12, + 0.13, + 0.16, + 0.19, + 0.25, + 0.31, + 0.37, + 0.4, + 0.46, + 0.55, + 0.63, + 0.63, + 0.63, + 0.61, + 0.6, + 0.53, + 0.5, + 0.49, + 0.52, + 0.56, + 0.61, + 0.65, + 0.6900000000000001, + 0.7000000000000001, + 0.64, + 0.56, + 0.48, + 0.39, + 0.34, + 0.31, + 0.35000000000000003, + 0.41000000000000003, + 0.53, + 0.64, + 0.67, + 0.66, + 0.71, + 0.78, + 0.87, + 0.9500000000000001, + 1.01, + 1.06, + 1.09, + 1.11, + 1.08, + 1.03, + 0.9400000000000001, + 0.81, + 0.67, + 0.5, + 0.34, + 0.17, + 0.01, + 0.0, + -0.05, + -0.04, + -0.12, + -0.31, + -0.53, + -0.8300000000000001, + -1.12, + -1.21, + -1.19, + -0.98, + -0.63, + -0.39, + -0.28, + -0.37, + -0.68, + -1.06, + -1.48, + -1.86, + -2.15, + -2.42, + -2.52, + -2.6, + -2.36, + -2.08, + -1.6300000000000001, + -1.2, + -0.76, + -0.29, + 0.42, + 1.11, + 1.85, + 2.49, + 2.94, + 3.25, + 3.38, + 3.45, + 3.5, + 3.5500000000000003, + 3.61, + 3.66, + 3.7600000000000002, + 3.87, + 3.95, + 4.03, + 4.16, + 4.4, + 4.73, + 4.91, + 5.09, + 5.16, + 5.25, + 5.3, + 5.3100000000000005, + 5.24, + 5.09, + 4.83, + 4.4, + 3.86, + 3.2, + 2.64, + 2.21, + 1.84, + 1.6, + 1.45, + 1.52, + 1.55, + 1.6300000000000001, + 1.6, + 1.5, + 1.29, + 1.02, + 0.76, + 0.5700000000000001, + 0.4, + 0.25, + 0.1, + -0.04, + -0.18, + -0.36, + -0.56, + -0.74, + -0.9, + -1.0, + -1.06, + -1.09, + -1.1, + -1.1400000000000001, + -1.2, + -1.24, + -1.29, + -1.37, + -1.54, + -1.73, + -1.9100000000000001, + -2.11, + -2.2600000000000002, + -2.41, + -2.58, + -2.7800000000000002, + -3.08, + -3.37, + -3.56, + -3.71, + -3.77, + -3.7800000000000002, + -3.73, + -3.6, + -3.48, + -3.42, + -3.41, + -3.4, + -3.37, + -3.42, + -3.47, + -3.5700000000000003, + -3.65, + -3.71, + -3.74, + -3.72, + -3.7, + -3.67, + -3.62, + -3.54, + -3.45, + -3.39, + -3.36, + -3.2800000000000002, + -3.12, + -2.9, + -2.62, + -2.33, + -2.1, + -1.9100000000000001, + -1.75, + -1.59, + -1.45, + -1.34, + -1.3, + -1.26, + -1.17, + -1.06, + -0.84, + -0.61, + -0.28, + 0.09, + 0.44, + 0.78, + 1.04, + 1.3, + 1.55, + 1.78, + 1.93, + 2.0, + 2.04, + 2.11, + 2.21, + 2.37, + 2.52, + 2.6, + 2.68, + 2.57, + 2.45, + 2.39, + 2.34, + 2.39, + 2.41, + 2.34, + 2.23, + 2.08, + 1.96, + 1.9000000000000001, + 1.8800000000000001, + 1.8900000000000001, + 1.8900000000000001, + 1.95, + 2.07, + 2.25, + 2.44, + 2.56, + 2.66, + 2.73, + 2.72, + 2.65, + 2.5100000000000002, + 2.33, + 2.19, + 2.08, + 2.06, + 2.09, + 2.08, + 2.07, + 1.98, + 1.87, + 1.82, + 1.8, + 1.83, + 1.86, + 1.92, + 1.99, + 2.0300000000000002, + 2.09, + 2.17, + 2.2800000000000002, + 2.39, + 2.46, + 2.49, + 2.44, + 2.36, + 2.2, + 2.02, + 1.8, + 1.59, + 1.4000000000000001, + 1.22, + 0.99, + 0.77, + 0.54, + 0.32, + 0.17, + 0.06, + -0.01, + -0.06, + -0.14, + -0.32, + -0.58, + -0.9, + -1.17, + -1.27, + -1.29, + -1.22, + -1.11, + -1.03, + -0.96, + -0.92, + -0.89, + -0.85, + -0.81, + -0.7000000000000001, + -0.55, + -0.33, + -0.07, + 0.16, + 0.35000000000000003, + 0.52, + 0.68, + 0.86, + 1.05, + 1.24, + 1.4000000000000001, + 1.54, + 1.61, + 1.67, + 1.6500000000000001, + 1.62, + 1.54, + 1.47, + 1.45 + ], + [ + 1.59, + 1.81, + 1.6, + 1.44, + 1.37, + 1.32, + 1.26, + 1.19, + 1.11, + 1.03, + 0.9400000000000001, + 0.85, + 0.75, + 0.65, + 0.5700000000000001, + 0.5, + 0.44, + 0.37, + 0.31, + 0.23, + 0.15, + 0.11, + 0.08, + 0.07, + 0.06, + 0.03, + -0.01, + -0.04, + -0.06, + -0.02, + 0.03, + 0.08, + 0.14, + 0.16, + 0.17, + 0.16, + 0.15, + 0.16, + 0.17, + 0.21, + 0.26, + 0.32, + 0.36, + 0.41000000000000003, + 0.49, + 0.59, + 0.67, + 0.72, + 0.72, + 0.73, + 0.66, + 0.59, + 0.55, + 0.54, + 0.55, + 0.56, + 0.58, + 0.6, + 0.61, + 0.59, + 0.55, + 0.47000000000000003, + 0.4, + 0.37, + 0.31, + 0.32, + 0.34, + 0.41000000000000003, + 0.49, + 0.56, + 0.6, + 0.6, + 0.6, + 0.67, + 0.75, + 0.8, + 0.86, + 0.88, + 0.91, + 0.9, + 0.84, + 0.76, + 0.64, + 0.53, + 0.43, + 0.32, + 0.21, + 0.1, + 0.04, + 0.0, + 0.01, + -0.02, + -0.23, + -0.46, + -0.78, + -1.09, + -1.29, + -1.42, + -1.37, + -1.19, + -0.9400000000000001, + -0.66, + -0.55, + -0.6900000000000001, + -0.9500000000000001, + -1.36, + -1.76, + -2.02, + -2.27, + -2.34, + -2.39, + -2.31, + -2.14, + -1.74, + -1.31, + -0.9, + -0.47000000000000003, + 0.19, + 0.87, + 1.58, + 2.23, + 2.7600000000000002, + 3.16, + 3.38, + 3.49, + 3.5500000000000003, + 3.59, + 3.64, + 3.69, + 3.77, + 3.92, + 4.07, + 4.13, + 4.16, + 4.2700000000000005, + 4.46, + 4.7700000000000005, + 5.08, + 5.17, + 5.2700000000000005, + 5.4, + 5.53, + 5.5600000000000005, + 5.55, + 5.39, + 5.13, + 4.69, + 4.05, + 3.39, + 2.74, + 2.24, + 1.9100000000000001, + 1.67, + 1.6500000000000001, + 1.6500000000000001, + 1.68, + 1.6400000000000001, + 1.55, + 1.42, + 1.1300000000000001, + 0.8200000000000001, + 0.53, + 0.28, + 0.13, + -0.01, + -0.11, + -0.2, + -0.32, + -0.45, + -0.61, + -0.76, + -0.89, + -0.99, + -1.04, + -1.07, + -1.1, + -1.1500000000000001, + -1.21, + -1.23, + -1.25, + -1.35, + -1.49, + -1.6600000000000001, + -1.87, + -2.05, + -2.2800000000000002, + -2.41, + -2.58, + -2.82, + -3.12, + -3.34, + -3.5, + -3.58, + -3.64, + -3.66, + -3.61, + -3.52, + -3.42, + -3.39, + -3.44, + -3.46, + -3.46, + -3.46, + -3.54, + -3.58, + -3.63, + -3.62, + -3.62, + -3.56, + -3.5700000000000003, + -3.5500000000000003, + -3.48, + -3.4, + -3.31, + -3.24, + -3.18, + -3.11, + -2.98, + -2.7600000000000002, + -2.52, + -2.29, + -2.08, + -1.93, + -1.8, + -1.67, + -1.55, + -1.45, + -1.3800000000000001, + -1.3, + -1.22, + -1.02, + -0.8200000000000001, + -0.56, + -0.25, + 0.15, + 0.58, + 0.93, + 1.24, + 1.48, + 1.7, + 1.86, + 1.97, + 2.05, + 2.09, + 2.14, + 2.25, + 2.35, + 2.48, + 2.65, + 2.68, + 2.69, + 2.61, + 2.52, + 2.5500000000000003, + 2.58, + 2.5500000000000003, + 2.47, + 2.32, + 2.12, + 2.0, + 1.8900000000000001, + 1.87, + 1.8800000000000001, + 1.93, + 1.99, + 2.12, + 2.34, + 2.52, + 2.63, + 2.71, + 2.75, + 2.7600000000000002, + 2.69, + 2.58, + 2.4, + 2.25, + 2.14, + 2.08, + 2.1, + 2.15, + 2.1, + 2.0300000000000002, + 1.9100000000000001, + 1.82, + 1.82, + 1.85, + 1.8900000000000001, + 1.96, + 2.0300000000000002, + 2.08, + 2.12, + 2.18, + 2.27, + 2.38, + 2.46, + 2.47, + 2.45, + 2.35, + 2.22, + 1.99, + 1.77, + 1.53, + 1.32, + 1.07, + 0.84, + 0.62, + 0.41000000000000003, + 0.24, + 0.11, + 0.03, + -0.01, + -0.06, + -0.15, + -0.3, + -0.59, + -0.9, + -1.18, + -1.37, + -1.37, + -1.33, + -1.19, + -1.08, + -1.02, + -0.98, + -0.9500000000000001, + -0.9, + -0.81, + -0.7000000000000001, + -0.5, + -0.26, + -0.01, + 0.23, + 0.42, + 0.5700000000000001, + 0.73, + 0.9, + 1.07, + 1.25, + 1.41, + 1.52, + 1.62, + 1.6400000000000001, + 1.6300000000000001, + 1.58, + 1.5, + 1.47, + 1.46 + ], + [ + 1.44, + 1.61, + 1.52, + 1.3900000000000001, + 1.32, + 1.26, + 1.2, + 1.1300000000000001, + 1.06, + 0.99, + 0.91, + 0.8300000000000001, + 0.73, + 0.63, + 0.54, + 0.47000000000000003, + 0.4, + 0.34, + 0.27, + 0.21, + 0.13, + 0.07, + 0.05, + 0.03, + 0.02, + 0.0, + -0.01, + -0.01, + 0.02, + 0.05, + 0.09, + 0.12, + 0.15, + 0.16, + 0.16, + 0.13, + 0.12, + 0.14, + 0.16, + 0.2, + 0.24, + 0.28, + 0.33, + 0.4, + 0.49, + 0.62, + 0.74, + 0.76, + 0.79, + 0.74, + 0.68, + 0.61, + 0.56, + 0.55, + 0.54, + 0.54, + 0.54, + 0.55, + 0.56, + 0.55, + 0.52, + 0.49, + 0.48, + 0.43, + 0.41000000000000003, + 0.36, + 0.39, + 0.41000000000000003, + 0.47000000000000003, + 0.53, + 0.55, + 0.54, + 0.5700000000000001, + 0.59, + 0.61, + 0.64, + 0.63, + 0.64, + 0.65, + 0.65, + 0.61, + 0.49, + 0.38, + 0.29, + 0.2, + 0.14, + 0.09, + 0.06, + 0.05, + 0.06, + 0.09, + -0.11, + -0.32, + -0.68, + -1.04, + -1.31, + -1.52, + -1.6, + -1.61, + -1.5, + -1.31, + -1.07, + -0.89, + -0.88, + -1.08, + -1.3900000000000001, + -1.72, + -2.02, + -2.13, + -2.22, + -2.17, + -2.05, + -1.8, + -1.43, + -1.04, + -0.62, + -0.02, + 0.66, + 1.42, + 2.14, + 2.65, + 3.1, + 3.37, + 3.52, + 3.6, + 3.64, + 3.68, + 3.73, + 3.79, + 3.89, + 4.0600000000000005, + 4.23, + 4.32, + 4.28, + 4.32, + 4.5200000000000005, + 4.78, + 5.0200000000000005, + 5.24, + 5.37, + 5.54, + 5.66, + 5.8, + 5.7700000000000005, + 5.71, + 5.44, + 5.05, + 4.45, + 3.72, + 3.0700000000000003, + 2.5300000000000002, + 2.15, + 1.97, + 1.9000000000000001, + 1.9100000000000001, + 1.86, + 1.67, + 1.51, + 1.23, + 0.97, + 0.59, + 0.25, + 0.03, + -0.16, + -0.25, + -0.33, + -0.41000000000000003, + -0.5, + -0.62, + -0.72, + -0.8300000000000001, + -0.92, + -0.98, + -1.03, + -1.06, + -1.1, + -1.1500000000000001, + -1.2, + -1.23, + -1.24, + -1.28, + -1.42, + -1.57, + -1.74, + -1.93, + -2.14, + -2.34, + -2.54, + -2.8000000000000003, + -3.06, + -3.29, + -3.38, + -3.43, + -3.48, + -3.52, + -3.52, + -3.46, + -3.42, + -3.46, + -3.52, + -3.58, + -3.61, + -3.64, + -3.68, + -3.68, + -3.67, + -3.62, + -3.54, + -3.5, + -3.48, + -3.42, + -3.35, + -3.27, + -3.16, + -3.08, + -2.99, + -2.92, + -2.83, + -2.65, + -2.43, + -2.24, + -2.05, + -1.9000000000000001, + -1.81, + -1.72, + -1.62, + -1.54, + -1.42, + -1.32, + -1.17, + -1.0, + -0.79, + -0.56, + -0.22, + 0.18, + 0.64, + 1.06, + 1.3800000000000001, + 1.6300000000000001, + 1.78, + 1.9000000000000001, + 2.02, + 2.11, + 2.17, + 2.23, + 2.25, + 2.29, + 2.37, + 2.5300000000000002, + 2.67, + 2.72, + 2.7600000000000002, + 2.73, + 2.7600000000000002, + 2.72, + 2.73, + 2.59, + 2.43, + 2.27, + 2.1, + 2.02, + 1.96, + 1.97, + 2.05, + 2.15, + 2.29, + 2.45, + 2.6, + 2.7, + 2.75, + 2.8000000000000003, + 2.81, + 2.75, + 2.62, + 2.46, + 2.3000000000000003, + 2.15, + 2.1, + 2.08, + 2.12, + 2.12, + 2.06, + 1.92, + 1.86, + 1.86, + 1.8800000000000001, + 1.92, + 1.98, + 2.06, + 2.1, + 2.12, + 2.17, + 2.2600000000000002, + 2.36, + 2.43, + 2.47, + 2.44, + 2.37, + 2.18, + 1.96, + 1.71, + 1.45, + 1.18, + 0.89, + 0.65, + 0.44, + 0.29, + 0.15, + 0.06, + 0.01, + -0.04, + -0.1, + -0.19, + -0.34, + -0.5700000000000001, + -0.91, + -1.22, + -1.4000000000000001, + -1.48, + -1.37, + -1.25, + -1.12, + -1.04, + -1.02, + -1.0, + -0.92, + -0.8200000000000001, + -0.65, + -0.44, + -0.19, + 0.07, + 0.29, + 0.47000000000000003, + 0.63, + 0.78, + 0.9400000000000001, + 1.09, + 1.25, + 1.3900000000000001, + 1.51, + 1.58, + 1.6400000000000001, + 1.6, + 1.55, + 1.5, + 1.46, + 1.47 + ], + [ + 1.5, + 1.67, + 1.48, + 1.32, + 1.25, + 1.19, + 1.12, + 1.06, + 1.0, + 0.9400000000000001, + 0.87, + 0.8, + 0.71, + 0.6, + 0.51, + 0.42, + 0.35000000000000003, + 0.29, + 0.23, + 0.16, + 0.1, + 0.05, + 0.02, + 0.01, + -0.01, + 0.0, + 0.0, + 0.04, + 0.09, + 0.13, + 0.15, + 0.15, + 0.14, + 0.13, + 0.11, + 0.1, + 0.1, + 0.11, + 0.16, + 0.19, + 0.23, + 0.25, + 0.31, + 0.38, + 0.52, + 0.66, + 0.75, + 0.81, + 0.77, + 0.73, + 0.66, + 0.59, + 0.5700000000000001, + 0.55, + 0.54, + 0.53, + 0.53, + 0.53, + 0.54, + 0.56, + 0.5700000000000001, + 0.61, + 0.63, + 0.61, + 0.56, + 0.5, + 0.45, + 0.46, + 0.47000000000000003, + 0.52, + 0.55, + 0.56, + 0.5700000000000001, + 0.53, + 0.48, + 0.42, + 0.34, + 0.33, + 0.34, + 0.37, + 0.37, + 0.3, + 0.21, + 0.11, + 0.03, + -0.04, + -0.02, + -0.01, + 0.02, + 0.06, + -0.07, + -0.2, + -0.56, + -0.93, + -1.26, + -1.57, + -1.72, + -1.8, + -1.83, + -1.85, + -1.72, + -1.49, + -1.25, + -1.03, + -1.05, + -1.23, + -1.5, + -1.79, + -1.99, + -2.05, + -2.0, + -1.84, + -1.56, + -1.21, + -0.8, + -0.27, + 0.37, + 1.18, + 2.02, + 2.58, + 3.0500000000000003, + 3.36, + 3.56, + 3.66, + 3.69, + 3.73, + 3.7600000000000002, + 3.81, + 3.87, + 3.98, + 4.2, + 4.4, + 4.41, + 4.38, + 4.42, + 4.53, + 4.74, + 4.95, + 5.18, + 5.45, + 5.58, + 5.76, + 5.8500000000000005, + 5.94, + 5.8500000000000005, + 5.71, + 5.32, + 4.8, + 4.13, + 3.46, + 2.92, + 2.5300000000000002, + 2.29, + 2.22, + 2.16, + 1.9000000000000001, + 1.6500000000000001, + 1.31, + 1.04, + 0.66, + 0.31, + 0.02, + -0.25, + -0.37, + -0.48, + -0.55, + -0.64, + -0.73, + -0.8300000000000001, + -0.9, + -0.9500000000000001, + -1.0, + -1.02, + -1.04, + -1.06, + -1.09, + -1.1400000000000001, + -1.2, + -1.21, + -1.22, + -1.26, + -1.34, + -1.46, + -1.58, + -1.79, + -2.02, + -2.25, + -2.45, + -2.72, + -2.99, + -3.15, + -3.22, + -3.2600000000000002, + -3.31, + -3.38, + -3.45, + -3.45, + -3.47, + -3.5300000000000002, + -3.64, + -3.72, + -3.7800000000000002, + -3.83, + -3.8200000000000003, + -3.81, + -3.72, + -3.64, + -3.52, + -3.43, + -3.36, + -3.29, + -3.22, + -3.14, + -3.0500000000000003, + -2.94, + -2.85, + -2.77, + -2.66, + -2.5, + -2.32, + -2.15, + -1.99, + -1.87, + -1.78, + -1.73, + -1.67, + -1.56, + -1.45, + -1.31, + -1.16, + -0.99, + -0.8, + -0.5700000000000001, + -0.26, + 0.22, + 0.74, + 1.18, + 1.55, + 1.76, + 1.85, + 1.96, + 2.1, + 2.2, + 2.29, + 2.35, + 2.27, + 2.22, + 2.3000000000000003, + 2.4, + 2.57, + 2.72, + 2.79, + 2.86, + 2.82, + 2.81, + 2.77, + 2.71, + 2.59, + 2.46, + 2.35, + 2.25, + 2.2, + 2.17, + 2.22, + 2.35, + 2.48, + 2.59, + 2.69, + 2.73, + 2.8000000000000003, + 2.89, + 2.92, + 2.81, + 2.67, + 2.52, + 2.35, + 2.22, + 2.09, + 2.11, + 2.13, + 2.16, + 2.12, + 2.0300000000000002, + 1.93, + 1.9000000000000001, + 1.9000000000000001, + 1.92, + 1.98, + 2.04, + 2.07, + 2.1, + 2.15, + 2.23, + 2.33, + 2.42, + 2.46, + 2.47, + 2.35, + 2.19, + 1.92, + 1.6500000000000001, + 1.36, + 1.03, + 0.72, + 0.42, + 0.27, + 0.17, + 0.09, + 0.03, + -0.02, + -0.08, + -0.15, + -0.24, + -0.38, + -0.61, + -0.9, + -1.22, + -1.47, + -1.49, + -1.43, + -1.26, + -1.1, + -1.06, + -1.04, + -1.0, + -0.93, + -0.79, + -0.6, + -0.36, + -0.1, + 0.14, + 0.35000000000000003, + 0.52, + 0.68, + 0.8300000000000001, + 0.9500000000000001, + 1.08, + 1.23, + 1.37, + 1.47, + 1.55, + 1.58, + 1.58, + 1.54, + 1.49, + 1.48, + 1.49 + ], + [ + 1.37, + 1.49, + 1.3900000000000001, + 1.26, + 1.17, + 1.1, + 1.03, + 0.97, + 0.91, + 0.86, + 0.81, + 0.74, + 0.65, + 0.56, + 0.46, + 0.37, + 0.29, + 0.22, + 0.17, + 0.11, + 0.08, + 0.04, + 0.03, + 0.0, + 0.01, + 0.0, + 0.04, + 0.1, + 0.15, + 0.19, + 0.17, + 0.13, + 0.1, + 0.07, + 0.07, + 0.08, + 0.1, + 0.15, + 0.19, + 0.22, + 0.23, + 0.25, + 0.29, + 0.41000000000000003, + 0.54, + 0.66, + 0.77, + 0.77, + 0.75, + 0.68, + 0.61, + 0.58, + 0.58, + 0.5700000000000001, + 0.55, + 0.54, + 0.53, + 0.54, + 0.5700000000000001, + 0.6, + 0.67, + 0.74, + 0.81, + 0.8300000000000001, + 0.73, + 0.64, + 0.56, + 0.52, + 0.5, + 0.51, + 0.53, + 0.58, + 0.52, + 0.46, + 0.32, + 0.15, + 0.08, + 0.01, + 0.06, + 0.15, + 0.19, + 0.19, + 0.12, + 0.01, + -0.09, + -0.12, + -0.14, + -0.07, + -0.05, + -0.13, + -0.24, + -0.5, + -0.81, + -1.1500000000000001, + -1.51, + -1.74, + -1.92, + -1.98, + -2.06, + -2.11, + -2.14, + -1.94, + -1.58, + -1.3, + -1.07, + -1.09, + -1.31, + -1.55, + -1.83, + -1.96, + -1.92, + -1.75, + -1.43, + -1.06, + -0.59, + -0.03, + 0.78, + 1.69, + 2.37, + 2.97, + 3.3200000000000003, + 3.58, + 3.71, + 3.75, + 3.7800000000000002, + 3.81, + 3.85, + 3.89, + 3.96, + 4.09, + 4.29, + 4.48, + 4.5600000000000005, + 4.5200000000000005, + 4.53, + 4.6000000000000005, + 4.7, + 4.88, + 5.09, + 5.3100000000000005, + 5.55, + 5.69, + 5.8500000000000005, + 5.9, + 5.92, + 5.74, + 5.49, + 5.0, + 4.44, + 3.83, + 3.31, + 2.91, + 2.64, + 2.46, + 2.19, + 1.9100000000000001, + 1.44, + 1.06, + 0.7000000000000001, + 0.34, + 0.06, + -0.23, + -0.41000000000000003, + -0.59, + -0.67, + -0.76, + -0.85, + -0.97, + -1.04, + -1.1, + -1.11, + -1.09, + -1.08, + -1.06, + -1.07, + -1.08, + -1.12, + -1.16, + -1.18, + -1.2, + -1.23, + -1.29, + -1.36, + -1.48, + -1.6400000000000001, + -1.9000000000000001, + -2.18, + -2.39, + -2.64, + -2.84, + -3.0, + -3.0500000000000003, + -3.06, + -3.14, + -3.29, + -3.39, + -3.45, + -3.52, + -3.65, + -3.7800000000000002, + -3.85, + -3.92, + -3.93, + -3.94, + -3.85, + -3.7600000000000002, + -3.61, + -3.46, + -3.36, + -3.2600000000000002, + -3.18, + -3.1, + -3.04, + -2.98, + -2.88, + -2.77, + -2.65, + -2.5100000000000002, + -2.36, + -2.21, + -2.06, + -1.94, + -1.83, + -1.76, + -1.71, + -1.6600000000000001, + -1.59, + -1.46, + -1.32, + -1.16, + -1.0, + -0.8300000000000001, + -0.64, + -0.23, + 0.28, + 0.8200000000000001, + 1.34, + 1.68, + 1.8800000000000001, + 1.99, + 2.07, + 2.18, + 2.2800000000000002, + 2.36, + 2.39, + 2.36, + 2.2600000000000002, + 2.25, + 2.36, + 2.46, + 2.65, + 2.7800000000000002, + 2.84, + 2.82, + 2.85, + 2.83, + 2.84, + 2.7800000000000002, + 2.71, + 2.64, + 2.57, + 2.5, + 2.45, + 2.44, + 2.5300000000000002, + 2.64, + 2.74, + 2.74, + 2.77, + 2.89, + 3.0300000000000002, + 3.0100000000000002, + 2.91, + 2.7600000000000002, + 2.61, + 2.46, + 2.31, + 2.2, + 2.14, + 2.2, + 2.27, + 2.24, + 2.17, + 2.05, + 1.94, + 1.9100000000000001, + 1.9000000000000001, + 1.94, + 1.99, + 2.0300000000000002, + 2.06, + 2.11, + 2.21, + 2.31, + 2.41, + 2.47, + 2.44, + 2.36, + 2.12, + 1.8800000000000001, + 1.58, + 1.3, + 0.9400000000000001, + 0.55, + 0.3, + 0.14, + 0.08, + 0.05, + 0.02, + -0.02, + -0.08, + -0.19, + -0.3, + -0.43, + -0.62, + -0.92, + -1.23, + -1.43, + -1.55, + -1.41, + -1.27, + -1.1500000000000001, + -1.07, + -1.04, + -1.0, + -0.91, + -0.77, + -0.54, + -0.28, + -0.01, + 0.23, + 0.42, + 0.58, + 0.73, + 0.86, + 0.97, + 1.07, + 1.19, + 1.33, + 1.45, + 1.52, + 1.55, + 1.55, + 1.53, + 1.5, + 1.49, + 1.49 + ], + [ + 1.37, + 1.49, + 1.33, + 1.18, + 1.09, + 1.01, + 0.93, + 0.86, + 0.8, + 0.76, + 0.71, + 0.66, + 0.58, + 0.5, + 0.4, + 0.3, + 0.22, + 0.16, + 0.1, + 0.08, + 0.06, + 0.06, + 0.05, + 0.05, + 0.05, + 0.07, + 0.1, + 0.16, + 0.2, + 0.2, + 0.15, + 0.09, + 0.03, + 0.02, + 0.05, + 0.08, + 0.15, + 0.21, + 0.25, + 0.28, + 0.27, + 0.27, + 0.34, + 0.44, + 0.55, + 0.65, + 0.7000000000000001, + 0.7000000000000001, + 0.66, + 0.61, + 0.58, + 0.58, + 0.58, + 0.59, + 0.5700000000000001, + 0.56, + 0.56, + 0.59, + 0.63, + 0.68, + 0.76, + 0.88, + 0.98, + 0.97, + 0.92, + 0.77, + 0.66, + 0.5700000000000001, + 0.52, + 0.47000000000000003, + 0.46, + 0.44, + 0.41000000000000003, + 0.28, + 0.11, + -0.04, + -0.17, + -0.18, + -0.11, + -0.01, + 0.1, + 0.12, + 0.08, + 0.0, + -0.09, + -0.15, + -0.12, + -0.09, + -0.15, + -0.28, + -0.51, + -0.79, + -1.04, + -1.33, + -1.62, + -1.8900000000000001, + -2.0, + -2.1, + -2.19, + -2.38, + -2.42, + -2.38, + -2.08, + -1.67, + -1.3900000000000001, + -1.21, + -1.27, + -1.52, + -1.75, + -1.92, + -1.95, + -1.68, + -1.36, + -0.9400000000000001, + -0.47000000000000003, + 0.29, + 1.17, + 1.99, + 2.72, + 3.17, + 3.5100000000000002, + 3.7, + 3.8000000000000003, + 3.84, + 3.86, + 3.89, + 3.92, + 3.96, + 4.05, + 4.17, + 4.3500000000000005, + 4.55, + 4.63, + 4.63, + 4.67, + 4.72, + 4.75, + 4.79, + 4.97, + 5.15, + 5.36, + 5.58, + 5.71, + 5.82, + 5.79, + 5.72, + 5.44, + 5.09, + 4.58, + 4.12, + 3.66, + 3.25, + 2.91, + 2.52, + 2.19, + 1.68, + 1.19, + 0.76, + 0.35000000000000003, + 0.11, + -0.16, + -0.35000000000000003, + -0.55, + -0.6900000000000001, + -0.8300000000000001, + -0.92, + -1.05, + -1.1300000000000001, + -1.2, + -1.22, + -1.21, + -1.18, + -1.12, + -1.09, + -1.07, + -1.08, + -1.09, + -1.12, + -1.1500000000000001, + -1.17, + -1.21, + -1.26, + -1.31, + -1.3800000000000001, + -1.56, + -1.79, + -2.06, + -2.3000000000000003, + -2.52, + -2.69, + -2.8000000000000003, + -2.86, + -2.92, + -3.0300000000000002, + -3.19, + -3.34, + -3.45, + -3.59, + -3.75, + -3.87, + -3.97, + -3.98, + -4.01, + -3.94, + -3.88, + -3.72, + -3.5700000000000003, + -3.42, + -3.3000000000000003, + -3.19, + -3.09, + -3.0, + -2.94, + -2.88, + -2.84, + -2.7, + -2.5300000000000002, + -2.38, + -2.24, + -2.11, + -2.0100000000000002, + -1.9000000000000001, + -1.8, + -1.73, + -1.69, + -1.6500000000000001, + -1.58, + -1.49, + -1.33, + -1.18, + -1.01, + -0.86, + -0.59, + -0.23, + 0.34, + 0.9400000000000001, + 1.42, + 1.82, + 2.02, + 2.13, + 2.22, + 2.29, + 2.35, + 2.38, + 2.41, + 2.4, + 2.34, + 2.34, + 2.38, + 2.48, + 2.62, + 2.7800000000000002, + 2.87, + 2.91, + 2.94, + 3.0100000000000002, + 3.0700000000000003, + 3.0300000000000002, + 3.0, + 2.93, + 2.9, + 2.82, + 2.72, + 2.69, + 2.7, + 2.7800000000000002, + 2.82, + 2.82, + 2.83, + 2.93, + 3.09, + 3.16, + 2.98, + 2.85, + 2.7, + 2.57, + 2.41, + 2.2800000000000002, + 2.25, + 2.29, + 2.34, + 2.37, + 2.27, + 2.15, + 2.02, + 1.9000000000000001, + 1.8900000000000001, + 1.9100000000000001, + 1.96, + 1.99, + 2.0300000000000002, + 2.1, + 2.19, + 2.3000000000000003, + 2.41, + 2.43, + 2.42, + 2.27, + 2.06, + 1.78, + 1.48, + 1.18, + 0.85, + 0.49, + 0.18, + 0.07, + 0.04, + 0.03, + 0.03, + 0.0, + -0.07, + -0.18, + -0.33, + -0.48, + -0.66, + -0.9, + -1.17, + -1.41, + -1.43, + -1.3900000000000001, + -1.26, + -1.1500000000000001, + -1.08, + -1.03, + -0.97, + -0.9, + -0.72, + -0.47000000000000003, + -0.19, + 0.1, + 0.32, + 0.48, + 0.63, + 0.78, + 0.91, + 0.98, + 1.08, + 1.18, + 1.3, + 1.43, + 1.51, + 1.54, + 1.55, + 1.54, + 1.52, + 1.5, + 1.48 + ], + [ + 1.24, + 1.33, + 1.23, + 1.09, + 0.99, + 0.9, + 0.8200000000000001, + 0.75, + 0.68, + 0.63, + 0.59, + 0.54, + 0.49, + 0.41000000000000003, + 0.32, + 0.23, + 0.15, + 0.08, + 0.06, + 0.05, + 0.08, + 0.1, + 0.12, + 0.14, + 0.15, + 0.16, + 0.2, + 0.24, + 0.26, + 0.21, + 0.16, + 0.07, + 0.03, + 0.01, + 0.04, + 0.13, + 0.2, + 0.28, + 0.34, + 0.34, + 0.33, + 0.34, + 0.39, + 0.48, + 0.5700000000000001, + 0.6, + 0.61, + 0.59, + 0.56, + 0.54, + 0.56, + 0.5700000000000001, + 0.6, + 0.6, + 0.6, + 0.6, + 0.63, + 0.66, + 0.72, + 0.77, + 0.84, + 0.9500000000000001, + 1.05, + 1.1, + 1.0, + 0.88, + 0.72, + 0.61, + 0.47000000000000003, + 0.37, + 0.31, + 0.25, + 0.17, + 0.04, + -0.09, + -0.22, + -0.29, + -0.28, + -0.2, + -0.09, + 0.0, + 0.05, + 0.03, + 0.0, + -0.06, + -0.07, + -0.05, + -0.08, + -0.16, + -0.42, + -0.72, + -0.98, + -1.23, + -1.46, + -1.69, + -1.8800000000000001, + -2.0, + -2.08, + -2.23, + -2.42, + -2.69, + -2.69, + -2.61, + -2.27, + -1.9100000000000001, + -1.68, + -1.54, + -1.6300000000000001, + -1.79, + -1.94, + -1.84, + -1.6500000000000001, + -1.24, + -0.85, + -0.2, + 0.5700000000000001, + 1.48, + 2.32, + 2.91, + 3.33, + 3.6, + 3.7600000000000002, + 3.85, + 3.91, + 3.93, + 3.95, + 3.98, + 4.04, + 4.12, + 4.21, + 4.37, + 4.59, + 4.72, + 4.7700000000000005, + 4.8, + 4.86, + 4.87, + 4.84, + 4.86, + 4.99, + 5.14, + 5.3500000000000005, + 5.57, + 5.6000000000000005, + 5.61, + 5.47, + 5.29, + 4.95, + 4.62, + 4.23, + 3.92, + 3.5300000000000002, + 3.0300000000000002, + 2.58, + 2.0300000000000002, + 1.48, + 0.98, + 0.49, + 0.21, + -0.07, + -0.23, + -0.41000000000000003, + -0.58, + -0.75, + -0.89, + -1.04, + -1.1400000000000001, + -1.23, + -1.27, + -1.28, + -1.26, + -1.21, + -1.16, + -1.11, + -1.09, + -1.08, + -1.09, + -1.09, + -1.11, + -1.1500000000000001, + -1.19, + -1.22, + -1.26, + -1.35, + -1.47, + -1.71, + -1.95, + -2.19, + -2.39, + -2.54, + -2.62, + -2.7, + -2.81, + -2.95, + -3.13, + -3.2800000000000002, + -3.42, + -3.58, + -3.7600000000000002, + -3.91, + -3.94, + -3.98, + -3.95, + -3.92, + -3.7800000000000002, + -3.64, + -3.47, + -3.35, + -3.23, + -3.14, + -3.0, + -2.88, + -2.81, + -2.77, + -2.7, + -2.57, + -2.41, + -2.2600000000000002, + -2.14, + -2.05, + -1.95, + -1.85, + -1.76, + -1.68, + -1.6400000000000001, + -1.61, + -1.57, + -1.46, + -1.33, + -1.1400000000000001, + -0.98, + -0.78, + -0.55, + -0.1, + 0.45, + 1.03, + 1.53, + 1.9000000000000001, + 2.16, + 2.29, + 2.41, + 2.45, + 2.38, + 2.37, + 2.43, + 2.45, + 2.46, + 2.48, + 2.47, + 2.5100000000000002, + 2.69, + 2.85, + 2.96, + 3.04, + 3.13, + 3.2600000000000002, + 3.2800000000000002, + 3.3000000000000003, + 3.23, + 3.18, + 3.13, + 3.09, + 2.99, + 2.89, + 2.89, + 2.9, + 2.91, + 2.86, + 2.85, + 2.97, + 3.13, + 3.09, + 2.98, + 2.85, + 2.7600000000000002, + 2.61, + 2.48, + 2.37, + 2.33, + 2.36, + 2.42, + 2.41, + 2.34, + 2.2, + 2.04, + 1.94, + 1.9100000000000001, + 1.92, + 1.94, + 1.97, + 2.02, + 2.09, + 2.17, + 2.2800000000000002, + 2.36, + 2.41, + 2.32, + 2.19, + 1.96, + 1.67, + 1.3800000000000001, + 1.07, + 0.75, + 0.42, + 0.17, + 0.04, + 0.04, + 0.07, + 0.07, + 0.05, + -0.03, + -0.16, + -0.31, + -0.51, + -0.6900000000000001, + -0.87, + -1.09, + -1.24, + -1.31, + -1.27, + -1.19, + -1.11, + -1.05, + -1.0, + -0.93, + -0.8200000000000001, + -0.66, + -0.39, + -0.08, + 0.18, + 0.37, + 0.53, + 0.67, + 0.8, + 0.9, + 1.0, + 1.1, + 1.22, + 1.33, + 1.45, + 1.51, + 1.53, + 1.55, + 1.55, + 1.53, + 1.51, + 1.48 + ], + [ + 1.2, + 1.28, + 1.1400000000000001, + 0.99, + 0.89, + 0.79, + 0.71, + 0.62, + 0.55, + 0.49, + 0.44, + 0.4, + 0.35000000000000003, + 0.3, + 0.22, + 0.15, + 0.07, + 0.04, + 0.01, + 0.06, + 0.1, + 0.16, + 0.21, + 0.24, + 0.26, + 0.28, + 0.32, + 0.34, + 0.34, + 0.3, + 0.23, + 0.16, + 0.09, + 0.09, + 0.12, + 0.19, + 0.28, + 0.36, + 0.39, + 0.4, + 0.39, + 0.4, + 0.44, + 0.51, + 0.54, + 0.54, + 0.52, + 0.48, + 0.48, + 0.49, + 0.52, + 0.5700000000000001, + 0.6, + 0.63, + 0.63, + 0.64, + 0.67, + 0.75, + 0.8, + 0.8200000000000001, + 0.88, + 0.96, + 1.06, + 1.1, + 1.05, + 0.89, + 0.73, + 0.56, + 0.4, + 0.24, + 0.11, + 0.04, + -0.08, + -0.17, + -0.26, + -0.33, + -0.34, + -0.31, + -0.24, + -0.15, + -0.1, + -0.06, + -0.04, + -0.05, + -0.02, + 0.0, + 0.02, + 0.01, + -0.2, + -0.48, + -0.8300000000000001, + -1.1400000000000001, + -1.35, + -1.53, + -1.72, + -1.83, + -1.92, + -1.96, + -2.14, + -2.4, + -2.69, + -3.0100000000000002, + -2.97, + -2.89, + -2.59, + -2.25, + -2.05, + -1.87, + -1.9100000000000001, + -1.83, + -1.72, + -1.41, + -1.06, + -0.55, + 0.06, + 0.9400000000000001, + 1.85, + 2.56, + 3.1, + 3.43, + 3.65, + 3.79, + 3.88, + 3.93, + 3.99, + 4.01, + 4.05, + 4.1, + 4.17, + 4.26, + 4.41, + 4.62, + 4.83, + 4.93, + 4.98, + 5.04, + 5.0, + 4.94, + 4.8500000000000005, + 4.82, + 4.92, + 5.09, + 5.22, + 5.28, + 5.2, + 5.08, + 4.87, + 4.68, + 4.4, + 4.25, + 3.98, + 3.63, + 3.16, + 2.5300000000000002, + 1.94, + 1.3900000000000001, + 0.85, + 0.48, + 0.15, + -0.04, + -0.21, + -0.37, + -0.55, + -0.74, + -0.9400000000000001, + -1.08, + -1.22, + -1.28, + -1.3, + -1.29, + -1.25, + -1.2, + -1.18, + -1.1400000000000001, + -1.12, + -1.11, + -1.08, + -1.07, + -1.08, + -1.11, + -1.1500000000000001, + -1.17, + -1.26, + -1.35, + -1.5, + -1.6600000000000001, + -1.92, + -2.14, + -2.31, + -2.41, + -2.5, + -2.61, + -2.75, + -2.93, + -3.09, + -3.18, + -3.31, + -3.5100000000000002, + -3.69, + -3.7600000000000002, + -3.8200000000000003, + -3.8200000000000003, + -3.8200000000000003, + -3.74, + -3.63, + -3.45, + -3.31, + -3.21, + -3.14, + -3.02, + -2.87, + -2.74, + -2.66, + -2.61, + -2.5300000000000002, + -2.4, + -2.25, + -2.12, + -2.04, + -1.96, + -1.86, + -1.76, + -1.6600000000000001, + -1.59, + -1.56, + -1.55, + -1.5, + -1.42, + -1.24, + -1.05, + -0.85, + -0.66, + -0.36, + 0.06, + 0.6, + 1.1500000000000001, + 1.6300000000000001, + 2.0300000000000002, + 2.29, + 2.49, + 2.58, + 2.5500000000000003, + 2.48, + 2.41, + 2.44, + 2.5100000000000002, + 2.5500000000000003, + 2.59, + 2.61, + 2.66, + 2.7800000000000002, + 2.95, + 3.0700000000000003, + 3.19, + 3.33, + 3.41, + 3.47, + 3.44, + 3.39, + 3.33, + 3.3000000000000003, + 3.25, + 3.21, + 3.12, + 3.0500000000000003, + 3.04, + 2.98, + 2.92, + 2.88, + 2.96, + 3.0300000000000002, + 3.0100000000000002, + 2.89, + 2.7800000000000002, + 2.7, + 2.59, + 2.49, + 2.41, + 2.38, + 2.4, + 2.43, + 2.42, + 2.34, + 2.22, + 2.08, + 1.99, + 1.95, + 1.94, + 1.95, + 1.96, + 2.0100000000000002, + 2.06, + 2.14, + 2.21, + 2.29, + 2.29, + 2.22, + 2.08, + 1.9100000000000001, + 1.58, + 1.26, + 0.97, + 0.68, + 0.38, + 0.17, + 0.09, + 0.11, + 0.14, + 0.15, + 0.13, + 0.04, + -0.09, + -0.29, + -0.5, + -0.68, + -0.86, + -0.97, + -1.09, + -1.1400000000000001, + -1.1300000000000001, + -1.08, + -1.04, + -1.0, + -0.96, + -0.88, + -0.75, + -0.55, + -0.27, + 0.02, + 0.25, + 0.43, + 0.54, + 0.66, + 0.73, + 0.8200000000000001, + 0.96, + 1.09, + 1.24, + 1.3800000000000001, + 1.48, + 1.54, + 1.54, + 1.54, + 1.55, + 1.55, + 1.51, + 1.47 + ], + [ + 1.08, + 1.1400000000000001, + 1.04, + 0.89, + 0.79, + 0.6900000000000001, + 0.59, + 0.5, + 0.41000000000000003, + 0.34, + 0.28, + 0.23, + 0.19, + 0.15, + 0.12, + 0.05, + 0.03, + 0.0, + 0.02, + 0.07, + 0.15, + 0.23, + 0.28, + 0.34, + 0.37, + 0.41000000000000003, + 0.44, + 0.47000000000000003, + 0.46, + 0.44, + 0.38, + 0.32, + 0.26, + 0.21, + 0.23, + 0.28, + 0.36, + 0.4, + 0.43, + 0.43, + 0.43, + 0.45, + 0.49, + 0.51, + 0.51, + 0.48, + 0.42, + 0.41000000000000003, + 0.41000000000000003, + 0.45, + 0.5, + 0.56, + 0.61, + 0.64, + 0.67, + 0.68, + 0.71, + 0.78, + 0.84, + 0.87, + 0.87, + 0.93, + 1.0, + 1.05, + 0.99, + 0.85, + 0.65, + 0.47000000000000003, + 0.3, + 0.13, + -0.01, + -0.16, + -0.24, + -0.33, + -0.37, + -0.38, + -0.38, + -0.34, + -0.29, + -0.26, + -0.22, + -0.19, + -0.17, + -0.11, + -0.07, + 0.02, + 0.07, + -0.02, + -0.19, + -0.55, + -0.91, + -1.25, + -1.49, + -1.67, + -1.79, + -1.87, + -1.84, + -1.9100000000000001, + -2.0, + -2.31, + -2.7, + -3.0300000000000002, + -3.3200000000000003, + -3.2600000000000002, + -3.15, + -2.86, + -2.52, + -2.3000000000000003, + -1.95, + -1.76, + -1.43, + -1.08, + -0.6900000000000001, + -0.2, + 0.49, + 1.34, + 2.13, + 2.79, + 3.22, + 3.5, + 3.68, + 3.8000000000000003, + 3.88, + 3.95, + 4.0, + 4.05, + 4.09, + 4.13, + 4.19, + 4.28, + 4.43, + 4.69, + 4.93, + 5.0600000000000005, + 5.14, + 5.18, + 5.15, + 5.0, + 4.8500000000000005, + 4.7, + 4.62, + 4.71, + 4.76, + 4.76, + 4.64, + 4.49, + 4.32, + 4.14, + 4.11, + 3.97, + 3.88, + 3.58, + 3.09, + 2.5100000000000002, + 1.9000000000000001, + 1.34, + 0.92, + 0.54, + 0.28, + 0.07, + -0.1, + -0.29, + -0.49, + -0.73, + -0.91, + -1.1, + -1.22, + -1.31, + -1.31, + -1.27, + -1.23, + -1.2, + -1.18, + -1.2, + -1.18, + -1.1400000000000001, + -1.1, + -1.05, + -1.04, + -1.1, + -1.1500000000000001, + -1.21, + -1.3, + -1.45, + -1.6, + -1.77, + -1.97, + -2.15, + -2.2600000000000002, + -2.35, + -2.43, + -2.56, + -2.7600000000000002, + -2.92, + -3.0100000000000002, + -3.1, + -3.19, + -3.37, + -3.48, + -3.56, + -3.56, + -3.58, + -3.54, + -3.49, + -3.35, + -3.2, + -3.1, + -3.0500000000000003, + -2.97, + -2.88, + -2.71, + -2.57, + -2.49, + -2.46, + -2.36, + -2.22, + -2.08, + -1.99, + -1.9100000000000001, + -1.83, + -1.74, + -1.6300000000000001, + -1.54, + -1.47, + -1.45, + -1.43, + -1.4000000000000001, + -1.28, + -1.1, + -0.89, + -0.67, + -0.45, + -0.15, + 0.27, + 0.76, + 1.28, + 1.74, + 2.13, + 2.46, + 2.63, + 2.67, + 2.63, + 2.5100000000000002, + 2.44, + 2.46, + 2.52, + 2.61, + 2.68, + 2.7600000000000002, + 2.84, + 2.95, + 3.09, + 3.19, + 3.31, + 3.42, + 3.52, + 3.5300000000000002, + 3.5100000000000002, + 3.45, + 3.41, + 3.38, + 3.39, + 3.35, + 3.3000000000000003, + 3.22, + 3.08, + 3.0100000000000002, + 2.95, + 2.92, + 2.91, + 2.95, + 2.88, + 2.7600000000000002, + 2.68, + 2.61, + 2.5500000000000003, + 2.48, + 2.42, + 2.4, + 2.41, + 2.41, + 2.39, + 2.32, + 2.2, + 2.11, + 2.0300000000000002, + 2.0, + 1.98, + 1.93, + 1.94, + 1.98, + 2.04, + 2.08, + 2.14, + 2.19, + 2.19, + 2.09, + 1.97, + 1.77, + 1.47, + 1.1400000000000001, + 0.84, + 0.5700000000000001, + 0.34, + 0.18, + 0.17, + 0.2, + 0.26, + 0.27, + 0.24, + 0.16, + 0.03, + -0.18, + -0.42, + -0.63, + -0.75, + -0.87, + -0.92, + -0.96, + -0.98, + -0.97, + -0.96, + -0.96, + -0.91, + -0.84, + -0.67, + -0.44, + -0.16, + 0.12, + 0.34, + 0.47000000000000003, + 0.58, + 0.62, + 0.68, + 0.7000000000000001, + 0.8200000000000001, + 1.02, + 1.19, + 1.3900000000000001, + 1.53, + 1.54, + 1.53, + 1.52, + 1.52, + 1.52, + 1.51, + 1.48 + ], + [ + 1.02, + 1.06, + 0.9400000000000001, + 0.79, + 0.68, + 0.58, + 0.48, + 0.37, + 0.28, + 0.19, + 0.12, + 0.05, + 0.01, + 0.01, + -0.03, + -0.02, + -0.03, + 0.0, + 0.04, + 0.1, + 0.18, + 0.25, + 0.32, + 0.38, + 0.44, + 0.48, + 0.54, + 0.56, + 0.59, + 0.5700000000000001, + 0.55, + 0.48, + 0.42, + 0.37, + 0.35000000000000003, + 0.39, + 0.41000000000000003, + 0.44, + 0.44, + 0.44, + 0.45, + 0.47000000000000003, + 0.51, + 0.53, + 0.51, + 0.46, + 0.42, + 0.4, + 0.42, + 0.45, + 0.51, + 0.5700000000000001, + 0.63, + 0.66, + 0.68, + 0.6900000000000001, + 0.73, + 0.8, + 0.87, + 0.89, + 0.89, + 0.88, + 0.9400000000000001, + 0.9500000000000001, + 0.89, + 0.74, + 0.55, + 0.38, + 0.22, + 0.08, + -0.06, + -0.2, + -0.31, + -0.37, + -0.41000000000000003, + -0.41000000000000003, + -0.41000000000000003, + -0.38, + -0.38, + -0.36, + -0.34, + -0.32, + -0.28, + -0.23, + -0.14, + -0.05, + -0.03, + -0.08, + -0.33, + -0.66, + -1.06, + -1.41, + -1.7, + -1.93, + -2.0100000000000002, + -2.0300000000000002, + -1.97, + -1.9100000000000001, + -2.02, + -2.23, + -2.64, + -3.08, + -3.36, + -3.56, + -3.47, + -3.37, + -3.0700000000000003, + -2.57, + -2.18, + -1.61, + -1.16, + -0.71, + -0.26, + 0.25, + 0.9400000000000001, + 1.67, + 2.36, + 2.91, + 3.2800000000000002, + 3.5300000000000002, + 3.68, + 3.79, + 3.86, + 3.92, + 3.99, + 4.04, + 4.09, + 4.13, + 4.2, + 4.29, + 4.46, + 4.72, + 4.99, + 5.17, + 5.26, + 5.3100000000000005, + 5.23, + 5.07, + 4.83, + 4.5600000000000005, + 4.37, + 4.24, + 4.25, + 4.17, + 4.0200000000000005, + 3.8000000000000003, + 3.63, + 3.56, + 3.5300000000000002, + 3.5700000000000003, + 3.48, + 3.27, + 2.84, + 2.35, + 1.8, + 1.3800000000000001, + 0.99, + 0.7000000000000001, + 0.46, + 0.25, + 0.06, + -0.16, + -0.4, + -0.63, + -0.86, + -1.03, + -1.18, + -1.26, + -1.29, + -1.25, + -1.21, + -1.18, + -1.22, + -1.24, + -1.23, + -1.19, + -1.1300000000000001, + -1.08, + -1.08, + -1.1300000000000001, + -1.22, + -1.29, + -1.43, + -1.6300000000000001, + -1.78, + -1.96, + -2.08, + -2.17, + -2.2600000000000002, + -2.32, + -2.4, + -2.52, + -2.7, + -2.84, + -2.92, + -2.97, + -3.06, + -3.12, + -3.22, + -3.2, + -3.21, + -3.18, + -3.16, + -3.1, + -2.99, + -2.89, + -2.84, + -2.81, + -2.7800000000000002, + -2.65, + -2.49, + -2.34, + -2.2800000000000002, + -2.23, + -2.14, + -2.0, + -1.8900000000000001, + -1.79, + -1.74, + -1.67, + -1.59, + -1.49, + -1.3800000000000001, + -1.32, + -1.28, + -1.26, + -1.21, + -1.1, + -0.92, + -0.6900000000000001, + -0.47000000000000003, + -0.22, + 0.08, + 0.46, + 0.91, + 1.33, + 1.79, + 2.24, + 2.5300000000000002, + 2.66, + 2.68, + 2.56, + 2.45, + 2.44, + 2.47, + 2.5300000000000002, + 2.6, + 2.77, + 2.89, + 3.0100000000000002, + 3.13, + 3.21, + 3.29, + 3.38, + 3.46, + 3.5, + 3.5100000000000002, + 3.48, + 3.45, + 3.41, + 3.4, + 3.42, + 3.45, + 3.39, + 3.25, + 3.12, + 2.98, + 2.91, + 2.9, + 2.9, + 2.86, + 2.79, + 2.66, + 2.57, + 2.54, + 2.5, + 2.45, + 2.41, + 2.39, + 2.39, + 2.38, + 2.34, + 2.27, + 2.18, + 2.09, + 2.06, + 2.0300000000000002, + 1.95, + 1.9000000000000001, + 1.8900000000000001, + 1.93, + 1.99, + 2.04, + 2.08, + 2.13, + 2.06, + 1.92, + 1.8, + 1.61, + 1.33, + 1.0, + 0.72, + 0.46, + 0.29, + 0.22, + 0.23, + 0.33, + 0.39, + 0.42, + 0.39, + 0.33, + 0.21, + 0.02, + -0.22, + -0.46, + -0.61, + -0.68, + -0.73, + -0.77, + -0.79, + -0.84, + -0.87, + -0.88, + -0.87, + -0.77, + -0.61, + -0.36, + -0.05, + 0.21, + 0.42, + 0.54, + 0.59, + 0.63, + 0.64, + 0.66, + 0.74, + 0.91, + 1.1300000000000001, + 1.34, + 1.49, + 1.54, + 1.51, + 1.49, + 1.49, + 1.49, + 1.49, + 1.47 + ], + [ + 0.91, + 0.9500000000000001, + 0.84, + 0.7000000000000001, + 0.59, + 0.48, + 0.37, + 0.27, + 0.16, + 0.07, + -0.03, + -0.09, + -0.12, + -0.14, + -0.11, + -0.09, + -0.05, + -0.01, + 0.05, + 0.11, + 0.17, + 0.23, + 0.3, + 0.35000000000000003, + 0.43, + 0.5, + 0.56, + 0.62, + 0.64, + 0.66, + 0.63, + 0.6, + 0.53, + 0.49, + 0.46, + 0.45, + 0.47000000000000003, + 0.45, + 0.44, + 0.44, + 0.45, + 0.5, + 0.55, + 0.58, + 0.56, + 0.51, + 0.48, + 0.48, + 0.51, + 0.53, + 0.56, + 0.62, + 0.65, + 0.6900000000000001, + 0.71, + 0.72, + 0.76, + 0.84, + 0.91, + 0.93, + 0.89, + 0.88, + 0.85, + 0.84, + 0.76, + 0.61, + 0.45, + 0.3, + 0.19, + 0.09, + -0.03, + -0.15, + -0.27, + -0.34, + -0.39, + -0.41000000000000003, + -0.41000000000000003, + -0.42, + -0.42, + -0.47000000000000003, + -0.46, + -0.43, + -0.39, + -0.35000000000000003, + -0.27, + -0.24, + -0.23, + -0.37, + -0.61, + -0.93, + -1.3, + -1.67, + -2.0, + -2.21, + -2.34, + -2.29, + -2.17, + -2.08, + -2.09, + -2.31, + -2.61, + -3.0500000000000003, + -3.43, + -3.62, + -3.8200000000000003, + -3.75, + -3.45, + -2.98, + -2.23, + -1.58, + -0.9, + -0.35000000000000003, + 0.15, + 0.6900000000000001, + 1.28, + 1.92, + 2.52, + 2.97, + 3.3000000000000003, + 3.52, + 3.67, + 3.7600000000000002, + 3.83, + 3.88, + 3.94, + 4.0, + 4.05, + 4.11, + 4.18, + 4.3100000000000005, + 4.48, + 4.71, + 4.97, + 5.21, + 5.34, + 5.36, + 5.29, + 5.1000000000000005, + 4.84, + 4.47, + 4.1, + 3.89, + 3.74, + 3.62, + 3.37, + 3.13, + 2.91, + 2.85, + 2.9, + 2.94, + 2.89, + 2.69, + 2.42, + 1.97, + 1.6500000000000001, + 1.3, + 1.08, + 0.86, + 0.64, + 0.44, + 0.23, + 0.01, + -0.24, + -0.47000000000000003, + -0.7000000000000001, + -0.89, + -1.05, + -1.16, + -1.2, + -1.22, + -1.18, + -1.2, + -1.23, + -1.26, + -1.25, + -1.23, + -1.18, + -1.16, + -1.17, + -1.24, + -1.33, + -1.42, + -1.57, + -1.77, + -1.97, + -2.09, + -2.17, + -2.23, + -2.2600000000000002, + -2.33, + -2.43, + -2.5100000000000002, + -2.52, + -2.65, + -2.74, + -2.7800000000000002, + -2.79, + -2.84, + -2.7600000000000002, + -2.73, + -2.69, + -2.66, + -2.64, + -2.59, + -2.5300000000000002, + -2.47, + -2.49, + -2.5300000000000002, + -2.47, + -2.32, + -2.16, + -2.02, + -1.95, + -1.9000000000000001, + -1.8, + -1.68, + -1.57, + -1.53, + -1.48, + -1.47, + -1.4000000000000001, + -1.25, + -1.1400000000000001, + -1.09, + -1.06, + -1.04, + -1.0, + -0.91, + -0.75, + -0.54, + -0.3, + -0.05, + 0.26, + 0.6, + 0.96, + 1.36, + 1.75, + 2.19, + 2.46, + 2.58, + 2.52, + 2.4, + 2.37, + 2.36, + 2.47, + 2.54, + 2.65, + 2.81, + 3.0100000000000002, + 3.15, + 3.25, + 3.31, + 3.36, + 3.41, + 3.42, + 3.37, + 3.38, + 3.36, + 3.36, + 3.39, + 3.38, + 3.41, + 3.44, + 3.42, + 3.29, + 3.1, + 2.95, + 2.89, + 2.88, + 2.8000000000000003, + 2.74, + 2.67, + 2.56, + 2.49, + 2.47, + 2.44, + 2.4, + 2.37, + 2.36, + 2.34, + 2.32, + 2.27, + 2.2, + 2.11, + 2.05, + 2.02, + 2.02, + 1.94, + 1.84, + 1.82, + 1.87, + 1.93, + 1.97, + 2.02, + 2.05, + 1.99, + 1.8, + 1.6500000000000001, + 1.47, + 1.21, + 0.9, + 0.64, + 0.42, + 0.3, + 0.27, + 0.36, + 0.46, + 0.5700000000000001, + 0.6, + 0.58, + 0.52, + 0.43, + 0.25, + 0.01, + -0.22, + -0.4, + -0.48, + -0.51, + -0.53, + -0.6, + -0.67, + -0.73, + -0.77, + -0.77, + -0.7000000000000001, + -0.53, + -0.28, + 0.01, + 0.28, + 0.47000000000000003, + 0.5700000000000001, + 0.61, + 0.62, + 0.63, + 0.67, + 0.74, + 0.86, + 1.07, + 1.27, + 1.42, + 1.49, + 1.47, + 1.46, + 1.46, + 1.46, + 1.45, + 1.44 + ], + [ + 0.84, + 0.86, + 0.75, + 0.62, + 0.51, + 0.4, + 0.28, + 0.18, + 0.08, + -0.02, + -0.11, + -0.17, + -0.2, + -0.19, + -0.16, + -0.1, + -0.05, + 0.0, + 0.06, + 0.09, + 0.14, + 0.18, + 0.22, + 0.29, + 0.37, + 0.45, + 0.51, + 0.5700000000000001, + 0.61, + 0.63, + 0.62, + 0.59, + 0.5700000000000001, + 0.53, + 0.51, + 0.5, + 0.48, + 0.46, + 0.44, + 0.44, + 0.48, + 0.54, + 0.61, + 0.65, + 0.65, + 0.62, + 0.59, + 0.6, + 0.62, + 0.64, + 0.67, + 0.6900000000000001, + 0.73, + 0.76, + 0.78, + 0.8, + 0.84, + 0.87, + 0.9500000000000001, + 0.9500000000000001, + 0.9, + 0.8300000000000001, + 0.79, + 0.72, + 0.62, + 0.51, + 0.37, + 0.27, + 0.2, + 0.13, + 0.04, + -0.08, + -0.2, + -0.29, + -0.35000000000000003, + -0.38, + -0.4, + -0.41000000000000003, + -0.48, + -0.53, + -0.59, + -0.5700000000000001, + -0.54, + -0.49, + -0.51, + -0.51, + -0.63, + -0.81, + -1.02, + -1.33, + -1.62, + -1.94, + -2.24, + -2.45, + -2.54, + -2.48, + -2.36, + -2.2800000000000002, + -2.2800000000000002, + -2.42, + -2.71, + -3.0100000000000002, + -3.39, + -3.74, + -3.94, + -3.96, + -3.68, + -3.06, + -2.29, + -1.43, + -0.68, + -0.03, + 0.51, + 1.03, + 1.57, + 2.12, + 2.61, + 3.02, + 3.31, + 3.5100000000000002, + 3.62, + 3.71, + 3.77, + 3.8200000000000003, + 3.87, + 3.93, + 4.0, + 4.0600000000000005, + 4.16, + 4.29, + 4.44, + 4.66, + 4.91, + 5.14, + 5.3100000000000005, + 5.3500000000000005, + 5.29, + 5.13, + 4.82, + 4.42, + 3.93, + 3.5500000000000003, + 3.33, + 3.06, + 2.7800000000000002, + 2.42, + 2.21, + 2.16, + 2.21, + 2.24, + 2.2, + 2.05, + 1.78, + 1.58, + 1.3, + 1.19, + 1.05, + 0.93, + 0.77, + 0.58, + 0.38, + 0.17, + -0.04, + -0.28, + -0.48, + -0.6900000000000001, + -0.87, + -1.0, + -1.1, + -1.1300000000000001, + -1.17, + -1.19, + -1.22, + -1.24, + -1.26, + -1.25, + -1.29, + -1.29, + -1.31, + -1.3800000000000001, + -1.44, + -1.52, + -1.6500000000000001, + -1.83, + -2.02, + -2.13, + -2.21, + -2.25, + -2.31, + -2.42, + -2.47, + -2.36, + -2.35, + -2.33, + -2.42, + -2.47, + -2.48, + -2.34, + -2.25, + -2.12, + -2.06, + -2.0300000000000002, + -2.0100000000000002, + -1.99, + -1.94, + -1.98, + -2.06, + -2.13, + -2.08, + -1.93, + -1.74, + -1.62, + -1.55, + -1.5, + -1.4000000000000001, + -1.28, + -1.23, + -1.2, + -1.23, + -1.22, + -1.08, + -0.9400000000000001, + -0.84, + -0.79, + -0.8, + -0.79, + -0.79, + -0.73, + -0.62, + -0.46, + -0.2, + 0.07, + 0.37, + 0.68, + 1.01, + 1.33, + 1.72, + 2.08, + 2.35, + 2.37, + 2.31, + 2.2800000000000002, + 2.24, + 2.36, + 2.47, + 2.63, + 2.7600000000000002, + 2.93, + 3.13, + 3.2600000000000002, + 3.35, + 3.4, + 3.43, + 3.41, + 3.33, + 3.25, + 3.19, + 3.21, + 3.27, + 3.3200000000000003, + 3.39, + 3.42, + 3.46, + 3.44, + 3.35, + 3.16, + 2.97, + 2.91, + 2.8000000000000003, + 2.7, + 2.56, + 2.46, + 2.41, + 2.39, + 2.39, + 2.38, + 2.35, + 2.32, + 2.29, + 2.2600000000000002, + 2.23, + 2.17, + 2.1, + 2.02, + 1.96, + 1.96, + 1.95, + 1.8900000000000001, + 1.79, + 1.75, + 1.79, + 1.83, + 1.87, + 1.9100000000000001, + 1.95, + 1.9100000000000001, + 1.75, + 1.54, + 1.34, + 1.09, + 0.8300000000000001, + 0.6, + 0.43, + 0.34, + 0.39, + 0.49, + 0.63, + 0.73, + 0.77, + 0.75, + 0.6900000000000001, + 0.6, + 0.47000000000000003, + 0.23, + 0.0, + -0.17, + -0.25, + -0.27, + -0.3, + -0.37, + -0.49, + -0.5700000000000001, + -0.62, + -0.63, + -0.59, + -0.47000000000000003, + -0.23, + 0.04, + 0.31, + 0.48, + 0.5700000000000001, + 0.59, + 0.6, + 0.63, + 0.68, + 0.75, + 0.87, + 1.03, + 1.22, + 1.36, + 1.41, + 1.43, + 1.43, + 1.43, + 1.43, + 1.42, + 1.41 + ], + [ + 0.74, + 0.78, + 0.67, + 0.53, + 0.43, + 0.33, + 0.22, + 0.12, + 0.03, + -0.06, + -0.12, + -0.18, + -0.19, + -0.17, + -0.14, + -0.08, + -0.04, + 0.01, + 0.05, + 0.08, + 0.09, + 0.11, + 0.15, + 0.21, + 0.29, + 0.36, + 0.42, + 0.46, + 0.5, + 0.51, + 0.51, + 0.51, + 0.5, + 0.5, + 0.48, + 0.48, + 0.46, + 0.46, + 0.44, + 0.47000000000000003, + 0.52, + 0.6, + 0.6900000000000001, + 0.76, + 0.77, + 0.75, + 0.73, + 0.74, + 0.75, + 0.77, + 0.8, + 0.8200000000000001, + 0.88, + 0.9, + 0.92, + 0.9400000000000001, + 0.93, + 0.96, + 0.9500000000000001, + 0.9400000000000001, + 0.89, + 0.81, + 0.72, + 0.63, + 0.54, + 0.43, + 0.33, + 0.26, + 0.21, + 0.16, + 0.07, + -0.07, + -0.19, + -0.28, + -0.34, + -0.36, + -0.38, + -0.42, + -0.5, + -0.62, + -0.68, + -0.71, + -0.68, + -0.72, + -0.75, + -0.96, + -1.1500000000000001, + -1.33, + -1.56, + -1.74, + -1.97, + -2.16, + -2.34, + -2.5100000000000002, + -2.52, + -2.5, + -2.44, + -2.4, + -2.5100000000000002, + -2.62, + -2.7600000000000002, + -3.0500000000000003, + -3.25, + -3.6, + -3.8000000000000003, + -3.81, + -3.5300000000000002, + -2.88, + -2.08, + -1.2, + -0.4, + 0.25, + 0.8200000000000001, + 1.32, + 1.8, + 2.27, + 2.71, + 3.06, + 3.3200000000000003, + 3.46, + 3.5700000000000003, + 3.63, + 3.69, + 3.73, + 3.7800000000000002, + 3.83, + 3.9, + 4.0, + 4.11, + 4.26, + 4.41, + 4.5600000000000005, + 4.79, + 5.03, + 5.2, + 5.26, + 5.2, + 5.05, + 4.74, + 4.28, + 3.75, + 3.27, + 2.88, + 2.56, + 2.15, + 1.78, + 1.6, + 1.55, + 1.6, + 1.6400000000000001, + 1.57, + 1.43, + 1.24, + 1.05, + 0.98, + 0.91, + 0.9400000000000001, + 0.88, + 0.78, + 0.61, + 0.43, + 0.24, + 0.07, + -0.11, + -0.31, + -0.51, + -0.7000000000000001, + -0.87, + -0.98, + -1.06, + -1.1, + -1.1500000000000001, + -1.18, + -1.24, + -1.26, + -1.33, + -1.3900000000000001, + -1.44, + -1.48, + -1.49, + -1.52, + -1.56, + -1.6600000000000001, + -1.82, + -1.98, + -2.12, + -2.22, + -2.29, + -2.42, + -2.48, + -2.35, + -2.21, + -2.0300000000000002, + -2.0, + -2.0100000000000002, + -2.07, + -1.97, + -1.82, + -1.62, + -1.47, + -1.36, + -1.32, + -1.32, + -1.29, + -1.33, + -1.42, + -1.58, + -1.7, + -1.68, + -1.54, + -1.37, + -1.27, + -1.2, + -1.1400000000000001, + -1.05, + -0.98, + -0.93, + -0.9500000000000001, + -0.98, + -0.9, + -0.76, + -0.58, + -0.48, + -0.5, + -0.53, + -0.5700000000000001, + -0.58, + -0.6, + -0.56, + -0.39, + -0.14, + 0.16, + 0.46, + 0.76, + 1.05, + 1.37, + 1.75, + 2.1, + 2.25, + 2.27, + 2.21, + 2.18, + 2.25, + 2.38, + 2.5500000000000003, + 2.71, + 2.9, + 3.09, + 3.27, + 3.39, + 3.45, + 3.49, + 3.5, + 3.45, + 3.31, + 3.15, + 3.08, + 3.1, + 3.18, + 3.3200000000000003, + 3.4, + 3.46, + 3.5100000000000002, + 3.5100000000000002, + 3.41, + 3.21, + 3.02, + 2.87, + 2.7600000000000002, + 2.5300000000000002, + 2.35, + 2.22, + 2.16, + 2.22, + 2.27, + 2.29, + 2.3000000000000003, + 2.2600000000000002, + 2.2, + 2.18, + 2.16, + 2.1, + 2.02, + 1.93, + 1.85, + 1.85, + 1.83, + 1.77, + 1.71, + 1.68, + 1.69, + 1.73, + 1.69, + 1.71, + 1.8, + 1.77, + 1.6400000000000001, + 1.45, + 1.21, + 0.93, + 0.73, + 0.5700000000000001, + 0.44, + 0.44, + 0.48, + 0.59, + 0.73, + 0.8200000000000001, + 0.86, + 0.85, + 0.79, + 0.74, + 0.6, + 0.42, + 0.19, + 0.03, + -0.04, + -0.05, + -0.08, + -0.17, + -0.31, + -0.42, + -0.49, + -0.52, + -0.51, + -0.41000000000000003, + -0.23, + 0.04, + 0.29, + 0.46, + 0.54, + 0.56, + 0.59, + 0.62, + 0.67, + 0.75, + 0.87, + 1.03, + 1.23, + 1.37, + 1.41, + 1.44, + 1.43, + 1.42, + 1.4000000000000001, + 1.3800000000000001, + 1.37 + ], + [ + 0.67, + 0.67, + 0.58, + 0.46, + 0.36, + 0.27, + 0.17, + 0.09, + 0.0, + -0.05, + -0.11, + -0.13, + -0.14, + -0.12, + -0.08, + -0.06, + -0.02, + 0.0, + 0.03, + 0.05, + 0.06, + 0.07, + 0.11, + 0.16, + 0.22, + 0.27, + 0.3, + 0.33, + 0.33, + 0.34, + 0.34, + 0.35000000000000003, + 0.36, + 0.36, + 0.37, + 0.37, + 0.4, + 0.39, + 0.44, + 0.48, + 0.5700000000000001, + 0.68, + 0.78, + 0.86, + 0.9, + 0.9, + 0.87, + 0.88, + 0.9, + 0.93, + 0.97, + 1.04, + 1.08, + 1.12, + 1.1300000000000001, + 1.08, + 1.06, + 1.01, + 0.99, + 0.9400000000000001, + 0.88, + 0.78, + 0.68, + 0.58, + 0.49, + 0.4, + 0.32, + 0.26, + 0.22, + 0.16, + 0.05, + -0.09, + -0.24, + -0.33, + -0.37, + -0.39, + -0.39, + -0.42, + -0.51, + -0.64, + -0.74, + -0.78, + -0.86, + -0.9, + -1.12, + -1.3800000000000001, + -1.68, + -1.9000000000000001, + -2.05, + -2.18, + -2.25, + -2.31, + -2.36, + -2.35, + -2.38, + -2.35, + -2.37, + -2.49, + -2.62, + -2.79, + -2.89, + -2.88, + -3.08, + -3.13, + -3.3200000000000003, + -3.29, + -2.94, + -2.44, + -1.61, + -0.8300000000000001, + -0.07, + 0.56, + 1.11, + 1.57, + 2.0, + 2.42, + 2.79, + 3.11, + 3.3000000000000003, + 3.43, + 3.49, + 3.5500000000000003, + 3.58, + 3.62, + 3.66, + 3.71, + 3.79, + 3.89, + 4.04, + 4.2, + 4.3500000000000005, + 4.49, + 4.66, + 4.89, + 5.07, + 5.12, + 5.0200000000000005, + 4.79, + 4.49, + 3.98, + 3.43, + 2.88, + 2.43, + 1.97, + 1.56, + 1.3, + 1.1, + 1.1500000000000001, + 1.19, + 1.18, + 1.11, + 0.96, + 0.79, + 0.64, + 0.6, + 0.62, + 0.66, + 0.71, + 0.64, + 0.51, + 0.34, + 0.19, + 0.03, + -0.1, + -0.27, + -0.44, + -0.63, + -0.8, + -0.93, + -1.01, + -1.08, + -1.1400000000000001, + -1.23, + -1.29, + -1.3800000000000001, + -1.46, + -1.51, + -1.57, + -1.57, + -1.55, + -1.55, + -1.58, + -1.6600000000000001, + -1.82, + -1.98, + -2.13, + -2.2600000000000002, + -2.4, + -2.47, + -2.33, + -2.18, + -1.9000000000000001, + -1.7, + -1.59, + -1.59, + -1.49, + -1.3900000000000001, + -1.2, + -0.98, + -0.79, + -0.67, + -0.59, + -0.5700000000000001, + -0.6, + -0.67, + -0.85, + -1.09, + -1.28, + -1.32, + -1.22, + -1.11, + -1.01, + -0.99, + -0.92, + -0.86, + -0.78, + -0.76, + -0.77, + -0.6900000000000001, + -0.6, + -0.39, + -0.21, + -0.16, + -0.21, + -0.3, + -0.35000000000000003, + -0.42, + -0.48, + -0.46, + -0.29, + -0.02, + 0.31, + 0.59, + 0.86, + 1.1500000000000001, + 1.51, + 1.8800000000000001, + 2.19, + 2.33, + 2.27, + 2.2, + 2.2800000000000002, + 2.37, + 2.5, + 2.68, + 2.86, + 3.06, + 3.25, + 3.42, + 3.52, + 3.56, + 3.58, + 3.56, + 3.5100000000000002, + 3.34, + 3.13, + 3.0300000000000002, + 3.06, + 3.18, + 3.33, + 3.44, + 3.5100000000000002, + 3.58, + 3.58, + 3.46, + 3.2600000000000002, + 3.0100000000000002, + 2.86, + 2.69, + 2.43, + 2.11, + 1.96, + 1.87, + 1.9100000000000001, + 2.07, + 2.15, + 2.2, + 2.19, + 2.14, + 2.14, + 2.14, + 2.12, + 2.02, + 1.8800000000000001, + 1.78, + 1.71, + 1.69, + 1.6300000000000001, + 1.58, + 1.57, + 1.59, + 1.53, + 1.46, + 1.46, + 1.53, + 1.6, + 1.5, + 1.33, + 1.09, + 0.8200000000000001, + 0.65, + 0.54, + 0.5, + 0.5, + 0.56, + 0.66, + 0.74, + 0.84, + 0.88, + 0.87, + 0.84, + 0.77, + 0.67, + 0.49, + 0.32, + 0.17, + 0.13, + 0.13, + 0.1, + -0.01, + -0.17, + -0.3, + -0.38, + -0.44, + -0.45, + -0.39, + -0.23, + 0.01, + 0.26, + 0.41000000000000003, + 0.5, + 0.5700000000000001, + 0.59, + 0.61, + 0.66, + 0.72, + 0.85, + 1.07, + 1.28, + 1.46, + 1.52, + 1.5, + 1.47, + 1.42, + 1.37, + 1.33, + 1.29 + ], + [ + 0.59, + 0.62, + 0.51, + 0.39, + 0.31, + 0.22, + 0.15, + 0.07, + 0.01, + -0.05, + -0.07, + -0.09, + -0.08, + -0.06, + -0.04, + -0.02, + -0.01, + 0.0, + 0.02, + 0.03, + 0.05, + 0.07, + 0.1, + 0.16, + 0.19, + 0.21, + 0.22, + 0.2, + 0.18, + 0.17, + 0.16, + 0.18, + 0.19, + 0.21, + 0.22, + 0.25, + 0.27, + 0.34, + 0.4, + 0.51, + 0.62, + 0.75, + 0.86, + 0.9500000000000001, + 1.0, + 1.02, + 1.01, + 1.02, + 1.05, + 1.1, + 1.19, + 1.27, + 1.33, + 1.35, + 1.28, + 1.22, + 1.1300000000000001, + 1.08, + 1.0, + 0.9400000000000001, + 0.87, + 0.77, + 0.67, + 0.5700000000000001, + 0.48, + 0.39, + 0.3, + 0.24, + 0.21, + 0.15, + 0.04, + -0.13, + -0.3, + -0.41000000000000003, + -0.44, + -0.44, + -0.43, + -0.44, + -0.52, + -0.64, + -0.75, + -0.89, + -0.98, + -1.18, + -1.44, + -1.79, + -2.12, + -2.39, + -2.5100000000000002, + -2.5500000000000003, + -2.5100000000000002, + -2.42, + -2.32, + -2.24, + -2.2, + -2.19, + -2.27, + -2.44, + -2.66, + -2.85, + -2.83, + -2.7800000000000002, + -2.6, + -2.63, + -2.5300000000000002, + -2.46, + -2.21, + -1.6500000000000001, + -1.04, + -0.29, + 0.33, + 0.92, + 1.41, + 1.82, + 2.19, + 2.56, + 2.9, + 3.14, + 3.3000000000000003, + 3.37, + 3.43, + 3.44, + 3.47, + 3.49, + 3.52, + 3.5700000000000003, + 3.65, + 3.7800000000000002, + 3.93, + 4.09, + 4.23, + 4.36, + 4.5200000000000005, + 4.72, + 4.88, + 4.88, + 4.7, + 4.41, + 3.99, + 3.5500000000000003, + 2.99, + 2.41, + 1.8800000000000001, + 1.41, + 1.1, + 0.8300000000000001, + 0.9, + 0.93, + 1.0, + 0.98, + 0.8200000000000001, + 0.67, + 0.48, + 0.36, + 0.26, + 0.3, + 0.35000000000000003, + 0.38, + 0.4, + 0.28, + 0.14, + -0.02, + -0.14, + -0.28, + -0.39, + -0.53, + -0.6900000000000001, + -0.84, + -0.96, + -1.08, + -1.1400000000000001, + -1.24, + -1.34, + -1.46, + -1.57, + -1.6300000000000001, + -1.67, + -1.6300000000000001, + -1.59, + -1.53, + -1.51, + -1.56, + -1.67, + -1.83, + -2.0, + -2.16, + -2.31, + -2.43, + -2.33, + -2.16, + -1.84, + -1.54, + -1.35, + -1.23, + -1.06, + -0.9400000000000001, + -0.76, + -0.55, + -0.36, + -0.18, + -0.03, + 0.04, + 0.11, + 0.06, + -0.05, + -0.3, + -0.61, + -0.84, + -0.98, + -0.96, + -0.89, + -0.9, + -0.87, + -0.84, + -0.76, + -0.7000000000000001, + -0.67, + -0.56, + -0.46, + -0.24, + 0.0, + 0.16, + 0.18, + 0.08, + -0.02, + -0.13, + -0.22, + -0.31, + -0.27, + -0.12, + 0.19, + 0.49, + 0.74, + 1.0, + 1.3, + 1.6500000000000001, + 2.0300000000000002, + 2.36, + 2.43, + 2.36, + 2.42, + 2.5100000000000002, + 2.63, + 2.7800000000000002, + 2.9, + 3.09, + 3.23, + 3.42, + 3.5500000000000003, + 3.62, + 3.65, + 3.63, + 3.63, + 3.56, + 3.4, + 3.21, + 3.0700000000000003, + 3.12, + 3.23, + 3.37, + 3.49, + 3.59, + 3.67, + 3.66, + 3.54, + 3.31, + 3.06, + 2.85, + 2.68, + 2.36, + 2.02, + 1.7, + 1.58, + 1.6, + 1.78, + 1.95, + 2.05, + 2.11, + 2.15, + 2.16, + 2.21, + 2.2, + 2.05, + 1.8900000000000001, + 1.72, + 1.6300000000000001, + 1.55, + 1.5, + 1.44, + 1.44, + 1.3900000000000001, + 1.3, + 1.22, + 1.22, + 1.29, + 1.36, + 1.35, + 1.19, + 0.99, + 0.78, + 0.61, + 0.55, + 0.54, + 0.5700000000000001, + 0.62, + 0.68, + 0.75, + 0.8, + 0.85, + 0.86, + 0.8300000000000001, + 0.77, + 0.66, + 0.53, + 0.36, + 0.27, + 0.25, + 0.28, + 0.24, + 0.13, + -0.05, + -0.2, + -0.31, + -0.38, + -0.41000000000000003, + -0.38, + -0.22, + 0.01, + 0.21, + 0.37, + 0.47000000000000003, + 0.54, + 0.58, + 0.6, + 0.61, + 0.68, + 0.8200000000000001, + 1.05, + 1.37, + 1.56, + 1.6400000000000001, + 1.61, + 1.54, + 1.47, + 1.37, + 1.29, + 1.23 + ], + [ + 0.52, + 0.52, + 0.44, + 0.34, + 0.26, + 0.19, + 0.12, + 0.06, + 0.0, + -0.03, + -0.05, + -0.05, + -0.04, + -0.02, + -0.01, + 0.01, + 0.01, + 0.01, + 0.02, + 0.04, + 0.07, + 0.1, + 0.15, + 0.18, + 0.19, + 0.19, + 0.15, + 0.1, + 0.06, + 0.03, + 0.03, + 0.04, + 0.06, + 0.08, + 0.11, + 0.14, + 0.2, + 0.29, + 0.4, + 0.54, + 0.67, + 0.8, + 0.92, + 0.99, + 1.05, + 1.06, + 1.09, + 1.1300000000000001, + 1.19, + 1.28, + 1.3900000000000001, + 1.48, + 1.55, + 1.48, + 1.4000000000000001, + 1.28, + 1.18, + 1.09, + 1.0, + 0.92, + 0.85, + 0.77, + 0.66, + 0.59, + 0.51, + 0.41000000000000003, + 0.33, + 0.24, + 0.21, + 0.16, + 0.04, + -0.14, + -0.33, + -0.48, + -0.53, + -0.53, + -0.49, + -0.48, + -0.53, + -0.65, + -0.84, + -1.0, + -1.22, + -1.47, + -1.76, + -2.13, + -2.49, + -2.72, + -2.87, + -2.83, + -2.73, + -2.54, + -2.36, + -2.25, + -2.14, + -2.14, + -2.18, + -2.33, + -2.59, + -2.67, + -2.67, + -2.44, + -2.2, + -1.94, + -1.79, + -1.59, + -1.31, + -0.9, + -0.3, + 0.25, + 0.8300000000000001, + 1.3, + 1.73, + 2.08, + 2.4, + 2.71, + 2.98, + 3.2, + 3.29, + 3.35, + 3.35, + 3.36, + 3.35, + 3.36, + 3.37, + 3.41, + 3.49, + 3.63, + 3.8000000000000003, + 3.95, + 4.0600000000000005, + 4.17, + 4.3, + 4.49, + 4.6000000000000005, + 4.49, + 4.26, + 3.84, + 3.42, + 2.93, + 2.45, + 1.8900000000000001, + 1.35, + 1.01, + 0.67, + 0.72, + 0.77, + 0.9400000000000001, + 1.0, + 0.89, + 0.72, + 0.48, + 0.29, + 0.13, + 0.05, + -0.03, + 0.0, + 0.02, + 0.01, + -0.01, + -0.15, + -0.29, + -0.44, + -0.54, + -0.65, + -0.74, + -0.86, + -0.99, + -1.11, + -1.22, + -1.31, + -1.4000000000000001, + -1.52, + -1.6500000000000001, + -1.76, + -1.8, + -1.76, + -1.67, + -1.56, + -1.47, + -1.43, + -1.5, + -1.6400000000000001, + -1.81, + -1.99, + -2.14, + -2.2800000000000002, + -2.25, + -2.16, + -1.84, + -1.5, + -1.27, + -1.06, + -0.84, + -0.65, + -0.4, + -0.2, + 0.01, + 0.19, + 0.32, + 0.43, + 0.53, + 0.54, + 0.58, + 0.42, + 0.22, + -0.11, + -0.42, + -0.58, + -0.68, + -0.74, + -0.78, + -0.8, + -0.78, + -0.7000000000000001, + -0.63, + -0.5, + -0.38, + -0.14, + 0.12, + 0.38, + 0.54, + 0.56, + 0.43, + 0.3, + 0.2, + 0.06, + -0.01, + -0.02, + 0.17, + 0.42, + 0.64, + 0.89, + 1.17, + 1.47, + 1.84, + 2.22, + 2.47, + 2.57, + 2.68, + 2.75, + 2.87, + 3.0100000000000002, + 3.14, + 3.2800000000000002, + 3.36, + 3.5, + 3.5700000000000003, + 3.67, + 3.71, + 3.71, + 3.7, + 3.7, + 3.67, + 3.5500000000000003, + 3.35, + 3.3000000000000003, + 3.29, + 3.38, + 3.5, + 3.6, + 3.71, + 3.77, + 3.77, + 3.64, + 3.4, + 3.16, + 2.97, + 2.74, + 2.39, + 1.93, + 1.61, + 1.35, + 1.42, + 1.55, + 1.75, + 1.9100000000000001, + 2.04, + 2.14, + 2.24, + 2.31, + 2.25, + 2.11, + 1.87, + 1.68, + 1.58, + 1.5, + 1.3900000000000001, + 1.34, + 1.27, + 1.19, + 1.08, + 1.01, + 1.02, + 1.12, + 1.18, + 1.1500000000000001, + 1.08, + 0.91, + 0.72, + 0.62, + 0.5700000000000001, + 0.61, + 0.64, + 0.68, + 0.73, + 0.75, + 0.79, + 0.8, + 0.8200000000000001, + 0.79, + 0.73, + 0.64, + 0.5, + 0.39, + 0.33, + 0.35000000000000003, + 0.38, + 0.37, + 0.22, + 0.04, + -0.13, + -0.25, + -0.33, + -0.37, + -0.31, + -0.18, + 0.02, + 0.22, + 0.34, + 0.44, + 0.51, + 0.56, + 0.5700000000000001, + 0.58, + 0.63, + 0.78, + 1.04, + 1.37, + 1.6600000000000001, + 1.72, + 1.72, + 1.6400000000000001, + 1.53, + 1.4000000000000001, + 1.28, + 1.24 + ], + [ + 0.45, + 0.47000000000000003, + 0.37, + 0.28, + 0.21, + 0.14, + 0.09, + 0.04, + 0.01, + -0.02, + -0.03, + -0.03, + -0.01, + 0.0, + 0.03, + 0.04, + 0.04, + 0.04, + 0.05, + 0.08, + 0.11, + 0.16, + 0.2, + 0.21, + 0.21, + 0.17, + 0.11, + 0.05, + -0.02, + -0.04, + -0.05, + -0.03, + -0.01, + 0.02, + 0.05, + 0.1, + 0.18, + 0.29, + 0.43, + 0.5700000000000001, + 0.71, + 0.8300000000000001, + 0.92, + 0.99, + 1.02, + 1.05, + 1.1, + 1.19, + 1.3, + 1.42, + 1.52, + 1.6400000000000001, + 1.62, + 1.56, + 1.41, + 1.28, + 1.17, + 1.07, + 0.98, + 0.9, + 0.84, + 0.77, + 0.6900000000000001, + 0.65, + 0.59, + 0.49, + 0.38, + 0.3, + 0.24, + 0.19, + 0.1, + -0.09, + -0.32, + -0.48, + -0.58, + -0.5700000000000001, + -0.53, + -0.5, + -0.54, + -0.72, + -0.9500000000000001, + -1.2, + -1.46, + -1.74, + -2.05, + -2.36, + -2.66, + -2.94, + -2.99, + -3.02, + -2.82, + -2.66, + -2.48, + -2.33, + -2.25, + -2.17, + -2.15, + -2.22, + -2.2800000000000002, + -2.4, + -2.25, + -2.0100000000000002, + -1.69, + -1.35, + -1.07, + -0.84, + -0.53, + -0.12, + 0.35000000000000003, + 0.84, + 1.3, + 1.72, + 2.08, + 2.36, + 2.61, + 2.87, + 3.1, + 3.23, + 3.3200000000000003, + 3.31, + 3.3000000000000003, + 3.25, + 3.23, + 3.21, + 3.21, + 3.24, + 3.3200000000000003, + 3.46, + 3.64, + 3.81, + 3.91, + 3.95, + 4.08, + 4.14, + 4.11, + 4.0, + 3.61, + 3.19, + 2.7, + 2.27, + 1.8, + 1.32, + 0.99, + 0.64, + 0.63, + 0.65, + 0.8200000000000001, + 1.01, + 1.03, + 0.89, + 0.62, + 0.34, + 0.12, + -0.04, + -0.17, + -0.26, + -0.38, + -0.38, + -0.39, + -0.44, + -0.49, + -0.64, + -0.77, + -0.87, + -0.96, + -1.02, + -1.11, + -1.2, + -1.31, + -1.3800000000000001, + -1.47, + -1.54, + -1.6600000000000001, + -1.78, + -1.86, + -1.87, + -1.77, + -1.6300000000000001, + -1.47, + -1.35, + -1.32, + -1.3900000000000001, + -1.54, + -1.73, + -1.8900000000000001, + -2.04, + -2.07, + -2.06, + -1.83, + -1.53, + -1.28, + -1.03, + -0.8200000000000001, + -0.58, + -0.29, + -0.01, + 0.27, + 0.47000000000000003, + 0.61, + 0.7000000000000001, + 0.72, + 0.75, + 0.81, + 0.78, + 0.78, + 0.53, + 0.31, + 0.03, + -0.21, + -0.39, + -0.53, + -0.64, + -0.71, + -0.67, + -0.6, + -0.45, + -0.31, + -0.08, + 0.2, + 0.5, + 0.77, + 0.92, + 0.9, + 0.84, + 0.72, + 0.6, + 0.47000000000000003, + 0.32, + 0.34, + 0.44, + 0.6, + 0.79, + 1.0, + 1.3, + 1.69, + 2.05, + 2.38, + 2.66, + 2.84, + 2.98, + 3.12, + 3.25, + 3.37, + 3.5100000000000002, + 3.64, + 3.7, + 3.73, + 3.7600000000000002, + 3.79, + 3.79, + 3.79, + 3.7800000000000002, + 3.7800000000000002, + 3.7600000000000002, + 3.73, + 3.64, + 3.5500000000000003, + 3.5500000000000003, + 3.6, + 3.65, + 3.74, + 3.85, + 3.92, + 3.89, + 3.7600000000000002, + 3.5700000000000003, + 3.34, + 3.11, + 2.87, + 2.5, + 2.0300000000000002, + 1.55, + 1.35, + 1.28, + 1.44, + 1.61, + 1.79, + 1.96, + 2.13, + 2.2800000000000002, + 2.35, + 2.32, + 2.12, + 1.86, + 1.69, + 1.59, + 1.47, + 1.34, + 1.21, + 1.1300000000000001, + 1.02, + 0.9, + 0.8300000000000001, + 0.89, + 0.99, + 1.02, + 1.01, + 0.9400000000000001, + 0.84, + 0.7000000000000001, + 0.61, + 0.64, + 0.6900000000000001, + 0.74, + 0.78, + 0.8, + 0.8, + 0.78, + 0.78, + 0.75, + 0.73, + 0.68, + 0.6, + 0.51, + 0.41000000000000003, + 0.37, + 0.41000000000000003, + 0.45, + 0.4, + 0.29, + 0.08, + -0.09, + -0.2, + -0.27, + -0.27, + -0.24, + -0.09, + 0.08, + 0.22, + 0.34, + 0.42, + 0.51, + 0.58, + 0.59, + 0.61, + 0.66, + 0.77, + 1.06, + 1.4000000000000001, + 1.67, + 1.81, + 1.79, + 1.72, + 1.58, + 1.43, + 1.33, + 1.26 + ], + [ + 0.38, + 0.37, + 0.3, + 0.23, + 0.16, + 0.11, + 0.06, + 0.02, + 0.0, + -0.02, + -0.03, + -0.02, + 0.01, + 0.04, + 0.06, + 0.08, + 0.08, + 0.09, + 0.1, + 0.13, + 0.16, + 0.2, + 0.21, + 0.23, + 0.2, + 0.16, + 0.1, + 0.02, + -0.02, + -0.07, + -0.07, + -0.05, + -0.03, + 0.0, + 0.05, + 0.11, + 0.2, + 0.33, + 0.47000000000000003, + 0.61, + 0.72, + 0.8200000000000001, + 0.9, + 0.93, + 0.97, + 1.01, + 1.08, + 1.22, + 1.3800000000000001, + 1.49, + 1.61, + 1.6300000000000001, + 1.6500000000000001, + 1.53, + 1.3800000000000001, + 1.24, + 1.1400000000000001, + 1.07, + 0.98, + 0.92, + 0.87, + 0.8300000000000001, + 0.79, + 0.73, + 0.68, + 0.59, + 0.47000000000000003, + 0.37, + 0.31, + 0.26, + 0.16, + 0.01, + -0.21, + -0.45, + -0.54, + -0.58, + -0.54, + -0.5, + -0.6, + -0.81, + -1.08, + -1.3800000000000001, + -1.6300000000000001, + -1.9100000000000001, + -2.16, + -2.41, + -2.69, + -2.84, + -2.97, + -2.85, + -2.81, + -2.65, + -2.56, + -2.43, + -2.35, + -2.2, + -2.11, + -2.0, + -1.99, + -1.86, + -1.72, + -1.45, + -1.12, + -0.8, + -0.48, + -0.18, + 0.14, + 0.51, + 0.93, + 1.35, + 1.73, + 2.1, + 2.38, + 2.64, + 2.84, + 3.0300000000000002, + 3.18, + 3.3000000000000003, + 3.33, + 3.31, + 3.24, + 3.17, + 3.1, + 3.0700000000000003, + 3.0500000000000003, + 3.0700000000000003, + 3.15, + 3.29, + 3.49, + 3.68, + 3.7600000000000002, + 3.77, + 3.72, + 3.65, + 3.5300000000000002, + 3.23, + 2.91, + 2.42, + 1.95, + 1.54, + 1.1500000000000001, + 0.88, + 0.61, + 0.56, + 0.56, + 0.67, + 0.85, + 0.97, + 1.0, + 0.8, + 0.46, + 0.17, + -0.06, + -0.22, + -0.35000000000000003, + -0.5, + -0.63, + -0.8, + -0.8200000000000001, + -0.86, + -0.92, + -1.01, + -1.12, + -1.22, + -1.25, + -1.31, + -1.35, + -1.42, + -1.48, + -1.54, + -1.56, + -1.62, + -1.69, + -1.8, + -1.82, + -1.77, + -1.68, + -1.48, + -1.32, + -1.2, + -1.16, + -1.27, + -1.42, + -1.62, + -1.77, + -1.83, + -1.85, + -1.73, + -1.54, + -1.31, + -1.06, + -0.88, + -0.66, + -0.38, + -0.04, + 0.32, + 0.63, + 0.88, + 0.98, + 0.96, + 0.91, + 0.85, + 0.86, + 0.88, + 0.8200000000000001, + 0.77, + 0.55, + 0.36, + 0.11, + -0.11, + -0.31, + -0.47000000000000003, + -0.52, + -0.52, + -0.38, + -0.22, + 0.0, + 0.27, + 0.56, + 0.87, + 1.1, + 1.21, + 1.24, + 1.17, + 1.12, + 1.0, + 0.86, + 0.66, + 0.61, + 0.66, + 0.78, + 0.9, + 1.06, + 1.45, + 1.87, + 2.24, + 2.58, + 2.86, + 3.08, + 3.22, + 3.39, + 3.5, + 3.62, + 3.77, + 3.89, + 3.94, + 3.89, + 3.88, + 3.85, + 3.83, + 3.8000000000000003, + 3.83, + 3.8000000000000003, + 3.8200000000000003, + 3.8000000000000003, + 3.8200000000000003, + 3.79, + 3.79, + 3.7600000000000002, + 3.77, + 3.87, + 4.0, + 4.0600000000000005, + 4.03, + 3.95, + 3.77, + 3.54, + 3.3000000000000003, + 3.04, + 2.64, + 2.17, + 1.71, + 1.3, + 1.29, + 1.37, + 1.56, + 1.7, + 1.93, + 2.11, + 2.2600000000000002, + 2.4, + 2.36, + 2.16, + 1.9100000000000001, + 1.72, + 1.59, + 1.46, + 1.29, + 1.1400000000000001, + 1.0, + 0.87, + 0.75, + 0.71, + 0.74, + 0.8300000000000001, + 0.92, + 0.9, + 0.85, + 0.75, + 0.66, + 0.66, + 0.71, + 0.79, + 0.86, + 0.9, + 0.9, + 0.89, + 0.84, + 0.78, + 0.74, + 0.6900000000000001, + 0.65, + 0.59, + 0.51, + 0.45, + 0.43, + 0.43, + 0.46, + 0.43, + 0.27, + 0.1, + -0.05, + -0.15, + -0.17, + -0.18, + -0.1, + 0.01, + 0.15, + 0.28, + 0.38, + 0.46, + 0.55, + 0.63, + 0.68, + 0.7000000000000001, + 0.72, + 0.84, + 1.08, + 1.45, + 1.75, + 1.85, + 1.87, + 1.78, + 1.6400000000000001, + 1.5, + 1.36, + 1.28 + ], + [ + 0.31, + 0.32, + 0.24, + 0.17, + 0.12, + 0.07, + 0.04, + 0.0, + -0.01, + -0.02, + -0.01, + 0.0, + 0.03, + 0.06, + 0.09, + 0.1, + 0.12, + 0.12, + 0.13, + 0.14, + 0.16, + 0.17, + 0.2, + 0.18, + 0.17, + 0.13, + 0.08, + 0.04, + -0.02, + -0.04, + -0.05, + -0.05, + -0.03, + 0.01, + 0.07, + 0.16, + 0.26, + 0.38, + 0.52, + 0.63, + 0.73, + 0.8, + 0.84, + 0.87, + 0.91, + 0.9500000000000001, + 1.08, + 1.23, + 1.41, + 1.54, + 1.59, + 1.62, + 1.57, + 1.47, + 1.33, + 1.19, + 1.12, + 1.07, + 1.04, + 1.0, + 0.97, + 0.96, + 0.92, + 0.87, + 0.79, + 0.67, + 0.55, + 0.45, + 0.38, + 0.33, + 0.27, + 0.12, + -0.08, + -0.27, + -0.45, + -0.5, + -0.5, + -0.52, + -0.63, + -0.86, + -1.16, + -1.43, + -1.6600000000000001, + -1.87, + -2.04, + -2.25, + -2.45, + -2.61, + -2.58, + -2.56, + -2.48, + -2.5100000000000002, + -2.41, + -2.41, + -2.24, + -2.15, + -1.9100000000000001, + -1.73, + -1.5, + -1.31, + -1.08, + -0.8200000000000001, + -0.55, + -0.25, + 0.04, + 0.35000000000000003, + 0.67, + 1.01, + 1.3800000000000001, + 1.72, + 2.08, + 2.36, + 2.65, + 2.84, + 3.04, + 3.16, + 3.2800000000000002, + 3.36, + 3.39, + 3.29, + 3.19, + 3.0700000000000003, + 2.98, + 2.92, + 2.9, + 2.92, + 2.99, + 3.13, + 3.36, + 3.54, + 3.58, + 3.48, + 3.2800000000000002, + 3.0700000000000003, + 2.7800000000000002, + 2.45, + 2.09, + 1.6500000000000001, + 1.26, + 0.86, + 0.65, + 0.43, + 0.39, + 0.4, + 0.46, + 0.6, + 0.72, + 0.84, + 0.77, + 0.54, + 0.23, + -0.09, + -0.29, + -0.42, + -0.53, + -0.6900000000000001, + -0.88, + -1.04, + -1.22, + -1.24, + -1.31, + -1.37, + -1.47, + -1.49, + -1.52, + -1.53, + -1.56, + -1.59, + -1.6300000000000001, + -1.6300000000000001, + -1.62, + -1.6500000000000001, + -1.7, + -1.71, + -1.67, + -1.58, + -1.45, + -1.3, + -1.1300000000000001, + -1.04, + -1.08, + -1.16, + -1.36, + -1.52, + -1.61, + -1.6500000000000001, + -1.57, + -1.45, + -1.28, + -1.08, + -0.9, + -0.73, + -0.51, + -0.22, + 0.17, + 0.59, + 0.97, + 1.22, + 1.31, + 1.21, + 1.06, + 0.97, + 0.87, + 0.88, + 0.85, + 0.78, + 0.71, + 0.55, + 0.37, + 0.16, + -0.07, + -0.2, + -0.29, + -0.25, + -0.13, + 0.08, + 0.33, + 0.59, + 0.89, + 1.1400000000000001, + 1.33, + 1.44, + 1.44, + 1.43, + 1.36, + 1.29, + 1.02, + 0.8200000000000001, + 0.73, + 0.8, + 0.87, + 0.98, + 1.24, + 1.58, + 2.0, + 2.42, + 2.7800000000000002, + 3.08, + 3.27, + 3.42, + 3.5300000000000002, + 3.62, + 3.73, + 3.89, + 3.97, + 3.94, + 3.96, + 3.92, + 3.88, + 3.81, + 3.75, + 3.77, + 3.7600000000000002, + 3.7600000000000002, + 3.79, + 3.84, + 3.92, + 3.88, + 3.85, + 3.88, + 3.98, + 4.09, + 4.18, + 4.17, + 4.1, + 3.96, + 3.71, + 3.45, + 3.17, + 2.84, + 2.35, + 1.87, + 1.52, + 1.27, + 1.43, + 1.57, + 1.8, + 1.96, + 2.13, + 2.27, + 2.4, + 2.44, + 2.24, + 1.95, + 1.76, + 1.61, + 1.43, + 1.24, + 1.05, + 0.89, + 0.75, + 0.63, + 0.56, + 0.6, + 0.68, + 0.77, + 0.8200000000000001, + 0.74, + 0.66, + 0.64, + 0.66, + 0.77, + 0.89, + 0.96, + 1.02, + 1.04, + 1.02, + 0.96, + 0.86, + 0.78, + 0.72, + 0.66, + 0.62, + 0.56, + 0.51, + 0.47000000000000003, + 0.48, + 0.48, + 0.4, + 0.27, + 0.12, + -0.02, + -0.06, + -0.08, + -0.03, + 0.02, + 0.13, + 0.24, + 0.35000000000000003, + 0.45, + 0.54, + 0.63, + 0.71, + 0.78, + 0.81, + 0.8200000000000001, + 0.92, + 1.19, + 1.52, + 1.79, + 1.95, + 1.94, + 1.8800000000000001, + 1.74, + 1.58, + 1.44, + 1.3 + ], + [ + 0.25, + 0.23, + 0.18, + 0.13, + 0.07, + 0.04, + 0.01, + -0.01, + -0.03, + -0.02, + -0.01, + 0.01, + 0.05, + 0.07, + 0.09, + 0.11, + 0.12, + 0.12, + 0.12, + 0.12, + 0.12, + 0.13, + 0.13, + 0.13, + 0.12, + 0.11, + 0.08, + 0.05, + 0.01, + -0.01, + -0.03, + -0.05, + -0.02, + 0.04, + 0.12, + 0.22, + 0.33, + 0.46, + 0.5700000000000001, + 0.66, + 0.73, + 0.78, + 0.8, + 0.8200000000000001, + 0.85, + 0.9400000000000001, + 1.05, + 1.28, + 1.48, + 1.58, + 1.61, + 1.59, + 1.52, + 1.43, + 1.29, + 1.22, + 1.16, + 1.16, + 1.17, + 1.1500000000000001, + 1.1400000000000001, + 1.11, + 1.06, + 0.98, + 0.85, + 0.73, + 0.6, + 0.51, + 0.44, + 0.38, + 0.31, + 0.25, + 0.09, + -0.09, + -0.24, + -0.37, + -0.41000000000000003, + -0.46, + -0.58, + -0.8200000000000001, + -1.05, + -1.28, + -1.49, + -1.6300000000000001, + -1.78, + -1.92, + -2.08, + -2.13, + -2.12, + -2.04, + -2.02, + -2.0300000000000002, + -2.12, + -2.0300000000000002, + -2.0100000000000002, + -1.8, + -1.61, + -1.3, + -0.99, + -0.72, + -0.45, + -0.23, + -0.01, + 0.24, + 0.51, + 0.77, + 1.06, + 1.37, + 1.69, + 2.0100000000000002, + 2.2800000000000002, + 2.5500000000000003, + 2.7600000000000002, + 2.99, + 3.12, + 3.27, + 3.35, + 3.45, + 3.37, + 3.27, + 3.11, + 2.96, + 2.86, + 2.7800000000000002, + 2.75, + 2.77, + 2.85, + 2.99, + 3.15, + 3.3200000000000003, + 3.3200000000000003, + 3.0700000000000003, + 2.79, + 2.46, + 2.08, + 1.78, + 1.3800000000000001, + 1.04, + 0.64, + 0.44, + 0.2, + 0.15, + 0.13, + 0.16, + 0.27, + 0.39, + 0.51, + 0.53, + 0.45, + 0.2, + -0.12, + -0.38, + -0.55, + -0.67, + -0.76, + -0.87, + -1.09, + -1.29, + -1.44, + -1.57, + -1.61, + -1.68, + -1.7, + -1.73, + -1.72, + -1.72, + -1.72, + -1.73, + -1.72, + -1.71, + -1.69, + -1.69, + -1.6600000000000001, + -1.6, + -1.5, + -1.36, + -1.23, + -1.09, + -0.96, + -0.9500000000000001, + -1.01, + -1.18, + -1.33, + -1.45, + -1.51, + -1.43, + -1.33, + -1.19, + -1.04, + -0.87, + -0.72, + -0.53, + -0.34, + -0.02, + 0.39, + 0.86, + 1.31, + 1.58, + 1.61, + 1.5, + 1.29, + 1.1, + 1.01, + 0.9, + 0.87, + 0.79, + 0.77, + 0.73, + 0.59, + 0.42, + 0.24, + 0.07, + 0.02, + 0.03, + 0.14, + 0.36, + 0.6, + 0.86, + 1.11, + 1.31, + 1.46, + 1.53, + 1.56, + 1.53, + 1.48, + 1.29, + 1.05, + 0.81, + 0.7000000000000001, + 0.81, + 0.9400000000000001, + 1.1400000000000001, + 1.36, + 1.75, + 2.16, + 2.57, + 2.98, + 3.2800000000000002, + 3.47, + 3.58, + 3.66, + 3.71, + 3.8000000000000003, + 3.84, + 3.83, + 3.86, + 3.89, + 3.94, + 3.89, + 3.81, + 3.8000000000000003, + 3.75, + 3.7800000000000002, + 3.71, + 3.77, + 3.83, + 3.88, + 3.9, + 3.88, + 3.93, + 4.03, + 4.15, + 4.21, + 4.23, + 4.16, + 4.0200000000000005, + 3.84, + 3.5500000000000003, + 3.25, + 2.91, + 2.56, + 2.09, + 1.7, + 1.55, + 1.52, + 1.75, + 1.96, + 2.11, + 2.21, + 2.36, + 2.5, + 2.49, + 2.32, + 2.09, + 1.87, + 1.67, + 1.45, + 1.24, + 1.02, + 0.8200000000000001, + 0.68, + 0.55, + 0.49, + 0.45, + 0.54, + 0.64, + 0.68, + 0.64, + 0.61, + 0.58, + 0.6900000000000001, + 0.8200000000000001, + 0.9400000000000001, + 1.05, + 1.11, + 1.16, + 1.16, + 1.1, + 1.0, + 0.9, + 0.8300000000000001, + 0.76, + 0.7000000000000001, + 0.65, + 0.59, + 0.55, + 0.5, + 0.46, + 0.4, + 0.28, + 0.13, + 0.08, + 0.03, + 0.06, + 0.09, + 0.16, + 0.24, + 0.34, + 0.45, + 0.56, + 0.65, + 0.72, + 0.8, + 0.87, + 0.91, + 0.93, + 1.04, + 1.27, + 1.62, + 1.9000000000000001, + 2.0100000000000002, + 2.06, + 1.98, + 1.87, + 1.71, + 1.53, + 1.3900000000000001 + ], + [ + 0.18, + 0.18, + 0.13, + 0.08, + 0.04, + 0.01, + -0.01, + -0.03, + -0.03, + -0.02, + 0.0, + 0.02, + 0.04, + 0.06, + 0.07, + 0.09, + 0.11, + 0.11, + 0.1, + 0.08, + 0.07, + 0.08, + 0.07, + 0.09, + 0.09, + 0.09, + 0.08, + 0.06, + 0.04, + 0.01, + -0.02, + -0.01, + 0.02, + 0.09, + 0.19, + 0.3, + 0.42, + 0.54, + 0.64, + 0.71, + 0.75, + 0.77, + 0.78, + 0.79, + 0.87, + 0.9400000000000001, + 1.1500000000000001, + 1.35, + 1.55, + 1.68, + 1.6600000000000001, + 1.6, + 1.54, + 1.45, + 1.3900000000000001, + 1.32, + 1.32, + 1.35, + 1.37, + 1.36, + 1.31, + 1.24, + 1.1500000000000001, + 1.0, + 0.87, + 0.72, + 0.61, + 0.53, + 0.47000000000000003, + 0.41000000000000003, + 0.35000000000000003, + 0.3, + 0.25, + 0.12, + -0.03, + -0.14, + -0.23, + -0.29, + -0.41000000000000003, + -0.5700000000000001, + -0.77, + -0.97, + -1.1400000000000001, + -1.28, + -1.3800000000000001, + -1.5, + -1.61, + -1.6600000000000001, + -1.58, + -1.47, + -1.48, + -1.49, + -1.55, + -1.58, + -1.51, + -1.4000000000000001, + -1.1500000000000001, + -0.8300000000000001, + -0.51, + -0.17, + 0.06, + 0.27, + 0.46, + 0.66, + 0.88, + 1.1, + 1.35, + 1.61, + 1.9000000000000001, + 2.15, + 2.41, + 2.6, + 2.82, + 2.97, + 3.16, + 3.25, + 3.39, + 3.36, + 3.33, + 3.16, + 2.98, + 2.84, + 2.72, + 2.65, + 2.61, + 2.63, + 2.72, + 2.83, + 2.95, + 3.0100000000000002, + 2.9, + 2.66, + 2.31, + 1.94, + 1.61, + 1.24, + 0.92, + 0.54, + 0.29, + 0.06, + -0.04, + -0.13, + -0.14, + -0.12, + 0.0, + 0.15, + 0.23, + 0.22, + 0.07, + -0.19, + -0.46, + -0.68, + -0.84, + -0.92, + -1.01, + -1.1500000000000001, + -1.31, + -1.52, + -1.68, + -1.78, + -1.85, + -1.86, + -1.9000000000000001, + -1.8800000000000001, + -1.8800000000000001, + -1.86, + -1.85, + -1.81, + -1.78, + -1.74, + -1.73, + -1.68, + -1.59, + -1.46, + -1.28, + -1.1400000000000001, + -1.01, + -0.91, + -0.85, + -0.86, + -1.02, + -1.2, + -1.31, + -1.41, + -1.34, + -1.25, + -1.09, + -0.9400000000000001, + -0.78, + -0.63, + -0.46, + -0.3, + -0.06, + 0.25, + 0.68, + 1.19, + 1.6300000000000001, + 1.8900000000000001, + 1.95, + 1.76, + 1.54, + 1.33, + 1.17, + 1.06, + 0.93, + 0.91, + 0.85, + 0.86, + 0.8300000000000001, + 0.68, + 0.53, + 0.41000000000000003, + 0.32, + 0.32, + 0.39, + 0.55, + 0.79, + 1.02, + 1.23, + 1.4000000000000001, + 1.5, + 1.56, + 1.58, + 1.56, + 1.45, + 1.29, + 0.99, + 0.7000000000000001, + 0.72, + 0.79, + 1.06, + 1.29, + 1.59, + 1.92, + 2.32, + 2.73, + 3.09, + 3.46, + 3.65, + 3.75, + 3.79, + 3.79, + 3.77, + 3.69, + 3.65, + 3.72, + 3.8200000000000003, + 3.9, + 3.93, + 3.87, + 3.88, + 3.88, + 3.89, + 3.83, + 3.79, + 3.8200000000000003, + 3.86, + 3.86, + 3.86, + 3.92, + 4.03, + 4.12, + 4.19, + 4.17, + 4.1, + 3.99, + 3.8200000000000003, + 3.59, + 3.27, + 2.95, + 2.6, + 2.27, + 1.94, + 1.72, + 1.78, + 1.93, + 2.11, + 2.2800000000000002, + 2.4, + 2.48, + 2.57, + 2.62, + 2.43, + 2.21, + 2.0, + 1.77, + 1.54, + 1.31, + 1.08, + 0.85, + 0.67, + 0.55, + 0.44, + 0.41000000000000003, + 0.42, + 0.56, + 0.63, + 0.62, + 0.5700000000000001, + 0.64, + 0.7000000000000001, + 0.85, + 0.99, + 1.08, + 1.17, + 1.24, + 1.29, + 1.25, + 1.1500000000000001, + 1.06, + 0.98, + 0.91, + 0.85, + 0.78, + 0.7000000000000001, + 0.62, + 0.55, + 0.48, + 0.42, + 0.32, + 0.25, + 0.17, + 0.18, + 0.19, + 0.23, + 0.28, + 0.36, + 0.45, + 0.55, + 0.66, + 0.72, + 0.78, + 0.85, + 0.9500000000000001, + 1.01, + 1.02, + 1.11, + 1.37, + 1.71, + 1.94, + 2.1, + 2.13, + 2.1, + 1.98, + 1.85, + 1.6500000000000001, + 1.46 + ], + [ + 0.12, + 0.11, + 0.08, + 0.04, + 0.01, + -0.01, + -0.03, + -0.03, + -0.02, + -0.01, + 0.01, + 0.03, + 0.03, + 0.03, + 0.04, + 0.05, + 0.08, + 0.1, + 0.08, + 0.06, + 0.06, + 0.05, + 0.07, + 0.07, + 0.08, + 0.09, + 0.08, + 0.07, + 0.05, + 0.03, + 0.02, + 0.03, + 0.09, + 0.17, + 0.28, + 0.4, + 0.52, + 0.64, + 0.73, + 0.78, + 0.8, + 0.8, + 0.8, + 0.86, + 0.92, + 1.1, + 1.25, + 1.49, + 1.69, + 1.75, + 1.74, + 1.67, + 1.59, + 1.55, + 1.54, + 1.52, + 1.54, + 1.56, + 1.58, + 1.54, + 1.44, + 1.33, + 1.16, + 1.0, + 0.8300000000000001, + 0.6900000000000001, + 0.61, + 0.54, + 0.49, + 0.43, + 0.4, + 0.36, + 0.35000000000000003, + 0.32, + 0.22, + 0.1, + 0.02, + -0.04, + -0.12, + -0.21, + -0.37, + -0.54, + -0.71, + -0.85, + -0.96, + -1.06, + -1.1500000000000001, + -1.16, + -1.09, + -1.02, + -0.93, + -1.0, + -1.01, + -1.07, + -1.04, + -0.91, + -0.7000000000000001, + -0.41000000000000003, + -0.07, + 0.2, + 0.45, + 0.62, + 0.8, + 0.97, + 1.1400000000000001, + 1.32, + 1.53, + 1.77, + 2.0, + 2.24, + 2.42, + 2.61, + 2.7600000000000002, + 2.92, + 3.06, + 3.2, + 3.22, + 3.23, + 3.13, + 2.99, + 2.86, + 2.71, + 2.6, + 2.52, + 2.48, + 2.5, + 2.57, + 2.66, + 2.71, + 2.66, + 2.5100000000000002, + 2.22, + 1.8800000000000001, + 1.55, + 1.19, + 0.87, + 0.52, + 0.21, + -0.07, + -0.19, + -0.29, + -0.34, + -0.4, + -0.34, + -0.24, + -0.1, + -0.02, + -0.1, + -0.3, + -0.53, + -0.75, + -0.93, + -1.05, + -1.17, + -1.3, + -1.44, + -1.62, + -1.79, + -1.9000000000000001, + -1.99, + -1.99, + -2.0100000000000002, + -1.99, + -2.0, + -1.97, + -1.97, + -1.92, + -1.86, + -1.79, + -1.74, + -1.67, + -1.59, + -1.45, + -1.24, + -1.05, + -0.9, + -0.79, + -0.73, + -0.72, + -0.8300000000000001, + -1.01, + -1.16, + -1.29, + -1.25, + -1.19, + -1.02, + -0.85, + -0.6900000000000001, + -0.52, + -0.37, + -0.19, + 0.01, + 0.25, + 0.58, + 1.01, + 1.5, + 1.93, + 2.19, + 2.19, + 2.04, + 1.79, + 1.56, + 1.4000000000000001, + 1.27, + 1.17, + 1.06, + 1.07, + 1.04, + 1.0, + 0.93, + 0.81, + 0.71, + 0.63, + 0.5700000000000001, + 0.62, + 0.72, + 0.9, + 1.11, + 1.3, + 1.43, + 1.51, + 1.55, + 1.56, + 1.51, + 1.43, + 1.24, + 0.99, + 0.8200000000000001, + 0.72, + 0.96, + 1.21, + 1.48, + 1.78, + 2.1, + 2.47, + 2.81, + 3.16, + 3.45, + 3.73, + 3.8200000000000003, + 3.84, + 3.8200000000000003, + 3.71, + 3.6, + 3.54, + 3.56, + 3.72, + 3.84, + 3.8200000000000003, + 3.86, + 3.91, + 4.01, + 3.96, + 3.95, + 3.86, + 3.8200000000000003, + 3.8200000000000003, + 3.81, + 3.8200000000000003, + 3.87, + 3.93, + 4.03, + 4.09, + 4.0600000000000005, + 3.99, + 3.9, + 3.75, + 3.54, + 3.27, + 2.93, + 2.61, + 2.34, + 2.1, + 1.97, + 1.95, + 2.08, + 2.27, + 2.46, + 2.61, + 2.66, + 2.68, + 2.59, + 2.45, + 2.2600000000000002, + 2.08, + 1.87, + 1.6300000000000001, + 1.4000000000000001, + 1.1500000000000001, + 0.93, + 0.75, + 0.61, + 0.48, + 0.39, + 0.45, + 0.54, + 0.62, + 0.63, + 0.66, + 0.6900000000000001, + 0.78, + 0.89, + 1.0, + 1.09, + 1.2, + 1.31, + 1.37, + 1.37, + 1.29, + 1.21, + 1.1300000000000001, + 1.07, + 1.0, + 0.91, + 0.8200000000000001, + 0.72, + 0.63, + 0.56, + 0.48, + 0.41000000000000003, + 0.37, + 0.33, + 0.31, + 0.33, + 0.36, + 0.4, + 0.47000000000000003, + 0.55, + 0.66, + 0.73, + 0.76, + 0.77, + 0.85, + 0.96, + 1.05, + 1.09, + 1.1500000000000001, + 1.37, + 1.71, + 2.0100000000000002, + 2.14, + 2.23, + 2.17, + 2.08, + 1.9100000000000001, + 1.74, + 1.6 + ], + [ + 0.08, + 0.07, + 0.04, + 0.02, + 0.0, + -0.02, + -0.02, + -0.01, + 0.0, + 0.01, + 0.03, + 0.04, + 0.04, + 0.02, + 0.02, + 0.03, + 0.05, + 0.08, + 0.09, + 0.08, + 0.08, + 0.08, + 0.09, + 0.09, + 0.09, + 0.09, + 0.08, + 0.08, + 0.07, + 0.07, + 0.07, + 0.11, + 0.18, + 0.28, + 0.4, + 0.52, + 0.64, + 0.75, + 0.8200000000000001, + 0.87, + 0.88, + 0.88, + 0.92, + 0.96, + 1.1300000000000001, + 1.28, + 1.48, + 1.69, + 1.81, + 1.87, + 1.84, + 1.75, + 1.7, + 1.69, + 1.68, + 1.71, + 1.71, + 1.71, + 1.69, + 1.6, + 1.5, + 1.31, + 1.1300000000000001, + 0.9400000000000001, + 0.77, + 0.67, + 0.58, + 0.55, + 0.51, + 0.49, + 0.45, + 0.46, + 0.48, + 0.48, + 0.45, + 0.37, + 0.29, + 0.23, + 0.2, + 0.12, + 0.02, + -0.14, + -0.32, + -0.46, + -0.58, + -0.66, + -0.74, + -0.75, + -0.72, + -0.64, + -0.62, + -0.58, + -0.65, + -0.64, + -0.61, + -0.49, + -0.29, + -0.03, + 0.24, + 0.49, + 0.6900000000000001, + 0.86, + 1.02, + 1.17, + 1.31, + 1.45, + 1.6400000000000001, + 1.85, + 2.07, + 2.25, + 2.41, + 2.5500000000000003, + 2.69, + 2.83, + 2.95, + 3.0100000000000002, + 3.0300000000000002, + 2.99, + 2.92, + 2.85, + 2.77, + 2.64, + 2.5, + 2.41, + 2.36, + 2.36, + 2.42, + 2.48, + 2.45, + 2.36, + 2.15, + 1.86, + 1.56, + 1.22, + 0.91, + 0.55, + 0.23, + -0.13, + -0.28, + -0.43, + -0.45, + -0.51, + -0.53, + -0.54, + -0.43, + -0.29, + -0.29, + -0.43, + -0.63, + -0.84, + -1.01, + -1.12, + -1.24, + -1.41, + -1.57, + -1.77, + -1.95, + -2.04, + -2.14, + -2.12, + -2.12, + -2.07, + -2.04, + -2.0100000000000002, + -2.0100000000000002, + -1.97, + -1.94, + -1.84, + -1.75, + -1.6400000000000001, + -1.54, + -1.41, + -1.21, + -1.0, + -0.79, + -0.63, + -0.55, + -0.5, + -0.56, + -0.71, + -0.9, + -1.12, + -1.11, + -1.09, + -0.9400000000000001, + -0.78, + -0.6, + -0.42, + -0.28, + -0.12, + 0.07, + 0.3, + 0.55, + 0.88, + 1.3, + 1.8, + 2.2, + 2.41, + 2.45, + 2.25, + 2.02, + 1.79, + 1.62, + 1.52, + 1.44, + 1.3800000000000001, + 1.32, + 1.28, + 1.21, + 1.1300000000000001, + 1.04, + 0.9500000000000001, + 0.89, + 0.84, + 0.8200000000000001, + 0.9, + 1.02, + 1.18, + 1.34, + 1.45, + 1.49, + 1.51, + 1.5, + 1.47, + 1.3900000000000001, + 1.26, + 1.09, + 0.92, + 0.98, + 1.1300000000000001, + 1.37, + 1.6400000000000001, + 1.9000000000000001, + 2.21, + 2.5300000000000002, + 2.84, + 3.14, + 3.4, + 3.61, + 3.74, + 3.75, + 3.75, + 3.69, + 3.56, + 3.46, + 3.47, + 3.5700000000000003, + 3.6, + 3.62, + 3.74, + 3.87, + 3.95, + 4.0, + 3.93, + 3.87, + 3.8200000000000003, + 3.79, + 3.77, + 3.75, + 3.74, + 3.74, + 3.83, + 3.95, + 3.95, + 3.87, + 3.77, + 3.65, + 3.47, + 3.2, + 2.91, + 2.64, + 2.38, + 2.22, + 2.11, + 2.11, + 2.17, + 2.4, + 2.68, + 2.77, + 2.84, + 2.72, + 2.54, + 2.38, + 2.23, + 2.05, + 1.87, + 1.6600000000000001, + 1.44, + 1.22, + 1.0, + 0.8300000000000001, + 0.6900000000000001, + 0.56, + 0.5, + 0.49, + 0.59, + 0.67, + 0.71, + 0.75, + 0.79, + 0.85, + 0.93, + 1.01, + 1.1, + 1.21, + 1.34, + 1.45, + 1.45, + 1.41, + 1.34, + 1.27, + 1.2, + 1.1300000000000001, + 1.05, + 0.9500000000000001, + 0.85, + 0.74, + 0.64, + 0.55, + 0.49, + 0.46, + 0.45, + 0.44, + 0.46, + 0.47000000000000003, + 0.49, + 0.54, + 0.63, + 0.73, + 0.8, + 0.77, + 0.71, + 0.75, + 0.9, + 1.01, + 1.03, + 1.11, + 1.35, + 1.69, + 1.97, + 2.19, + 2.2600000000000002, + 2.27, + 2.12, + 1.97, + 1.8, + 1.6500000000000001 + ], + [ + 0.04, + 0.04, + 0.02, + 0.0, + -0.01, + -0.01, + 0.0, + 0.01, + 0.03, + 0.04, + 0.06, + 0.07, + 0.06, + 0.04, + 0.03, + 0.03, + 0.05, + 0.08, + 0.11, + 0.11, + 0.12, + 0.11, + 0.11, + 0.11, + 0.09, + 0.08, + 0.09, + 0.1, + 0.11, + 0.12, + 0.16, + 0.21, + 0.3, + 0.4, + 0.52, + 0.64, + 0.76, + 0.85, + 0.91, + 0.9500000000000001, + 0.98, + 1.02, + 1.06, + 1.2, + 1.36, + 1.53, + 1.72, + 1.86, + 1.97, + 1.99, + 1.95, + 1.8900000000000001, + 1.82, + 1.79, + 1.79, + 1.78, + 1.76, + 1.73, + 1.6600000000000001, + 1.58, + 1.43, + 1.27, + 1.07, + 0.89, + 0.74, + 0.62, + 0.6, + 0.56, + 0.5700000000000001, + 0.56, + 0.56, + 0.56, + 0.62, + 0.67, + 0.66, + 0.62, + 0.55, + 0.49, + 0.43, + 0.38, + 0.27, + 0.11, + -0.04, + -0.17, + -0.27, + -0.35000000000000003, + -0.4, + -0.44, + -0.41000000000000003, + -0.4, + -0.35000000000000003, + -0.36, + -0.37, + -0.35000000000000003, + -0.28, + -0.15, + 0.04, + 0.26, + 0.48, + 0.6900000000000001, + 0.87, + 1.02, + 1.17, + 1.3, + 1.41, + 1.54, + 1.72, + 1.93, + 2.11, + 2.27, + 2.39, + 2.5, + 2.61, + 2.73, + 2.81, + 2.85, + 2.84, + 2.7800000000000002, + 2.77, + 2.75, + 2.68, + 2.58, + 2.45, + 2.32, + 2.24, + 2.21, + 2.23, + 2.2600000000000002, + 2.24, + 2.1, + 1.9000000000000001, + 1.6300000000000001, + 1.32, + 1.03, + 0.71, + 0.38, + 0.01, + -0.23, + -0.46, + -0.5, + -0.56, + -0.59, + -0.66, + -0.64, + -0.59, + -0.55, + -0.59, + -0.75, + -0.97, + -1.1300000000000001, + -1.2, + -1.31, + -1.46, + -1.6400000000000001, + -1.87, + -2.07, + -2.18, + -2.29, + -2.2600000000000002, + -2.24, + -2.18, + -2.11, + -2.04, + -1.98, + -1.95, + -1.93, + -1.85, + -1.75, + -1.61, + -1.45, + -1.31, + -1.1400000000000001, + -0.9400000000000001, + -0.72, + -0.52, + -0.37, + -0.26, + -0.24, + -0.29, + -0.48, + -0.72, + -0.85, + -0.93, + -0.8300000000000001, + -0.7000000000000001, + -0.53, + -0.35000000000000003, + -0.21, + -0.09, + 0.07, + 0.28, + 0.5, + 0.78, + 1.1, + 1.5, + 1.95, + 2.34, + 2.56, + 2.56, + 2.44, + 2.16, + 1.95, + 1.81, + 1.74, + 1.73, + 1.71, + 1.6300000000000001, + 1.55, + 1.44, + 1.31, + 1.22, + 1.1500000000000001, + 1.08, + 1.05, + 1.05, + 1.08, + 1.18, + 1.29, + 1.4000000000000001, + 1.46, + 1.49, + 1.47, + 1.45, + 1.44, + 1.3800000000000001, + 1.32, + 1.21, + 1.18, + 1.2, + 1.32, + 1.49, + 1.71, + 1.95, + 2.24, + 2.56, + 2.87, + 3.13, + 3.35, + 3.49, + 3.5500000000000003, + 3.54, + 3.54, + 3.5700000000000003, + 3.5, + 3.35, + 3.3000000000000003, + 3.31, + 3.33, + 3.44, + 3.56, + 3.75, + 3.89, + 3.91, + 3.91, + 3.85, + 3.81, + 3.75, + 3.7, + 3.65, + 3.56, + 3.5500000000000003, + 3.61, + 3.71, + 3.79, + 3.75, + 3.62, + 3.5, + 3.34, + 3.14, + 2.91, + 2.67, + 2.46, + 2.3000000000000003, + 2.23, + 2.21, + 2.29, + 2.47, + 2.7, + 2.93, + 2.85, + 2.71, + 2.52, + 2.32, + 2.14, + 1.96, + 1.77, + 1.58, + 1.4000000000000001, + 1.22, + 1.05, + 0.93, + 0.8200000000000001, + 0.72, + 0.65, + 0.66, + 0.6900000000000001, + 0.76, + 0.81, + 0.85, + 0.88, + 0.91, + 0.9500000000000001, + 1.02, + 1.1, + 1.24, + 1.3900000000000001, + 1.49, + 1.54, + 1.5, + 1.45, + 1.37, + 1.3, + 1.24, + 1.17, + 1.08, + 0.97, + 0.86, + 0.73, + 0.61, + 0.56, + 0.52, + 0.53, + 0.55, + 0.5700000000000001, + 0.5700000000000001, + 0.56, + 0.56, + 0.68, + 0.8300000000000001, + 0.86, + 0.75, + 0.65, + 0.63, + 0.74, + 0.88, + 0.9500000000000001, + 1.04, + 1.26, + 1.62, + 1.95, + 2.17, + 2.32, + 2.2800000000000002, + 2.17, + 1.99, + 1.82, + 1.69 + ], + [ + 0.03, + 0.02, + 0.01, + -0.01, + -0.01, + 0.0, + 0.02, + 0.04, + 0.06, + 0.08, + 0.1, + 0.1, + 0.09, + 0.07, + 0.06, + 0.06, + 0.07, + 0.11, + 0.14, + 0.16, + 0.16, + 0.15, + 0.14, + 0.12, + 0.1, + 0.1, + 0.1, + 0.14, + 0.18, + 0.21, + 0.27, + 0.34, + 0.43, + 0.54, + 0.65, + 0.77, + 0.86, + 0.9500000000000001, + 1.0, + 1.05, + 1.12, + 1.18, + 1.3, + 1.44, + 1.6, + 1.79, + 1.9100000000000001, + 2.04, + 2.11, + 2.15, + 2.1, + 2.04, + 1.95, + 1.87, + 1.82, + 1.76, + 1.71, + 1.6400000000000001, + 1.57, + 1.48, + 1.34, + 1.19, + 1.02, + 0.86, + 0.72, + 0.66, + 0.61, + 0.63, + 0.63, + 0.66, + 0.68, + 0.73, + 0.78, + 0.84, + 0.89, + 0.85, + 0.78, + 0.7000000000000001, + 0.6, + 0.52, + 0.4, + 0.26, + 0.13, + 0.02, + -0.05, + -0.11, + -0.16, + -0.19, + -0.21, + -0.2, + -0.19, + -0.19, + -0.16, + -0.12, + -0.02, + 0.13, + 0.31, + 0.5, + 0.6900000000000001, + 0.86, + 1.02, + 1.1500000000000001, + 1.29, + 1.42, + 1.52, + 1.6300000000000001, + 1.8, + 2.0100000000000002, + 2.19, + 2.29, + 2.38, + 2.45, + 2.54, + 2.63, + 2.7, + 2.71, + 2.68, + 2.67, + 2.66, + 2.66, + 2.64, + 2.54, + 2.4, + 2.2600000000000002, + 2.12, + 2.05, + 2.0300000000000002, + 2.0300000000000002, + 1.98, + 1.87, + 1.7, + 1.45, + 1.17, + 0.88, + 0.59, + 0.28, + -0.02, + -0.29, + -0.41000000000000003, + -0.5, + -0.56, + -0.65, + -0.7000000000000001, + -0.76, + -0.76, + -0.8200000000000001, + -0.92, + -1.11, + -1.27, + -1.35, + -1.43, + -1.54, + -1.69, + -1.93, + -2.16, + -2.3000000000000003, + -2.42, + -2.39, + -2.36, + -2.29, + -2.23, + -2.13, + -2.0300000000000002, + -1.95, + -1.8800000000000001, + -1.81, + -1.71, + -1.57, + -1.3800000000000001, + -1.2, + -1.01, + -0.8300000000000001, + -0.63, + -0.43, + -0.25, + -0.09, + 0.03, + 0.08, + 0.01, + -0.15, + -0.38, + -0.5700000000000001, + -0.62, + -0.59, + -0.45, + -0.27, + -0.13, + 0.0, + 0.1, + 0.21, + 0.4, + 0.63, + 0.9, + 1.19, + 1.56, + 1.96, + 2.3000000000000003, + 2.48, + 2.5300000000000002, + 2.38, + 2.2, + 2.02, + 1.92, + 1.96, + 1.99, + 2.0100000000000002, + 1.97, + 1.84, + 1.68, + 1.52, + 1.37, + 1.3, + 1.24, + 1.23, + 1.24, + 1.29, + 1.34, + 1.42, + 1.46, + 1.5, + 1.5, + 1.48, + 1.46, + 1.43, + 1.41, + 1.36, + 1.3900000000000001, + 1.4000000000000001, + 1.42, + 1.48, + 1.61, + 1.75, + 1.98, + 2.21, + 2.56, + 2.92, + 3.16, + 3.33, + 3.4, + 3.3200000000000003, + 3.29, + 3.29, + 3.3200000000000003, + 3.34, + 3.24, + 3.12, + 3.0700000000000003, + 3.17, + 3.25, + 3.46, + 3.67, + 3.7600000000000002, + 3.8200000000000003, + 3.81, + 3.8000000000000003, + 3.75, + 3.68, + 3.63, + 3.56, + 3.46, + 3.33, + 3.38, + 3.48, + 3.5300000000000002, + 3.52, + 3.43, + 3.29, + 3.15, + 3.04, + 2.88, + 2.68, + 2.5100000000000002, + 2.37, + 2.31, + 2.2800000000000002, + 2.32, + 2.46, + 2.68, + 2.7800000000000002, + 2.81, + 2.64, + 2.48, + 2.24, + 2.02, + 1.82, + 1.62, + 1.46, + 1.34, + 1.21, + 1.11, + 1.01, + 0.96, + 0.91, + 0.87, + 0.86, + 0.87, + 0.89, + 0.93, + 0.96, + 0.96, + 0.96, + 0.99, + 1.03, + 1.1400000000000001, + 1.27, + 1.43, + 1.56, + 1.6, + 1.59, + 1.53, + 1.45, + 1.3800000000000001, + 1.34, + 1.28, + 1.19, + 1.08, + 0.97, + 0.84, + 0.71, + 0.61, + 0.61, + 0.61, + 0.66, + 0.6900000000000001, + 0.65, + 0.58, + 0.62, + 0.76, + 0.93, + 0.99, + 0.8300000000000001, + 0.5700000000000001, + 0.51, + 0.5700000000000001, + 0.7000000000000001, + 0.8300000000000001, + 0.9400000000000001, + 1.18, + 1.51, + 1.85, + 2.16, + 2.3000000000000003, + 2.34, + 2.18, + 2.0100000000000002, + 1.83, + 1.67 + ], + [ + 0.02, + 0.01, + 0.0, + -0.01, + 0.0, + 0.01, + 0.04, + 0.06, + 0.08, + 0.11, + 0.13, + 0.13, + 0.13, + 0.11, + 0.11, + 0.11, + 0.13, + 0.16, + 0.19, + 0.22, + 0.21, + 0.2, + 0.18, + 0.15, + 0.14, + 0.13, + 0.16, + 0.2, + 0.26, + 0.33, + 0.39, + 0.47000000000000003, + 0.5700000000000001, + 0.67, + 0.78, + 0.88, + 0.98, + 1.04, + 1.1, + 1.19, + 1.27, + 1.3900000000000001, + 1.53, + 1.6600000000000001, + 1.83, + 1.95, + 2.07, + 2.17, + 2.2600000000000002, + 2.27, + 2.27, + 2.18, + 2.07, + 1.95, + 1.81, + 1.72, + 1.61, + 1.53, + 1.48, + 1.3900000000000001, + 1.26, + 1.12, + 0.99, + 0.85, + 0.77, + 0.7000000000000001, + 0.6900000000000001, + 0.7000000000000001, + 0.74, + 0.78, + 0.84, + 0.91, + 0.96, + 1.03, + 1.06, + 1.07, + 0.98, + 0.87, + 0.76, + 0.63, + 0.51, + 0.38, + 0.26, + 0.19, + 0.13, + 0.08, + 0.04, + -0.01, + -0.04, + -0.05, + -0.05, + -0.01, + 0.02, + 0.11, + 0.23, + 0.37, + 0.54, + 0.71, + 0.86, + 1.02, + 1.1500000000000001, + 1.29, + 1.42, + 1.54, + 1.6500000000000001, + 1.75, + 1.9100000000000001, + 2.11, + 2.23, + 2.33, + 2.37, + 2.43, + 2.48, + 2.54, + 2.59, + 2.59, + 2.59, + 2.59, + 2.6, + 2.62, + 2.6, + 2.5500000000000003, + 2.4, + 2.21, + 2.05, + 1.8900000000000001, + 1.84, + 1.8, + 1.75, + 1.68, + 1.54, + 1.31, + 1.02, + 0.77, + 0.49, + 0.24, + -0.04, + -0.21, + -0.32, + -0.41000000000000003, + -0.51, + -0.62, + -0.73, + -0.8200000000000001, + -0.96, + -1.07, + -1.28, + -1.43, + -1.52, + -1.59, + -1.67, + -1.79, + -1.99, + -2.22, + -2.38, + -2.5300000000000002, + -2.52, + -2.49, + -2.38, + -2.29, + -2.23, + -2.16, + -2.02, + -1.8900000000000001, + -1.79, + -1.68, + -1.53, + -1.34, + -1.1300000000000001, + -0.89, + -0.6900000000000001, + -0.49, + -0.3, + -0.13, + 0.03, + 0.18, + 0.32, + 0.38, + 0.36, + 0.16, + -0.04, + -0.26, + -0.37, + -0.34, + -0.23, + -0.06, + 0.1, + 0.21, + 0.28, + 0.39, + 0.5, + 0.73, + 0.9500000000000001, + 1.24, + 1.53, + 1.86, + 2.05, + 2.2, + 2.23, + 2.16, + 2.06, + 1.95, + 2.04, + 2.14, + 2.2600000000000002, + 2.34, + 2.27, + 2.16, + 1.94, + 1.7, + 1.56, + 1.44, + 1.42, + 1.43, + 1.46, + 1.5, + 1.54, + 1.54, + 1.57, + 1.55, + 1.54, + 1.52, + 1.5, + 1.48, + 1.46, + 1.51, + 1.54, + 1.6, + 1.6500000000000001, + 1.67, + 1.72, + 1.87, + 2.0300000000000002, + 2.2800000000000002, + 2.57, + 2.92, + 3.22, + 3.33, + 3.3200000000000003, + 3.25, + 3.15, + 3.13, + 3.16, + 3.17, + 3.13, + 3.0300000000000002, + 3.0100000000000002, + 3.0500000000000003, + 3.16, + 3.33, + 3.5, + 3.62, + 3.68, + 3.72, + 3.7, + 3.68, + 3.62, + 3.5700000000000003, + 3.5, + 3.39, + 3.2600000000000002, + 3.16, + 3.21, + 3.22, + 3.2, + 3.14, + 3.0300000000000002, + 2.93, + 2.83, + 2.74, + 2.61, + 2.46, + 2.35, + 2.29, + 2.27, + 2.2800000000000002, + 2.36, + 2.49, + 2.6, + 2.59, + 2.52, + 2.31, + 2.09, + 1.85, + 1.6300000000000001, + 1.46, + 1.37, + 1.28, + 1.24, + 1.16, + 1.1, + 1.07, + 1.09, + 1.09, + 1.06, + 1.06, + 1.07, + 1.09, + 1.07, + 1.05, + 1.04, + 1.04, + 1.1, + 1.19, + 1.35, + 1.52, + 1.6300000000000001, + 1.67, + 1.6500000000000001, + 1.6, + 1.53, + 1.48, + 1.44, + 1.41, + 1.33, + 1.21, + 1.09, + 0.96, + 0.81, + 0.73, + 0.7000000000000001, + 0.77, + 0.8200000000000001, + 0.8, + 0.7000000000000001, + 0.63, + 0.63, + 0.86, + 1.17, + 1.16, + 0.87, + 0.58, + 0.4, + 0.45, + 0.59, + 0.72, + 0.84, + 1.04, + 1.34, + 1.7, + 2.05, + 2.29, + 2.29, + 2.2, + 2.0, + 1.81, + 1.6500000000000001 + ], + [ + 0.01, + 0.01, + 0.0, + -0.01, + 0.0, + 0.02, + 0.04, + 0.07, + 0.09, + 0.12, + 0.14, + 0.15, + 0.15, + 0.15, + 0.15, + 0.16, + 0.18, + 0.21, + 0.25, + 0.27, + 0.27, + 0.24, + 0.22, + 0.21, + 0.19, + 0.21, + 0.24, + 0.29, + 0.36, + 0.43, + 0.51, + 0.6, + 0.6900000000000001, + 0.79, + 0.9, + 1.0, + 1.08, + 1.1500000000000001, + 1.24, + 1.33, + 1.46, + 1.6, + 1.71, + 1.85, + 1.96, + 2.07, + 2.16, + 2.25, + 2.32, + 2.37, + 2.33, + 2.2800000000000002, + 2.14, + 1.97, + 1.82, + 1.6400000000000001, + 1.53, + 1.47, + 1.42, + 1.32, + 1.2, + 1.07, + 0.9500000000000001, + 0.89, + 0.8200000000000001, + 0.79, + 0.78, + 0.81, + 0.85, + 0.93, + 1.02, + 1.08, + 1.1400000000000001, + 1.19, + 1.22, + 1.21, + 1.17, + 1.05, + 0.91, + 0.77, + 0.64, + 0.51, + 0.4, + 0.32, + 0.27, + 0.23, + 0.19, + 0.14, + 0.12, + 0.1, + 0.13, + 0.16, + 0.23, + 0.34, + 0.45, + 0.59, + 0.74, + 0.89, + 1.03, + 1.17, + 1.3, + 1.42, + 1.55, + 1.68, + 1.79, + 1.9000000000000001, + 2.05, + 2.19, + 2.32, + 2.35, + 2.38, + 2.41, + 2.45, + 2.49, + 2.5100000000000002, + 2.5100000000000002, + 2.5100000000000002, + 2.54, + 2.58, + 2.59, + 2.61, + 2.5300000000000002, + 2.41, + 2.21, + 1.98, + 1.81, + 1.6500000000000001, + 1.6, + 1.56, + 1.5, + 1.41, + 1.22, + 0.96, + 0.7000000000000001, + 0.48, + 0.22, + 0.04, + -0.12, + -0.21, + -0.3, + -0.44, + -0.6, + -0.74, + -0.88, + -1.06, + -1.32, + -1.51, + -1.69, + -1.78, + -1.83, + -1.92, + -2.09, + -2.29, + -2.44, + -2.61, + -2.62, + -2.62, + -2.5, + -2.38, + -2.29, + -2.21, + -2.13, + -2.0, + -1.83, + -1.68, + -1.52, + -1.31, + -1.09, + -0.84, + -0.59, + -0.35000000000000003, + -0.15, + 0.02, + 0.18, + 0.3, + 0.44, + 0.55, + 0.64, + 0.56, + 0.42, + 0.17, + -0.04, + -0.15, + -0.16, + -0.04, + 0.13, + 0.3, + 0.44, + 0.5, + 0.5700000000000001, + 0.7000000000000001, + 0.84, + 1.06, + 1.28, + 1.53, + 1.6500000000000001, + 1.79, + 1.81, + 1.82, + 1.8800000000000001, + 1.81, + 1.96, + 2.09, + 2.31, + 2.5, + 2.56, + 2.57, + 2.4, + 2.2, + 1.95, + 1.75, + 1.69, + 1.6600000000000001, + 1.69, + 1.72, + 1.74, + 1.72, + 1.71, + 1.6600000000000001, + 1.6400000000000001, + 1.61, + 1.59, + 1.58, + 1.56, + 1.6, + 1.6400000000000001, + 1.72, + 1.8, + 1.83, + 1.85, + 1.9000000000000001, + 2.0100000000000002, + 2.17, + 2.35, + 2.63, + 2.94, + 3.18, + 3.29, + 3.2800000000000002, + 3.25, + 3.16, + 3.06, + 3.0700000000000003, + 3.08, + 3.0500000000000003, + 3.02, + 3.0, + 3.02, + 3.08, + 3.21, + 3.34, + 3.48, + 3.56, + 3.58, + 3.58, + 3.56, + 3.5700000000000003, + 3.5100000000000002, + 3.49, + 3.37, + 3.19, + 3.0700000000000003, + 2.93, + 2.91, + 2.86, + 2.8000000000000003, + 2.74, + 2.64, + 2.56, + 2.47, + 2.4, + 2.3000000000000003, + 2.22, + 2.17, + 2.17, + 2.16, + 2.21, + 2.25, + 2.35, + 2.38, + 2.27, + 2.06, + 1.84, + 1.61, + 1.43, + 1.34, + 1.27, + 1.26, + 1.24, + 1.21, + 1.16, + 1.19, + 1.22, + 1.25, + 1.26, + 1.25, + 1.25, + 1.22, + 1.19, + 1.1400000000000001, + 1.12, + 1.1500000000000001, + 1.19, + 1.31, + 1.49, + 1.6300000000000001, + 1.7, + 1.73, + 1.72, + 1.68, + 1.62, + 1.58, + 1.58, + 1.57, + 1.48, + 1.36, + 1.22, + 1.1, + 0.9400000000000001, + 0.84, + 0.9, + 0.99, + 1.02, + 0.96, + 0.78, + 0.58, + 0.6900000000000001, + 1.05, + 1.33, + 1.3800000000000001, + 1.02, + 0.48, + 0.28, + 0.33, + 0.46, + 0.58, + 0.7000000000000001, + 0.84, + 1.11, + 1.54, + 1.9100000000000001, + 2.16, + 2.23, + 2.14, + 1.99, + 1.77, + 1.57 + ], + [ + 0.01, + 0.0, + -0.01, + -0.02, + -0.01, + 0.01, + 0.03, + 0.06, + 0.09, + 0.12, + 0.14, + 0.15, + 0.16, + 0.17, + 0.19, + 0.2, + 0.22, + 0.26, + 0.28, + 0.3, + 0.3, + 0.29, + 0.28, + 0.27, + 0.27, + 0.29, + 0.33, + 0.38, + 0.46, + 0.53, + 0.62, + 0.72, + 0.8200000000000001, + 0.92, + 1.02, + 1.11, + 1.19, + 1.29, + 1.3800000000000001, + 1.5, + 1.6300000000000001, + 1.74, + 1.86, + 1.95, + 2.05, + 2.13, + 2.21, + 2.2800000000000002, + 2.33, + 2.35, + 2.32, + 2.24, + 2.13, + 1.96, + 1.78, + 1.61, + 1.48, + 1.42, + 1.35, + 1.25, + 1.12, + 1.0, + 0.9400000000000001, + 0.88, + 0.87, + 0.86, + 0.88, + 0.92, + 1.0, + 1.1, + 1.17, + 1.24, + 1.28, + 1.32, + 1.35, + 1.35, + 1.29, + 1.19, + 1.05, + 0.91, + 0.77, + 0.63, + 0.52, + 0.45, + 0.39, + 0.36, + 0.33, + 0.31, + 0.3, + 0.3, + 0.32, + 0.37, + 0.45, + 0.55, + 0.67, + 0.79, + 0.91, + 1.04, + 1.17, + 1.3, + 1.43, + 1.56, + 1.68, + 1.81, + 1.92, + 2.0300000000000002, + 2.16, + 2.31, + 2.36, + 2.4, + 2.4, + 2.41, + 2.43, + 2.46, + 2.46, + 2.45, + 2.47, + 2.5100000000000002, + 2.54, + 2.57, + 2.57, + 2.52, + 2.37, + 2.19, + 1.95, + 1.71, + 1.55, + 1.43, + 1.3800000000000001, + 1.37, + 1.3, + 1.1500000000000001, + 0.92, + 0.74, + 0.54, + 0.35000000000000003, + 0.17, + 0.03, + -0.08, + -0.22, + -0.4, + -0.59, + -0.78, + -0.9500000000000001, + -1.19, + -1.44, + -1.71, + -1.8800000000000001, + -2.02, + -2.1, + -2.23, + -2.39, + -2.5100000000000002, + -2.66, + -2.69, + -2.71, + -2.62, + -2.5100000000000002, + -2.38, + -2.27, + -2.19, + -2.11, + -1.94, + -1.75, + -1.54, + -1.31, + -1.07, + -0.8, + -0.54, + -0.27, + -0.03, + 0.17, + 0.34, + 0.44, + 0.56, + 0.63, + 0.74, + 0.73, + 0.68, + 0.49, + 0.28, + 0.09, + -0.01, + 0.01, + 0.12, + 0.3, + 0.48, + 0.62, + 0.73, + 0.8, + 0.92, + 1.06, + 1.23, + 1.43, + 1.57, + 1.67, + 1.6, + 1.58, + 1.61, + 1.6300000000000001, + 1.78, + 1.92, + 2.15, + 2.41, + 2.57, + 2.69, + 2.65, + 2.57, + 2.37, + 2.2, + 2.06, + 2.0300000000000002, + 2.02, + 2.04, + 2.05, + 2.0, + 1.96, + 1.86, + 1.81, + 1.74, + 1.71, + 1.68, + 1.67, + 1.7, + 1.74, + 1.81, + 1.8900000000000001, + 1.95, + 1.99, + 2.02, + 2.07, + 2.17, + 2.3000000000000003, + 2.46, + 2.67, + 2.92, + 3.09, + 3.18, + 3.21, + 3.19, + 3.18, + 3.09, + 3.02, + 3.0100000000000002, + 3.04, + 3.02, + 3.04, + 3.0500000000000003, + 3.08, + 3.15, + 3.29, + 3.39, + 3.45, + 3.45, + 3.43, + 3.42, + 3.42, + 3.44, + 3.41, + 3.37, + 3.17, + 2.95, + 2.8000000000000003, + 2.64, + 2.58, + 2.5300000000000002, + 2.46, + 2.39, + 2.29, + 2.2, + 2.12, + 2.08, + 2.02, + 2.05, + 2.08, + 2.08, + 2.08, + 2.12, + 2.17, + 2.18, + 2.06, + 1.85, + 1.6, + 1.42, + 1.3, + 1.22, + 1.21, + 1.21, + 1.27, + 1.26, + 1.25, + 1.27, + 1.33, + 1.3800000000000001, + 1.41, + 1.43, + 1.3900000000000001, + 1.35, + 1.27, + 1.21, + 1.23, + 1.28, + 1.35, + 1.47, + 1.62, + 1.72, + 1.76, + 1.76, + 1.76, + 1.76, + 1.72, + 1.69, + 1.69, + 1.69, + 1.6400000000000001, + 1.47, + 1.34, + 1.18, + 1.04, + 1.03, + 1.1400000000000001, + 1.24, + 1.29, + 1.1, + 0.8, + 0.63, + 0.72, + 1.12, + 1.59, + 1.53, + 1.01, + 0.46, + 0.06, + 0.08, + 0.25, + 0.37, + 0.48, + 0.62, + 1.01, + 1.43, + 1.82, + 2.07, + 2.13, + 2.07, + 1.8900000000000001, + 1.69, + 1.5 + ], + [ + 0.0, + -0.01, + -0.03, + -0.03, + -0.03, + -0.01, + 0.01, + 0.04, + 0.07, + 0.1, + 0.12, + 0.14, + 0.15, + 0.18, + 0.2, + 0.23, + 0.25, + 0.27, + 0.29, + 0.3, + 0.31, + 0.32, + 0.33, + 0.34, + 0.36, + 0.39, + 0.43, + 0.48, + 0.54, + 0.63, + 0.72, + 0.8300000000000001, + 0.9400000000000001, + 1.05, + 1.1500000000000001, + 1.24, + 1.32, + 1.42, + 1.52, + 1.6400000000000001, + 1.75, + 1.86, + 1.93, + 2.0100000000000002, + 2.1, + 2.18, + 2.24, + 2.29, + 2.3000000000000003, + 2.25, + 2.21, + 2.12, + 2.0100000000000002, + 1.9000000000000001, + 1.71, + 1.56, + 1.43, + 1.35, + 1.28, + 1.17, + 1.04, + 0.96, + 0.89, + 0.89, + 0.89, + 0.93, + 0.98, + 1.06, + 1.16, + 1.25, + 1.32, + 1.37, + 1.41, + 1.45, + 1.48, + 1.45, + 1.37, + 1.27, + 1.1500000000000001, + 1.01, + 0.87, + 0.73, + 0.62, + 0.55, + 0.51, + 0.48, + 0.47000000000000003, + 0.47000000000000003, + 0.49, + 0.51, + 0.54, + 0.59, + 0.66, + 0.76, + 0.86, + 0.96, + 1.07, + 1.18, + 1.3, + 1.42, + 1.55, + 1.67, + 1.79, + 1.9100000000000001, + 2.0300000000000002, + 2.14, + 2.2800000000000002, + 2.37, + 2.43, + 2.43, + 2.42, + 2.42, + 2.43, + 2.43, + 2.42, + 2.41, + 2.42, + 2.46, + 2.5, + 2.5100000000000002, + 2.49, + 2.43, + 2.31, + 2.13, + 1.95, + 1.71, + 1.46, + 1.33, + 1.23, + 1.21, + 1.19, + 1.07, + 0.9500000000000001, + 0.81, + 0.7000000000000001, + 0.56, + 0.36, + 0.2, + 0.02, + -0.16, + -0.39, + -0.64, + -0.85, + -1.06, + -1.29, + -1.53, + -1.79, + -2.0300000000000002, + -2.19, + -2.4, + -2.54, + -2.6, + -2.72, + -2.72, + -2.75, + -2.67, + -2.57, + -2.45, + -2.34, + -2.22, + -2.16, + -2.02, + -1.85, + -1.61, + -1.35, + -1.08, + -0.78, + -0.51, + -0.23, + 0.03, + 0.27, + 0.47000000000000003, + 0.59, + 0.7000000000000001, + 0.73, + 0.8, + 0.77, + 0.75, + 0.63, + 0.46, + 0.31, + 0.16, + 0.12, + 0.17, + 0.28, + 0.44, + 0.61, + 0.76, + 0.88, + 0.99, + 1.1, + 1.27, + 1.43, + 1.61, + 1.73, + 1.76, + 1.7, + 1.62, + 1.6300000000000001, + 1.68, + 1.81, + 1.96, + 2.18, + 2.34, + 2.5, + 2.5500000000000003, + 2.54, + 2.5100000000000002, + 2.45, + 2.38, + 2.42, + 2.4, + 2.44, + 2.44, + 2.4, + 2.33, + 2.18, + 2.07, + 1.94, + 1.87, + 1.81, + 1.78, + 1.78, + 1.81, + 1.87, + 1.94, + 2.0100000000000002, + 2.06, + 2.11, + 2.14, + 2.2, + 2.29, + 2.4, + 2.5300000000000002, + 2.7, + 2.84, + 2.98, + 3.02, + 3.06, + 3.09, + 3.08, + 3.09, + 3.0300000000000002, + 3.0500000000000003, + 3.08, + 3.08, + 3.09, + 3.12, + 3.14, + 3.21, + 3.33, + 3.38, + 3.38, + 3.33, + 3.25, + 3.24, + 3.24, + 3.27, + 3.33, + 3.2800000000000002, + 3.13, + 2.91, + 2.69, + 2.54, + 2.45, + 2.39, + 2.33, + 2.24, + 2.09, + 1.98, + 1.9000000000000001, + 1.84, + 1.8800000000000001, + 1.95, + 2.0300000000000002, + 2.08, + 2.06, + 2.08, + 2.09, + 2.06, + 1.92, + 1.69, + 1.48, + 1.32, + 1.22, + 1.16, + 1.1500000000000001, + 1.23, + 1.29, + 1.34, + 1.34, + 1.35, + 1.4000000000000001, + 1.47, + 1.52, + 1.53, + 1.5, + 1.3900000000000001, + 1.27, + 1.28, + 1.36, + 1.43, + 1.53, + 1.62, + 1.7, + 1.76, + 1.75, + 1.76, + 1.83, + 1.83, + 1.79, + 1.76, + 1.73, + 1.74, + 1.67, + 1.54, + 1.36, + 1.21, + 1.1400000000000001, + 1.18, + 1.34, + 1.5, + 1.46, + 1.25, + 0.87, + 0.56, + 0.71, + 1.22, + 1.6300000000000001, + 1.6600000000000001, + 1.09, + 0.25, + -0.14, + -0.18, + -0.03, + 0.14, + 0.24, + 0.58, + 0.97, + 1.44, + 1.83, + 2.0, + 2.04, + 1.95, + 1.77, + 1.58, + 1.42 + ], + [ + -0.02, + -0.03, + -0.04, + -0.05, + -0.05, + -0.04, + -0.01, + 0.01, + 0.04, + 0.07, + 0.09, + 0.11, + 0.15, + 0.18, + 0.21, + 0.24, + 0.26, + 0.27, + 0.28, + 0.29, + 0.32, + 0.34, + 0.37, + 0.41000000000000003, + 0.44, + 0.48, + 0.51, + 0.56, + 0.63, + 0.72, + 0.8200000000000001, + 0.9500000000000001, + 1.06, + 1.18, + 1.28, + 1.37, + 1.45, + 1.53, + 1.6400000000000001, + 1.73, + 1.83, + 1.9100000000000001, + 1.97, + 2.04, + 2.12, + 2.2, + 2.27, + 2.2800000000000002, + 2.25, + 2.17, + 2.05, + 1.96, + 1.85, + 1.73, + 1.61, + 1.45, + 1.35, + 1.27, + 1.2, + 1.09, + 1.0, + 0.92, + 0.89, + 0.89, + 0.93, + 0.98, + 1.08, + 1.19, + 1.32, + 1.43, + 1.47, + 1.49, + 1.53, + 1.58, + 1.58, + 1.5, + 1.42, + 1.31, + 1.2, + 1.1, + 0.96, + 0.8300000000000001, + 0.72, + 0.65, + 0.62, + 0.59, + 0.59, + 0.62, + 0.66, + 0.7000000000000001, + 0.74, + 0.79, + 0.87, + 0.9500000000000001, + 1.04, + 1.1300000000000001, + 1.22, + 1.32, + 1.42, + 1.53, + 1.6400000000000001, + 1.76, + 1.8800000000000001, + 2.0, + 2.11, + 2.22, + 2.32, + 2.42, + 2.47, + 2.47, + 2.44, + 2.43, + 2.43, + 2.43, + 2.4, + 2.37, + 2.38, + 2.4, + 2.43, + 2.43, + 2.4, + 2.32, + 2.22, + 2.11, + 1.93, + 1.73, + 1.49, + 1.24, + 1.1300000000000001, + 1.07, + 1.05, + 1.03, + 0.9400000000000001, + 0.93, + 0.87, + 0.74, + 0.56, + 0.32, + 0.08, + -0.16, + -0.44, + -0.7000000000000001, + -0.9500000000000001, + -1.1400000000000001, + -1.34, + -1.58, + -1.85, + -2.1, + -2.43, + -2.65, + -2.77, + -2.83, + -2.7800000000000002, + -2.7800000000000002, + -2.67, + -2.57, + -2.42, + -2.29, + -2.16, + -2.07, + -1.95, + -1.82, + -1.61, + -1.35, + -1.08, + -0.78, + -0.49, + -0.22, + 0.05, + 0.31, + 0.54, + 0.7000000000000001, + 0.8200000000000001, + 0.85, + 0.89, + 0.81, + 0.77, + 0.65, + 0.52, + 0.41000000000000003, + 0.28, + 0.24, + 0.26, + 0.33, + 0.45, + 0.59, + 0.71, + 0.86, + 0.96, + 1.08, + 1.22, + 1.3900000000000001, + 1.55, + 1.71, + 1.83, + 1.87, + 1.87, + 1.81, + 1.77, + 1.83, + 1.86, + 2.0, + 2.06, + 2.17, + 2.22, + 2.21, + 2.25, + 2.2600000000000002, + 2.36, + 2.5100000000000002, + 2.6, + 2.74, + 2.7600000000000002, + 2.77, + 2.71, + 2.58, + 2.43, + 2.25, + 2.12, + 1.99, + 1.92, + 1.8900000000000001, + 1.8900000000000001, + 1.92, + 1.98, + 2.04, + 2.1, + 2.15, + 2.2, + 2.24, + 2.3000000000000003, + 2.38, + 2.46, + 2.58, + 2.69, + 2.8000000000000003, + 2.84, + 2.88, + 2.9, + 2.93, + 2.97, + 2.98, + 3.0700000000000003, + 3.11, + 3.17, + 3.18, + 3.21, + 3.24, + 3.27, + 3.34, + 3.4, + 3.44, + 3.36, + 3.24, + 3.13, + 3.0500000000000003, + 3.0700000000000003, + 3.12, + 3.19, + 3.21, + 3.08, + 2.89, + 2.69, + 2.59, + 2.5, + 2.41, + 2.34, + 2.16, + 2.0100000000000002, + 1.85, + 1.75, + 1.72, + 1.77, + 1.8900000000000001, + 2.0, + 2.05, + 2.05, + 2.05, + 2.05, + 1.98, + 1.8, + 1.6, + 1.47, + 1.32, + 1.19, + 1.1400000000000001, + 1.16, + 1.23, + 1.35, + 1.4000000000000001, + 1.3900000000000001, + 1.4000000000000001, + 1.46, + 1.53, + 1.6, + 1.62, + 1.51, + 1.35, + 1.31, + 1.3800000000000001, + 1.48, + 1.62, + 1.68, + 1.72, + 1.75, + 1.71, + 1.7, + 1.76, + 1.83, + 1.9100000000000001, + 1.87, + 1.72, + 1.69, + 1.6600000000000001, + 1.6, + 1.48, + 1.32, + 1.19, + 1.1500000000000001, + 1.28, + 1.48, + 1.62, + 1.6, + 1.32, + 0.88, + 0.55, + 0.62, + 1.1500000000000001, + 1.69, + 1.67, + 1.09, + 0.27, + -0.31, + -0.36, + -0.16, + 0.01, + 0.3, + 0.63, + 1.09, + 1.56, + 1.84, + 1.99, + 1.95, + 1.81, + 1.6400000000000001, + 1.46, + 1.36 + ], + [ + -0.04, + -0.05, + -0.06, + -0.07, + -0.07, + -0.06, + -0.04, + -0.01, + 0.01, + 0.04, + 0.07, + 0.1, + 0.13, + 0.18, + 0.21, + 0.24, + 0.26, + 0.27, + 0.28, + 0.3, + 0.32, + 0.37, + 0.41000000000000003, + 0.46, + 0.5, + 0.54, + 0.58, + 0.64, + 0.72, + 0.8200000000000001, + 0.93, + 1.06, + 1.2, + 1.31, + 1.41, + 1.5, + 1.56, + 1.6400000000000001, + 1.71, + 1.8, + 1.87, + 1.93, + 1.99, + 2.05, + 2.14, + 2.22, + 2.27, + 2.2600000000000002, + 2.19, + 2.05, + 1.9100000000000001, + 1.76, + 1.6500000000000001, + 1.52, + 1.41, + 1.31, + 1.22, + 1.18, + 1.11, + 1.07, + 0.99, + 0.9500000000000001, + 0.92, + 0.9400000000000001, + 0.99, + 1.06, + 1.18, + 1.34, + 1.5, + 1.61, + 1.6500000000000001, + 1.6500000000000001, + 1.6500000000000001, + 1.67, + 1.61, + 1.53, + 1.41, + 1.31, + 1.23, + 1.1300000000000001, + 1.02, + 0.89, + 0.8, + 0.74, + 0.7000000000000001, + 0.68, + 0.6900000000000001, + 0.72, + 0.78, + 0.84, + 0.9, + 0.98, + 1.04, + 1.1300000000000001, + 1.21, + 1.31, + 1.3800000000000001, + 1.46, + 1.55, + 1.6400000000000001, + 1.74, + 1.83, + 1.95, + 2.05, + 2.16, + 2.24, + 2.33, + 2.42, + 2.47, + 2.47, + 2.45, + 2.43, + 2.43, + 2.41, + 2.38, + 2.34, + 2.34, + 2.34, + 2.35, + 2.34, + 2.29, + 2.22, + 2.14, + 2.04, + 1.95, + 1.76, + 1.51, + 1.27, + 1.03, + 0.96, + 0.9500000000000001, + 0.93, + 0.98, + 1.01, + 1.01, + 0.91, + 0.67, + 0.39, + 0.11, + -0.2, + -0.48, + -0.77, + -1.0, + -1.18, + -1.36, + -1.61, + -1.8800000000000001, + -2.2600000000000002, + -2.59, + -2.87, + -2.98, + -2.9, + -2.84, + -2.68, + -2.56, + -2.35, + -2.17, + -1.96, + -1.8, + -1.68, + -1.55, + -1.43, + -1.23, + -1.0, + -0.74, + -0.46, + -0.21, + 0.05, + 0.28, + 0.53, + 0.71, + 0.87, + 0.92, + 0.9500000000000001, + 0.88, + 0.8, + 0.67, + 0.53, + 0.43, + 0.33, + 0.32, + 0.34, + 0.41000000000000003, + 0.52, + 0.64, + 0.75, + 0.85, + 0.9400000000000001, + 1.04, + 1.12, + 1.26, + 1.42, + 1.59, + 1.7, + 1.82, + 1.8800000000000001, + 1.8900000000000001, + 1.9000000000000001, + 1.87, + 1.86, + 1.8900000000000001, + 1.8900000000000001, + 1.9100000000000001, + 1.9100000000000001, + 1.8900000000000001, + 1.8800000000000001, + 1.8800000000000001, + 2.0, + 2.2, + 2.44, + 2.69, + 2.84, + 2.93, + 2.94, + 2.89, + 2.7600000000000002, + 2.62, + 2.44, + 2.29, + 2.16, + 2.07, + 2.0300000000000002, + 2.0300000000000002, + 2.06, + 2.08, + 2.12, + 2.18, + 2.24, + 2.29, + 2.34, + 2.39, + 2.46, + 2.52, + 2.6, + 2.68, + 2.72, + 2.74, + 2.75, + 2.77, + 2.77, + 2.81, + 2.88, + 2.98, + 3.14, + 3.2, + 3.29, + 3.34, + 3.38, + 3.42, + 3.44, + 3.49, + 3.47, + 3.37, + 3.21, + 3.0500000000000003, + 2.96, + 2.96, + 3.02, + 3.11, + 3.14, + 3.0700000000000003, + 2.89, + 2.75, + 2.65, + 2.6, + 2.52, + 2.36, + 2.18, + 1.98, + 1.82, + 1.7, + 1.67, + 1.73, + 1.86, + 1.96, + 1.98, + 2.0, + 2.0, + 1.97, + 1.84, + 1.7, + 1.61, + 1.51, + 1.44, + 1.31, + 1.18, + 1.2, + 1.29, + 1.4000000000000001, + 1.45, + 1.44, + 1.47, + 1.54, + 1.6400000000000001, + 1.72, + 1.6500000000000001, + 1.48, + 1.35, + 1.35, + 1.45, + 1.59, + 1.7, + 1.74, + 1.74, + 1.68, + 1.6300000000000001, + 1.61, + 1.67, + 1.82, + 1.9000000000000001, + 1.81, + 1.6600000000000001, + 1.49, + 1.45, + 1.41, + 1.3, + 1.19, + 1.07, + 1.1400000000000001, + 1.32, + 1.54, + 1.68, + 1.6500000000000001, + 1.37, + 0.86, + 0.43, + 0.51, + 1.03, + 1.58, + 1.68, + 1.1, + 0.32, + -0.26, + -0.3, + -0.1, + 0.2, + 0.49, + 0.86, + 1.33, + 1.67, + 1.9100000000000001, + 1.97, + 1.9000000000000001, + 1.71, + 1.5, + 1.3800000000000001, + 1.36 + ], + [ + -0.07, + -0.08, + -0.09, + -0.09, + -0.09, + -0.08, + -0.07, + -0.04, + -0.01, + 0.01, + 0.05, + 0.09, + 0.13, + 0.18, + 0.21, + 0.24, + 0.26, + 0.26, + 0.28, + 0.3, + 0.34, + 0.39, + 0.45, + 0.5, + 0.54, + 0.58, + 0.63, + 0.71, + 0.81, + 0.93, + 1.05, + 1.19, + 1.32, + 1.44, + 1.54, + 1.6, + 1.6600000000000001, + 1.7, + 1.77, + 1.83, + 1.8900000000000001, + 1.95, + 2.0, + 2.06, + 2.14, + 2.21, + 2.25, + 2.21, + 2.08, + 1.92, + 1.74, + 1.58, + 1.41, + 1.29, + 1.19, + 1.1, + 1.08, + 1.04, + 1.06, + 1.02, + 1.02, + 0.99, + 1.0, + 1.03, + 1.08, + 1.16, + 1.31, + 1.5, + 1.7, + 1.84, + 1.86, + 1.83, + 1.79, + 1.71, + 1.6400000000000001, + 1.53, + 1.41, + 1.32, + 1.24, + 1.1300000000000001, + 1.02, + 0.91, + 0.8200000000000001, + 0.78, + 0.74, + 0.73, + 0.73, + 0.77, + 0.8300000000000001, + 0.93, + 1.02, + 1.11, + 1.19, + 1.27, + 1.37, + 1.46, + 1.53, + 1.6, + 1.67, + 1.75, + 1.82, + 1.9100000000000001, + 1.99, + 2.09, + 2.17, + 2.25, + 2.31, + 2.39, + 2.46, + 2.46, + 2.43, + 2.4, + 2.39, + 2.37, + 2.34, + 2.31, + 2.2800000000000002, + 2.27, + 2.27, + 2.25, + 2.21, + 2.14, + 2.06, + 1.99, + 1.9100000000000001, + 1.8, + 1.55, + 1.28, + 1.05, + 0.85, + 0.8300000000000001, + 0.89, + 0.96, + 1.08, + 1.11, + 1.01, + 0.75, + 0.44, + 0.13, + -0.18, + -0.47000000000000003, + -0.75, + -0.9500000000000001, + -1.12, + -1.28, + -1.54, + -1.92, + -2.3000000000000003, + -2.72, + -2.99, + -3.02, + -2.92, + -2.73, + -2.5500000000000003, + -2.29, + -2.05, + -1.75, + -1.5, + -1.27, + -1.1, + -1.01, + -0.89, + -0.78, + -0.63, + -0.41000000000000003, + -0.19, + 0.04, + 0.23, + 0.45, + 0.61, + 0.8, + 0.85, + 0.9, + 0.86, + 0.78, + 0.67, + 0.53, + 0.44, + 0.35000000000000003, + 0.35000000000000003, + 0.38, + 0.47000000000000003, + 0.58, + 0.72, + 0.85, + 0.96, + 1.05, + 1.1, + 1.1300000000000001, + 1.19, + 1.28, + 1.43, + 1.55, + 1.6600000000000001, + 1.72, + 1.79, + 1.81, + 1.81, + 1.82, + 1.81, + 1.81, + 1.79, + 1.78, + 1.76, + 1.71, + 1.68, + 1.68, + 1.83, + 2.05, + 2.33, + 2.61, + 2.79, + 2.9, + 2.93, + 2.9, + 2.85, + 2.71, + 2.62, + 2.46, + 2.35, + 2.2600000000000002, + 2.22, + 2.22, + 2.2, + 2.22, + 2.24, + 2.29, + 2.34, + 2.39, + 2.44, + 2.49, + 2.5300000000000002, + 2.58, + 2.62, + 2.64, + 2.66, + 2.65, + 2.65, + 2.66, + 2.66, + 2.67, + 2.74, + 2.85, + 3.0100000000000002, + 3.16, + 3.2600000000000002, + 3.44, + 3.5100000000000002, + 3.5100000000000002, + 3.52, + 3.5100000000000002, + 3.46, + 3.34, + 3.16, + 3.02, + 2.98, + 2.96, + 3.0100000000000002, + 3.08, + 3.08, + 3.0300000000000002, + 2.92, + 2.7800000000000002, + 2.69, + 2.64, + 2.56, + 2.39, + 2.21, + 2.02, + 1.82, + 1.7, + 1.6400000000000001, + 1.7, + 1.84, + 1.95, + 1.95, + 1.95, + 1.94, + 1.86, + 1.74, + 1.6400000000000001, + 1.61, + 1.71, + 1.6400000000000001, + 1.48, + 1.34, + 1.32, + 1.41, + 1.46, + 1.51, + 1.51, + 1.54, + 1.69, + 1.82, + 1.83, + 1.7, + 1.48, + 1.34, + 1.37, + 1.51, + 1.62, + 1.6500000000000001, + 1.67, + 1.61, + 1.54, + 1.44, + 1.43, + 1.48, + 1.6400000000000001, + 1.71, + 1.62, + 1.43, + 1.25, + 1.16, + 1.12, + 1.06, + 0.9500000000000001, + 0.98, + 1.11, + 1.35, + 1.59, + 1.7, + 1.6400000000000001, + 1.33, + 0.77, + 0.29, + 0.3, + 0.84, + 1.43, + 1.59, + 1.18, + 0.39, + -0.01, + -0.05, + 0.22, + 0.53, + 0.81, + 1.19, + 1.52, + 1.81, + 1.96, + 1.98, + 1.8800000000000001, + 1.6600000000000001, + 1.44, + 1.35, + 1.36 + ], + [ + -0.09, + -0.11, + -0.11, + -0.11, + -0.12, + -0.11, + -0.09, + -0.07, + -0.04, + 0.0, + 0.03, + 0.09, + 0.13, + 0.18, + 0.22, + 0.25, + 0.26, + 0.27, + 0.29, + 0.32, + 0.37, + 0.42, + 0.48, + 0.54, + 0.58, + 0.63, + 0.7000000000000001, + 0.79, + 0.92, + 1.04, + 1.18, + 1.32, + 1.43, + 1.55, + 1.61, + 1.67, + 1.71, + 1.75, + 1.8, + 1.86, + 1.9100000000000001, + 1.96, + 2.0100000000000002, + 2.07, + 2.12, + 2.17, + 2.18, + 2.09, + 1.95, + 1.75, + 1.55, + 1.36, + 1.19, + 1.07, + 0.97, + 0.9500000000000001, + 0.93, + 0.98, + 1.01, + 1.06, + 1.07, + 1.06, + 1.08, + 1.12, + 1.18, + 1.29, + 1.46, + 1.69, + 1.92, + 2.07, + 2.09, + 2.02, + 1.9100000000000001, + 1.8, + 1.67, + 1.55, + 1.46, + 1.36, + 1.22, + 1.11, + 0.99, + 0.88, + 0.81, + 0.77, + 0.76, + 0.74, + 0.75, + 0.78, + 0.85, + 0.9500000000000001, + 1.07, + 1.17, + 1.28, + 1.37, + 1.48, + 1.57, + 1.6500000000000001, + 1.7, + 1.77, + 1.82, + 1.8900000000000001, + 1.95, + 2.0300000000000002, + 2.11, + 2.18, + 2.23, + 2.2800000000000002, + 2.35, + 2.42, + 2.43, + 2.39, + 2.36, + 2.34, + 2.32, + 2.3000000000000003, + 2.2600000000000002, + 2.22, + 2.2, + 2.18, + 2.17, + 2.14, + 2.08, + 1.99, + 1.92, + 1.86, + 1.75, + 1.61, + 1.34, + 1.08, + 0.89, + 0.76, + 0.8300000000000001, + 0.97, + 1.12, + 1.17, + 1.04, + 0.8, + 0.49, + 0.21, + -0.04, + -0.33, + -0.55, + -0.77, + -0.89, + -1.06, + -1.34, + -1.75, + -2.21, + -2.64, + -2.9, + -2.91, + -2.75, + -2.5300000000000002, + -2.25, + -1.95, + -1.61, + -1.26, + -0.9500000000000001, + -0.6900000000000001, + -0.51, + -0.43, + -0.4, + -0.39, + -0.3, + -0.18, + 0.02, + 0.19, + 0.37, + 0.49, + 0.65, + 0.7000000000000001, + 0.76, + 0.74, + 0.6900000000000001, + 0.63, + 0.52, + 0.45, + 0.38, + 0.37, + 0.41000000000000003, + 0.5, + 0.62, + 0.76, + 0.92, + 1.08, + 1.21, + 1.27, + 1.28, + 1.28, + 1.27, + 1.34, + 1.43, + 1.54, + 1.61, + 1.67, + 1.71, + 1.73, + 1.75, + 1.76, + 1.76, + 1.77, + 1.8, + 1.82, + 1.8, + 1.78, + 1.7, + 1.73, + 1.79, + 1.97, + 2.22, + 2.44, + 2.64, + 2.73, + 2.8000000000000003, + 2.81, + 2.7800000000000002, + 2.77, + 2.69, + 2.65, + 2.54, + 2.49, + 2.45, + 2.43, + 2.41, + 2.38, + 2.39, + 2.42, + 2.48, + 2.5100000000000002, + 2.5500000000000003, + 2.59, + 2.61, + 2.64, + 2.63, + 2.63, + 2.59, + 2.57, + 2.54, + 2.5500000000000003, + 2.54, + 2.54, + 2.61, + 2.72, + 2.81, + 2.95, + 3.16, + 3.35, + 3.5500000000000003, + 3.56, + 3.5, + 3.44, + 3.36, + 3.18, + 3.09, + 3.0500000000000003, + 3.0300000000000002, + 3.04, + 3.0500000000000003, + 3.0300000000000002, + 3.04, + 2.97, + 2.87, + 2.79, + 2.69, + 2.61, + 2.52, + 2.4, + 2.22, + 2.02, + 1.82, + 1.62, + 1.55, + 1.6400000000000001, + 1.81, + 1.94, + 1.96, + 1.93, + 1.9000000000000001, + 1.82, + 1.7, + 1.62, + 1.74, + 1.86, + 1.83, + 1.67, + 1.57, + 1.53, + 1.57, + 1.62, + 1.58, + 1.57, + 1.68, + 1.86, + 1.98, + 1.96, + 1.74, + 1.45, + 1.32, + 1.41, + 1.53, + 1.58, + 1.56, + 1.49, + 1.43, + 1.31, + 1.21, + 1.16, + 1.21, + 1.25, + 1.34, + 1.29, + 1.09, + 0.97, + 0.88, + 0.81, + 0.74, + 0.77, + 0.87, + 1.12, + 1.44, + 1.61, + 1.6400000000000001, + 1.53, + 1.11, + 0.58, + 0.16, + 0.11, + 0.68, + 1.33, + 1.53, + 1.18, + 0.68, + 0.26, + 0.33, + 0.62, + 0.88, + 1.16, + 1.3900000000000001, + 1.68, + 1.9100000000000001, + 2.0100000000000002, + 2.0100000000000002, + 1.8800000000000001, + 1.6300000000000001, + 1.4000000000000001, + 1.31, + 1.35 + ], + [ + -0.12, + -0.14, + -0.14, + -0.14, + -0.14, + -0.13, + -0.11, + -0.09, + -0.06, + -0.02, + 0.03, + 0.08, + 0.14, + 0.19, + 0.23, + 0.25, + 0.27, + 0.28, + 0.31, + 0.36, + 0.42, + 0.48, + 0.53, + 0.58, + 0.63, + 0.6900000000000001, + 0.77, + 0.89, + 1.03, + 1.16, + 1.3, + 1.4000000000000001, + 1.52, + 1.6, + 1.6600000000000001, + 1.7, + 1.74, + 1.79, + 1.84, + 1.9000000000000001, + 1.95, + 1.99, + 2.0300000000000002, + 2.07, + 2.1, + 2.11, + 2.06, + 1.96, + 1.75, + 1.55, + 1.34, + 1.1500000000000001, + 1.02, + 0.89, + 0.86, + 0.84, + 0.91, + 0.97, + 1.06, + 1.12, + 1.1500000000000001, + 1.1500000000000001, + 1.1500000000000001, + 1.19, + 1.31, + 1.46, + 1.67, + 1.95, + 2.16, + 2.2800000000000002, + 2.31, + 2.2, + 2.06, + 1.8900000000000001, + 1.73, + 1.57, + 1.48, + 1.33, + 1.18, + 1.05, + 0.9400000000000001, + 0.86, + 0.79, + 0.76, + 0.76, + 0.76, + 0.76, + 0.79, + 0.87, + 0.97, + 1.09, + 1.22, + 1.34, + 1.46, + 1.58, + 1.6600000000000001, + 1.71, + 1.77, + 1.81, + 1.86, + 1.9100000000000001, + 1.97, + 2.0300000000000002, + 2.11, + 2.17, + 2.21, + 2.25, + 2.32, + 2.38, + 2.38, + 2.36, + 2.35, + 2.32, + 2.3000000000000003, + 2.25, + 2.19, + 2.14, + 2.1, + 2.09, + 2.1, + 2.08, + 2.02, + 1.94, + 1.83, + 1.77, + 1.71, + 1.59, + 1.45, + 1.19, + 1.0, + 0.89, + 0.85, + 1.02, + 1.1500000000000001, + 1.17, + 1.07, + 0.8200000000000001, + 0.59, + 0.4, + 0.19, + 0.01, + -0.24, + -0.4, + -0.55, + -0.71, + -0.99, + -1.3900000000000001, + -1.8800000000000001, + -2.31, + -2.59, + -2.61, + -2.41, + -2.13, + -1.81, + -1.47, + -1.08, + -0.74, + -0.42, + -0.17, + -0.04, + 0.01, + -0.06, + -0.1, + -0.11, + -0.02, + 0.12, + 0.29, + 0.42, + 0.53, + 0.5700000000000001, + 0.62, + 0.62, + 0.59, + 0.5700000000000001, + 0.51, + 0.45, + 0.4, + 0.39, + 0.42, + 0.49, + 0.61, + 0.76, + 0.92, + 1.1, + 1.27, + 1.41, + 1.46, + 1.47, + 1.42, + 1.3900000000000001, + 1.42, + 1.48, + 1.57, + 1.6400000000000001, + 1.73, + 1.76, + 1.81, + 1.85, + 1.86, + 1.8800000000000001, + 1.9000000000000001, + 1.98, + 2.0300000000000002, + 2.06, + 2.0, + 1.95, + 1.8800000000000001, + 1.9100000000000001, + 1.97, + 2.12, + 2.31, + 2.41, + 2.5100000000000002, + 2.57, + 2.62, + 2.68, + 2.71, + 2.77, + 2.74, + 2.74, + 2.69, + 2.68, + 2.65, + 2.6, + 2.56, + 2.5500000000000003, + 2.58, + 2.61, + 2.64, + 2.66, + 2.68, + 2.69, + 2.68, + 2.65, + 2.61, + 2.56, + 2.48, + 2.44, + 2.38, + 2.38, + 2.39, + 2.45, + 2.5500000000000003, + 2.63, + 2.72, + 2.94, + 3.25, + 3.46, + 3.5300000000000002, + 3.44, + 3.29, + 3.13, + 3.04, + 3.04, + 3.06, + 3.1, + 3.1, + 3.02, + 2.99, + 2.95, + 2.89, + 2.85, + 2.77, + 2.66, + 2.58, + 2.47, + 2.34, + 2.18, + 1.97, + 1.69, + 1.46, + 1.36, + 1.47, + 1.73, + 1.8900000000000001, + 1.94, + 1.9100000000000001, + 1.8800000000000001, + 1.8, + 1.69, + 1.7, + 1.83, + 1.95, + 1.95, + 1.84, + 1.74, + 1.79, + 1.82, + 1.78, + 1.73, + 1.74, + 1.8800000000000001, + 2.09, + 2.21, + 2.12, + 1.82, + 1.44, + 1.32, + 1.4000000000000001, + 1.51, + 1.51, + 1.37, + 1.28, + 1.1400000000000001, + 1.03, + 1.0, + 0.93, + 0.89, + 0.92, + 0.86, + 0.81, + 0.77, + 0.67, + 0.59, + 0.51, + 0.51, + 0.59, + 0.85, + 1.23, + 1.49, + 1.57, + 1.5, + 1.21, + 0.85, + 0.35000000000000003, + -0.05, + 0.17, + 0.67, + 1.26, + 1.55, + 1.32, + 0.84, + 0.65, + 0.73, + 0.96, + 1.21, + 1.31, + 1.5, + 1.76, + 1.95, + 2.06, + 2.04, + 1.8800000000000001, + 1.59, + 1.3, + 1.18, + 1.25 + ], + [ + -0.14, + -0.17, + -0.17, + -0.16, + -0.15, + -0.14, + -0.13, + -0.1, + -0.07, + -0.03, + 0.03, + 0.09, + 0.15, + 0.21, + 0.25, + 0.27, + 0.29, + 0.31, + 0.36, + 0.41000000000000003, + 0.47000000000000003, + 0.53, + 0.59, + 0.64, + 0.6900000000000001, + 0.75, + 0.86, + 0.99, + 1.1300000000000001, + 1.27, + 1.36, + 1.47, + 1.56, + 1.6300000000000001, + 1.69, + 1.73, + 1.78, + 1.83, + 1.8900000000000001, + 1.95, + 2.0, + 2.04, + 2.07, + 2.09, + 2.07, + 2.02, + 1.94, + 1.75, + 1.55, + 1.34, + 1.1400000000000001, + 1.02, + 0.88, + 0.85, + 0.81, + 0.86, + 0.9400000000000001, + 1.04, + 1.1400000000000001, + 1.2, + 1.23, + 1.24, + 1.25, + 1.32, + 1.48, + 1.71, + 2.0100000000000002, + 2.24, + 2.39, + 2.49, + 2.45, + 2.35, + 2.15, + 1.96, + 1.73, + 1.56, + 1.3800000000000001, + 1.25, + 1.1, + 0.97, + 0.91, + 0.84, + 0.8, + 0.78, + 0.77, + 0.79, + 0.81, + 0.86, + 0.92, + 1.03, + 1.1500000000000001, + 1.3, + 1.43, + 1.58, + 1.69, + 1.73, + 1.77, + 1.78, + 1.82, + 1.85, + 1.9000000000000001, + 1.95, + 2.0100000000000002, + 2.07, + 2.12, + 2.18, + 2.23, + 2.2800000000000002, + 2.33, + 2.37, + 2.36, + 2.36, + 2.35, + 2.3000000000000003, + 2.22, + 2.13, + 2.04, + 2.0, + 1.99, + 2.0100000000000002, + 2.0, + 1.96, + 1.86, + 1.75, + 1.67, + 1.62, + 1.59, + 1.47, + 1.36, + 1.18, + 1.08, + 1.08, + 1.11, + 1.23, + 1.22, + 1.09, + 0.92, + 0.78, + 0.67, + 0.5700000000000001, + 0.41000000000000003, + 0.2, + 0.0, + -0.15, + -0.29, + -0.55, + -0.9500000000000001, + -1.36, + -1.82, + -2.06, + -2.06, + -1.9000000000000001, + -1.58, + -1.27, + -0.9, + -0.55, + -0.23, + 0.03, + 0.18, + 0.29, + 0.21, + 0.14, + 0.01, + -0.02, + 0.06, + 0.2, + 0.35000000000000003, + 0.47000000000000003, + 0.51, + 0.53, + 0.54, + 0.53, + 0.54, + 0.52, + 0.49, + 0.45, + 0.38, + 0.39, + 0.43, + 0.51, + 0.66, + 0.8200000000000001, + 1.01, + 1.19, + 1.37, + 1.47, + 1.57, + 1.53, + 1.51, + 1.5, + 1.51, + 1.61, + 1.68, + 1.82, + 1.9100000000000001, + 2.0, + 2.07, + 2.13, + 2.16, + 2.14, + 2.19, + 2.24, + 2.33, + 2.36, + 2.2800000000000002, + 2.21, + 2.11, + 2.04, + 2.0300000000000002, + 2.08, + 2.14, + 2.22, + 2.2800000000000002, + 2.34, + 2.44, + 2.5300000000000002, + 2.66, + 2.75, + 2.85, + 2.87, + 2.89, + 2.88, + 2.85, + 2.7800000000000002, + 2.72, + 2.71, + 2.72, + 2.74, + 2.7600000000000002, + 2.77, + 2.77, + 2.75, + 2.73, + 2.69, + 2.62, + 2.5100000000000002, + 2.42, + 2.31, + 2.23, + 2.18, + 2.19, + 2.27, + 2.37, + 2.49, + 2.59, + 2.7600000000000002, + 3.1, + 3.38, + 3.41, + 3.3200000000000003, + 3.11, + 2.98, + 3.0100000000000002, + 3.0300000000000002, + 3.13, + 3.15, + 3.0100000000000002, + 2.94, + 2.93, + 2.89, + 2.81, + 2.7800000000000002, + 2.71, + 2.6, + 2.5300000000000002, + 2.41, + 2.29, + 2.13, + 1.84, + 1.52, + 1.22, + 1.1500000000000001, + 1.26, + 1.57, + 1.84, + 1.9000000000000001, + 1.8900000000000001, + 1.87, + 1.81, + 1.76, + 1.75, + 1.87, + 2.02, + 2.0, + 1.9100000000000001, + 1.96, + 2.0300000000000002, + 2.07, + 2.0, + 1.93, + 1.96, + 2.1, + 2.32, + 2.47, + 2.31, + 1.93, + 1.51, + 1.26, + 1.32, + 1.41, + 1.25, + 1.08, + 0.87, + 0.77, + 0.8, + 0.78, + 0.8200000000000001, + 0.74, + 0.6, + 0.51, + 0.45, + 0.44, + 0.42, + 0.35000000000000003, + 0.27, + 0.31, + 0.55, + 0.96, + 1.31, + 1.5, + 1.47, + 1.21, + 0.9, + 0.5, + 0.12, + 0.09, + 0.23, + 0.8300000000000001, + 1.43, + 1.56, + 1.3900000000000001, + 1.08, + 0.9, + 1.05, + 1.29, + 1.35, + 1.3800000000000001, + 1.48, + 1.73, + 2.0, + 2.08, + 2.07, + 1.86, + 1.51, + 1.16, + 1.02, + 1.17 + ], + [ + -0.18, + -0.2, + -0.18, + -0.16, + -0.15, + -0.14, + -0.12, + -0.09, + -0.06, + -0.01, + 0.04, + 0.1, + 0.17, + 0.22, + 0.27, + 0.29, + 0.32, + 0.36, + 0.41000000000000003, + 0.46, + 0.52, + 0.59, + 0.65, + 0.7000000000000001, + 0.75, + 0.84, + 0.9400000000000001, + 1.08, + 1.22, + 1.31, + 1.41, + 1.5, + 1.58, + 1.6600000000000001, + 1.72, + 1.77, + 1.82, + 1.8800000000000001, + 1.94, + 2.0100000000000002, + 2.07, + 2.11, + 2.12, + 2.09, + 2.0300000000000002, + 1.93, + 1.76, + 1.57, + 1.35, + 1.1400000000000001, + 1.03, + 0.9, + 0.86, + 0.8200000000000001, + 0.86, + 0.92, + 1.02, + 1.1300000000000001, + 1.2, + 1.26, + 1.34, + 1.36, + 1.42, + 1.54, + 1.74, + 2.07, + 2.34, + 2.49, + 2.59, + 2.56, + 2.5500000000000003, + 2.36, + 2.17, + 1.9000000000000001, + 1.67, + 1.44, + 1.27, + 1.12, + 0.98, + 0.91, + 0.87, + 0.86, + 0.8300000000000001, + 0.8300000000000001, + 0.8300000000000001, + 0.85, + 0.9, + 0.9500000000000001, + 1.03, + 1.1300000000000001, + 1.26, + 1.41, + 1.56, + 1.7, + 1.77, + 1.81, + 1.79, + 1.79, + 1.79, + 1.82, + 1.85, + 1.9000000000000001, + 1.95, + 2.0, + 2.07, + 2.13, + 2.21, + 2.2600000000000002, + 2.31, + 2.35, + 2.39, + 2.42, + 2.4, + 2.32, + 2.21, + 2.08, + 1.96, + 1.9000000000000001, + 1.8800000000000001, + 1.8800000000000001, + 1.9000000000000001, + 1.86, + 1.77, + 1.6600000000000001, + 1.56, + 1.55, + 1.54, + 1.52, + 1.45, + 1.4000000000000001, + 1.32, + 1.35, + 1.42, + 1.3900000000000001, + 1.36, + 1.24, + 1.1400000000000001, + 1.04, + 1.03, + 0.98, + 0.8200000000000001, + 0.62, + 0.39, + 0.23, + 0.05, + -0.15, + -0.44, + -0.84, + -1.1500000000000001, + -1.4000000000000001, + -1.44, + -1.25, + -1.04, + -0.73, + -0.43, + -0.13, + 0.14, + 0.27, + 0.38, + 0.32, + 0.27, + 0.09, + 0.0, + 0.0, + 0.08, + 0.24, + 0.39, + 0.47000000000000003, + 0.51, + 0.51, + 0.5, + 0.51, + 0.53, + 0.53, + 0.5, + 0.43, + 0.35000000000000003, + 0.32, + 0.36, + 0.47000000000000003, + 0.61, + 0.81, + 0.99, + 1.19, + 1.32, + 1.45, + 1.48, + 1.51, + 1.52, + 1.54, + 1.6400000000000001, + 1.75, + 1.93, + 2.07, + 2.23, + 2.34, + 2.41, + 2.49, + 2.5100000000000002, + 2.49, + 2.44, + 2.48, + 2.5300000000000002, + 2.48, + 2.46, + 2.33, + 2.2600000000000002, + 2.17, + 2.1, + 2.09, + 2.07, + 2.12, + 2.14, + 2.23, + 2.32, + 2.46, + 2.62, + 2.7800000000000002, + 2.9, + 2.99, + 3.0300000000000002, + 3.0500000000000003, + 3.0, + 2.95, + 2.88, + 2.85, + 2.87, + 2.88, + 2.9, + 2.9, + 2.87, + 2.83, + 2.79, + 2.74, + 2.62, + 2.49, + 2.33, + 2.19, + 2.1, + 2.02, + 2.0, + 2.09, + 2.24, + 2.38, + 2.54, + 2.74, + 2.92, + 3.15, + 3.24, + 3.0500000000000003, + 2.94, + 2.94, + 3.0300000000000002, + 3.17, + 3.22, + 3.06, + 2.9, + 2.87, + 2.87, + 2.75, + 2.67, + 2.57, + 2.52, + 2.52, + 2.45, + 2.43, + 2.32, + 2.1, + 1.78, + 1.35, + 1.06, + 0.9500000000000001, + 1.18, + 1.47, + 1.74, + 1.8900000000000001, + 1.94, + 1.92, + 1.87, + 1.82, + 1.83, + 1.92, + 1.97, + 1.98, + 2.02, + 2.1, + 2.24, + 2.2800000000000002, + 2.2600000000000002, + 2.18, + 2.13, + 2.27, + 2.47, + 2.5500000000000003, + 2.5100000000000002, + 2.0300000000000002, + 1.5, + 1.25, + 1.17, + 1.08, + 0.93, + 0.65, + 0.42, + 0.48, + 0.55, + 0.76, + 0.81, + 0.73, + 0.51, + 0.31, + 0.25, + 0.23, + 0.23, + 0.17, + 0.12, + 0.26, + 0.66, + 1.08, + 1.41, + 1.49, + 1.23, + 0.93, + 0.56, + 0.22, + 0.15, + 0.14, + 0.59, + 1.1300000000000001, + 1.46, + 1.6500000000000001, + 1.4000000000000001, + 1.11, + 1.1300000000000001, + 1.32, + 1.5, + 1.48, + 1.31, + 1.3900000000000001, + 1.68, + 1.94, + 2.11, + 2.04, + 1.83, + 1.3800000000000001, + 0.99, + 1.0, + 1.17 + ], + [ + -0.17, + -0.19, + -0.18, + -0.16, + -0.15, + -0.13, + -0.1, + -0.07, + -0.04, + 0.01, + 0.06, + 0.13, + 0.19, + 0.25, + 0.3, + 0.33, + 0.36, + 0.41000000000000003, + 0.47000000000000003, + 0.52, + 0.59, + 0.65, + 0.72, + 0.78, + 0.85, + 0.92, + 1.04, + 1.16, + 1.27, + 1.37, + 1.45, + 1.53, + 1.6300000000000001, + 1.71, + 1.77, + 1.82, + 1.87, + 1.93, + 1.99, + 2.06, + 2.13, + 2.16, + 2.15, + 2.08, + 1.97, + 1.8, + 1.61, + 1.3900000000000001, + 1.17, + 1.04, + 0.92, + 0.9, + 0.86, + 0.88, + 0.91, + 1.02, + 1.12, + 1.21, + 1.27, + 1.33, + 1.43, + 1.54, + 1.6500000000000001, + 1.83, + 2.12, + 2.4, + 2.56, + 2.67, + 2.59, + 2.56, + 2.44, + 2.3000000000000003, + 2.0300000000000002, + 1.78, + 1.53, + 1.3, + 1.1400000000000001, + 0.99, + 0.91, + 0.87, + 0.88, + 0.89, + 0.91, + 0.92, + 0.9400000000000001, + 0.98, + 1.02, + 1.09, + 1.1500000000000001, + 1.26, + 1.3800000000000001, + 1.53, + 1.69, + 1.79, + 1.87, + 1.86, + 1.83, + 1.8, + 1.78, + 1.78, + 1.8, + 1.82, + 1.86, + 1.9100000000000001, + 1.97, + 2.07, + 2.16, + 2.24, + 2.3000000000000003, + 2.37, + 2.42, + 2.48, + 2.43, + 2.34, + 2.2, + 2.04, + 1.92, + 1.81, + 1.76, + 1.75, + 1.74, + 1.73, + 1.67, + 1.55, + 1.5, + 1.49, + 1.51, + 1.53, + 1.54, + 1.53, + 1.61, + 1.71, + 1.82, + 1.8, + 1.6400000000000001, + 1.55, + 1.42, + 1.4000000000000001, + 1.41, + 1.32, + 1.21, + 0.97, + 0.72, + 0.52, + 0.36, + 0.17, + -0.05, + -0.3, + -0.58, + -0.74, + -0.78, + -0.73, + -0.55, + -0.35000000000000003, + -0.13, + 0.1, + 0.23, + 0.35000000000000003, + 0.3, + 0.24, + 0.06, + -0.06, + -0.11, + -0.08, + 0.07, + 0.24, + 0.36, + 0.46, + 0.45, + 0.46, + 0.46, + 0.48, + 0.48, + 0.48, + 0.43, + 0.33, + 0.26, + 0.21, + 0.24, + 0.37, + 0.52, + 0.72, + 0.91, + 1.06, + 1.22, + 1.3, + 1.36, + 1.41, + 1.46, + 1.59, + 1.72, + 1.93, + 2.15, + 2.38, + 2.57, + 2.7, + 2.77, + 2.8000000000000003, + 2.8000000000000003, + 2.72, + 2.62, + 2.5500000000000003, + 2.5, + 2.48, + 2.38, + 2.37, + 2.32, + 2.2800000000000002, + 2.23, + 2.15, + 2.15, + 2.13, + 2.17, + 2.23, + 2.32, + 2.46, + 2.63, + 2.81, + 2.95, + 3.0500000000000003, + 3.13, + 3.14, + 3.14, + 3.08, + 3.06, + 3.0500000000000003, + 3.0500000000000003, + 3.0700000000000003, + 3.0700000000000003, + 3.0300000000000002, + 2.98, + 2.94, + 2.88, + 2.77, + 2.64, + 2.43, + 2.25, + 2.11, + 2.0, + 1.92, + 1.87, + 1.9100000000000001, + 2.1, + 2.32, + 2.5, + 2.66, + 2.79, + 2.87, + 2.84, + 2.77, + 2.75, + 2.87, + 3.1, + 3.2800000000000002, + 3.17, + 3.0, + 2.93, + 2.85, + 2.77, + 2.62, + 2.44, + 2.32, + 2.33, + 2.37, + 2.46, + 2.48, + 2.39, + 2.15, + 1.76, + 1.3, + 0.9500000000000001, + 0.96, + 1.1400000000000001, + 1.51, + 1.77, + 1.9100000000000001, + 2.02, + 2.0, + 1.94, + 1.9000000000000001, + 1.8900000000000001, + 1.9000000000000001, + 1.94, + 1.93, + 2.0, + 2.15, + 2.34, + 2.47, + 2.45, + 2.37, + 2.2800000000000002, + 2.25, + 2.4, + 2.59, + 2.45, + 2.13, + 1.58, + 1.11, + 0.96, + 0.81, + 0.52, + 0.21, + 0.17, + 0.2, + 0.52, + 0.79, + 0.89, + 0.81, + 0.56, + 0.3, + 0.14, + 0.12, + 0.09, + 0.03, + 0.1, + 0.38, + 0.81, + 1.27, + 1.47, + 1.27, + 0.98, + 0.58, + 0.26, + 0.17, + 0.13, + 0.46, + 0.89, + 1.27, + 1.61, + 1.51, + 1.27, + 1.16, + 1.25, + 1.54, + 1.71, + 1.55, + 1.26, + 1.18, + 1.52, + 1.93, + 2.0300000000000002, + 2.0, + 1.6500000000000001, + 1.24, + 0.96, + 0.9500000000000001, + 1.33 + ], + [ + -0.18, + -0.2, + -0.17, + -0.14, + -0.12, + -0.1, + -0.07, + -0.04, + 0.0, + 0.05, + 0.11, + 0.17, + 0.24, + 0.3, + 0.34, + 0.37, + 0.42, + 0.47000000000000003, + 0.53, + 0.6, + 0.66, + 0.73, + 0.81, + 0.88, + 0.9400000000000001, + 1.05, + 1.1400000000000001, + 1.25, + 1.35, + 1.43, + 1.5, + 1.59, + 1.68, + 1.76, + 1.82, + 1.87, + 1.9100000000000001, + 1.97, + 2.04, + 2.11, + 2.16, + 2.18, + 2.11, + 2.0300000000000002, + 1.86, + 1.68, + 1.48, + 1.24, + 1.09, + 0.9500000000000001, + 0.9500000000000001, + 0.93, + 0.9400000000000001, + 0.9500000000000001, + 1.03, + 1.1400000000000001, + 1.24, + 1.31, + 1.37, + 1.44, + 1.55, + 1.71, + 1.8900000000000001, + 2.13, + 2.39, + 2.56, + 2.7, + 2.62, + 2.52, + 2.42, + 2.33, + 2.11, + 1.86, + 1.6300000000000001, + 1.3800000000000001, + 1.2, + 1.03, + 0.9500000000000001, + 0.88, + 0.88, + 0.93, + 0.99, + 1.04, + 1.08, + 1.12, + 1.1500000000000001, + 1.21, + 1.25, + 1.3, + 1.36, + 1.48, + 1.6300000000000001, + 1.74, + 1.86, + 1.8900000000000001, + 1.9000000000000001, + 1.86, + 1.81, + 1.77, + 1.74, + 1.72, + 1.72, + 1.75, + 1.8, + 1.86, + 1.98, + 2.09, + 2.18, + 2.27, + 2.35, + 2.43, + 2.46, + 2.46, + 2.34, + 2.21, + 2.05, + 1.8900000000000001, + 1.76, + 1.6600000000000001, + 1.62, + 1.6, + 1.6, + 1.56, + 1.52, + 1.47, + 1.48, + 1.52, + 1.55, + 1.59, + 1.67, + 1.83, + 2.09, + 2.25, + 2.29, + 2.07, + 1.8800000000000001, + 1.74, + 1.68, + 1.61, + 1.62, + 1.43, + 1.27, + 1.03, + 0.8, + 0.59, + 0.44, + 0.27, + 0.09, + -0.08, + -0.22, + -0.29, + -0.29, + -0.24, + -0.13, + -0.01, + 0.1, + 0.2, + 0.18, + 0.13, + -0.04, + -0.19, + -0.27, + -0.31, + -0.17, + 0.0, + 0.16, + 0.31, + 0.34, + 0.35000000000000003, + 0.35000000000000003, + 0.37, + 0.37, + 0.36, + 0.32, + 0.25, + 0.18, + 0.1, + 0.08, + 0.15, + 0.25, + 0.43, + 0.61, + 0.79, + 0.9400000000000001, + 1.07, + 1.16, + 1.27, + 1.33, + 1.47, + 1.61, + 1.83, + 2.07, + 2.34, + 2.62, + 2.84, + 2.99, + 3.0300000000000002, + 3.02, + 2.96, + 2.81, + 2.64, + 2.49, + 2.38, + 2.3000000000000003, + 2.2600000000000002, + 2.3000000000000003, + 2.36, + 2.36, + 2.35, + 2.31, + 2.2600000000000002, + 2.24, + 2.25, + 2.2800000000000002, + 2.35, + 2.47, + 2.64, + 2.8000000000000003, + 2.95, + 3.08, + 3.16, + 3.22, + 3.23, + 3.25, + 3.2600000000000002, + 3.2600000000000002, + 3.27, + 3.2600000000000002, + 3.23, + 3.18, + 3.13, + 3.06, + 2.95, + 2.83, + 2.59, + 2.37, + 2.16, + 2.0100000000000002, + 1.9000000000000001, + 1.81, + 1.75, + 1.77, + 1.9100000000000001, + 2.16, + 2.38, + 2.5, + 2.58, + 2.57, + 2.54, + 2.5300000000000002, + 2.5300000000000002, + 2.82, + 3.14, + 3.17, + 3.13, + 3.0300000000000002, + 2.96, + 2.89, + 2.7800000000000002, + 2.56, + 2.2800000000000002, + 2.22, + 2.23, + 2.32, + 2.48, + 2.5, + 2.4, + 2.18, + 1.71, + 1.28, + 1.02, + 0.9500000000000001, + 1.27, + 1.6, + 1.75, + 1.93, + 1.97, + 2.05, + 2.0, + 1.97, + 1.96, + 1.92, + 1.83, + 1.81, + 1.8800000000000001, + 2.07, + 2.27, + 2.45, + 2.49, + 2.38, + 2.23, + 2.09, + 2.21, + 2.4, + 2.47, + 2.06, + 1.57, + 1.1500000000000001, + 0.77, + 0.51, + 0.17, + -0.04, + -0.13, + 0.12, + 0.5, + 0.77, + 0.9500000000000001, + 0.8200000000000001, + 0.56, + 0.3, + 0.1, + -0.01, + -0.05, + 0.0, + 0.17, + 0.5, + 1.01, + 1.41, + 1.31, + 1.03, + 0.5700000000000001, + 0.21, + 0.14, + 0.09, + 0.37, + 0.6900000000000001, + 1.07, + 1.44, + 1.49, + 1.37, + 1.18, + 1.1, + 1.36, + 1.76, + 1.85, + 1.54, + 1.12, + 1.02, + 1.26, + 1.67, + 1.98, + 1.82, + 1.52, + 1.08, + 0.77, + 1.04, + 1.49 + ], + [ + -0.15, + -0.16, + -0.13, + -0.11, + -0.09, + -0.06, + -0.03, + 0.01, + 0.05, + 0.1, + 0.17, + 0.23, + 0.29, + 0.35000000000000003, + 0.39, + 0.43, + 0.48, + 0.54, + 0.61, + 0.68, + 0.75, + 0.8300000000000001, + 0.92, + 1.01, + 1.1, + 1.18, + 1.28, + 1.37, + 1.45, + 1.51, + 1.57, + 1.6500000000000001, + 1.73, + 1.81, + 1.86, + 1.9000000000000001, + 1.95, + 2.02, + 2.08, + 2.13, + 2.16, + 2.1, + 2.0300000000000002, + 1.8800000000000001, + 1.74, + 1.56, + 1.37, + 1.2, + 1.02, + 1.0, + 0.99, + 1.03, + 1.05, + 1.1, + 1.18, + 1.29, + 1.3800000000000001, + 1.45, + 1.5, + 1.59, + 1.74, + 1.9100000000000001, + 2.12, + 2.32, + 2.52, + 2.66, + 2.64, + 2.5500000000000003, + 2.43, + 2.2800000000000002, + 2.13, + 1.94, + 1.72, + 1.49, + 1.32, + 1.12, + 1.03, + 0.96, + 0.9500000000000001, + 0.97, + 1.05, + 1.1500000000000001, + 1.22, + 1.28, + 1.32, + 1.37, + 1.4000000000000001, + 1.41, + 1.43, + 1.48, + 1.55, + 1.6500000000000001, + 1.77, + 1.85, + 1.92, + 1.9000000000000001, + 1.87, + 1.8, + 1.74, + 1.68, + 1.6300000000000001, + 1.6400000000000001, + 1.6600000000000001, + 1.7, + 1.77, + 1.87, + 1.99, + 2.11, + 2.21, + 2.31, + 2.39, + 2.44, + 2.4, + 2.33, + 2.19, + 2.06, + 1.8800000000000001, + 1.71, + 1.6, + 1.5, + 1.52, + 1.52, + 1.54, + 1.52, + 1.53, + 1.55, + 1.57, + 1.6, + 1.6400000000000001, + 1.76, + 1.95, + 2.31, + 2.62, + 2.54, + 2.42, + 2.1, + 1.92, + 1.74, + 1.69, + 1.57, + 1.55, + 1.36, + 1.24, + 0.97, + 0.75, + 0.58, + 0.47000000000000003, + 0.35000000000000003, + 0.24, + 0.14, + 0.05, + 0.01, + -0.03, + -0.03, + -0.01, + 0.0, + 0.01, + -0.03, + -0.14, + -0.3, + -0.41000000000000003, + -0.51, + -0.41000000000000003, + -0.29, + -0.11, + 0.07, + 0.15, + 0.19, + 0.2, + 0.21, + 0.21, + 0.21, + 0.18, + 0.12, + 0.06, + 0.0, + -0.03, + 0.0, + 0.07, + 0.22, + 0.36, + 0.55, + 0.7000000000000001, + 0.87, + 0.99, + 1.1400000000000001, + 1.23, + 1.37, + 1.49, + 1.68, + 1.9100000000000001, + 2.18, + 2.47, + 2.74, + 3.0, + 3.13, + 3.15, + 3.1, + 2.98, + 2.81, + 2.57, + 2.37, + 2.25, + 2.14, + 2.17, + 2.23, + 2.34, + 2.44, + 2.42, + 2.43, + 2.34, + 2.31, + 2.2800000000000002, + 2.29, + 2.34, + 2.45, + 2.6, + 2.7600000000000002, + 2.93, + 3.08, + 3.2, + 3.29, + 3.36, + 3.42, + 3.47, + 3.5, + 3.5100000000000002, + 3.47, + 3.41, + 3.34, + 3.2800000000000002, + 3.17, + 3.04, + 2.79, + 2.5300000000000002, + 2.27, + 2.05, + 1.8900000000000001, + 1.79, + 1.71, + 1.62, + 1.61, + 1.73, + 1.9100000000000001, + 2.13, + 2.2800000000000002, + 2.32, + 2.33, + 2.33, + 2.36, + 2.5100000000000002, + 2.73, + 2.94, + 3.11, + 3.0300000000000002, + 3.0, + 3.0, + 2.96, + 2.7800000000000002, + 2.5300000000000002, + 2.36, + 2.2600000000000002, + 2.27, + 2.36, + 2.39, + 2.39, + 2.2800000000000002, + 2.0100000000000002, + 1.7, + 1.3, + 1.04, + 1.12, + 1.31, + 1.49, + 1.6600000000000001, + 1.69, + 1.84, + 1.8800000000000001, + 1.98, + 2.0100000000000002, + 2.0300000000000002, + 1.8900000000000001, + 1.71, + 1.62, + 1.69, + 1.84, + 2.05, + 2.16, + 2.21, + 2.12, + 1.84, + 1.72, + 1.87, + 2.21, + 2.23, + 2.06, + 1.59, + 1.1400000000000001, + 0.77, + 0.35000000000000003, + 0.01, + -0.32, + -0.3, + -0.04, + 0.28, + 0.66, + 0.71, + 0.64, + 0.45, + 0.19, + -0.02, + -0.17, + -0.15, + 0.0, + 0.24, + 0.68, + 1.11, + 1.27, + 1.19, + 0.65, + 0.14, + 0.07, + 0.03, + 0.29, + 0.5700000000000001, + 0.9, + 1.27, + 1.44, + 1.44, + 1.28, + 1.07, + 1.16, + 1.52, + 1.81, + 1.85, + 1.51, + 0.93, + 0.66, + 0.98, + 1.43, + 1.69, + 1.74, + 1.35, + 0.88, + 0.81, + 0.97, + 1.3800000000000001 + ], + [ + -0.13, + -0.14, + -0.1, + -0.06, + -0.04, + -0.02, + 0.02, + 0.07, + 0.11, + 0.17, + 0.23, + 0.3, + 0.36, + 0.4, + 0.45, + 0.49, + 0.54, + 0.61, + 0.68, + 0.76, + 0.85, + 0.9500000000000001, + 1.06, + 1.1500000000000001, + 1.25, + 1.32, + 1.41, + 1.48, + 1.54, + 1.59, + 1.6400000000000001, + 1.71, + 1.78, + 1.85, + 1.9000000000000001, + 1.95, + 2.0, + 2.05, + 2.09, + 2.11, + 2.06, + 2.0, + 1.86, + 1.72, + 1.59, + 1.44, + 1.32, + 1.17, + 1.1, + 1.05, + 1.09, + 1.1400000000000001, + 1.18, + 1.24, + 1.33, + 1.44, + 1.54, + 1.61, + 1.69, + 1.8, + 1.95, + 2.14, + 2.32, + 2.48, + 2.62, + 2.65, + 2.62, + 2.5, + 2.35, + 2.19, + 1.99, + 1.83, + 1.61, + 1.48, + 1.31, + 1.22, + 1.12, + 1.1, + 1.1, + 1.1500000000000001, + 1.24, + 1.34, + 1.43, + 1.5, + 1.54, + 1.56, + 1.56, + 1.56, + 1.55, + 1.55, + 1.6, + 1.6500000000000001, + 1.74, + 1.83, + 1.85, + 1.87, + 1.81, + 1.77, + 1.69, + 1.6, + 1.57, + 1.57, + 1.6, + 1.6300000000000001, + 1.7, + 1.79, + 1.9000000000000001, + 2.02, + 2.14, + 2.25, + 2.34, + 2.38, + 2.37, + 2.2600000000000002, + 2.16, + 2.0, + 1.85, + 1.69, + 1.55, + 1.52, + 1.5, + 1.55, + 1.59, + 1.6, + 1.6300000000000001, + 1.6500000000000001, + 1.6600000000000001, + 1.68, + 1.72, + 1.82, + 2.05, + 2.34, + 2.59, + 2.69, + 2.38, + 2.14, + 1.85, + 1.6400000000000001, + 1.5, + 1.42, + 1.34, + 1.32, + 1.16, + 1.01, + 0.79, + 0.63, + 0.55, + 0.5, + 0.42, + 0.35000000000000003, + 0.29, + 0.2, + 0.14, + 0.05, + -0.02, + -0.07, + -0.14, + -0.2, + -0.34, + -0.45, + -0.6, + -0.54, + -0.5, + -0.33, + -0.19, + -0.07, + 0.0, + 0.03, + 0.05, + 0.06, + 0.07, + 0.05, + 0.0, + -0.06, + -0.11, + -0.13, + -0.09, + -0.03, + 0.09, + 0.21, + 0.37, + 0.53, + 0.7000000000000001, + 0.85, + 1.03, + 1.18, + 1.32, + 1.45, + 1.59, + 1.76, + 2.0, + 2.2600000000000002, + 2.54, + 2.8000000000000003, + 3.02, + 3.15, + 3.16, + 3.08, + 2.96, + 2.7600000000000002, + 2.5300000000000002, + 2.35, + 2.17, + 2.12, + 2.07, + 2.18, + 2.32, + 2.36, + 2.44, + 2.34, + 2.31, + 2.25, + 2.24, + 2.24, + 2.27, + 2.38, + 2.54, + 2.73, + 2.93, + 3.11, + 3.2800000000000002, + 3.4, + 3.49, + 3.58, + 3.66, + 3.72, + 3.7, + 3.68, + 3.58, + 3.48, + 3.39, + 3.29, + 3.0300000000000002, + 2.74, + 2.43, + 2.15, + 1.9100000000000001, + 1.74, + 1.6400000000000001, + 1.58, + 1.51, + 1.47, + 1.52, + 1.67, + 1.85, + 1.99, + 2.06, + 2.09, + 2.14, + 2.24, + 2.4, + 2.54, + 2.77, + 2.81, + 2.85, + 2.95, + 3.0500000000000003, + 2.99, + 2.82, + 2.6, + 2.45, + 2.36, + 2.33, + 2.3000000000000003, + 2.2600000000000002, + 2.16, + 2.0, + 1.81, + 1.58, + 1.33, + 1.19, + 1.16, + 1.28, + 1.37, + 1.42, + 1.36, + 1.51, + 1.6300000000000001, + 1.77, + 1.99, + 2.0, + 1.83, + 1.59, + 1.4000000000000001, + 1.44, + 1.57, + 1.6400000000000001, + 1.69, + 1.6500000000000001, + 1.49, + 1.26, + 1.12, + 1.33, + 1.78, + 2.11, + 1.92, + 1.62, + 1.24, + 0.84, + 0.42, + -0.11, + -0.4, + -0.58, + -0.38, + -0.04, + 0.17, + 0.29, + 0.29, + 0.19, + -0.01, + -0.23, + -0.31, + -0.19, + 0.05, + 0.4, + 0.74, + 1.03, + 1.19, + 0.8200000000000001, + 0.32, + 0.09, + -0.06, + 0.22, + 0.48, + 0.74, + 1.08, + 1.32, + 1.49, + 1.42, + 1.22, + 1.1400000000000001, + 1.28, + 1.54, + 1.82, + 1.73, + 1.22, + 0.71, + 0.46, + 0.58, + 1.12, + 1.55, + 1.55, + 1.29, + 0.9, + 0.63, + 0.87, + 1.27 + ], + [ + -0.1, + -0.09, + -0.06, + -0.02, + 0.0, + 0.04, + 0.08, + 0.13, + 0.18, + 0.24, + 0.3, + 0.36, + 0.42, + 0.47000000000000003, + 0.51, + 0.56, + 0.62, + 0.6900000000000001, + 0.77, + 0.86, + 0.97, + 1.07, + 1.19, + 1.3, + 1.3800000000000001, + 1.46, + 1.51, + 1.57, + 1.62, + 1.6600000000000001, + 1.71, + 1.76, + 1.84, + 1.9100000000000001, + 1.97, + 2.02, + 2.05, + 2.06, + 2.06, + 2.0, + 1.93, + 1.81, + 1.69, + 1.58, + 1.47, + 1.3900000000000001, + 1.29, + 1.24, + 1.18, + 1.19, + 1.21, + 1.27, + 1.32, + 1.4000000000000001, + 1.49, + 1.6, + 1.71, + 1.81, + 1.9000000000000001, + 2.02, + 2.19, + 2.35, + 2.49, + 2.62, + 2.66, + 2.68, + 2.59, + 2.49, + 2.31, + 2.12, + 1.96, + 1.76, + 1.6400000000000001, + 1.52, + 1.48, + 1.4000000000000001, + 1.36, + 1.33, + 1.33, + 1.37, + 1.44, + 1.55, + 1.6300000000000001, + 1.68, + 1.72, + 1.7, + 1.69, + 1.6600000000000001, + 1.6400000000000001, + 1.6300000000000001, + 1.6300000000000001, + 1.6500000000000001, + 1.69, + 1.73, + 1.78, + 1.74, + 1.72, + 1.6500000000000001, + 1.6, + 1.54, + 1.51, + 1.52, + 1.55, + 1.59, + 1.6500000000000001, + 1.74, + 1.83, + 1.93, + 2.06, + 2.19, + 2.27, + 2.33, + 2.24, + 2.16, + 2.0300000000000002, + 1.93, + 1.78, + 1.6500000000000001, + 1.56, + 1.53, + 1.54, + 1.6, + 1.62, + 1.6600000000000001, + 1.6600000000000001, + 1.69, + 1.72, + 1.74, + 1.79, + 1.87, + 2.04, + 2.27, + 2.48, + 2.43, + 2.25, + 1.96, + 1.7, + 1.48, + 1.25, + 1.17, + 1.08, + 1.05, + 1.0, + 0.86, + 0.71, + 0.62, + 0.59, + 0.56, + 0.52, + 0.46, + 0.41000000000000003, + 0.34, + 0.25, + 0.16, + 0.05, + -0.05, + -0.14, + -0.26, + -0.38, + -0.53, + -0.53, + -0.54, + -0.41000000000000003, + -0.31, + -0.2, + -0.15, + -0.1, + -0.09, + -0.07, + -0.06, + -0.07, + -0.1, + -0.14, + -0.19, + -0.21, + -0.17, + -0.1, + 0.02, + 0.14, + 0.27, + 0.41000000000000003, + 0.56, + 0.73, + 0.9, + 1.08, + 1.24, + 1.41, + 1.54, + 1.68, + 1.86, + 2.08, + 2.32, + 2.58, + 2.81, + 3.0100000000000002, + 3.12, + 3.11, + 3.06, + 2.96, + 2.8000000000000003, + 2.6, + 2.39, + 2.24, + 2.11, + 2.09, + 2.12, + 2.17, + 2.24, + 2.19, + 2.16, + 2.1, + 2.09, + 2.1, + 2.13, + 2.21, + 2.32, + 2.5100000000000002, + 2.74, + 2.97, + 3.2, + 3.38, + 3.5100000000000002, + 3.62, + 3.72, + 3.8200000000000003, + 3.87, + 3.89, + 3.83, + 3.74, + 3.64, + 3.5, + 3.31, + 3.0300000000000002, + 2.68, + 2.31, + 2.0, + 1.73, + 1.56, + 1.46, + 1.41, + 1.35, + 1.32, + 1.34, + 1.44, + 1.6, + 1.74, + 1.81, + 1.83, + 1.93, + 2.0300000000000002, + 2.14, + 2.25, + 2.39, + 2.5, + 2.64, + 2.87, + 3.0, + 3.0700000000000003, + 2.88, + 2.64, + 2.49, + 2.41, + 2.34, + 2.23, + 2.13, + 1.95, + 1.79, + 1.68, + 1.49, + 1.3800000000000001, + 1.28, + 1.24, + 1.29, + 1.36, + 1.29, + 1.32, + 1.22, + 1.35, + 1.5, + 1.79, + 2.0100000000000002, + 1.82, + 1.46, + 1.3, + 1.28, + 1.31, + 1.24, + 1.1300000000000001, + 1.01, + 0.79, + 0.49, + 0.33, + 0.74, + 1.33, + 1.74, + 1.86, + 1.6500000000000001, + 1.37, + 1.05, + 0.59, + 0.08, + -0.52, + -0.67, + -0.73, + -0.5, + -0.34, + -0.13, + -0.02, + -0.05, + -0.2, + -0.37, + -0.37, + -0.19, + 0.21, + 0.54, + 0.74, + 0.92, + 0.86, + 0.61, + 0.27, + -0.04, + 0.18, + 0.43, + 0.61, + 0.84, + 1.07, + 1.36, + 1.43, + 1.3900000000000001, + 1.27, + 1.21, + 1.32, + 1.55, + 1.61, + 1.3800000000000001, + 0.96, + 0.46, + 0.2, + 0.45, + 0.86, + 1.34, + 1.56, + 1.2, + 0.79, + 0.59, + 0.62, + 0.8200000000000001 + ], + [ + -0.06, + -0.05, + -0.01, + 0.03, + 0.06, + 0.1, + 0.15, + 0.2, + 0.25, + 0.31, + 0.37, + 0.42, + 0.48, + 0.53, + 0.58, + 0.64, + 0.71, + 0.79, + 0.88, + 0.99, + 1.1, + 1.22, + 1.34, + 1.41, + 1.49, + 1.53, + 1.58, + 1.6300000000000001, + 1.67, + 1.72, + 1.77, + 1.83, + 1.92, + 1.99, + 2.05, + 2.08, + 2.08, + 2.05, + 1.95, + 1.87, + 1.75, + 1.6400000000000001, + 1.55, + 1.46, + 1.42, + 1.36, + 1.34, + 1.31, + 1.33, + 1.35, + 1.3800000000000001, + 1.41, + 1.49, + 1.56, + 1.68, + 1.8, + 1.92, + 2.04, + 2.13, + 2.25, + 2.38, + 2.49, + 2.61, + 2.64, + 2.68, + 2.62, + 2.5500000000000003, + 2.42, + 2.2800000000000002, + 2.13, + 1.97, + 1.83, + 1.7, + 1.72, + 1.74, + 1.7, + 1.6600000000000001, + 1.61, + 1.58, + 1.6, + 1.6600000000000001, + 1.73, + 1.79, + 1.83, + 1.82, + 1.81, + 1.77, + 1.75, + 1.72, + 1.68, + 1.6500000000000001, + 1.62, + 1.61, + 1.61, + 1.61, + 1.59, + 1.55, + 1.51, + 1.48, + 1.46, + 1.45, + 1.46, + 1.49, + 1.54, + 1.61, + 1.7, + 1.78, + 1.85, + 1.96, + 2.06, + 2.16, + 2.12, + 2.08, + 1.96, + 1.86, + 1.76, + 1.68, + 1.57, + 1.53, + 1.49, + 1.54, + 1.53, + 1.56, + 1.55, + 1.56, + 1.6, + 1.6500000000000001, + 1.72, + 1.79, + 1.8900000000000001, + 2.0100000000000002, + 2.15, + 2.24, + 2.22, + 2.0100000000000002, + 1.76, + 1.57, + 1.33, + 1.12, + 0.91, + 0.86, + 0.78, + 0.75, + 0.68, + 0.61, + 0.58, + 0.58, + 0.6, + 0.5700000000000001, + 0.53, + 0.47000000000000003, + 0.42, + 0.34, + 0.24, + 0.14, + 0.03, + -0.07, + -0.22, + -0.37, + -0.42, + -0.45, + -0.35000000000000003, + -0.26, + -0.18, + -0.15, + -0.12, + -0.14, + -0.13, + -0.14, + -0.16, + -0.2, + -0.23, + -0.27, + -0.28, + -0.24, + -0.16, + -0.03, + 0.1, + 0.23, + 0.34, + 0.45, + 0.58, + 0.73, + 0.92, + 1.08, + 1.28, + 1.43, + 1.61, + 1.76, + 1.94, + 2.15, + 2.36, + 2.57, + 2.79, + 2.95, + 3.0500000000000003, + 3.08, + 3.0500000000000003, + 3.0, + 2.89, + 2.72, + 2.5300000000000002, + 2.34, + 2.19, + 2.08, + 2.0300000000000002, + 2.0, + 1.97, + 1.8900000000000001, + 1.87, + 1.83, + 1.8800000000000001, + 1.94, + 2.0300000000000002, + 2.13, + 2.31, + 2.54, + 2.8000000000000003, + 3.06, + 3.3000000000000003, + 3.49, + 3.63, + 3.73, + 3.84, + 3.95, + 4.03, + 4.05, + 4.03, + 3.96, + 3.83, + 3.67, + 3.4, + 3.0700000000000003, + 2.64, + 2.27, + 1.85, + 1.57, + 1.35, + 1.26, + 1.23, + 1.19, + 1.1500000000000001, + 1.17, + 1.26, + 1.41, + 1.56, + 1.6400000000000001, + 1.7, + 1.72, + 1.83, + 1.87, + 1.95, + 2.02, + 2.18, + 2.34, + 2.62, + 2.96, + 2.93, + 2.87, + 2.66, + 2.5, + 2.41, + 2.32, + 2.2, + 2.05, + 1.93, + 1.82, + 1.69, + 1.56, + 1.42, + 1.32, + 1.3, + 1.4000000000000001, + 1.5, + 1.49, + 1.41, + 1.23, + 1.06, + 1.31, + 1.6600000000000001, + 1.86, + 1.85, + 1.53, + 1.28, + 1.25, + 1.18, + 0.99, + 0.6900000000000001, + 0.45, + 0.17, + -0.18, + -0.3, + -0.03, + 0.85, + 1.52, + 1.75, + 1.74, + 1.61, + 1.41, + 0.93, + 0.35000000000000003, + -0.21, + -0.74, + -0.79, + -0.8200000000000001, + -0.5700000000000001, + -0.33, + -0.12, + -0.07, + -0.21, + -0.37, + -0.37, + -0.04, + 0.33, + 0.5700000000000001, + 0.73, + 0.71, + 0.66, + 0.49, + 0.21, + 0.24, + 0.39, + 0.54, + 0.6900000000000001, + 0.79, + 0.96, + 1.17, + 1.34, + 1.3, + 1.26, + 1.26, + 1.33, + 1.3900000000000001, + 1.27, + 1.02, + 0.65, + 0.28, + 0.2, + 0.31, + 0.78, + 1.25, + 1.32, + 1.16, + 0.6900000000000001, + 0.34, + 0.31, + 0.34 + ], + [ + -0.03, + -0.01, + 0.03, + 0.08, + 0.12, + 0.17, + 0.22, + 0.27, + 0.32, + 0.38, + 0.43, + 0.49, + 0.55, + 0.61, + 0.67, + 0.73, + 0.8200000000000001, + 0.91, + 1.02, + 1.1400000000000001, + 1.25, + 1.37, + 1.44, + 1.51, + 1.55, + 1.59, + 1.62, + 1.67, + 1.71, + 1.77, + 1.83, + 1.9100000000000001, + 1.99, + 2.08, + 2.11, + 2.1, + 2.05, + 1.92, + 1.81, + 1.67, + 1.56, + 1.5, + 1.43, + 1.44, + 1.41, + 1.42, + 1.41, + 1.44, + 1.47, + 1.51, + 1.55, + 1.61, + 1.67, + 1.77, + 1.9000000000000001, + 2.0300000000000002, + 2.17, + 2.2800000000000002, + 2.36, + 2.44, + 2.5, + 2.58, + 2.6, + 2.63, + 2.6, + 2.5500000000000003, + 2.46, + 2.36, + 2.2600000000000002, + 2.15, + 2.04, + 1.93, + 1.92, + 1.99, + 2.02, + 2.0300000000000002, + 1.96, + 1.8900000000000001, + 1.84, + 1.82, + 1.84, + 1.87, + 1.9000000000000001, + 1.9100000000000001, + 1.9100000000000001, + 1.8800000000000001, + 1.85, + 1.82, + 1.8, + 1.75, + 1.69, + 1.61, + 1.53, + 1.49, + 1.43, + 1.4000000000000001, + 1.36, + 1.36, + 1.37, + 1.3800000000000001, + 1.3900000000000001, + 1.42, + 1.43, + 1.48, + 1.56, + 1.6300000000000001, + 1.68, + 1.74, + 1.81, + 1.8900000000000001, + 1.9000000000000001, + 1.8900000000000001, + 1.8, + 1.7, + 1.6300000000000001, + 1.56, + 1.48, + 1.42, + 1.36, + 1.35, + 1.34, + 1.33, + 1.31, + 1.29, + 1.32, + 1.3900000000000001, + 1.5, + 1.6500000000000001, + 1.78, + 1.93, + 2.0300000000000002, + 2.06, + 2.07, + 1.99, + 1.82, + 1.67, + 1.49, + 1.26, + 0.99, + 0.8200000000000001, + 0.66, + 0.63, + 0.5700000000000001, + 0.54, + 0.51, + 0.52, + 0.58, + 0.6, + 0.6, + 0.56, + 0.5, + 0.44, + 0.36, + 0.27, + 0.17, + 0.1, + -0.04, + -0.16, + -0.26, + -0.32, + -0.24, + -0.14, + -0.06, + -0.01, + -0.01, + -0.04, + -0.06, + -0.11, + -0.14, + -0.22, + -0.27, + -0.34, + -0.36, + -0.31, + -0.25, + -0.1, + 0.05, + 0.19, + 0.32, + 0.4, + 0.48, + 0.58, + 0.6900000000000001, + 0.86, + 1.04, + 1.21, + 1.41, + 1.58, + 1.79, + 1.98, + 2.19, + 2.37, + 2.5100000000000002, + 2.67, + 2.83, + 2.93, + 3.0, + 3.02, + 3.04, + 2.99, + 2.85, + 2.68, + 2.45, + 2.2600000000000002, + 2.11, + 1.96, + 1.87, + 1.72, + 1.68, + 1.59, + 1.6500000000000001, + 1.7, + 1.83, + 1.97, + 2.14, + 2.35, + 2.6, + 2.9, + 3.16, + 3.4, + 3.59, + 3.73, + 3.84, + 3.95, + 4.08, + 4.18, + 4.25, + 4.28, + 4.26, + 4.16, + 3.98, + 3.66, + 3.21, + 2.7800000000000002, + 2.27, + 1.86, + 1.44, + 1.22, + 1.08, + 1.04, + 1.03, + 1.01, + 1.05, + 1.17, + 1.36, + 1.5, + 1.6400000000000001, + 1.7, + 1.74, + 1.74, + 1.71, + 1.68, + 1.79, + 1.8800000000000001, + 2.07, + 2.32, + 2.54, + 2.7, + 2.61, + 2.56, + 2.43, + 2.36, + 2.25, + 2.13, + 2.04, + 2.0100000000000002, + 1.94, + 1.8, + 1.6500000000000001, + 1.42, + 1.29, + 1.36, + 1.49, + 1.6500000000000001, + 1.76, + 1.52, + 1.24, + 1.09, + 1.08, + 1.49, + 1.86, + 1.77, + 1.52, + 1.35, + 1.34, + 1.19, + 0.8200000000000001, + 0.48, + 0.14, + -0.19, + -0.61, + -0.87, + -0.34, + 0.4, + 1.29, + 1.78, + 1.84, + 1.8900000000000001, + 1.6600000000000001, + 1.3800000000000001, + 0.73, + 0.1, + -0.41000000000000003, + -0.79, + -0.74, + -0.58, + -0.21, + 0.14, + 0.18, + -0.01, + -0.19, + -0.17, + 0.06, + 0.39, + 0.62, + 0.58, + 0.55, + 0.56, + 0.45, + 0.42, + 0.43, + 0.51, + 0.65, + 0.65, + 0.63, + 0.78, + 0.96, + 1.09, + 1.16, + 1.18, + 1.26, + 1.29, + 1.16, + 0.97, + 0.72, + 0.43, + 0.29, + 0.22, + 0.35000000000000003, + 0.67, + 1.01, + 1.22, + 0.9, + 0.48, + 0.21, + -0.05, + -0.06 + ], + [ + 0.01, + 0.04, + 0.09, + 0.14, + 0.19, + 0.23, + 0.29, + 0.34, + 0.39, + 0.45, + 0.51, + 0.56, + 0.62, + 0.68, + 0.75, + 0.8300000000000001, + 0.92, + 1.04, + 1.17, + 1.27, + 1.3800000000000001, + 1.45, + 1.53, + 1.56, + 1.59, + 1.61, + 1.6400000000000001, + 1.69, + 1.74, + 1.81, + 1.8800000000000001, + 1.96, + 2.05, + 2.1, + 2.1, + 2.05, + 1.9000000000000001, + 1.77, + 1.61, + 1.48, + 1.44, + 1.3800000000000001, + 1.44, + 1.45, + 1.52, + 1.53, + 1.57, + 1.59, + 1.6500000000000001, + 1.7, + 1.75, + 1.81, + 1.9000000000000001, + 2.02, + 2.14, + 2.2800000000000002, + 2.39, + 2.49, + 2.5500000000000003, + 2.5500000000000003, + 2.58, + 2.5500000000000003, + 2.56, + 2.54, + 2.5100000000000002, + 2.45, + 2.38, + 2.33, + 2.2600000000000002, + 2.2, + 2.14, + 2.11, + 2.17, + 2.25, + 2.34, + 2.3000000000000003, + 2.23, + 2.14, + 2.07, + 2.02, + 1.98, + 1.98, + 1.95, + 1.95, + 1.94, + 1.92, + 1.9000000000000001, + 1.8900000000000001, + 1.86, + 1.83, + 1.72, + 1.61, + 1.5, + 1.3800000000000001, + 1.31, + 1.21, + 1.22, + 1.23, + 1.28, + 1.33, + 1.37, + 1.3900000000000001, + 1.41, + 1.43, + 1.49, + 1.54, + 1.58, + 1.6, + 1.6300000000000001, + 1.6300000000000001, + 1.6300000000000001, + 1.58, + 1.52, + 1.44, + 1.37, + 1.29, + 1.23, + 1.16, + 1.11, + 1.08, + 1.04, + 1.03, + 0.98, + 1.0, + 1.05, + 1.18, + 1.3900000000000001, + 1.59, + 1.85, + 2.02, + 2.06, + 2.07, + 1.96, + 1.85, + 1.75, + 1.62, + 1.46, + 1.26, + 0.99, + 0.75, + 0.62, + 0.52, + 0.49, + 0.45, + 0.45, + 0.48, + 0.52, + 0.5700000000000001, + 0.55, + 0.52, + 0.46, + 0.36, + 0.29, + 0.18, + 0.11, + 0.03, + -0.05, + -0.13, + -0.21, + -0.13, + -0.04, + 0.07, + 0.16, + 0.16, + 0.12, + 0.09, + 0.04, + 0.01, + -0.06, + -0.14, + -0.28, + -0.34, + -0.35000000000000003, + -0.3, + -0.17, + -0.02, + 0.15, + 0.3, + 0.4, + 0.49, + 0.53, + 0.58, + 0.68, + 0.79, + 0.96, + 1.11, + 1.3, + 1.51, + 1.72, + 1.98, + 2.16, + 2.31, + 2.42, + 2.49, + 2.62, + 2.75, + 2.85, + 2.95, + 3.0100000000000002, + 3.0300000000000002, + 2.97, + 2.77, + 2.56, + 2.37, + 2.19, + 2.0100000000000002, + 1.8, + 1.69, + 1.55, + 1.56, + 1.55, + 1.68, + 1.8, + 2.0100000000000002, + 2.22, + 2.45, + 2.7, + 2.97, + 3.22, + 3.45, + 3.64, + 3.79, + 3.9, + 4.03, + 4.18, + 4.32, + 4.44, + 4.54, + 4.58, + 4.59, + 4.32, + 4.01, + 3.5100000000000002, + 2.97, + 2.45, + 1.93, + 1.52, + 1.1500000000000001, + 1.01, + 0.93, + 0.91, + 0.93, + 1.02, + 1.26, + 1.46, + 1.61, + 1.73, + 1.84, + 1.8800000000000001, + 1.73, + 1.61, + 1.58, + 1.6, + 1.68, + 1.77, + 1.96, + 2.1, + 2.21, + 2.27, + 2.22, + 2.24, + 2.15, + 2.0300000000000002, + 1.94, + 1.95, + 1.95, + 1.94, + 1.84, + 1.59, + 1.3800000000000001, + 1.28, + 1.3, + 1.53, + 1.76, + 1.78, + 1.6400000000000001, + 1.27, + 0.98, + 1.1, + 1.41, + 1.7, + 1.72, + 1.5, + 1.37, + 1.29, + 1.1300000000000001, + 0.76, + 0.35000000000000003, + 0.05, + -0.25, + -0.68, + -0.86, + -0.62, + 0.35000000000000003, + 1.23, + 1.67, + 1.8800000000000001, + 1.93, + 1.9100000000000001, + 1.51, + 1.04, + 0.36, + -0.21, + -0.53, + -0.61, + -0.29, + 0.23, + 0.56, + 0.62, + 0.41000000000000003, + 0.12, + 0.05, + 0.16, + 0.39, + 0.46, + 0.46, + 0.48, + 0.51, + 0.59, + 0.6, + 0.53, + 0.5700000000000001, + 0.5700000000000001, + 0.56, + 0.53, + 0.55, + 0.7000000000000001, + 0.8300000000000001, + 0.93, + 1.07, + 1.16, + 1.2, + 1.05, + 0.74, + 0.48, + 0.37, + 0.28, + 0.27, + 0.35000000000000003, + 0.51, + 0.77, + 0.86, + 0.72, + 0.44, + 0.12, + -0.11, + -0.41000000000000003 + ], + [ + 0.06, + 0.1, + 0.14, + 0.2, + 0.25, + 0.3, + 0.36, + 0.41000000000000003, + 0.47000000000000003, + 0.52, + 0.58, + 0.63, + 0.6900000000000001, + 0.76, + 0.84, + 0.93, + 1.04, + 1.16, + 1.27, + 1.3800000000000001, + 1.44, + 1.51, + 1.55, + 1.58, + 1.61, + 1.6300000000000001, + 1.6600000000000001, + 1.71, + 1.77, + 1.85, + 1.9100000000000001, + 1.98, + 2.04, + 2.05, + 2.02, + 1.8800000000000001, + 1.74, + 1.58, + 1.43, + 1.3900000000000001, + 1.34, + 1.44, + 1.5, + 1.62, + 1.7, + 1.74, + 1.76, + 1.81, + 1.85, + 1.9100000000000001, + 1.98, + 2.05, + 2.14, + 2.25, + 2.36, + 2.47, + 2.56, + 2.62, + 2.62, + 2.61, + 2.5300000000000002, + 2.49, + 2.47, + 2.45, + 2.42, + 2.38, + 2.34, + 2.3000000000000003, + 2.31, + 2.27, + 2.2600000000000002, + 2.2800000000000002, + 2.37, + 2.5, + 2.54, + 2.52, + 2.43, + 2.35, + 2.25, + 2.17, + 2.11, + 2.02, + 1.98, + 1.94, + 1.9100000000000001, + 1.9000000000000001, + 1.8900000000000001, + 1.9000000000000001, + 1.9000000000000001, + 1.85, + 1.77, + 1.6400000000000001, + 1.49, + 1.36, + 1.22, + 1.17, + 1.12, + 1.18, + 1.26, + 1.33, + 1.3900000000000001, + 1.43, + 1.44, + 1.45, + 1.45, + 1.48, + 1.48, + 1.48, + 1.43, + 1.4000000000000001, + 1.33, + 1.27, + 1.21, + 1.1500000000000001, + 1.07, + 1.0, + 0.93, + 0.87, + 0.8300000000000001, + 0.79, + 0.78, + 0.74, + 0.76, + 0.81, + 0.92, + 1.11, + 1.34, + 1.6400000000000001, + 1.8900000000000001, + 2.07, + 2.14, + 2.0, + 1.8800000000000001, + 1.78, + 1.69, + 1.57, + 1.45, + 1.21, + 0.97, + 0.74, + 0.58, + 0.49, + 0.44, + 0.41000000000000003, + 0.41000000000000003, + 0.41000000000000003, + 0.42, + 0.42, + 0.38, + 0.33, + 0.26, + 0.19, + 0.08, + -0.01, + -0.04, + -0.11, + -0.08, + -0.12, + -0.04, + 0.05, + 0.19, + 0.3, + 0.34, + 0.32, + 0.27, + 0.21, + 0.18, + 0.18, + 0.11, + 0.02, + -0.1, + -0.21, + -0.23, + -0.17, + -0.05, + 0.1, + 0.26, + 0.39, + 0.5, + 0.5700000000000001, + 0.63, + 0.66, + 0.7000000000000001, + 0.79, + 0.88, + 1.04, + 1.19, + 1.3900000000000001, + 1.61, + 1.85, + 2.08, + 2.2, + 2.27, + 2.34, + 2.41, + 2.5300000000000002, + 2.67, + 2.7800000000000002, + 2.93, + 2.99, + 2.96, + 2.83, + 2.67, + 2.5100000000000002, + 2.32, + 2.13, + 1.9100000000000001, + 1.72, + 1.6500000000000001, + 1.62, + 1.69, + 1.78, + 1.96, + 2.15, + 2.37, + 2.57, + 2.79, + 2.99, + 3.21, + 3.41, + 3.6, + 3.7600000000000002, + 3.9, + 4.07, + 4.24, + 4.43, + 4.6000000000000005, + 4.72, + 4.8500000000000005, + 4.78, + 4.67, + 4.23, + 3.8000000000000003, + 3.19, + 2.63, + 2.09, + 1.61, + 1.29, + 1.05, + 0.96, + 0.88, + 0.91, + 1.16, + 1.41, + 1.6400000000000001, + 1.79, + 1.9000000000000001, + 2.02, + 1.93, + 1.77, + 1.57, + 1.47, + 1.48, + 1.5, + 1.55, + 1.61, + 1.68, + 1.68, + 1.74, + 1.81, + 1.81, + 1.79, + 1.7, + 1.67, + 1.68, + 1.75, + 1.75, + 1.6300000000000001, + 1.45, + 1.3, + 1.22, + 1.3, + 1.49, + 1.76, + 1.8900000000000001, + 1.6, + 1.2, + 0.99, + 1.04, + 1.3800000000000001, + 1.72, + 1.6500000000000001, + 1.45, + 1.29, + 1.1500000000000001, + 0.92, + 0.56, + 0.26, + 0.23, + 0.01, + -0.34, + -0.6, + -0.31, + 0.4, + 1.1400000000000001, + 1.6400000000000001, + 1.82, + 1.9100000000000001, + 1.83, + 1.59, + 1.03, + 0.45, + -0.12, + -0.46, + -0.38, + 0.1, + 0.65, + 1.1500000000000001, + 1.1300000000000001, + 0.79, + 0.47000000000000003, + 0.2, + 0.21, + 0.23, + 0.28, + 0.32, + 0.38, + 0.61, + 0.76, + 0.62, + 0.51, + 0.43, + 0.42, + 0.4, + 0.37, + 0.36, + 0.42, + 0.55, + 0.6900000000000001, + 0.85, + 1.07, + 1.09, + 0.92, + 0.64, + 0.37, + 0.26, + 0.3, + 0.3, + 0.28, + 0.35000000000000003, + 0.51, + 0.59, + 0.64, + 0.52, + 0.28, + 0.0, + -0.4 + ], + [ + 0.11, + 0.16, + 0.21, + 0.25, + 0.31, + 0.37, + 0.42, + 0.48, + 0.54, + 0.59, + 0.65, + 0.71, + 0.77, + 0.85, + 0.93, + 1.03, + 1.1500000000000001, + 1.25, + 1.36, + 1.43, + 1.49, + 1.53, + 1.56, + 1.6, + 1.62, + 1.6500000000000001, + 1.69, + 1.74, + 1.8, + 1.86, + 1.9100000000000001, + 1.95, + 1.95, + 1.93, + 1.84, + 1.71, + 1.55, + 1.4000000000000001, + 1.37, + 1.32, + 1.45, + 1.55, + 1.73, + 1.87, + 1.96, + 2.02, + 2.04, + 2.06, + 2.11, + 2.16, + 2.22, + 2.2800000000000002, + 2.35, + 2.43, + 2.5100000000000002, + 2.57, + 2.63, + 2.64, + 2.62, + 2.54, + 2.46, + 2.4, + 2.37, + 2.36, + 2.34, + 2.33, + 2.31, + 2.37, + 2.41, + 2.41, + 2.4, + 2.45, + 2.5500000000000003, + 2.64, + 2.69, + 2.64, + 2.58, + 2.47, + 2.35, + 2.25, + 2.13, + 2.05, + 1.96, + 1.9100000000000001, + 1.86, + 1.84, + 1.86, + 1.8800000000000001, + 1.8900000000000001, + 1.86, + 1.79, + 1.68, + 1.53, + 1.3900000000000001, + 1.27, + 1.18, + 1.17, + 1.21, + 1.3, + 1.3900000000000001, + 1.45, + 1.51, + 1.52, + 1.49, + 1.46, + 1.41, + 1.4000000000000001, + 1.31, + 1.26, + 1.1300000000000001, + 1.04, + 0.9400000000000001, + 0.88, + 0.79, + 0.72, + 0.65, + 0.6, + 0.58, + 0.58, + 0.59, + 0.6, + 0.63, + 0.6900000000000001, + 0.8, + 1.0, + 1.21, + 1.44, + 1.71, + 1.92, + 2.08, + 2.05, + 1.95, + 1.8, + 1.69, + 1.58, + 1.47, + 1.3, + 1.11, + 0.89, + 0.71, + 0.55, + 0.45, + 0.38, + 0.36, + 0.32, + 0.28, + 0.22, + 0.13, + 0.07, + 0.0, + -0.05, + -0.08, + -0.16, + -0.15, + -0.21, + -0.12, + -0.11, + 0.04, + 0.15, + 0.31, + 0.45, + 0.52, + 0.53, + 0.48, + 0.41000000000000003, + 0.36, + 0.34, + 0.33, + 0.34, + 0.24, + 0.14, + 0.03, + -0.03, + 0.02, + 0.11, + 0.24, + 0.36, + 0.48, + 0.59, + 0.68, + 0.75, + 0.79, + 0.81, + 0.84, + 0.91, + 0.99, + 1.12, + 1.26, + 1.48, + 1.69, + 1.9000000000000001, + 2.06, + 2.13, + 2.21, + 2.2800000000000002, + 2.37, + 2.49, + 2.64, + 2.79, + 2.91, + 2.91, + 2.85, + 2.73, + 2.61, + 2.46, + 2.24, + 2.0300000000000002, + 1.87, + 1.79, + 1.83, + 1.94, + 2.04, + 2.19, + 2.37, + 2.54, + 2.7, + 2.82, + 2.99, + 3.1, + 3.2800000000000002, + 3.46, + 3.63, + 3.85, + 4.05, + 4.2700000000000005, + 4.49, + 4.63, + 4.79, + 4.83, + 4.83, + 4.6000000000000005, + 4.3100000000000005, + 3.7800000000000002, + 3.2600000000000002, + 2.67, + 2.19, + 1.76, + 1.48, + 1.27, + 1.08, + 1.01, + 1.06, + 1.28, + 1.61, + 1.85, + 1.92, + 2.0300000000000002, + 2.11, + 2.06, + 1.76, + 1.48, + 1.41, + 1.3900000000000001, + 1.4000000000000001, + 1.36, + 1.34, + 1.23, + 1.21, + 1.18, + 1.26, + 1.36, + 1.37, + 1.3900000000000001, + 1.3800000000000001, + 1.4000000000000001, + 1.44, + 1.41, + 1.31, + 1.24, + 1.1500000000000001, + 1.16, + 1.24, + 1.5, + 1.81, + 1.84, + 1.62, + 1.19, + 0.88, + 1.04, + 1.4000000000000001, + 1.62, + 1.58, + 1.34, + 1.11, + 0.9, + 0.54, + 0.26, + 0.34, + 0.38, + 0.46, + 0.21, + -0.06, + 0.1, + 0.5700000000000001, + 1.18, + 1.57, + 1.77, + 1.8, + 1.75, + 1.3800000000000001, + 0.88, + 0.29, + -0.23, + -0.44, + -0.25, + 0.33, + 1.1300000000000001, + 1.5, + 1.44, + 1.07, + 0.61, + 0.32, + 0.08, + 0.05, + 0.05, + 0.09, + 0.41000000000000003, + 0.7000000000000001, + 0.7000000000000001, + 0.5700000000000001, + 0.29, + 0.12, + 0.16, + 0.2, + 0.15, + 0.08, + 0.14, + 0.26, + 0.43, + 0.64, + 0.8300000000000001, + 0.96, + 0.8, + 0.51, + 0.27, + 0.26, + 0.3, + 0.35000000000000003, + 0.31, + 0.26, + 0.32, + 0.53, + 0.64, + 0.65, + 0.59, + 0.16, + -0.31 + ], + [ + 0.14, + 0.21, + 0.27, + 0.31, + 0.37, + 0.43, + 0.49, + 0.55, + 0.6, + 0.66, + 0.72, + 0.78, + 0.85, + 0.93, + 1.02, + 1.12, + 1.23, + 1.34, + 1.41, + 1.47, + 1.51, + 1.54, + 1.59, + 1.62, + 1.6500000000000001, + 1.68, + 1.71, + 1.76, + 1.8, + 1.83, + 1.85, + 1.84, + 1.82, + 1.76, + 1.6600000000000001, + 1.54, + 1.4000000000000001, + 1.37, + 1.33, + 1.47, + 1.59, + 1.82, + 2.0300000000000002, + 2.18, + 2.2800000000000002, + 2.32, + 2.34, + 2.35, + 2.38, + 2.41, + 2.44, + 2.47, + 2.48, + 2.54, + 2.5500000000000003, + 2.6, + 2.59, + 2.58, + 2.54, + 2.46, + 2.39, + 2.32, + 2.31, + 2.29, + 2.2800000000000002, + 2.27, + 2.39, + 2.5, + 2.57, + 2.6, + 2.59, + 2.62, + 2.68, + 2.73, + 2.74, + 2.71, + 2.61, + 2.49, + 2.35, + 2.22, + 2.1, + 2.0300000000000002, + 1.95, + 1.86, + 1.81, + 1.81, + 1.84, + 1.87, + 1.9000000000000001, + 1.86, + 1.81, + 1.7, + 1.58, + 1.45, + 1.36, + 1.27, + 1.26, + 1.3, + 1.3800000000000001, + 1.45, + 1.54, + 1.57, + 1.56, + 1.51, + 1.3900000000000001, + 1.33, + 1.21, + 1.12, + 0.98, + 0.85, + 0.6900000000000001, + 0.5700000000000001, + 0.47000000000000003, + 0.38, + 0.32, + 0.26, + 0.27, + 0.3, + 0.38, + 0.49, + 0.55, + 0.64, + 0.75, + 0.9500000000000001, + 1.1500000000000001, + 1.4000000000000001, + 1.62, + 1.76, + 1.94, + 1.96, + 1.94, + 1.8, + 1.67, + 1.52, + 1.42, + 1.24, + 1.07, + 0.9, + 0.74, + 0.58, + 0.47000000000000003, + 0.35000000000000003, + 0.27, + 0.21, + 0.13, + 0.03, + -0.12, + -0.22, + -0.33, + -0.38, + -0.31, + -0.32, + -0.21, + -0.21, + -0.11, + -0.05, + 0.13, + 0.29, + 0.47000000000000003, + 0.63, + 0.74, + 0.79, + 0.74, + 0.65, + 0.5700000000000001, + 0.51, + 0.48, + 0.47000000000000003, + 0.47000000000000003, + 0.47000000000000003, + 0.37, + 0.29, + 0.24, + 0.23, + 0.31, + 0.38, + 0.48, + 0.58, + 0.68, + 0.81, + 0.91, + 0.96, + 0.97, + 0.97, + 0.98, + 1.02, + 1.07, + 1.2, + 1.35, + 1.55, + 1.71, + 1.87, + 2.04, + 2.12, + 2.22, + 2.3000000000000003, + 2.37, + 2.5100000000000002, + 2.69, + 2.83, + 2.88, + 2.85, + 2.77, + 2.68, + 2.5100000000000002, + 2.31, + 2.1, + 1.96, + 1.94, + 2.05, + 2.17, + 2.34, + 2.45, + 2.57, + 2.71, + 2.79, + 2.89, + 2.94, + 3.0500000000000003, + 3.13, + 3.29, + 3.5100000000000002, + 3.74, + 3.99, + 4.24, + 4.42, + 4.58, + 4.64, + 4.67, + 4.55, + 4.32, + 3.97, + 3.54, + 3.0100000000000002, + 2.54, + 2.12, + 1.9000000000000001, + 1.6600000000000001, + 1.56, + 1.3800000000000001, + 1.25, + 1.29, + 1.48, + 1.77, + 1.9100000000000001, + 2.0, + 2.13, + 2.24, + 2.08, + 1.77, + 1.48, + 1.35, + 1.37, + 1.3900000000000001, + 1.29, + 1.1300000000000001, + 0.9500000000000001, + 0.71, + 0.7000000000000001, + 0.75, + 0.88, + 1.04, + 1.08, + 1.1300000000000001, + 1.1500000000000001, + 1.1, + 1.05, + 0.98, + 0.92, + 0.99, + 1.03, + 1.16, + 1.43, + 1.72, + 1.86, + 1.56, + 1.1400000000000001, + 0.9400000000000001, + 1.04, + 1.34, + 1.51, + 1.4000000000000001, + 1.12, + 0.86, + 0.52, + 0.2, + 0.1, + 0.22, + 0.6900000000000001, + 0.8300000000000001, + 0.68, + 0.47000000000000003, + 0.48, + 0.8200000000000001, + 1.23, + 1.55, + 1.7, + 1.7, + 1.48, + 1.08, + 0.58, + 0.03, + -0.37, + -0.53, + -0.2, + 0.54, + 1.25, + 1.68, + 1.54, + 1.05, + 0.58, + 0.22, + -0.02, + -0.16, + -0.2, + 0.03, + 0.35000000000000003, + 0.59, + 0.63, + 0.29, + -0.08, + -0.17, + -0.14, + -0.07, + -0.11, + -0.18, + -0.21, + -0.03, + 0.21, + 0.42, + 0.58, + 0.68, + 0.62, + 0.37, + 0.24, + 0.23, + 0.43, + 0.51, + 0.36, + 0.27, + 0.33, + 0.5, + 0.65, + 0.75, + 0.5700000000000001, + 0.27, + -0.23 + ], + [ + 0.19, + 0.27, + 0.32, + 0.37, + 0.43, + 0.49, + 0.55, + 0.61, + 0.66, + 0.72, + 0.78, + 0.85, + 0.92, + 1.01, + 1.1, + 1.2, + 1.31, + 1.3900000000000001, + 1.46, + 1.51, + 1.55, + 1.59, + 1.6400000000000001, + 1.67, + 1.7, + 1.71, + 1.73, + 1.75, + 1.76, + 1.76, + 1.73, + 1.71, + 1.67, + 1.61, + 1.53, + 1.42, + 1.3900000000000001, + 1.35, + 1.51, + 1.6500000000000001, + 1.9000000000000001, + 2.14, + 2.37, + 2.54, + 2.61, + 2.65, + 2.64, + 2.64, + 2.63, + 2.63, + 2.63, + 2.61, + 2.61, + 2.58, + 2.6, + 2.57, + 2.56, + 2.52, + 2.47, + 2.42, + 2.35, + 2.31, + 2.2800000000000002, + 2.2600000000000002, + 2.23, + 2.34, + 2.49, + 2.64, + 2.7600000000000002, + 2.7600000000000002, + 2.75, + 2.73, + 2.73, + 2.72, + 2.69, + 2.64, + 2.5500000000000003, + 2.4, + 2.23, + 2.1, + 2.0, + 1.93, + 1.86, + 1.78, + 1.72, + 1.72, + 1.78, + 1.85, + 1.84, + 1.83, + 1.76, + 1.68, + 1.57, + 1.47, + 1.3800000000000001, + 1.33, + 1.3, + 1.32, + 1.3800000000000001, + 1.46, + 1.51, + 1.52, + 1.49, + 1.3900000000000001, + 1.27, + 1.11, + 0.98, + 0.81, + 0.66, + 0.49, + 0.31, + 0.17, + 0.02, + -0.03, + -0.1, + -0.07, + -0.03, + 0.09, + 0.25, + 0.4, + 0.56, + 0.68, + 0.85, + 1.05, + 1.32, + 1.56, + 1.71, + 1.83, + 1.79, + 1.8, + 1.68, + 1.56, + 1.3900000000000001, + 1.27, + 1.1, + 0.93, + 0.75, + 0.6, + 0.48, + 0.39, + 0.27, + 0.17, + 0.06, + -0.07, + -0.17, + -0.33, + -0.46, + -0.58, + -0.65, + -0.56, + -0.49, + -0.26, + -0.15, + 0.04, + 0.14, + 0.3, + 0.48, + 0.67, + 0.86, + 0.99, + 1.1, + 1.05, + 0.9400000000000001, + 0.81, + 0.72, + 0.64, + 0.59, + 0.5700000000000001, + 0.5700000000000001, + 0.56, + 0.59, + 0.52, + 0.5, + 0.49, + 0.5, + 0.56, + 0.61, + 0.6900000000000001, + 0.8, + 0.93, + 1.07, + 1.1400000000000001, + 1.1500000000000001, + 1.1300000000000001, + 1.09, + 1.06, + 1.08, + 1.1500000000000001, + 1.28, + 1.4000000000000001, + 1.56, + 1.72, + 1.8900000000000001, + 2.07, + 2.16, + 2.24, + 2.31, + 2.43, + 2.61, + 2.75, + 2.82, + 2.81, + 2.7600000000000002, + 2.64, + 2.48, + 2.29, + 2.1, + 2.0, + 2.0100000000000002, + 2.14, + 2.35, + 2.5, + 2.65, + 2.74, + 2.82, + 2.9, + 2.97, + 3.02, + 3.0100000000000002, + 3.08, + 3.18, + 3.38, + 3.6, + 3.85, + 4.07, + 4.2700000000000005, + 4.36, + 4.41, + 4.33, + 4.15, + 3.84, + 3.43, + 3.02, + 2.58, + 2.22, + 2.0300000000000002, + 1.87, + 1.86, + 1.74, + 1.6400000000000001, + 1.52, + 1.55, + 1.73, + 1.82, + 1.94, + 2.0, + 2.13, + 2.25, + 2.15, + 1.78, + 1.46, + 1.36, + 1.3900000000000001, + 1.3800000000000001, + 1.31, + 1.02, + 0.67, + 0.42, + 0.25, + 0.35000000000000003, + 0.52, + 0.71, + 0.89, + 0.9500000000000001, + 0.93, + 0.87, + 0.71, + 0.62, + 0.68, + 0.75, + 0.8300000000000001, + 0.96, + 1.21, + 1.51, + 1.6500000000000001, + 1.48, + 1.19, + 1.06, + 1.1300000000000001, + 1.29, + 1.36, + 1.1500000000000001, + 0.87, + 0.58, + 0.26, + 0.0, + -0.06, + 0.35000000000000003, + 0.81, + 1.04, + 0.96, + 0.86, + 0.89, + 1.06, + 1.37, + 1.61, + 1.73, + 1.52, + 1.1500000000000001, + 0.75, + 0.25, + -0.18, + -0.49, + -0.55, + -0.19, + 0.52, + 1.24, + 1.58, + 1.4000000000000001, + 0.91, + 0.44, + 0.09, + -0.13, + -0.29, + -0.27, + -0.08, + 0.21, + 0.45, + 0.33, + -0.03, + -0.33, + -0.45, + -0.36, + -0.27, + -0.32, + -0.46, + -0.43, + -0.24, + 0.03, + 0.25, + 0.39, + 0.39, + 0.34, + 0.23, + 0.12, + 0.34, + 0.5700000000000001, + 0.58, + 0.45, + 0.31, + 0.34, + 0.44, + 0.55, + 0.47000000000000003, + 0.28, + 0.04, + -0.26 + ], + [ + 0.23, + 0.31, + 0.37, + 0.42, + 0.48, + 0.54, + 0.6, + 0.66, + 0.72, + 0.78, + 0.84, + 0.91, + 0.99, + 1.09, + 1.19, + 1.29, + 1.3800000000000001, + 1.45, + 1.51, + 1.56, + 1.6, + 1.6500000000000001, + 1.68, + 1.72, + 1.72, + 1.72, + 1.71, + 1.69, + 1.68, + 1.6400000000000001, + 1.61, + 1.57, + 1.54, + 1.51, + 1.44, + 1.45, + 1.43, + 1.58, + 1.74, + 1.98, + 2.24, + 2.49, + 2.73, + 2.86, + 2.93, + 2.92, + 2.9, + 2.85, + 2.81, + 2.7800000000000002, + 2.75, + 2.72, + 2.71, + 2.69, + 2.69, + 2.67, + 2.59, + 2.5500000000000003, + 2.5, + 2.45, + 2.41, + 2.37, + 2.36, + 2.32, + 2.36, + 2.47, + 2.6, + 2.7600000000000002, + 2.83, + 2.83, + 2.79, + 2.74, + 2.66, + 2.56, + 2.5100000000000002, + 2.43, + 2.34, + 2.2, + 2.0300000000000002, + 1.9000000000000001, + 1.8, + 1.74, + 1.67, + 1.58, + 1.52, + 1.55, + 1.62, + 1.68, + 1.68, + 1.68, + 1.6300000000000001, + 1.57, + 1.48, + 1.4000000000000001, + 1.32, + 1.26, + 1.2, + 1.22, + 1.26, + 1.32, + 1.36, + 1.36, + 1.3, + 1.19, + 1.04, + 0.87, + 0.7000000000000001, + 0.52, + 0.35000000000000003, + 0.16, + -0.01, + -0.19, + -0.28, + -0.35000000000000003, + -0.33, + -0.3, + -0.19, + -0.04, + 0.15, + 0.35000000000000003, + 0.52, + 0.6900000000000001, + 0.86, + 1.09, + 1.35, + 1.59, + 1.74, + 1.68, + 1.6400000000000001, + 1.43, + 1.3, + 1.11, + 0.9400000000000001, + 0.79, + 0.64, + 0.49, + 0.35000000000000003, + 0.24, + 0.17, + 0.1, + 0.01, + -0.1, + -0.25, + -0.37, + -0.51, + -0.62, + -0.67, + -0.74, + -0.63, + -0.53, + -0.28, + -0.06, + 0.19, + 0.38, + 0.5700000000000001, + 0.75, + 0.92, + 1.11, + 1.24, + 1.37, + 1.3900000000000001, + 1.32, + 1.1300000000000001, + 0.93, + 0.8200000000000001, + 0.75, + 0.68, + 0.63, + 0.62, + 0.63, + 0.67, + 0.76, + 0.74, + 0.75, + 0.76, + 0.76, + 0.79, + 0.8200000000000001, + 0.92, + 1.07, + 1.21, + 1.31, + 1.33, + 1.29, + 1.23, + 1.16, + 1.12, + 1.1500000000000001, + 1.19, + 1.3, + 1.42, + 1.58, + 1.76, + 1.94, + 2.08, + 2.15, + 2.23, + 2.34, + 2.48, + 2.62, + 2.7, + 2.71, + 2.65, + 2.54, + 2.39, + 2.2, + 2.05, + 1.95, + 1.97, + 2.1, + 2.34, + 2.57, + 2.72, + 2.84, + 2.92, + 3.0, + 3.06, + 3.09, + 3.08, + 3.0500000000000003, + 3.14, + 3.23, + 3.43, + 3.62, + 3.83, + 3.98, + 4.07, + 4.07, + 3.98, + 3.7, + 3.3000000000000003, + 2.88, + 2.42, + 2.11, + 1.95, + 1.85, + 1.8900000000000001, + 1.8800000000000001, + 1.84, + 1.74, + 1.75, + 1.79, + 1.86, + 1.95, + 1.85, + 1.87, + 2.02, + 2.16, + 2.09, + 1.79, + 1.46, + 1.33, + 1.3, + 1.27, + 1.1500000000000001, + 0.87, + 0.48, + 0.16, + 0.05, + 0.17, + 0.36, + 0.59, + 0.78, + 0.86, + 0.84, + 0.66, + 0.49, + 0.4, + 0.43, + 0.51, + 0.58, + 0.67, + 0.88, + 1.18, + 1.34, + 1.3800000000000001, + 1.31, + 1.21, + 1.26, + 1.29, + 1.1500000000000001, + 0.92, + 0.64, + 0.37, + 0.16, + -0.07, + 0.04, + 0.44, + 0.85, + 1.1, + 1.16, + 1.11, + 1.22, + 1.42, + 1.58, + 1.78, + 1.73, + 1.45, + 0.9500000000000001, + 0.44, + 0.03, + -0.28, + -0.54, + -0.54, + -0.21, + 0.35000000000000003, + 1.03, + 1.4000000000000001, + 1.21, + 0.78, + 0.33, + 0.04, + -0.19, + -0.29, + -0.28, + -0.18, + 0.07, + 0.17, + 0.03, + -0.25, + -0.51, + -0.59, + -0.49, + -0.4, + -0.45, + -0.56, + -0.55, + -0.33, + 0.0, + 0.2, + 0.22, + 0.22, + 0.12, + 0.02, + 0.03, + 0.25, + 0.58, + 0.64, + 0.44, + 0.28, + 0.28, + 0.34, + 0.16, + -0.1, + -0.25, + -0.44, + -0.53 + ], + [ + 0.27, + 0.36, + 0.42, + 0.46, + 0.52, + 0.58, + 0.64, + 0.71, + 0.77, + 0.8300000000000001, + 0.89, + 0.97, + 1.06, + 1.17, + 1.27, + 1.37, + 1.46, + 1.52, + 1.57, + 1.62, + 1.6600000000000001, + 1.69, + 1.72, + 1.73, + 1.71, + 1.67, + 1.6300000000000001, + 1.6, + 1.55, + 1.52, + 1.48, + 1.46, + 1.47, + 1.45, + 1.51, + 1.52, + 1.69, + 1.85, + 2.07, + 2.33, + 2.57, + 2.83, + 3.0, + 3.11, + 3.12, + 3.09, + 3.02, + 2.92, + 2.87, + 2.81, + 2.79, + 2.79, + 2.79, + 2.85, + 2.85, + 2.83, + 2.75, + 2.66, + 2.61, + 2.57, + 2.5300000000000002, + 2.56, + 2.56, + 2.56, + 2.61, + 2.64, + 2.74, + 2.79, + 2.8000000000000003, + 2.7800000000000002, + 2.71, + 2.61, + 2.45, + 2.33, + 2.2, + 2.13, + 2.04, + 1.92, + 1.82, + 1.69, + 1.6, + 1.53, + 1.47, + 1.3800000000000001, + 1.33, + 1.35, + 1.3900000000000001, + 1.43, + 1.46, + 1.45, + 1.47, + 1.43, + 1.36, + 1.27, + 1.2, + 1.11, + 1.06, + 1.05, + 1.09, + 1.1400000000000001, + 1.17, + 1.17, + 1.11, + 1.01, + 0.86, + 0.7000000000000001, + 0.53, + 0.35000000000000003, + 0.17, + -0.01, + -0.18, + -0.3, + -0.38, + -0.4, + -0.35000000000000003, + -0.3, + -0.19, + -0.06, + 0.11, + 0.31, + 0.46, + 0.63, + 0.8, + 1.02, + 1.26, + 1.5, + 1.57, + 1.51, + 1.25, + 1.04, + 0.73, + 0.51, + 0.31, + 0.14, + 0.05, + -0.07, + -0.12, + -0.17, + -0.2, + -0.24, + -0.31, + -0.42, + -0.53, + -0.62, + -0.7000000000000001, + -0.64, + -0.65, + -0.46, + -0.34, + -0.12, + 0.13, + 0.33, + 0.58, + 0.81, + 1.02, + 1.19, + 1.36, + 1.46, + 1.56, + 1.6300000000000001, + 1.62, + 1.49, + 1.25, + 1.04, + 0.89, + 0.8200000000000001, + 0.74, + 0.68, + 0.62, + 0.64, + 0.75, + 0.84, + 0.97, + 0.98, + 0.99, + 0.99, + 0.97, + 0.99, + 1.05, + 1.18, + 1.33, + 1.44, + 1.48, + 1.45, + 1.37, + 1.28, + 1.19, + 1.1400000000000001, + 1.16, + 1.21, + 1.32, + 1.46, + 1.6300000000000001, + 1.77, + 1.9100000000000001, + 2.02, + 2.1, + 2.19, + 2.32, + 2.46, + 2.5300000000000002, + 2.54, + 2.48, + 2.39, + 2.25, + 2.11, + 1.98, + 1.8900000000000001, + 1.8900000000000001, + 2.0300000000000002, + 2.25, + 2.52, + 2.74, + 2.87, + 3.0100000000000002, + 3.09, + 3.12, + 3.14, + 3.12, + 3.1, + 3.08, + 3.16, + 3.21, + 3.37, + 3.48, + 3.59, + 3.68, + 3.68, + 3.5700000000000003, + 3.27, + 2.85, + 2.38, + 1.99, + 1.79, + 1.73, + 1.83, + 1.87, + 1.85, + 1.81, + 1.75, + 1.77, + 1.95, + 2.02, + 1.8800000000000001, + 1.76, + 1.6300000000000001, + 1.75, + 1.94, + 1.9000000000000001, + 1.68, + 1.4000000000000001, + 1.18, + 1.05, + 0.96, + 0.76, + 0.54, + 0.24, + 0.0, + 0.09, + 0.21, + 0.45, + 0.66, + 0.81, + 0.89, + 0.8, + 0.62, + 0.45, + 0.34, + 0.3, + 0.36, + 0.38, + 0.44, + 0.58, + 0.8300000000000001, + 1.1300000000000001, + 1.3, + 1.37, + 1.42, + 1.34, + 1.18, + 0.99, + 0.7000000000000001, + 0.43, + 0.26, + 0.07, + 0.08, + 0.19, + 0.45, + 0.86, + 1.09, + 1.16, + 1.31, + 1.46, + 1.6400000000000001, + 1.8, + 1.87, + 1.77, + 1.37, + 0.81, + 0.27, + -0.12, + -0.4, + -0.56, + -0.5700000000000001, + -0.31, + 0.2, + 0.64, + 1.03, + 1.1300000000000001, + 0.71, + 0.31, + 0.02, + -0.17, + -0.26, + -0.31, + -0.23, + -0.17, + -0.14, + -0.2, + -0.41000000000000003, + -0.62, + -0.65, + -0.55, + -0.45, + -0.45, + -0.48, + -0.49, + -0.31, + 0.0, + 0.2, + 0.21, + 0.15, + 0.05, + -0.14, + -0.13, + 0.13, + 0.46, + 0.56, + 0.37, + 0.22, + 0.21, + 0.03, + -0.33, + -0.68, + -0.9500000000000001, + -0.9500000000000001, + -0.84 + ], + [ + 0.32, + 0.41000000000000003, + 0.46, + 0.5, + 0.56, + 0.62, + 0.6900000000000001, + 0.75, + 0.81, + 0.87, + 0.9500000000000001, + 1.02, + 1.1300000000000001, + 1.24, + 1.35, + 1.45, + 1.53, + 1.59, + 1.6400000000000001, + 1.68, + 1.7, + 1.72, + 1.73, + 1.7, + 1.6600000000000001, + 1.58, + 1.54, + 1.49, + 1.46, + 1.43, + 1.41, + 1.44, + 1.46, + 1.56, + 1.6300000000000001, + 1.79, + 1.97, + 2.16, + 2.39, + 2.6, + 2.84, + 3.02, + 3.15, + 3.19, + 3.14, + 3.08, + 2.95, + 2.86, + 2.77, + 2.75, + 2.75, + 2.79, + 2.88, + 2.95, + 3.02, + 3.0, + 2.92, + 2.83, + 2.74, + 2.7, + 2.71, + 2.75, + 2.85, + 2.89, + 2.85, + 2.85, + 2.81, + 2.7600000000000002, + 2.73, + 2.67, + 2.58, + 2.43, + 2.2600000000000002, + 2.09, + 1.96, + 1.87, + 1.8, + 1.75, + 1.6600000000000001, + 1.6, + 1.51, + 1.43, + 1.36, + 1.3, + 1.26, + 1.21, + 1.24, + 1.27, + 1.29, + 1.32, + 1.36, + 1.35, + 1.29, + 1.2, + 1.12, + 1.03, + 0.98, + 0.96, + 0.99, + 1.03, + 1.07, + 1.07, + 1.04, + 0.9400000000000001, + 0.84, + 0.6900000000000001, + 0.52, + 0.34, + 0.15, + -0.01, + -0.13, + -0.2, + -0.24, + -0.2, + -0.17, + -0.1, + -0.07, + 0.01, + 0.14, + 0.28, + 0.42, + 0.52, + 0.68, + 0.8300000000000001, + 1.07, + 1.21, + 1.28, + 1.1, + 0.8200000000000001, + 0.45, + 0.12, + -0.18, + -0.4, + -0.53, + -0.62, + -0.62, + -0.62, + -0.58, + -0.56, + -0.56, + -0.59, + -0.65, + -0.66, + -0.6900000000000001, + -0.54, + -0.46, + -0.19, + 0.0, + 0.24, + 0.47000000000000003, + 0.63, + 0.8300000000000001, + 0.97, + 1.2, + 1.4000000000000001, + 1.57, + 1.67, + 1.73, + 1.76, + 1.78, + 1.75, + 1.58, + 1.34, + 1.12, + 0.96, + 0.86, + 0.79, + 0.71, + 0.64, + 0.65, + 0.76, + 0.92, + 1.05, + 1.17, + 1.18, + 1.2, + 1.18, + 1.1500000000000001, + 1.19, + 1.27, + 1.41, + 1.52, + 1.56, + 1.57, + 1.52, + 1.41, + 1.29, + 1.2, + 1.1500000000000001, + 1.18, + 1.26, + 1.3900000000000001, + 1.51, + 1.6500000000000001, + 1.76, + 1.87, + 1.98, + 2.07, + 2.17, + 2.31, + 2.37, + 2.37, + 2.32, + 2.24, + 2.15, + 2.05, + 1.94, + 1.87, + 1.86, + 1.99, + 2.2, + 2.45, + 2.7, + 2.88, + 3.0300000000000002, + 3.13, + 3.16, + 3.14, + 3.12, + 3.12, + 3.1, + 3.0700000000000003, + 3.11, + 3.09, + 3.14, + 3.16, + 3.2, + 3.23, + 3.12, + 2.89, + 2.5100000000000002, + 2.09, + 1.81, + 1.6600000000000001, + 1.74, + 1.85, + 1.87, + 1.83, + 1.6500000000000001, + 1.61, + 1.76, + 1.94, + 1.99, + 1.83, + 1.52, + 1.37, + 1.36, + 1.52, + 1.61, + 1.42, + 1.2, + 0.98, + 0.74, + 0.51, + 0.33, + 0.09, + -0.06, + 0.0, + 0.12, + 0.4, + 0.61, + 0.77, + 0.92, + 0.91, + 0.8200000000000001, + 0.8200000000000001, + 0.65, + 0.49, + 0.46, + 0.34, + 0.33, + 0.3, + 0.41000000000000003, + 0.64, + 0.97, + 1.24, + 1.41, + 1.44, + 1.27, + 1.04, + 0.72, + 0.45, + 0.27, + 0.12, + 0.14, + 0.15, + 0.28, + 0.54, + 0.74, + 0.96, + 1.1500000000000001, + 1.31, + 1.56, + 1.76, + 1.83, + 1.82, + 1.68, + 1.23, + 0.66, + 0.15, + -0.26, + -0.55, + -0.66, + -0.56, + -0.35000000000000003, + -0.08, + 0.36, + 0.7000000000000001, + 0.8300000000000001, + 0.74, + 0.33, + -0.02, + -0.21, + -0.29, + -0.33, + -0.41000000000000003, + -0.41000000000000003, + -0.41000000000000003, + -0.47000000000000003, + -0.59, + -0.74, + -0.75, + -0.61, + -0.42, + -0.28, + -0.31, + -0.3, + -0.19, + -0.06, + 0.16, + 0.25, + 0.19, + 0.07, + -0.12, + -0.25, + 0.03, + 0.32, + 0.41000000000000003, + 0.31, + 0.18, + 0.05, + -0.22, + -0.72, + -1.17, + -1.42, + -1.37, + -1.2 + ], + [ + 0.33, + 0.44, + 0.5, + 0.54, + 0.6, + 0.66, + 0.73, + 0.79, + 0.85, + 0.92, + 0.99, + 1.09, + 1.19, + 1.31, + 1.43, + 1.53, + 1.6, + 1.67, + 1.71, + 1.74, + 1.75, + 1.74, + 1.71, + 1.6600000000000001, + 1.58, + 1.52, + 1.49, + 1.45, + 1.46, + 1.43, + 1.48, + 1.51, + 1.6300000000000001, + 1.73, + 1.8800000000000001, + 2.06, + 2.23, + 2.43, + 2.6, + 2.79, + 2.96, + 3.09, + 3.14, + 3.1, + 3.0300000000000002, + 2.9, + 2.79, + 2.7, + 2.65, + 2.67, + 2.7, + 2.82, + 2.93, + 3.04, + 3.13, + 3.11, + 3.04, + 2.93, + 2.84, + 2.7800000000000002, + 2.7800000000000002, + 2.91, + 3.0300000000000002, + 3.12, + 3.0700000000000003, + 2.98, + 2.87, + 2.77, + 2.71, + 2.61, + 2.5, + 2.35, + 2.2, + 2.0, + 1.87, + 1.76, + 1.71, + 1.67, + 1.6500000000000001, + 1.59, + 1.51, + 1.44, + 1.37, + 1.31, + 1.26, + 1.22, + 1.2, + 1.22, + 1.26, + 1.33, + 1.35, + 1.35, + 1.28, + 1.2, + 1.11, + 1.05, + 0.99, + 0.99, + 0.99, + 1.01, + 1.04, + 1.04, + 1.01, + 0.97, + 0.88, + 0.77, + 0.61, + 0.42, + 0.24, + 0.1, + 0.02, + -0.02, + 0.0, + 0.03, + 0.08, + 0.09, + 0.07, + 0.09, + 0.16, + 0.28, + 0.38, + 0.45, + 0.48, + 0.62, + 0.68, + 0.8300000000000001, + 0.73, + 0.54, + 0.21, + -0.19, + -0.53, + -0.8300000000000001, + -1.02, + -1.11, + -1.12, + -1.06, + -0.99, + -0.89, + -0.81, + -0.74, + -0.72, + -0.63, + -0.6, + -0.39, + -0.23, + 0.07, + 0.34, + 0.5700000000000001, + 0.8200000000000001, + 1.04, + 1.19, + 1.24, + 1.36, + 1.49, + 1.67, + 1.8, + 1.86, + 1.8800000000000001, + 1.86, + 1.85, + 1.75, + 1.61, + 1.3800000000000001, + 1.17, + 1.03, + 0.92, + 0.84, + 0.75, + 0.66, + 0.65, + 0.73, + 0.9, + 1.09, + 1.21, + 1.3, + 1.31, + 1.35, + 1.31, + 1.29, + 1.36, + 1.44, + 1.52, + 1.6, + 1.62, + 1.62, + 1.54, + 1.4000000000000001, + 1.27, + 1.2, + 1.2, + 1.26, + 1.33, + 1.44, + 1.54, + 1.6500000000000001, + 1.77, + 1.8900000000000001, + 1.97, + 2.07, + 2.16, + 2.22, + 2.23, + 2.19, + 2.15, + 2.09, + 2.02, + 1.95, + 1.8800000000000001, + 1.9000000000000001, + 1.99, + 2.18, + 2.42, + 2.6, + 2.81, + 2.98, + 3.1, + 3.15, + 3.13, + 3.12, + 3.12, + 3.15, + 3.12, + 3.0300000000000002, + 2.99, + 2.85, + 2.82, + 2.77, + 2.7600000000000002, + 2.73, + 2.5500000000000003, + 2.2800000000000002, + 2.0300000000000002, + 1.79, + 1.81, + 1.86, + 1.93, + 1.92, + 1.67, + 1.48, + 1.3800000000000001, + 1.54, + 1.75, + 1.79, + 1.68, + 1.34, + 1.05, + 1.04, + 1.09, + 1.1400000000000001, + 1.12, + 0.97, + 0.78, + 0.54, + 0.21, + -0.03, + -0.23, + -0.22, + -0.07, + 0.27, + 0.54, + 0.66, + 0.8300000000000001, + 0.84, + 0.85, + 1.02, + 1.03, + 1.09, + 0.96, + 0.6900000000000001, + 0.55, + 0.37, + 0.31, + 0.33, + 0.5700000000000001, + 0.9, + 1.21, + 1.34, + 1.24, + 1.08, + 0.75, + 0.45, + 0.27, + 0.1, + 0.14, + 0.17, + 0.28, + 0.4, + 0.51, + 0.6900000000000001, + 0.77, + 0.9500000000000001, + 1.22, + 1.48, + 1.75, + 1.79, + 1.6400000000000001, + 1.35, + 1.0, + 0.47000000000000003, + -0.02, + -0.43, + -0.73, + -0.78, + -0.63, + -0.3, + -0.1, + 0.03, + 0.38, + 0.58, + 0.51, + 0.25, + -0.11, + -0.32, + -0.4, + -0.48, + -0.59, + -0.72, + -0.76, + -0.76, + -0.86, + -0.9400000000000001, + -0.9, + -0.65, + -0.29, + -0.06, + 0.05, + -0.03, + -0.12, + -0.03, + 0.06, + 0.19, + 0.26, + 0.14, + -0.04, + -0.15, + -0.09, + 0.22, + 0.31, + 0.2, + 0.12, + -0.01, + -0.33, + -0.86, + -1.3800000000000001, + -1.57, + -1.6400000000000001, + -1.57 + ], + [ + 0.38, + 0.48, + 0.53, + 0.5700000000000001, + 0.63, + 0.7000000000000001, + 0.76, + 0.8200000000000001, + 0.89, + 0.96, + 1.05, + 1.1400000000000001, + 1.26, + 1.3800000000000001, + 1.5, + 1.6, + 1.67, + 1.73, + 1.79, + 1.81, + 1.81, + 1.77, + 1.71, + 1.6400000000000001, + 1.57, + 1.56, + 1.52, + 1.56, + 1.56, + 1.6, + 1.6400000000000001, + 1.73, + 1.84, + 1.96, + 2.12, + 2.2600000000000002, + 2.43, + 2.57, + 2.72, + 2.85, + 2.98, + 3.04, + 3.02, + 2.96, + 2.85, + 2.74, + 2.68, + 2.62, + 2.68, + 2.69, + 2.82, + 2.92, + 3.04, + 3.15, + 3.16, + 3.16, + 3.0500000000000003, + 2.94, + 2.83, + 2.7600000000000002, + 2.7800000000000002, + 2.91, + 3.09, + 3.16, + 3.17, + 3.0500000000000003, + 2.94, + 2.84, + 2.73, + 2.62, + 2.5, + 2.38, + 2.23, + 2.06, + 1.9000000000000001, + 1.78, + 1.71, + 1.68, + 1.67, + 1.62, + 1.54, + 1.44, + 1.37, + 1.34, + 1.29, + 1.27, + 1.26, + 1.27, + 1.33, + 1.35, + 1.36, + 1.35, + 1.27, + 1.2, + 1.1300000000000001, + 1.08, + 1.06, + 1.04, + 1.02, + 1.03, + 1.0, + 1.01, + 0.98, + 0.9500000000000001, + 0.9, + 0.8, + 0.67, + 0.47000000000000003, + 0.31, + 0.19, + 0.14, + 0.12, + 0.14, + 0.16, + 0.2, + 0.13, + 0.08, + 0.03, + 0.1, + 0.19, + 0.3, + 0.31, + 0.32, + 0.26, + 0.3, + 0.19, + 0.09, + -0.16, + -0.52, + -0.8, + -1.1300000000000001, + -1.32, + -1.43, + -1.45, + -1.36, + -1.28, + -1.12, + -1.01, + -0.86, + -0.73, + -0.55, + -0.43, + -0.18, + 0.02, + 0.31, + 0.62, + 0.8300000000000001, + 1.07, + 1.26, + 1.48, + 1.6, + 1.62, + 1.6, + 1.7, + 1.79, + 1.86, + 1.92, + 1.9000000000000001, + 1.8800000000000001, + 1.82, + 1.73, + 1.54, + 1.36, + 1.22, + 1.1, + 1.03, + 0.93, + 0.81, + 0.71, + 0.62, + 0.68, + 0.81, + 1.01, + 1.17, + 1.26, + 1.36, + 1.3800000000000001, + 1.44, + 1.43, + 1.4000000000000001, + 1.45, + 1.5, + 1.55, + 1.6300000000000001, + 1.6600000000000001, + 1.6300000000000001, + 1.53, + 1.37, + 1.28, + 1.25, + 1.25, + 1.31, + 1.36, + 1.44, + 1.52, + 1.6500000000000001, + 1.76, + 1.82, + 1.87, + 1.95, + 2.05, + 2.05, + 2.08, + 2.05, + 2.0300000000000002, + 1.99, + 1.95, + 1.93, + 1.93, + 2.0300000000000002, + 2.18, + 2.33, + 2.5100000000000002, + 2.67, + 2.87, + 3.02, + 3.08, + 3.12, + 3.12, + 3.17, + 3.2, + 3.2, + 3.11, + 2.95, + 2.79, + 2.58, + 2.5, + 2.42, + 2.39, + 2.33, + 2.21, + 2.04, + 1.99, + 1.97, + 2.0, + 2.04, + 1.79, + 1.51, + 1.12, + 1.01, + 1.06, + 1.29, + 1.46, + 1.33, + 1.21, + 0.92, + 0.71, + 0.77, + 0.81, + 0.8200000000000001, + 0.78, + 0.66, + 0.45, + 0.18, + -0.16, + -0.29, + -0.29, + 0.02, + 0.38, + 0.5700000000000001, + 0.6900000000000001, + 0.64, + 0.67, + 0.8200000000000001, + 1.02, + 1.4000000000000001, + 1.5, + 1.37, + 1.06, + 0.72, + 0.5, + 0.33, + 0.34, + 0.54, + 0.91, + 1.17, + 1.19, + 1.06, + 0.81, + 0.51, + 0.3, + 0.12, + 0.14, + 0.17, + 0.29, + 0.4, + 0.48, + 0.5700000000000001, + 0.54, + 0.59, + 0.65, + 0.92, + 1.3900000000000001, + 1.68, + 1.68, + 1.42, + 1.03, + 0.59, + 0.21, + -0.19, + -0.64, + -0.96, + -0.97, + -0.5700000000000001, + -0.22, + -0.04, + -0.01, + 0.02, + 0.25, + 0.24, + -0.01, + -0.27, + -0.48, + -0.54, + -0.62, + -0.87, + -1.05, + -1.1300000000000001, + -1.12, + -1.1400000000000001, + -1.18, + -1.07, + -0.66, + -0.16, + 0.23, + 0.38, + 0.25, + 0.06, + -0.03, + 0.04, + 0.14, + 0.25, + 0.2, + 0.01, + -0.1, + -0.03, + 0.06, + 0.11, + 0.09, + 0.03, + -0.01, + -0.32, + -0.78, + -1.17, + -1.53, + -1.62, + -1.7 + ], + [ + 0.38, + 0.51, + 0.56, + 0.61, + 0.67, + 0.73, + 0.79, + 0.86, + 0.93, + 1.0, + 1.09, + 1.2, + 1.33, + 1.45, + 1.57, + 1.67, + 1.74, + 1.82, + 1.8800000000000001, + 1.9100000000000001, + 1.8900000000000001, + 1.83, + 1.77, + 1.69, + 1.68, + 1.6600000000000001, + 1.71, + 1.73, + 1.76, + 1.8, + 1.85, + 1.94, + 2.02, + 2.13, + 2.24, + 2.38, + 2.52, + 2.65, + 2.77, + 2.89, + 2.94, + 2.95, + 2.91, + 2.83, + 2.74, + 2.7, + 2.69, + 2.7800000000000002, + 2.83, + 2.95, + 3.0300000000000002, + 3.12, + 3.21, + 3.2, + 3.21, + 3.11, + 3.0, + 2.89, + 2.7800000000000002, + 2.75, + 2.7800000000000002, + 2.87, + 3.0500000000000003, + 3.14, + 3.11, + 3.0700000000000003, + 2.96, + 2.87, + 2.75, + 2.64, + 2.5300000000000002, + 2.42, + 2.27, + 2.12, + 1.97, + 1.82, + 1.73, + 1.69, + 1.6500000000000001, + 1.61, + 1.51, + 1.41, + 1.35, + 1.32, + 1.35, + 1.36, + 1.36, + 1.3800000000000001, + 1.37, + 1.35, + 1.32, + 1.26, + 1.22, + 1.1400000000000001, + 1.1, + 1.09, + 1.09, + 1.08, + 1.06, + 1.0, + 0.97, + 0.91, + 0.89, + 0.85, + 0.8, + 0.71, + 0.56, + 0.42, + 0.26, + 0.19, + 0.14, + 0.13, + 0.1, + 0.11, + 0.05, + 0.01, + -0.12, + -0.16, + -0.13, + -0.01, + 0.04, + 0.09, + -0.01, + -0.09, + -0.27, + -0.41000000000000003, + -0.64, + -0.91, + -1.11, + -1.36, + -1.46, + -1.54, + -1.55, + -1.43, + -1.35, + -1.16, + -1.05, + -0.86, + -0.7000000000000001, + -0.44, + -0.23, + 0.06, + 0.29, + 0.54, + 0.8300000000000001, + 1.0, + 1.23, + 1.35, + 1.55, + 1.71, + 1.82, + 1.85, + 1.79, + 1.75, + 1.79, + 1.85, + 1.86, + 1.86, + 1.82, + 1.77, + 1.6400000000000001, + 1.47, + 1.34, + 1.25, + 1.22, + 1.1500000000000001, + 1.06, + 0.92, + 0.77, + 0.64, + 0.6, + 0.73, + 0.87, + 1.03, + 1.17, + 1.27, + 1.44, + 1.52, + 1.56, + 1.54, + 1.47, + 1.49, + 1.51, + 1.59, + 1.67, + 1.67, + 1.62, + 1.49, + 1.36, + 1.29, + 1.27, + 1.27, + 1.29, + 1.32, + 1.3900000000000001, + 1.44, + 1.53, + 1.6, + 1.62, + 1.67, + 1.76, + 1.87, + 1.9000000000000001, + 1.93, + 1.9100000000000001, + 1.92, + 1.92, + 1.92, + 1.94, + 2.02, + 2.12, + 2.2600000000000002, + 2.39, + 2.54, + 2.72, + 2.91, + 3.04, + 3.09, + 3.15, + 3.21, + 3.2600000000000002, + 3.2600000000000002, + 3.19, + 3.0100000000000002, + 2.79, + 2.57, + 2.32, + 2.23, + 2.18, + 2.2, + 2.19, + 2.16, + 2.11, + 2.05, + 2.06, + 1.83, + 1.6, + 1.09, + 0.66, + 0.34, + 0.39, + 0.58, + 0.77, + 0.97, + 0.86, + 0.79, + 0.6, + 0.53, + 0.6, + 0.65, + 0.67, + 0.59, + 0.41000000000000003, + 0.19, + -0.07, + -0.29, + -0.21, + 0.08, + 0.36, + 0.59, + 0.58, + 0.5, + 0.47000000000000003, + 0.64, + 1.12, + 1.57, + 1.81, + 1.62, + 1.27, + 0.87, + 0.58, + 0.39, + 0.32, + 0.5700000000000001, + 0.93, + 1.11, + 1.11, + 0.91, + 0.67, + 0.47000000000000003, + 0.24, + 0.16, + 0.17, + 0.3, + 0.42, + 0.46, + 0.54, + 0.5700000000000001, + 0.49, + 0.32, + 0.36, + 0.67, + 1.21, + 1.6500000000000001, + 1.58, + 1.18, + 0.66, + 0.22, + -0.1, + -0.42, + -0.85, + -1.23, + -1.1, + -0.63, + -0.13, + 0.08, + -0.05, + -0.11, + -0.13, + -0.11, + -0.21, + -0.46, + -0.56, + -0.58, + -0.76, + -1.05, + -1.3900000000000001, + -1.45, + -1.3800000000000001, + -1.32, + -1.35, + -1.1, + -0.68, + -0.07, + 0.45, + 0.53, + 0.45, + 0.23, + 0.07, + 0.11, + 0.2, + 0.18, + 0.15, + 0.02, + -0.1, + -0.12, + -0.06, + -0.04, + -0.07, + -0.07, + -0.08, + -0.16, + -0.51, + -0.87, + -1.11, + -1.3900000000000001, + -1.53 + ], + [ + 0.46, + 0.5700000000000001, + 0.61, + 0.64, + 0.71, + 0.77, + 0.84, + 0.9, + 0.97, + 1.05, + 1.1500000000000001, + 1.26, + 1.3900000000000001, + 1.52, + 1.6400000000000001, + 1.73, + 1.83, + 1.9100000000000001, + 1.99, + 2.02, + 2.0, + 1.94, + 1.87, + 1.83, + 1.82, + 1.85, + 1.8900000000000001, + 1.9000000000000001, + 1.94, + 1.95, + 2.0, + 2.05, + 2.12, + 2.21, + 2.32, + 2.46, + 2.59, + 2.72, + 2.83, + 2.91, + 2.93, + 2.91, + 2.86, + 2.7800000000000002, + 2.75, + 2.74, + 2.84, + 2.97, + 3.1, + 3.23, + 3.27, + 3.34, + 3.3000000000000003, + 3.27, + 3.16, + 3.0500000000000003, + 2.95, + 2.84, + 2.8000000000000003, + 2.79, + 2.81, + 2.92, + 2.98, + 3.0300000000000002, + 3.0100000000000002, + 2.95, + 2.89, + 2.79, + 2.71, + 2.6, + 2.5, + 2.38, + 2.27, + 2.12, + 1.99, + 1.87, + 1.76, + 1.67, + 1.6300000000000001, + 1.52, + 1.42, + 1.37, + 1.32, + 1.35, + 1.42, + 1.46, + 1.46, + 1.42, + 1.35, + 1.29, + 1.2, + 1.1500000000000001, + 1.11, + 1.06, + 1.07, + 1.08, + 1.11, + 1.12, + 1.04, + 0.97, + 0.86, + 0.79, + 0.72, + 0.68, + 0.59, + 0.48, + 0.35000000000000003, + 0.2, + 0.11, + 0.05, + 0.01, + -0.05, + -0.09, + -0.17, + -0.21, + -0.32, + -0.42, + -0.45, + -0.44, + -0.37, + -0.29, + -0.32, + -0.39, + -0.5700000000000001, + -0.78, + -1.04, + -1.3, + -1.47, + -1.61, + -1.6, + -1.56, + -1.47, + -1.33, + -1.21, + -1.03, + -0.88, + -0.71, + -0.55, + -0.29, + -0.04, + 0.28, + 0.5700000000000001, + 0.79, + 1.03, + 1.1300000000000001, + 1.32, + 1.3800000000000001, + 1.49, + 1.59, + 1.75, + 1.87, + 1.86, + 1.84, + 1.77, + 1.75, + 1.78, + 1.8, + 1.79, + 1.77, + 1.69, + 1.58, + 1.44, + 1.31, + 1.3, + 1.33, + 1.3, + 1.2, + 1.06, + 0.88, + 0.68, + 0.59, + 0.59, + 0.72, + 0.86, + 1.0, + 1.21, + 1.44, + 1.6500000000000001, + 1.7, + 1.69, + 1.61, + 1.51, + 1.52, + 1.56, + 1.62, + 1.68, + 1.62, + 1.53, + 1.41, + 1.32, + 1.27, + 1.25, + 1.25, + 1.26, + 1.24, + 1.26, + 1.26, + 1.31, + 1.32, + 1.36, + 1.45, + 1.56, + 1.69, + 1.69, + 1.74, + 1.78, + 1.84, + 1.86, + 1.8800000000000001, + 1.95, + 2.05, + 2.17, + 2.2800000000000002, + 2.42, + 2.59, + 2.77, + 2.93, + 3.0500000000000003, + 3.13, + 3.22, + 3.2800000000000002, + 3.31, + 3.22, + 3.11, + 2.88, + 2.59, + 2.33, + 2.09, + 2.06, + 2.1, + 2.15, + 2.18, + 2.07, + 2.0, + 1.78, + 1.58, + 1.1300000000000001, + 0.61, + 0.01, + -0.39, + -0.48, + -0.27, + 0.05, + 0.3, + 0.49, + 0.43, + 0.45, + 0.43, + 0.49, + 0.6, + 0.58, + 0.44, + 0.32, + 0.09, + -0.09, + -0.23, + -0.23, + -0.02, + 0.3, + 0.46, + 0.46, + 0.35000000000000003, + 0.28, + 0.55, + 1.11, + 1.67, + 1.8900000000000001, + 1.78, + 1.35, + 0.9500000000000001, + 0.67, + 0.44, + 0.42, + 0.53, + 0.84, + 1.06, + 0.92, + 0.79, + 0.66, + 0.47000000000000003, + 0.29, + 0.18, + 0.24, + 0.39, + 0.45, + 0.48, + 0.49, + 0.53, + 0.42, + 0.19, + 0.16, + 0.58, + 1.08, + 1.49, + 1.51, + 0.9400000000000001, + 0.32, + -0.1, + -0.37, + -0.62, + -1.06, + -1.33, + -1.32, + -0.72, + -0.06, + 0.03, + -0.12, + -0.29, + -0.36, + -0.34, + -0.4, + -0.45, + -0.48, + -0.53, + -0.74, + -1.16, + -1.48, + -1.67, + -1.48, + -1.31, + -1.18, + -1.09, + -0.58, + 0.0, + 0.35000000000000003, + 0.58, + 0.44, + 0.28, + 0.23, + 0.25, + 0.24, + 0.19, + 0.05, + -0.09, + -0.17, + -0.2, + -0.16, + -0.14, + -0.14, + -0.09, + -0.06, + -0.1, + -0.21, + -0.44, + -0.67, + -0.9500000000000001, + -1.22 + ], + [ + 0.44, + 0.6, + 0.65, + 0.6900000000000001, + 0.75, + 0.81, + 0.88, + 0.9500000000000001, + 1.02, + 1.11, + 1.2, + 1.32, + 1.46, + 1.59, + 1.7, + 1.8, + 1.9000000000000001, + 2.0, + 2.08, + 2.12, + 2.08, + 2.04, + 1.97, + 1.94, + 1.93, + 1.98, + 1.98, + 2.0100000000000002, + 1.99, + 2.0100000000000002, + 2.05, + 2.1, + 2.18, + 2.2600000000000002, + 2.4, + 2.54, + 2.68, + 2.8000000000000003, + 2.89, + 2.95, + 2.96, + 2.93, + 2.9, + 2.89, + 2.81, + 2.87, + 2.98, + 3.11, + 3.29, + 3.3200000000000003, + 3.41, + 3.37, + 3.34, + 3.24, + 3.11, + 3.0, + 2.9, + 2.89, + 2.88, + 2.88, + 2.92, + 2.93, + 2.95, + 2.93, + 2.88, + 2.81, + 2.74, + 2.67, + 2.59, + 2.5100000000000002, + 2.4, + 2.3000000000000003, + 2.16, + 2.04, + 1.94, + 1.85, + 1.75, + 1.6400000000000001, + 1.53, + 1.41, + 1.36, + 1.33, + 1.37, + 1.45, + 1.49, + 1.52, + 1.48, + 1.37, + 1.27, + 1.1500000000000001, + 1.06, + 1.04, + 1.02, + 1.03, + 1.04, + 1.08, + 1.1300000000000001, + 1.06, + 0.99, + 0.84, + 0.71, + 0.6, + 0.52, + 0.43, + 0.33, + 0.19, + 0.04, + -0.08, + -0.14, + -0.18, + -0.25, + -0.32, + -0.44, + -0.52, + -0.6, + -0.66, + -0.68, + -0.75, + -0.6900000000000001, + -0.68, + -0.68, + -0.7000000000000001, + -0.84, + -1.02, + -1.28, + -1.58, + -1.78, + -1.9000000000000001, + -1.84, + -1.69, + -1.46, + -1.25, + -1.03, + -0.86, + -0.66, + -0.49, + -0.29, + -0.07, + 0.16, + 0.46, + 0.78, + 1.01, + 1.25, + 1.32, + 1.4000000000000001, + 1.42, + 1.46, + 1.48, + 1.55, + 1.6500000000000001, + 1.76, + 1.82, + 1.8, + 1.76, + 1.74, + 1.73, + 1.75, + 1.73, + 1.69, + 1.6400000000000001, + 1.53, + 1.4000000000000001, + 1.35, + 1.35, + 1.3900000000000001, + 1.43, + 1.35, + 1.22, + 0.99, + 0.74, + 0.5700000000000001, + 0.52, + 0.5700000000000001, + 0.7000000000000001, + 0.89, + 1.16, + 1.45, + 1.68, + 1.85, + 1.82, + 1.77, + 1.6500000000000001, + 1.53, + 1.53, + 1.54, + 1.54, + 1.56, + 1.48, + 1.3900000000000001, + 1.33, + 1.27, + 1.23, + 1.23, + 1.21, + 1.1500000000000001, + 1.05, + 1.02, + 0.99, + 0.98, + 0.99, + 1.06, + 1.18, + 1.27, + 1.4000000000000001, + 1.47, + 1.6, + 1.71, + 1.78, + 1.82, + 1.86, + 1.96, + 2.08, + 2.21, + 2.32, + 2.47, + 2.65, + 2.82, + 2.96, + 3.06, + 3.16, + 3.27, + 3.3000000000000003, + 3.27, + 3.15, + 2.98, + 2.66, + 2.31, + 2.05, + 1.9000000000000001, + 1.93, + 2.05, + 1.99, + 1.93, + 1.72, + 1.48, + 1.16, + 0.72, + 0.06, + -0.63, + -1.05, + -1.19, + -0.99, + -0.62, + -0.34, + -0.1, + 0.1, + 0.19, + 0.35000000000000003, + 0.5, + 0.56, + 0.45, + 0.25, + 0.04, + -0.09, + -0.23, + -0.33, + -0.25, + -0.13, + 0.11, + 0.33, + 0.34, + 0.2, + 0.2, + 0.49, + 1.06, + 1.67, + 1.96, + 1.78, + 1.41, + 1.02, + 0.79, + 0.6, + 0.41000000000000003, + 0.52, + 0.7000000000000001, + 0.68, + 0.66, + 0.61, + 0.6, + 0.47000000000000003, + 0.28, + 0.23, + 0.27, + 0.4, + 0.47000000000000003, + 0.42, + 0.42, + 0.4, + 0.28, + 0.17, + 0.2, + 0.5, + 1.06, + 1.4000000000000001, + 1.21, + 0.74, + 0.12, + -0.39, + -0.5, + -0.6900000000000001, + -1.05, + -1.49, + -1.27, + -0.75, + -0.34, + -0.11, + -0.26, + -0.47000000000000003, + -0.46, + -0.42, + -0.37, + -0.36, + -0.36, + -0.4, + -0.59, + -1.05, + -1.5, + -1.53, + -1.3900000000000001, + -1.06, + -0.92, + -0.73, + -0.47000000000000003, + -0.07, + 0.32, + 0.37, + 0.33, + 0.27, + 0.27, + 0.28, + 0.27, + 0.16, + -0.04, + -0.15, + -0.22, + -0.22, + -0.16, + -0.1, + -0.05, + -0.03, + 0.02, + 0.03, + -0.04, + -0.12, + -0.37, + -0.5700000000000001, + -0.8200000000000001 + ], + [ + 0.56, + 0.7000000000000001, + 0.71, + 0.73, + 0.79, + 0.86, + 0.93, + 1.0, + 1.07, + 1.16, + 1.27, + 1.3900000000000001, + 1.52, + 1.6500000000000001, + 1.76, + 1.86, + 1.96, + 2.06, + 2.14, + 2.14, + 2.13, + 2.04, + 2.0, + 1.95, + 1.97, + 1.97, + 2.0, + 1.98, + 1.97, + 2.0, + 2.05, + 2.13, + 2.22, + 2.35, + 2.49, + 2.63, + 2.77, + 2.88, + 2.95, + 3.0, + 3.0, + 3.04, + 3.1, + 3.08, + 3.0300000000000002, + 2.98, + 3.0700000000000003, + 3.19, + 3.24, + 3.3200000000000003, + 3.31, + 3.31, + 3.27, + 3.17, + 3.08, + 2.97, + 2.97, + 3.0, + 3.0, + 3.0100000000000002, + 2.99, + 2.96, + 2.91, + 2.86, + 2.77, + 2.7, + 2.62, + 2.5500000000000003, + 2.47, + 2.37, + 2.2600000000000002, + 2.14, + 2.0100000000000002, + 1.9000000000000001, + 1.83, + 1.76, + 1.68, + 1.57, + 1.43, + 1.37, + 1.35, + 1.4000000000000001, + 1.5, + 1.56, + 1.59, + 1.54, + 1.42, + 1.29, + 1.16, + 1.02, + 0.97, + 0.9400000000000001, + 0.97, + 0.99, + 1.02, + 1.07, + 1.01, + 0.97, + 0.8, + 0.64, + 0.49, + 0.37, + 0.25, + 0.15, + 0.01, + -0.15, + -0.29, + -0.39, + -0.45, + -0.49, + -0.56, + -0.71, + -0.84, + -0.91, + -0.96, + -0.9, + -0.9, + -0.84, + -0.85, + -0.91, + -0.96, + -1.11, + -1.25, + -1.47, + -1.73, + -1.96, + -2.14, + -2.13, + -1.96, + -1.69, + -1.36, + -1.04, + -0.81, + -0.55, + -0.34, + -0.1, + 0.14, + 0.39, + 0.64, + 0.92, + 1.1400000000000001, + 1.4000000000000001, + 1.49, + 1.57, + 1.53, + 1.5, + 1.49, + 1.47, + 1.48, + 1.54, + 1.6300000000000001, + 1.72, + 1.74, + 1.71, + 1.71, + 1.71, + 1.71, + 1.67, + 1.61, + 1.55, + 1.48, + 1.41, + 1.36, + 1.3900000000000001, + 1.45, + 1.47, + 1.46, + 1.31, + 1.09, + 0.8200000000000001, + 0.58, + 0.48, + 0.5, + 0.62, + 0.84, + 1.1, + 1.43, + 1.7, + 1.84, + 1.98, + 1.93, + 1.78, + 1.6500000000000001, + 1.5, + 1.46, + 1.42, + 1.41, + 1.3800000000000001, + 1.36, + 1.31, + 1.25, + 1.2, + 1.16, + 1.1400000000000001, + 1.03, + 0.86, + 0.71, + 0.63, + 0.5700000000000001, + 0.56, + 0.59, + 0.68, + 0.8200000000000001, + 0.97, + 1.17, + 1.3800000000000001, + 1.6, + 1.72, + 1.76, + 1.82, + 1.8900000000000001, + 2.0100000000000002, + 2.15, + 2.25, + 2.38, + 2.54, + 2.72, + 2.85, + 2.94, + 3.0700000000000003, + 3.21, + 3.3000000000000003, + 3.27, + 3.18, + 2.96, + 2.68, + 2.2600000000000002, + 1.8900000000000001, + 1.69, + 1.6600000000000001, + 1.6500000000000001, + 1.73, + 1.62, + 1.45, + 1.25, + 0.9, + 0.3, + -0.42, + -1.06, + -1.57, + -1.6500000000000001, + -1.43, + -1.18, + -0.9, + -0.64, + -0.36, + -0.02, + 0.26, + 0.53, + 0.53, + 0.36, + 0.04, + -0.26, + -0.35000000000000003, + -0.41000000000000003, + -0.38, + -0.3, + -0.11, + 0.05, + 0.19, + 0.24, + 0.16, + 0.12, + 0.43, + 1.04, + 1.59, + 1.86, + 1.75, + 1.31, + 1.0, + 0.8300000000000001, + 0.71, + 0.46, + 0.32, + 0.29, + 0.28, + 0.25, + 0.35000000000000003, + 0.47000000000000003, + 0.44, + 0.35000000000000003, + 0.25, + 0.35000000000000003, + 0.49, + 0.5, + 0.4, + 0.31, + 0.28, + 0.18, + 0.1, + 0.21, + 0.59, + 0.99, + 1.17, + 1.1, + 0.55, + -0.05, + -0.32, + -0.51, + -0.65, + -0.98, + -1.22, + -1.27, + -0.9, + -0.47000000000000003, + -0.43, + -0.52, + -0.51, + -0.48, + -0.36, + -0.26, + -0.23, + -0.23, + -0.27, + -0.5, + -0.81, + -1.17, + -1.35, + -0.99, + -0.65, + -0.52, + -0.44, + -0.29, + -0.04, + 0.12, + 0.22, + 0.2, + 0.17, + 0.17, + 0.22, + 0.2, + 0.07, + -0.03, + -0.13, + -0.14, + -0.1, + -0.06, + 0.04, + 0.1, + 0.11, + 0.12, + 0.1, + 0.07, + -0.08, + -0.2, + -0.44, + -0.59 + ], + [ + 0.53, + 0.7000000000000001, + 0.75, + 0.79, + 0.84, + 0.91, + 0.98, + 1.05, + 1.1300000000000001, + 1.22, + 1.33, + 1.45, + 1.58, + 1.7, + 1.8, + 1.9000000000000001, + 2.0, + 2.08, + 2.1, + 2.1, + 2.02, + 1.97, + 1.9000000000000001, + 1.8900000000000001, + 1.9000000000000001, + 1.93, + 1.93, + 1.92, + 1.95, + 1.98, + 2.07, + 2.17, + 2.3000000000000003, + 2.44, + 2.59, + 2.74, + 2.86, + 2.95, + 3.02, + 3.04, + 3.09, + 3.24, + 3.37, + 3.33, + 3.24, + 3.14, + 3.13, + 3.17, + 3.19, + 3.2, + 3.19, + 3.21, + 3.19, + 3.15, + 3.0700000000000003, + 3.0700000000000003, + 3.11, + 3.13, + 3.13, + 3.09, + 3.0300000000000002, + 2.97, + 2.88, + 2.81, + 2.71, + 2.6, + 2.52, + 2.42, + 2.33, + 2.22, + 2.08, + 1.97, + 1.83, + 1.72, + 1.6600000000000001, + 1.6300000000000001, + 1.56, + 1.47, + 1.42, + 1.3900000000000001, + 1.45, + 1.56, + 1.6400000000000001, + 1.69, + 1.6500000000000001, + 1.52, + 1.36, + 1.21, + 1.08, + 0.97, + 0.89, + 0.89, + 0.92, + 0.9500000000000001, + 0.99, + 0.9400000000000001, + 0.89, + 0.73, + 0.55, + 0.38, + 0.22, + 0.07, + -0.06, + -0.19, + -0.34, + -0.48, + -0.62, + -0.72, + -0.75, + -0.81, + -0.93, + -1.09, + -1.18, + -1.27, + -1.16, + -1.07, + -0.96, + -0.87, + -1.01, + -1.11, + -1.3800000000000001, + -1.56, + -1.78, + -1.97, + -2.15, + -2.34, + -2.37, + -2.2800000000000002, + -2.02, + -1.6400000000000001, + -1.25, + -0.9, + -0.59, + -0.27, + 0.0, + 0.32, + 0.59, + 0.84, + 1.09, + 1.27, + 1.47, + 1.57, + 1.69, + 1.67, + 1.61, + 1.57, + 1.53, + 1.48, + 1.44, + 1.46, + 1.53, + 1.6, + 1.62, + 1.62, + 1.6300000000000001, + 1.6600000000000001, + 1.6600000000000001, + 1.6400000000000001, + 1.56, + 1.47, + 1.44, + 1.4000000000000001, + 1.3800000000000001, + 1.4000000000000001, + 1.44, + 1.5, + 1.46, + 1.3800000000000001, + 1.16, + 0.87, + 0.63, + 0.49, + 0.5, + 0.63, + 0.8300000000000001, + 1.12, + 1.3900000000000001, + 1.6400000000000001, + 1.86, + 2.04, + 2.18, + 2.02, + 1.77, + 1.62, + 1.43, + 1.3900000000000001, + 1.31, + 1.34, + 1.34, + 1.31, + 1.23, + 1.16, + 1.1, + 1.0, + 0.86, + 0.64, + 0.43, + 0.28, + 0.19, + 0.13, + 0.14, + 0.17, + 0.33, + 0.52, + 0.8200000000000001, + 1.1500000000000001, + 1.44, + 1.69, + 1.76, + 1.77, + 1.83, + 1.94, + 2.0100000000000002, + 2.13, + 2.24, + 2.4, + 2.56, + 2.69, + 2.8000000000000003, + 2.94, + 3.1, + 3.2, + 3.23, + 3.09, + 2.9, + 2.52, + 2.11, + 1.67, + 1.3, + 1.18, + 1.18, + 1.25, + 1.28, + 1.27, + 1.12, + 0.62, + -0.04, + -0.79, + -1.47, + -1.84, + -1.93, + -1.82, + -1.62, + -1.4000000000000001, + -1.1300000000000001, + -0.78, + -0.3, + 0.18, + 0.46, + 0.59, + 0.28, + -0.15, + -0.4, + -0.61, + -0.6, + -0.51, + -0.3, + -0.07, + 0.07, + 0.16, + 0.16, + 0.07, + 0.14, + 0.44, + 0.91, + 1.45, + 1.6400000000000001, + 1.42, + 1.07, + 0.8, + 0.74, + 0.53, + 0.35000000000000003, + 0.09, + -0.14, + -0.19, + -0.24, + 0.11, + 0.4, + 0.47000000000000003, + 0.41000000000000003, + 0.44, + 0.49, + 0.53, + 0.54, + 0.45, + 0.3, + 0.18, + 0.08, + 0.04, + 0.25, + 0.55, + 0.85, + 1.02, + 0.8300000000000001, + 0.5, + 0.05, + -0.3, + -0.33, + -0.42, + -0.72, + -1.08, + -1.12, + -0.9400000000000001, + -0.78, + -0.73, + -0.66, + -0.5700000000000001, + -0.4, + -0.24, + -0.14, + -0.12, + -0.13, + -0.18, + -0.31, + -0.55, + -0.78, + -0.77, + -0.59, + -0.32, + -0.11, + -0.19, + -0.16, + -0.03, + 0.06, + 0.09, + 0.08, + 0.06, + 0.04, + 0.09, + 0.1, + 0.06, + 0.0, + 0.01, + 0.06, + 0.09, + 0.13, + 0.16, + 0.18, + 0.19, + 0.13, + 0.12, + 0.0, + -0.11, + -0.28, + -0.41000000000000003, + -0.41000000000000003 + ], + [ + 0.66, + 0.84, + 0.8200000000000001, + 0.84, + 0.9, + 0.96, + 1.04, + 1.11, + 1.19, + 1.28, + 1.3800000000000001, + 1.5, + 1.61, + 1.72, + 1.82, + 1.9100000000000001, + 1.98, + 2.0, + 2.0, + 1.92, + 1.85, + 1.79, + 1.75, + 1.77, + 1.8, + 1.85, + 1.87, + 1.9100000000000001, + 1.94, + 2.0300000000000002, + 2.13, + 2.2600000000000002, + 2.4, + 2.54, + 2.7, + 2.83, + 2.93, + 3.02, + 3.0700000000000003, + 3.12, + 3.24, + 3.41, + 3.5100000000000002, + 3.58, + 3.36, + 3.23, + 3.18, + 3.16, + 3.16, + 3.13, + 3.16, + 3.18, + 3.17, + 3.15, + 3.14, + 3.19, + 3.21, + 3.23, + 3.17, + 3.0700000000000003, + 2.99, + 2.88, + 2.81, + 2.74, + 2.66, + 2.5500000000000003, + 2.43, + 2.33, + 2.21, + 2.06, + 1.8800000000000001, + 1.77, + 1.6300000000000001, + 1.55, + 1.48, + 1.45, + 1.42, + 1.4000000000000001, + 1.4000000000000001, + 1.47, + 1.61, + 1.71, + 1.77, + 1.76, + 1.6300000000000001, + 1.48, + 1.29, + 1.1300000000000001, + 1.0, + 0.91, + 0.8300000000000001, + 0.8300000000000001, + 0.85, + 0.88, + 0.85, + 0.81, + 0.65, + 0.48, + 0.29, + 0.1, + -0.07, + -0.24, + -0.4, + -0.54, + -0.68, + -0.8, + -0.91, + -0.97, + -1.03, + -1.09, + -1.23, + -1.34, + -1.47, + -1.4000000000000001, + -1.31, + -1.18, + -1.01, + -1.16, + -1.25, + -1.6300000000000001, + -1.93, + -2.21, + -2.42, + -2.52, + -2.62, + -2.61, + -2.5300000000000002, + -2.27, + -1.8900000000000001, + -1.47, + -1.0, + -0.63, + -0.2, + 0.12, + 0.5, + 0.8, + 1.04, + 1.28, + 1.42, + 1.58, + 1.6500000000000001, + 1.73, + 1.77, + 1.76, + 1.72, + 1.6600000000000001, + 1.6, + 1.52, + 1.44, + 1.41, + 1.43, + 1.47, + 1.48, + 1.48, + 1.5, + 1.55, + 1.6, + 1.57, + 1.53, + 1.46, + 1.3900000000000001, + 1.3800000000000001, + 1.37, + 1.3800000000000001, + 1.42, + 1.42, + 1.44, + 1.35, + 1.2, + 0.9500000000000001, + 0.68, + 0.53, + 0.54, + 0.65, + 0.86, + 1.1300000000000001, + 1.37, + 1.59, + 1.83, + 2.11, + 2.3000000000000003, + 2.34, + 2.07, + 1.76, + 1.6, + 1.43, + 1.4000000000000001, + 1.37, + 1.36, + 1.33, + 1.26, + 1.16, + 1.05, + 0.9, + 0.6900000000000001, + 0.43, + 0.19, + 0.0, + -0.13, + -0.2, + -0.26, + -0.22, + -0.14, + 0.15, + 0.45, + 0.88, + 1.32, + 1.6, + 1.78, + 1.77, + 1.74, + 1.75, + 1.83, + 1.87, + 1.99, + 2.14, + 2.33, + 2.47, + 2.58, + 2.71, + 2.89, + 3.0300000000000002, + 3.02, + 2.93, + 2.64, + 2.32, + 1.81, + 1.35, + 0.9400000000000001, + 0.6, + 0.72, + 0.81, + 1.07, + 1.18, + 0.91, + 0.41000000000000003, + -0.36, + -1.18, + -1.74, + -2.08, + -2.18, + -2.14, + -2.0, + -1.81, + -1.54, + -1.07, + -0.59, + 0.0, + 0.46, + 0.48, + 0.3, + -0.14, + -0.56, + -0.7000000000000001, + -0.8200000000000001, + -0.67, + -0.36, + -0.11, + 0.08, + 0.14, + 0.12, + 0.09, + 0.16, + 0.43, + 0.85, + 1.2, + 1.26, + 1.02, + 0.61, + 0.32, + 0.26, + 0.29, + 0.09, + -0.14, + -0.28, + -0.62, + -0.34, + -0.05, + 0.31, + 0.56, + 0.61, + 0.66, + 0.6, + 0.58, + 0.53, + 0.46, + 0.39, + 0.22, + 0.09, + 0.08, + 0.2, + 0.48, + 0.7000000000000001, + 0.74, + 0.67, + 0.38, + 0.1, + -0.06, + -0.12, + -0.23, + -0.44, + -0.81, + -1.07, + -1.08, + -1.01, + -0.85, + -0.72, + -0.49, + -0.25, + -0.1, + 0.0, + 0.04, + 0.02, + -0.04, + -0.12, + -0.25, + -0.38, + -0.35000000000000003, + -0.23, + 0.02, + -0.04, + -0.04, + -0.02, + 0.04, + 0.06, + 0.02, + 0.0, + -0.05, + -0.01, + 0.04, + 0.09, + 0.1, + 0.11, + 0.19, + 0.26, + 0.27, + 0.26, + 0.21, + 0.19, + 0.12, + 0.08, + 0.0, + -0.08, + -0.23, + -0.39, + -0.35000000000000003, + -0.29 + ], + [ + 0.62, + 0.8200000000000001, + 0.86, + 0.89, + 0.9400000000000001, + 1.01, + 1.09, + 1.16, + 1.24, + 1.33, + 1.43, + 1.54, + 1.6400000000000001, + 1.73, + 1.82, + 1.8800000000000001, + 1.9000000000000001, + 1.9000000000000001, + 1.81, + 1.71, + 1.6400000000000001, + 1.58, + 1.6300000000000001, + 1.6500000000000001, + 1.75, + 1.81, + 1.8800000000000001, + 1.92, + 2.02, + 2.13, + 2.25, + 2.39, + 2.52, + 2.67, + 2.8000000000000003, + 2.91, + 3.0100000000000002, + 3.08, + 3.13, + 3.21, + 3.31, + 3.45, + 3.59, + 3.49, + 3.39, + 3.25, + 3.19, + 3.17, + 3.15, + 3.16, + 3.17, + 3.17, + 3.17, + 3.14, + 3.17, + 3.17, + 3.19, + 3.14, + 3.0100000000000002, + 2.91, + 2.8000000000000003, + 2.73, + 2.68, + 2.64, + 2.59, + 2.5, + 2.38, + 2.2600000000000002, + 2.11, + 1.93, + 1.78, + 1.6, + 1.54, + 1.42, + 1.37, + 1.3, + 1.31, + 1.34, + 1.42, + 1.58, + 1.71, + 1.8, + 1.8, + 1.7, + 1.57, + 1.37, + 1.19, + 1.02, + 0.89, + 0.78, + 0.72, + 0.71, + 0.74, + 0.74, + 0.72, + 0.5700000000000001, + 0.41000000000000003, + 0.22, + 0.03, + -0.16, + -0.36, + -0.53, + -0.71, + -0.85, + -0.9500000000000001, + -1.05, + -1.11, + -1.17, + -1.22, + -1.3, + -1.44, + -1.56, + -1.61, + -1.55, + -1.52, + -1.34, + -1.48, + -1.56, + -1.94, + -2.31, + -2.63, + -2.94, + -2.96, + -2.98, + -2.86, + -2.7, + -2.43, + -1.98, + -1.52, + -0.97, + -0.52, + -0.04, + 0.34, + 0.72, + 1.04, + 1.26, + 1.48, + 1.59, + 1.73, + 1.79, + 1.83, + 1.86, + 1.9000000000000001, + 1.8900000000000001, + 1.84, + 1.78, + 1.71, + 1.58, + 1.44, + 1.37, + 1.36, + 1.36, + 1.34, + 1.32, + 1.34, + 1.4000000000000001, + 1.46, + 1.52, + 1.48, + 1.46, + 1.42, + 1.37, + 1.35, + 1.34, + 1.3, + 1.29, + 1.28, + 1.3, + 1.17, + 0.96, + 0.74, + 0.56, + 0.54, + 0.66, + 0.88, + 1.1500000000000001, + 1.3900000000000001, + 1.58, + 1.78, + 2.15, + 2.49, + 2.5100000000000002, + 2.39, + 2.09, + 1.77, + 1.6400000000000001, + 1.52, + 1.47, + 1.4000000000000001, + 1.35, + 1.29, + 1.19, + 1.04, + 0.85, + 0.58, + 0.3, + 0.03, + -0.18, + -0.31, + -0.44, + -0.51, + -0.55, + -0.4, + -0.23, + 0.17, + 0.59, + 1.12, + 1.61, + 1.74, + 1.76, + 1.6400000000000001, + 1.51, + 1.47, + 1.5, + 1.6, + 1.78, + 1.96, + 2.13, + 2.25, + 2.39, + 2.5300000000000002, + 2.65, + 2.69, + 2.5, + 2.2800000000000002, + 1.83, + 1.46, + 0.97, + 0.53, + 0.38, + 0.29, + 0.7000000000000001, + 1.01, + 1.08, + 0.84, + 0.18, + -0.68, + -1.4000000000000001, + -1.96, + -2.25, + -2.37, + -2.34, + -2.22, + -2.0100000000000002, + -1.6600000000000001, + -1.27, + -0.7000000000000001, + -0.16, + 0.29, + 0.52, + 0.23, + -0.14, + -0.49, + -0.79, + -0.9, + -0.93, + -0.55, + -0.15, + 0.05, + 0.14, + 0.12, + 0.09, + 0.17, + 0.42, + 0.76, + 0.98, + 0.97, + 0.59, + 0.09, + -0.22, + -0.37, + -0.2, + -0.09, + -0.05, + -0.22, + -0.29, + -0.43, + -0.02, + 0.36, + 0.58, + 0.78, + 0.74, + 0.63, + 0.49, + 0.42, + 0.43, + 0.46, + 0.41000000000000003, + 0.25, + 0.17, + 0.27, + 0.41000000000000003, + 0.48, + 0.48, + 0.37, + 0.24, + 0.12, + 0.06, + 0.05, + 0.04, + -0.26, + -0.64, + -0.99, + -1.23, + -1.09, + -0.88, + -0.5700000000000001, + -0.26, + -0.05, + 0.09, + 0.17, + 0.22, + 0.18, + 0.1, + 0.01, + -0.14, + -0.19, + -0.2, + -0.05, + -0.04, + -0.01, + -0.01, + 0.09, + 0.11, + 0.12, + 0.05, + -0.03, + -0.02, + 0.0, + 0.07, + 0.15, + 0.18, + 0.23, + 0.3, + 0.38, + 0.37, + 0.26, + 0.2, + 0.1, + 0.01, + -0.04, + -0.11, + -0.2, + -0.34, + -0.35000000000000003, + -0.3, + -0.15 + ], + [ + 0.77, + 0.9500000000000001, + 0.93, + 0.92, + 0.98, + 1.06, + 1.1300000000000001, + 1.21, + 1.29, + 1.37, + 1.46, + 1.56, + 1.6600000000000001, + 1.73, + 1.79, + 1.82, + 1.82, + 1.74, + 1.6400000000000001, + 1.55, + 1.45, + 1.51, + 1.53, + 1.6500000000000001, + 1.73, + 1.85, + 1.93, + 2.0300000000000002, + 2.14, + 2.2600000000000002, + 2.39, + 2.52, + 2.66, + 2.79, + 2.9, + 3.0100000000000002, + 3.1, + 3.16, + 3.21, + 3.2600000000000002, + 3.3200000000000003, + 3.4, + 3.41, + 3.36, + 3.29, + 3.21, + 3.18, + 3.16, + 3.16, + 3.18, + 3.14, + 3.13, + 3.0700000000000003, + 3.0300000000000002, + 2.99, + 2.98, + 2.94, + 2.84, + 2.74, + 2.66, + 2.59, + 2.58, + 2.5500000000000003, + 2.57, + 2.54, + 2.44, + 2.33, + 2.2, + 2.06, + 1.9000000000000001, + 1.73, + 1.6400000000000001, + 1.54, + 1.45, + 1.34, + 1.31, + 1.3, + 1.37, + 1.49, + 1.62, + 1.75, + 1.78, + 1.7, + 1.58, + 1.3800000000000001, + 1.2, + 1.02, + 0.85, + 0.72, + 0.61, + 0.5700000000000001, + 0.5700000000000001, + 0.58, + 0.59, + 0.47000000000000003, + 0.33, + 0.13, + -0.06, + -0.24, + -0.42, + -0.6, + -0.78, + -0.93, + -1.06, + -1.16, + -1.21, + -1.28, + -1.34, + -1.42, + -1.57, + -1.7, + -1.85, + -1.87, + -1.94, + -1.87, + -2.0, + -2.06, + -2.37, + -2.74, + -3.0, + -3.33, + -3.29, + -3.25, + -2.98, + -2.71, + -2.38, + -1.92, + -1.4000000000000001, + -0.79, + -0.25, + 0.24, + 0.67, + 1.01, + 1.34, + 1.51, + 1.7, + 1.78, + 1.8900000000000001, + 1.94, + 2.0, + 1.98, + 1.98, + 2.0, + 2.04, + 1.98, + 1.9100000000000001, + 1.79, + 1.62, + 1.45, + 1.32, + 1.27, + 1.24, + 1.2, + 1.16, + 1.1500000000000001, + 1.22, + 1.3, + 1.37, + 1.42, + 1.44, + 1.45, + 1.4000000000000001, + 1.33, + 1.24, + 1.12, + 1.08, + 1.08, + 1.11, + 1.11, + 0.9500000000000001, + 0.75, + 0.59, + 0.53, + 0.62, + 0.88, + 1.17, + 1.42, + 1.6300000000000001, + 1.86, + 2.16, + 2.54, + 2.7800000000000002, + 2.66, + 2.45, + 2.15, + 1.84, + 1.74, + 1.59, + 1.49, + 1.37, + 1.33, + 1.26, + 1.1, + 0.86, + 0.59, + 0.27, + -0.01, + -0.23, + -0.41000000000000003, + -0.55, + -0.67, + -0.66, + -0.62, + -0.39, + -0.12, + 0.38, + 0.93, + 1.3900000000000001, + 1.78, + 1.69, + 1.5, + 1.28, + 1.06, + 1.03, + 1.1, + 1.28, + 1.51, + 1.69, + 1.81, + 1.9100000000000001, + 2.0, + 2.08, + 2.0300000000000002, + 1.8900000000000001, + 1.53, + 1.22, + 0.87, + 0.56, + 0.3, + 0.12, + 0.38, + 0.75, + 1.12, + 1.25, + 0.86, + 0.08, + -0.73, + -1.54, + -2.02, + -2.3000000000000003, + -2.41, + -2.4, + -2.2600000000000002, + -1.95, + -1.61, + -1.2, + -0.78, + -0.28, + 0.19, + 0.32, + 0.22, + -0.13, + -0.45, + -0.73, + -1.07, + -0.91, + -0.67, + -0.21, + 0.1, + 0.16, + 0.12, + 0.05, + 0.1, + 0.34, + 0.67, + 0.9, + 0.81, + 0.42, + -0.21, + -0.74, + -0.74, + -0.64, + -0.07, + 0.26, + 0.24, + 0.1, + -0.01, + 0.04, + 0.31, + 0.58, + 0.7000000000000001, + 0.76, + 0.5700000000000001, + 0.29, + 0.25, + 0.38, + 0.51, + 0.6, + 0.52, + 0.37, + 0.34, + 0.33, + 0.3, + 0.17, + 0.05, + 0.08, + 0.07, + 0.17, + 0.23, + 0.13, + -0.03, + -0.49, + -0.99, + -1.1400000000000001, + -1.1, + -0.73, + -0.27, + 0.02, + 0.2, + 0.3, + 0.36, + 0.35000000000000003, + 0.23, + 0.09, + -0.12, + -0.23, + -0.29, + -0.26, + -0.19, + -0.14, + -0.12, + -0.06, + 0.02, + 0.15, + 0.11, + 0.07, + 0.04, + 0.04, + 0.08, + 0.13, + 0.18, + 0.24, + 0.29, + 0.38, + 0.38, + 0.27, + 0.17, + 0.07, + 0.01, + -0.06, + -0.14, + -0.16, + -0.25, + -0.31, + -0.36, + -0.2, + 0.05 + ], + [ + 0.74, + 0.92, + 0.9500000000000001, + 0.97, + 1.02, + 1.09, + 1.17, + 1.25, + 1.32, + 1.41, + 1.49, + 1.58, + 1.6600000000000001, + 1.72, + 1.76, + 1.77, + 1.71, + 1.6300000000000001, + 1.54, + 1.43, + 1.46, + 1.48, + 1.59, + 1.7, + 1.82, + 1.93, + 2.05, + 2.17, + 2.29, + 2.41, + 2.5300000000000002, + 2.66, + 2.79, + 2.91, + 3.0300000000000002, + 3.13, + 3.21, + 3.2600000000000002, + 3.3000000000000003, + 3.3000000000000003, + 3.31, + 3.29, + 3.2600000000000002, + 3.25, + 3.2, + 3.18, + 3.16, + 3.15, + 3.15, + 3.1, + 3.0500000000000003, + 2.96, + 2.87, + 2.7800000000000002, + 2.69, + 2.65, + 2.59, + 2.5300000000000002, + 2.49, + 2.45, + 2.48, + 2.49, + 2.5100000000000002, + 2.52, + 2.47, + 2.39, + 2.27, + 2.14, + 2.0100000000000002, + 1.8800000000000001, + 1.77, + 1.71, + 1.61, + 1.53, + 1.42, + 1.36, + 1.37, + 1.44, + 1.53, + 1.6300000000000001, + 1.69, + 1.6300000000000001, + 1.53, + 1.35, + 1.16, + 1.0, + 0.8200000000000001, + 0.66, + 0.51, + 0.45, + 0.4, + 0.4, + 0.41000000000000003, + 0.33, + 0.21, + 0.02, + -0.17, + -0.35000000000000003, + -0.51, + -0.65, + -0.8, + -0.93, + -1.05, + -1.1500000000000001, + -1.22, + -1.31, + -1.42, + -1.53, + -1.73, + -1.9100000000000001, + -2.17, + -2.32, + -2.45, + -2.5, + -2.62, + -2.77, + -2.9, + -3.2, + -3.3000000000000003, + -3.5500000000000003, + -3.42, + -3.2600000000000002, + -2.87, + -2.44, + -2.06, + -1.6400000000000001, + -1.16, + -0.53, + 0.06, + 0.56, + 1.02, + 1.34, + 1.6600000000000001, + 1.79, + 1.95, + 2.0, + 2.06, + 2.1, + 2.15, + 2.12, + 2.1, + 2.09, + 2.11, + 2.1, + 2.08, + 1.98, + 1.83, + 1.6300000000000001, + 1.42, + 1.27, + 1.17, + 1.11, + 1.05, + 1.0, + 0.99, + 1.02, + 1.12, + 1.21, + 1.32, + 1.41, + 1.45, + 1.46, + 1.33, + 1.1500000000000001, + 0.99, + 0.8200000000000001, + 0.86, + 0.9500000000000001, + 0.97, + 0.93, + 0.78, + 0.61, + 0.55, + 0.61, + 0.8200000000000001, + 1.17, + 1.46, + 1.7, + 1.94, + 2.25, + 2.61, + 2.87, + 3.0100000000000002, + 2.79, + 2.54, + 2.25, + 2.0, + 1.83, + 1.6, + 1.52, + 1.45, + 1.37, + 1.21, + 0.98, + 0.6900000000000001, + 0.37, + 0.06, + -0.2, + -0.4, + -0.5700000000000001, + -0.65, + -0.7000000000000001, + -0.65, + -0.53, + -0.28, + 0.09, + 0.64, + 1.22, + 1.48, + 1.6400000000000001, + 1.34, + 0.99, + 0.72, + 0.51, + 0.58, + 0.75, + 0.98, + 1.19, + 1.3, + 1.32, + 1.35, + 1.32, + 1.23, + 0.9500000000000001, + 0.61, + 0.38, + 0.16, + 0.09, + -0.01, + 0.14, + 0.45, + 0.99, + 1.49, + 1.5, + 1.1400000000000001, + 0.33, + -0.64, + -1.4000000000000001, + -1.96, + -2.23, + -2.34, + -2.31, + -2.1, + -1.78, + -1.3900000000000001, + -1.05, + -0.79, + -0.43, + -0.01, + 0.25, + 0.12, + -0.14, + -0.37, + -0.61, + -0.81, + -0.92, + -0.51, + -0.07, + 0.15, + 0.23, + 0.11, + -0.08, + -0.03, + 0.22, + 0.58, + 0.92, + 0.91, + 0.41000000000000003, + -0.24, + -0.79, + -1.05, + -0.52, + 0.03, + 0.52, + 0.8200000000000001, + 0.51, + 0.28, + 0.19, + 0.21, + 0.41000000000000003, + 0.6, + 0.6, + 0.46, + 0.28, + 0.16, + 0.33, + 0.64, + 0.76, + 0.71, + 0.56, + 0.39, + 0.29, + 0.08, + -0.1, + -0.09, + -0.08, + 0.13, + 0.28, + 0.3, + 0.27, + 0.03, + -0.32, + -0.77, + -1.1, + -0.89, + -0.46, + -0.04, + 0.28, + 0.41000000000000003, + 0.46, + 0.47000000000000003, + 0.37, + 0.19, + -0.15, + -0.38, + -0.47000000000000003, + -0.52, + -0.42, + -0.31, + -0.27, + -0.27, + -0.21, + -0.13, + -0.02, + 0.06, + 0.05, + 0.09, + 0.11, + 0.14, + 0.15, + 0.18, + 0.25, + 0.32, + 0.33, + 0.2, + 0.05, + -0.08, + -0.12, + -0.07, + -0.07, + -0.08, + -0.15, + -0.2, + -0.3, + -0.27, + -0.14, + 0.01 + ], + [ + 0.85, + 1.04, + 1.01, + 0.99, + 1.05, + 1.1300000000000001, + 1.2, + 1.28, + 1.35, + 1.44, + 1.52, + 1.6, + 1.67, + 1.72, + 1.74, + 1.7, + 1.6400000000000001, + 1.56, + 1.47, + 1.47, + 1.49, + 1.59, + 1.69, + 1.82, + 1.95, + 2.07, + 2.19, + 2.31, + 2.43, + 2.54, + 2.65, + 2.77, + 2.91, + 3.0300000000000002, + 3.16, + 3.25, + 3.31, + 3.36, + 3.36, + 3.36, + 3.29, + 3.25, + 3.2, + 3.17, + 3.15, + 3.15, + 3.13, + 3.12, + 3.06, + 2.99, + 2.87, + 2.72, + 2.6, + 2.47, + 2.4, + 2.33, + 2.32, + 2.35, + 2.34, + 2.37, + 2.41, + 2.47, + 2.5, + 2.46, + 2.41, + 2.32, + 2.21, + 2.09, + 1.97, + 1.86, + 1.78, + 1.71, + 1.6600000000000001, + 1.54, + 1.46, + 1.42, + 1.45, + 1.49, + 1.54, + 1.57, + 1.51, + 1.43, + 1.3, + 1.1300000000000001, + 0.97, + 0.8, + 0.65, + 0.48, + 0.37, + 0.27, + 0.24, + 0.23, + 0.15, + 0.05, + -0.12, + -0.31, + -0.48, + -0.63, + -0.73, + -0.8300000000000001, + -0.91, + -0.96, + -1.04, + -1.1, + -1.21, + -1.3800000000000001, + -1.54, + -1.84, + -2.08, + -2.44, + -2.73, + -2.96, + -3.13, + -3.22, + -3.4, + -3.39, + -3.59, + -3.48, + -3.5500000000000003, + -3.31, + -3.04, + -2.57, + -1.99, + -1.53, + -1.11, + -0.72, + -0.28, + 0.3, + 0.84, + 1.33, + 1.6300000000000001, + 1.96, + 2.07, + 2.21, + 2.23, + 2.27, + 2.29, + 2.31, + 2.2800000000000002, + 2.23, + 2.2, + 2.17, + 2.15, + 2.12, + 2.08, + 1.99, + 1.82, + 1.6, + 1.3900000000000001, + 1.19, + 1.07, + 0.98, + 0.92, + 0.88, + 0.84, + 0.87, + 0.93, + 1.07, + 1.2, + 1.34, + 1.46, + 1.45, + 1.37, + 1.1300000000000001, + 0.8300000000000001, + 0.7000000000000001, + 0.63, + 0.75, + 0.88, + 0.87, + 0.81, + 0.6900000000000001, + 0.6, + 0.65, + 0.85, + 1.1300000000000001, + 1.46, + 1.74, + 2.0100000000000002, + 2.33, + 2.65, + 2.95, + 3.11, + 3.16, + 2.88, + 2.66, + 2.38, + 2.13, + 1.9000000000000001, + 1.72, + 1.6600000000000001, + 1.56, + 1.41, + 1.19, + 0.9, + 0.55, + 0.23, + -0.05, + -0.29, + -0.46, + -0.58, + -0.64, + -0.65, + -0.62, + -0.49, + -0.15, + 0.29, + 0.8, + 1.2, + 1.23, + 1.1400000000000001, + 0.73, + 0.33, + 0.16, + 0.09, + 0.28, + 0.5, + 0.6900000000000001, + 0.76, + 0.77, + 0.6900000000000001, + 0.59, + 0.37, + 0.02, + -0.25, + -0.55, + -0.42, + -0.41000000000000003, + -0.16, + 0.06, + 0.66, + 1.35, + 1.8, + 2.0300000000000002, + 1.52, + 0.7000000000000001, + -0.27, + -1.21, + -1.76, + -2.08, + -2.18, + -2.13, + -1.9000000000000001, + -1.45, + -1.06, + -0.89, + -0.73, + -0.48, + -0.14, + 0.13, + 0.11, + -0.09, + -0.28, + -0.42, + -0.55, + -0.51, + -0.24, + 0.07, + 0.24, + 0.21, + 0.01, + -0.13, + -0.16, + 0.11, + 0.58, + 0.93, + 1.0, + 0.63, + -0.12, + -0.72, + -0.77, + -0.44, + 0.2, + 0.8, + 0.89, + 0.8300000000000001, + 0.44, + 0.16, + 0.15, + 0.19, + 0.36, + 0.48, + 0.41000000000000003, + 0.35000000000000003, + 0.35000000000000003, + 0.49, + 0.73, + 0.9, + 0.84, + 0.58, + 0.38, + 0.14, + -0.07, + -0.19, + -0.22, + 0.01, + 0.23, + 0.32, + 0.36, + 0.28, + 0.14, + -0.2, + -0.6, + -0.76, + -0.65, + -0.23, + 0.18, + 0.41000000000000003, + 0.49, + 0.51, + 0.46, + 0.32, + -0.04, + -0.39, + -0.59, + -0.74, + -0.68, + -0.59, + -0.44, + -0.37, + -0.36, + -0.37, + -0.25, + -0.16, + -0.05, + 0.0, + 0.06, + 0.15, + 0.12, + 0.07, + 0.11, + 0.23, + 0.27, + 0.15, + -0.03, + -0.31, + -0.45, + -0.31, + -0.16, + 0.03, + 0.08, + 0.02, + -0.1, + -0.2, + -0.24, + -0.18, + -0.05 + ], + [ + 0.84, + 1.02, + 1.04, + 1.04, + 1.09, + 1.16, + 1.23, + 1.3, + 1.3800000000000001, + 1.45, + 1.53, + 1.6, + 1.67, + 1.71, + 1.69, + 1.6500000000000001, + 1.57, + 1.49, + 1.49, + 1.5, + 1.59, + 1.7, + 1.83, + 1.97, + 2.09, + 2.21, + 2.32, + 2.44, + 2.54, + 2.64, + 2.74, + 2.85, + 2.98, + 3.12, + 3.24, + 3.34, + 3.39, + 3.39, + 3.4, + 3.34, + 3.2800000000000002, + 3.19, + 3.13, + 3.12, + 3.11, + 3.09, + 3.08, + 3.0100000000000002, + 2.94, + 2.81, + 2.64, + 2.49, + 2.32, + 2.22, + 2.15, + 2.15, + 2.21, + 2.2600000000000002, + 2.29, + 2.32, + 2.4, + 2.46, + 2.45, + 2.41, + 2.34, + 2.27, + 2.13, + 2.02, + 1.9000000000000001, + 1.81, + 1.73, + 1.68, + 1.59, + 1.49, + 1.43, + 1.43, + 1.45, + 1.48, + 1.48, + 1.41, + 1.34, + 1.22, + 1.08, + 0.96, + 0.8, + 0.67, + 0.52, + 0.38, + 0.24, + 0.15, + 0.08, + -0.02, + -0.13, + -0.29, + -0.46, + -0.62, + -0.77, + -0.84, + -0.87, + -0.91, + -0.89, + -0.9500000000000001, + -0.97, + -1.07, + -1.27, + -1.47, + -1.85, + -2.16, + -2.59, + -2.97, + -3.3000000000000003, + -3.61, + -3.67, + -3.81, + -3.71, + -3.74, + -3.49, + -3.3000000000000003, + -2.97, + -2.58, + -2.1, + -1.5, + -0.97, + -0.51, + -0.18, + 0.05, + 0.45, + 0.93, + 1.45, + 1.81, + 2.14, + 2.2800000000000002, + 2.44, + 2.46, + 2.48, + 2.48, + 2.5, + 2.48, + 2.43, + 2.37, + 2.32, + 2.27, + 2.17, + 2.13, + 2.07, + 1.97, + 1.81, + 1.6, + 1.36, + 1.16, + 1.0, + 0.9, + 0.85, + 0.8, + 0.78, + 0.76, + 0.8200000000000001, + 0.91, + 1.08, + 1.24, + 1.3800000000000001, + 1.47, + 1.34, + 1.1300000000000001, + 0.8300000000000001, + 0.55, + 0.53, + 0.59, + 0.73, + 0.85, + 0.8300000000000001, + 0.79, + 0.73, + 0.77, + 0.93, + 1.1500000000000001, + 1.43, + 1.75, + 2.05, + 2.36, + 2.69, + 2.96, + 3.17, + 3.2, + 3.14, + 2.91, + 2.72, + 2.42, + 2.16, + 2.0, + 1.9100000000000001, + 1.81, + 1.67, + 1.45, + 1.1500000000000001, + 0.81, + 0.47000000000000003, + 0.18, + -0.1, + -0.3, + -0.44, + -0.53, + -0.63, + -0.6900000000000001, + -0.62, + -0.43, + -0.03, + 0.4, + 0.6900000000000001, + 0.8300000000000001, + 0.66, + 0.4, + 0.05, + -0.18, + -0.17, + -0.07, + 0.14, + 0.29, + 0.39, + 0.4, + 0.31, + 0.13, + -0.2, + -0.5700000000000001, + -1.0, + -0.9400000000000001, + -0.91, + -0.53, + -0.26, + 0.25, + 0.89, + 1.6, + 2.27, + 2.31, + 2.0100000000000002, + 1.11, + 0.08, + -0.81, + -1.52, + -1.85, + -1.98, + -1.9000000000000001, + -1.57, + -1.1400000000000001, + -0.75, + -0.55, + -0.61, + -0.49, + -0.11, + 0.19, + 0.12, + -0.06, + -0.16, + -0.23, + -0.26, + -0.17, + 0.01, + 0.18, + 0.24, + 0.14, + -0.01, + -0.16, + -0.13, + 0.11, + 0.53, + 0.9500000000000001, + 1.05, + 0.66, + 0.02, + -0.48, + -0.61, + -0.26, + 0.31, + 0.6900000000000001, + 0.91, + 0.75, + 0.47000000000000003, + 0.19, + 0.02, + 0.08, + 0.15, + 0.3, + 0.45, + 0.48, + 0.64, + 0.76, + 0.86, + 0.9400000000000001, + 0.75, + 0.49, + 0.21, + -0.02, + -0.18, + -0.3, + -0.13, + 0.1, + 0.26, + 0.37, + 0.34, + 0.28, + 0.16, + -0.02, + -0.32, + -0.47000000000000003, + -0.28, + 0.04, + 0.35000000000000003, + 0.45, + 0.51, + 0.49, + 0.41000000000000003, + 0.2, + -0.14, + -0.47000000000000003, + -0.73, + -0.81, + -0.8300000000000001, + -0.66, + -0.51, + -0.39, + -0.38, + -0.35000000000000003, + -0.29, + -0.14, + -0.04, + 0.01, + 0.01, + 0.04, + -0.01, + -0.06, + -0.02, + 0.1, + 0.16, + 0.02, + -0.36, + -0.66, + -0.72, + -0.62, + -0.15, + 0.18, + 0.3, + 0.3, + 0.05, + -0.13, + -0.28, + -0.31, + -0.17 + ], + [ + 0.9400000000000001, + 1.1300000000000001, + 1.1, + 1.06, + 1.12, + 1.19, + 1.25, + 1.32, + 1.3900000000000001, + 1.46, + 1.53, + 1.59, + 1.6500000000000001, + 1.6500000000000001, + 1.6300000000000001, + 1.57, + 1.49, + 1.49, + 1.49, + 1.59, + 1.69, + 1.83, + 1.98, + 2.09, + 2.22, + 2.31, + 2.41, + 2.5, + 2.6, + 2.68, + 2.77, + 2.88, + 3.0100000000000002, + 3.15, + 3.2800000000000002, + 3.37, + 3.39, + 3.4, + 3.36, + 3.31, + 3.21, + 3.12, + 3.0700000000000003, + 3.04, + 3.0300000000000002, + 3.0100000000000002, + 2.95, + 2.87, + 2.77, + 2.62, + 2.45, + 2.2600000000000002, + 2.13, + 2.0300000000000002, + 2.0100000000000002, + 2.1, + 2.18, + 2.27, + 2.3000000000000003, + 2.34, + 2.4, + 2.43, + 2.43, + 2.35, + 2.2800000000000002, + 2.14, + 2.02, + 1.9100000000000001, + 1.8, + 1.72, + 1.6500000000000001, + 1.57, + 1.48, + 1.41, + 1.37, + 1.3800000000000001, + 1.41, + 1.4000000000000001, + 1.33, + 1.26, + 1.1500000000000001, + 1.04, + 0.9400000000000001, + 0.8200000000000001, + 0.7000000000000001, + 0.5700000000000001, + 0.45, + 0.32, + 0.17, + 0.05, + -0.13, + -0.3, + -0.47000000000000003, + -0.65, + -0.78, + -0.9, + -0.98, + -0.97, + -0.98, + -0.91, + -0.96, + -1.01, + -1.1, + -1.3, + -1.51, + -1.8800000000000001, + -2.22, + -2.67, + -3.09, + -3.42, + -3.79, + -3.9, + -4.04, + -3.83, + -3.7, + -3.34, + -2.95, + -2.52, + -2.0, + -1.54, + -0.97, + -0.47000000000000003, + -0.01, + 0.33, + 0.48, + 0.68, + 0.92, + 1.37, + 1.77, + 2.14, + 2.34, + 2.5100000000000002, + 2.61, + 2.67, + 2.67, + 2.67, + 2.67, + 2.66, + 2.58, + 2.5, + 2.45, + 2.37, + 2.27, + 2.15, + 2.1, + 2.0100000000000002, + 1.85, + 1.6400000000000001, + 1.41, + 1.2, + 1.03, + 0.91, + 0.84, + 0.84, + 0.8, + 0.76, + 0.76, + 0.8200000000000001, + 0.93, + 1.11, + 1.3, + 1.36, + 1.35, + 1.12, + 0.84, + 0.6, + 0.45, + 0.54, + 0.66, + 0.78, + 0.89, + 0.88, + 0.9, + 0.9400000000000001, + 1.06, + 1.25, + 1.47, + 1.76, + 2.07, + 2.37, + 2.67, + 2.95, + 3.08, + 3.14, + 3.11, + 3.06, + 2.85, + 2.62, + 2.38, + 2.25, + 2.16, + 2.1, + 1.94, + 1.75, + 1.46, + 1.1, + 0.75, + 0.41000000000000003, + 0.13, + -0.11, + -0.27, + -0.41000000000000003, + -0.55, + -0.68, + -0.71, + -0.61, + -0.34, + -0.06, + 0.18, + 0.23, + 0.16, + -0.06, + -0.23, + -0.35000000000000003, + -0.3, + -0.19, + -0.07, + 0.1, + 0.28, + 0.33, + 0.35000000000000003, + 0.15, + -0.28, + -0.77, + -1.02, + -1.11, + -0.78, + -0.42, + -0.02, + 0.46, + 1.07, + 1.81, + 2.34, + 2.63, + 2.2, + 1.49, + 0.5, + -0.41000000000000003, + -1.08, + -1.58, + -1.71, + -1.6, + -1.27, + -0.79, + -0.4, + -0.38, + -0.42, + -0.37, + -0.06, + 0.16, + 0.2, + 0.02, + -0.09, + -0.07, + -0.01, + 0.05, + 0.18, + 0.23, + 0.19, + 0.13, + 0.08, + -0.02, + -0.01, + 0.2, + 0.48, + 0.84, + 0.9500000000000001, + 0.64, + 0.04, + -0.47000000000000003, + -0.47000000000000003, + -0.17, + 0.19, + 0.54, + 0.67, + 0.65, + 0.42, + 0.19, + 0.03, + -0.02, + 0.07, + 0.18, + 0.4, + 0.7000000000000001, + 0.8300000000000001, + 0.93, + 0.97, + 0.79, + 0.5700000000000001, + 0.23, + -0.05, + -0.19, + -0.34, + -0.28, + -0.1, + 0.14, + 0.32, + 0.34, + 0.29, + 0.24, + 0.19, + 0.06, + -0.04, + -0.09, + 0.12, + 0.37, + 0.5, + 0.59, + 0.58, + 0.54, + 0.4, + 0.18, + -0.09, + -0.41000000000000003, + -0.65, + -0.79, + -0.81, + -0.72, + -0.46, + -0.3, + -0.27, + -0.25, + -0.14, + 0.02, + 0.1, + 0.06, + -0.01, + -0.14, + -0.21, + -0.28, + -0.19, + 0.02, + 0.06, + -0.14, + -0.51, + -0.85, + -0.99, + -0.7000000000000001, + -0.27, + 0.25, + 0.55, + 0.37, + 0.16, + -0.2, + -0.43, + -0.45, + -0.33 + ], + [ + 0.9500000000000001, + 1.1300000000000001, + 1.1300000000000001, + 1.1, + 1.1400000000000001, + 1.2, + 1.27, + 1.33, + 1.3900000000000001, + 1.45, + 1.51, + 1.57, + 1.59, + 1.59, + 1.55, + 1.49, + 1.49, + 1.48, + 1.58, + 1.68, + 1.82, + 1.96, + 2.08, + 2.19, + 2.27, + 2.35, + 2.44, + 2.52, + 2.6, + 2.68, + 2.7600000000000002, + 2.85, + 2.98, + 3.13, + 3.25, + 3.3200000000000003, + 3.35, + 3.35, + 3.33, + 3.25, + 3.15, + 3.0500000000000003, + 2.98, + 2.95, + 2.92, + 2.88, + 2.8000000000000003, + 2.71, + 2.59, + 2.46, + 2.29, + 2.12, + 1.98, + 1.92, + 1.96, + 2.06, + 2.21, + 2.29, + 2.34, + 2.38, + 2.41, + 2.44, + 2.37, + 2.29, + 2.14, + 1.98, + 1.8900000000000001, + 1.79, + 1.71, + 1.6300000000000001, + 1.54, + 1.44, + 1.3800000000000001, + 1.32, + 1.3, + 1.31, + 1.31, + 1.24, + 1.16, + 1.07, + 0.98, + 0.9, + 0.81, + 0.71, + 0.6, + 0.49, + 0.38, + 0.24, + 0.11, + -0.12, + -0.35000000000000003, + -0.61, + -0.84, + -0.99, + -1.1, + -1.17, + -1.1500000000000001, + -1.16, + -1.11, + -1.1500000000000001, + -1.25, + -1.3900000000000001, + -1.6400000000000001, + -1.85, + -2.16, + -2.49, + -2.79, + -3.19, + -3.43, + -3.77, + -3.84, + -3.97, + -3.7800000000000002, + -3.56, + -3.13, + -2.64, + -2.12, + -1.53, + -1.03, + -0.5, + -0.05, + 0.35000000000000003, + 0.68, + 0.86, + 0.97, + 1.04, + 1.28, + 1.61, + 2.0, + 2.25, + 2.46, + 2.61, + 2.72, + 2.83, + 2.86, + 2.86, + 2.86, + 2.81, + 2.73, + 2.65, + 2.58, + 2.5, + 2.38, + 2.27, + 2.18, + 2.09, + 1.93, + 1.73, + 1.54, + 1.32, + 1.1300000000000001, + 1.0, + 0.96, + 0.9400000000000001, + 0.9, + 0.84, + 0.76, + 0.76, + 0.81, + 0.9400000000000001, + 1.11, + 1.23, + 1.21, + 1.1, + 0.86, + 0.67, + 0.54, + 0.51, + 0.63, + 0.76, + 0.87, + 0.99, + 1.02, + 1.1300000000000001, + 1.24, + 1.37, + 1.58, + 1.83, + 2.13, + 2.4, + 2.67, + 2.83, + 2.95, + 2.97, + 2.97, + 2.96, + 2.9, + 2.69, + 2.54, + 2.41, + 2.38, + 2.29, + 2.19, + 1.98, + 1.71, + 1.36, + 0.99, + 0.66, + 0.34, + 0.09, + -0.09, + -0.24, + -0.47000000000000003, + -0.64, + -0.81, + -0.81, + -0.74, + -0.59, + -0.47000000000000003, + -0.42, + -0.46, + -0.51, + -0.5700000000000001, + -0.44, + -0.36, + -0.22, + -0.11, + 0.06, + 0.26, + 0.56, + 0.63, + 0.42, + 0.01, + -0.5, + -0.8300000000000001, + -0.74, + -0.45, + -0.1, + 0.28, + 0.6, + 1.07, + 1.69, + 2.27, + 2.49, + 2.37, + 1.68, + 0.96, + 0.08, + -0.68, + -1.16, + -1.41, + -1.31, + -0.9400000000000001, + -0.49, + -0.3, + -0.24, + -0.39, + -0.36, + -0.13, + 0.11, + 0.14, + 0.06, + 0.01, + 0.08, + 0.1, + 0.16, + 0.18, + 0.17, + 0.17, + 0.26, + 0.23, + 0.24, + 0.23, + 0.24, + 0.49, + 0.72, + 0.8200000000000001, + 0.49, + -0.07, + -0.44, + -0.5, + -0.28, + 0.04, + 0.22, + 0.36, + 0.45, + 0.42, + 0.19, + 0.02, + -0.04, + 0.0, + 0.17, + 0.45, + 0.73, + 0.9400000000000001, + 0.99, + 0.8300000000000001, + 0.63, + 0.24, + -0.11, + -0.26, + -0.39, + -0.39, + -0.33, + -0.06, + 0.21, + 0.33, + 0.34, + 0.25, + 0.16, + 0.14, + 0.11, + 0.08, + 0.21, + 0.4, + 0.65, + 0.75, + 0.79, + 0.76, + 0.65, + 0.5, + 0.26, + 0.0, + -0.25, + -0.48, + -0.68, + -0.76, + -0.5700000000000001, + -0.31, + -0.18, + -0.14, + -0.12, + 0.03, + 0.23, + 0.38, + 0.21, + -0.09, + -0.25, + -0.45, + -0.44, + -0.25, + -0.03, + 0.07, + -0.13, + -0.53, + -0.89, + -1.01, + -0.8, + -0.34, + 0.18, + 0.39, + 0.32, + -0.05, + -0.43, + -0.62, + -0.68, + -0.46 + ], + [ + 1.02, + 1.22, + 1.18, + 1.1300000000000001, + 1.16, + 1.22, + 1.28, + 1.33, + 1.3800000000000001, + 1.43, + 1.48, + 1.51, + 1.53, + 1.52, + 1.48, + 1.49, + 1.49, + 1.57, + 1.68, + 1.8, + 1.94, + 2.04, + 2.14, + 2.22, + 2.2800000000000002, + 2.35, + 2.42, + 2.5, + 2.57, + 2.65, + 2.72, + 2.81, + 2.93, + 3.0700000000000003, + 3.17, + 3.24, + 3.29, + 3.29, + 3.2800000000000002, + 3.21, + 3.09, + 2.98, + 2.9, + 2.85, + 2.82, + 2.7600000000000002, + 2.7, + 2.59, + 2.5100000000000002, + 2.39, + 2.23, + 2.05, + 1.93, + 1.8800000000000001, + 1.93, + 2.04, + 2.17, + 2.27, + 2.32, + 2.36, + 2.4, + 2.37, + 2.3000000000000003, + 2.17, + 2.0, + 1.8800000000000001, + 1.77, + 1.72, + 1.6400000000000001, + 1.54, + 1.44, + 1.35, + 1.29, + 1.25, + 1.23, + 1.2, + 1.11, + 1.03, + 0.9500000000000001, + 0.87, + 0.8300000000000001, + 0.76, + 0.7000000000000001, + 0.61, + 0.5, + 0.4, + 0.26, + 0.13, + -0.07, + -0.31, + -0.63, + -0.9400000000000001, + -1.2, + -1.37, + -1.45, + -1.47, + -1.49, + -1.48, + -1.54, + -1.74, + -1.9100000000000001, + -2.21, + -2.46, + -2.73, + -3.02, + -3.16, + -3.45, + -3.46, + -3.67, + -3.58, + -3.61, + -3.45, + -3.23, + -2.87, + -2.38, + -1.84, + -1.25, + -0.7000000000000001, + -0.18, + 0.27, + 0.63, + 0.92, + 1.06, + 1.19, + 1.22, + 1.29, + 1.48, + 1.8, + 2.1, + 2.36, + 2.5300000000000002, + 2.68, + 2.85, + 2.99, + 3.04, + 3.06, + 3.0100000000000002, + 2.96, + 2.86, + 2.79, + 2.71, + 2.63, + 2.5, + 2.39, + 2.3000000000000003, + 2.17, + 2.0300000000000002, + 1.8900000000000001, + 1.7, + 1.48, + 1.29, + 1.17, + 1.12, + 1.11, + 1.07, + 0.96, + 0.86, + 0.75, + 0.73, + 0.78, + 0.87, + 1.01, + 1.04, + 0.99, + 0.91, + 0.74, + 0.63, + 0.59, + 0.6, + 0.73, + 0.88, + 0.99, + 1.12, + 1.23, + 1.35, + 1.49, + 1.68, + 1.94, + 2.2, + 2.46, + 2.56, + 2.66, + 2.71, + 2.72, + 2.75, + 2.79, + 2.77, + 2.69, + 2.54, + 2.47, + 2.42, + 2.37, + 2.25, + 2.13, + 1.86, + 1.56, + 1.19, + 0.85, + 0.54, + 0.31, + 0.13, + -0.12, + -0.38, + -0.6900000000000001, + -0.9400000000000001, + -1.1400000000000001, + -1.25, + -1.25, + -1.27, + -1.1500000000000001, + -1.07, + -1.0, + -0.8300000000000001, + -0.67, + -0.43, + -0.32, + -0.25, + -0.09, + 0.21, + 0.54, + 0.84, + 0.73, + 0.33, + -0.14, + -0.35000000000000003, + -0.28, + -0.05, + 0.24, + 0.41000000000000003, + 0.5700000000000001, + 0.9, + 1.31, + 1.87, + 2.22, + 2.15, + 1.87, + 1.18, + 0.54, + -0.22, + -0.88, + -1.12, + -1.01, + -0.66, + -0.4, + -0.21, + -0.35000000000000003, + -0.51, + -0.5, + -0.33, + -0.09, + -0.01, + 0.02, + 0.07, + 0.09, + 0.11, + 0.07, + 0.0, + 0.03, + 0.18, + 0.3, + 0.48, + 0.45, + 0.35000000000000003, + 0.35000000000000003, + 0.45, + 0.66, + 0.65, + 0.35000000000000003, + -0.14, + -0.51, + -0.59, + -0.42, + -0.32, + -0.24, + -0.01, + 0.21, + 0.27, + 0.17, + -0.02, + -0.12, + -0.05, + 0.19, + 0.46, + 0.75, + 0.91, + 0.8300000000000001, + 0.65, + 0.27, + -0.12, + -0.38, + -0.53, + -0.46, + -0.43, + -0.29, + -0.03, + 0.27, + 0.43, + 0.35000000000000003, + 0.21, + 0.1, + 0.04, + 0.07, + 0.11, + 0.26, + 0.52, + 0.75, + 0.97, + 0.98, + 0.9400000000000001, + 0.81, + 0.53, + 0.29, + 0.08, + -0.15, + -0.35000000000000003, + -0.54, + -0.58, + -0.42, + -0.16, + -0.01, + -0.08, + -0.11, + 0.12, + 0.47000000000000003, + 0.53, + 0.35000000000000003, + -0.03, + -0.39, + -0.5, + -0.4, + -0.18, + 0.1, + 0.17, + -0.09, + -0.48, + -0.8300000000000001, + -0.97, + -0.85, + -0.45, + -0.05, + 0.16, + 0.02, + -0.37, + -0.67, + -0.86, + -0.78, + -0.53 + ], + [ + 1.06, + 1.24, + 1.21, + 1.16, + 1.18, + 1.23, + 1.28, + 1.33, + 1.37, + 1.41, + 1.44, + 1.47, + 1.48, + 1.47, + 1.49, + 1.5, + 1.57, + 1.67, + 1.78, + 1.9100000000000001, + 2.0, + 2.09, + 2.15, + 2.2, + 2.2600000000000002, + 2.33, + 2.4, + 2.47, + 2.54, + 2.61, + 2.68, + 2.77, + 2.89, + 3.0, + 3.1, + 3.16, + 3.2, + 3.2600000000000002, + 3.25, + 3.18, + 3.06, + 2.94, + 2.85, + 2.82, + 2.8000000000000003, + 2.77, + 2.71, + 2.63, + 2.5500000000000003, + 2.43, + 2.27, + 2.11, + 1.97, + 1.92, + 1.8900000000000001, + 1.99, + 2.06, + 2.16, + 2.25, + 2.3000000000000003, + 2.32, + 2.29, + 2.23, + 2.1, + 1.95, + 1.82, + 1.74, + 1.69, + 1.59, + 1.47, + 1.37, + 1.29, + 1.23, + 1.19, + 1.1300000000000001, + 1.01, + 0.92, + 0.81, + 0.73, + 0.6900000000000001, + 0.65, + 0.63, + 0.5700000000000001, + 0.49, + 0.39, + 0.24, + 0.09, + -0.08, + -0.29, + -0.59, + -0.9400000000000001, + -1.3, + -1.58, + -1.78, + -1.8900000000000001, + -1.94, + -1.99, + -2.07, + -2.34, + -2.57, + -2.89, + -3.17, + -3.39, + -3.65, + -3.72, + -3.87, + -3.66, + -3.65, + -3.3200000000000003, + -3.15, + -2.91, + -2.67, + -2.42, + -2.04, + -1.59, + -1.06, + -0.5, + 0.02, + 0.47000000000000003, + 0.8200000000000001, + 1.1, + 1.22, + 1.34, + 1.37, + 1.4000000000000001, + 1.48, + 1.67, + 1.92, + 2.21, + 2.44, + 2.62, + 2.7600000000000002, + 2.93, + 3.1, + 3.19, + 3.15, + 3.1, + 3.0300000000000002, + 2.94, + 2.88, + 2.81, + 2.72, + 2.61, + 2.49, + 2.38, + 2.2600000000000002, + 2.17, + 2.0300000000000002, + 1.86, + 1.6400000000000001, + 1.47, + 1.34, + 1.3, + 1.28, + 1.23, + 1.1300000000000001, + 0.98, + 0.85, + 0.74, + 0.7000000000000001, + 0.74, + 0.8, + 0.88, + 0.91, + 0.88, + 0.81, + 0.6900000000000001, + 0.61, + 0.62, + 0.6900000000000001, + 0.8300000000000001, + 0.97, + 1.1, + 1.24, + 1.36, + 1.51, + 1.71, + 1.96, + 2.24, + 2.35, + 2.4, + 2.38, + 2.38, + 2.41, + 2.46, + 2.52, + 2.5500000000000003, + 2.49, + 2.42, + 2.34, + 2.27, + 2.23, + 2.22, + 2.1, + 1.99, + 1.68, + 1.33, + 0.99, + 0.75, + 0.53, + 0.32, + 0.07, + -0.33, + -0.71, + -1.11, + -1.44, + -1.74, + -1.98, + -1.97, + -1.8800000000000001, + -1.62, + -1.34, + -1.12, + -0.91, + -0.6900000000000001, + -0.63, + -0.56, + -0.46, + -0.15, + 0.33, + 0.65, + 0.8300000000000001, + 0.53, + 0.28, + 0.14, + 0.2, + 0.42, + 0.48, + 0.49, + 0.54, + 0.6900000000000001, + 0.98, + 1.3, + 1.69, + 1.84, + 1.6500000000000001, + 1.3800000000000001, + 0.74, + 0.09, + -0.56, + -0.92, + -0.81, + -0.49, + -0.23, + -0.3, + -0.47000000000000003, + -0.61, + -0.64, + -0.5, + -0.32, + -0.18, + -0.12, + -0.05, + -0.02, + -0.05, + -0.18, + -0.22, + -0.17, + 0.04, + 0.37, + 0.51, + 0.47000000000000003, + 0.37, + 0.34, + 0.43, + 0.5, + 0.49, + 0.18, + -0.29, + -0.6, + -0.6900000000000001, + -0.68, + -0.6900000000000001, + -0.64, + -0.48, + -0.07, + 0.17, + 0.07, + -0.15, + -0.23, + -0.16, + 0.08, + 0.4, + 0.65, + 0.7000000000000001, + 0.61, + 0.32, + -0.06, + -0.45, + -0.72, + -0.62, + -0.53, + -0.43, + -0.28, + 0.03, + 0.36, + 0.47000000000000003, + 0.38, + 0.19, + 0.05, + 0.02, + 0.06, + 0.08, + 0.15, + 0.43, + 0.76, + 0.97, + 1.1300000000000001, + 1.07, + 0.81, + 0.53, + 0.23, + 0.02, + -0.11, + -0.28, + -0.39, + -0.43, + -0.24, + 0.01, + 0.04, + -0.1, + -0.15, + 0.04, + 0.42, + 0.61, + 0.36, + -0.06, + -0.37, + -0.37, + -0.25, + 0.05, + 0.3, + 0.22, + -0.05, + -0.48, + -0.8300000000000001, + -1.0, + -0.9, + -0.59, + -0.23, + -0.07, + -0.23, + -0.56, + -0.86, + -0.92, + -0.75, + -0.47000000000000003 + ], + [ + 1.09, + 1.28, + 1.24, + 1.18, + 1.2, + 1.24, + 1.28, + 1.32, + 1.36, + 1.3900000000000001, + 1.42, + 1.45, + 1.46, + 1.49, + 1.51, + 1.58, + 1.6600000000000001, + 1.75, + 1.86, + 1.95, + 2.02, + 2.09, + 2.13, + 2.18, + 2.24, + 2.31, + 2.38, + 2.45, + 2.5100000000000002, + 2.58, + 2.65, + 2.74, + 2.86, + 2.96, + 3.04, + 3.1, + 3.17, + 3.22, + 3.22, + 3.15, + 3.04, + 2.92, + 2.87, + 2.87, + 2.9, + 2.92, + 2.87, + 2.81, + 2.71, + 2.59, + 2.42, + 2.29, + 2.13, + 1.96, + 1.92, + 1.86, + 1.94, + 2.0300000000000002, + 2.12, + 2.21, + 2.23, + 2.24, + 2.18, + 2.07, + 1.94, + 1.82, + 1.76, + 1.6600000000000001, + 1.54, + 1.41, + 1.3, + 1.22, + 1.16, + 1.1, + 0.98, + 0.85, + 0.71, + 0.6, + 0.55, + 0.52, + 0.5, + 0.48, + 0.45, + 0.37, + 0.23, + 0.07, + -0.12, + -0.32, + -0.5700000000000001, + -0.9, + -1.3, + -1.69, + -2.0300000000000002, + -2.2800000000000002, + -2.44, + -2.56, + -2.67, + -2.94, + -3.22, + -3.5500000000000003, + -3.84, + -3.97, + -4.18, + -4.16, + -4.24, + -3.97, + -3.74, + -3.2, + -2.77, + -2.35, + -2.0300000000000002, + -1.79, + -1.52, + -1.22, + -0.8200000000000001, + -0.33, + 0.17, + 0.6, + 0.92, + 1.2, + 1.32, + 1.44, + 1.5, + 1.54, + 1.58, + 1.6600000000000001, + 1.83, + 2.08, + 2.3000000000000003, + 2.52, + 2.68, + 2.81, + 2.96, + 3.13, + 3.19, + 3.13, + 3.0700000000000003, + 2.99, + 2.96, + 2.95, + 2.88, + 2.77, + 2.67, + 2.57, + 2.46, + 2.38, + 2.2800000000000002, + 2.17, + 2.0, + 1.82, + 1.6400000000000001, + 1.5, + 1.45, + 1.4000000000000001, + 1.35, + 1.27, + 1.1400000000000001, + 1.0, + 0.88, + 0.75, + 0.72, + 0.73, + 0.77, + 0.8300000000000001, + 0.84, + 0.79, + 0.7000000000000001, + 0.62, + 0.6, + 0.66, + 0.75, + 0.88, + 1.01, + 1.1400000000000001, + 1.29, + 1.44, + 1.61, + 1.86, + 2.07, + 2.17, + 2.13, + 2.05, + 2.0300000000000002, + 2.05, + 2.1, + 2.16, + 2.22, + 2.21, + 2.15, + 2.06, + 2.0, + 1.99, + 1.99, + 2.0100000000000002, + 1.9000000000000001, + 1.75, + 1.4000000000000001, + 1.12, + 0.88, + 0.74, + 0.54, + 0.24, + -0.16, + -0.68, + -1.1400000000000001, + -1.6400000000000001, + -2.08, + -2.41, + -2.5100000000000002, + -2.29, + -1.86, + -1.51, + -1.26, + -1.07, + -1.05, + -0.98, + -0.91, + -0.8, + -0.54, + -0.06, + 0.4, + 0.59, + 0.64, + 0.49, + 0.54, + 0.7000000000000001, + 0.76, + 0.77, + 0.66, + 0.64, + 0.65, + 0.73, + 0.89, + 1.02, + 1.27, + 1.36, + 1.17, + 0.84, + 0.2, + -0.34, + -0.6900000000000001, + -0.63, + -0.31, + -0.16, + -0.25, + -0.44, + -0.58, + -0.61, + -0.49, + -0.43, + -0.34, + -0.28, + -0.23, + -0.2, + -0.27, + -0.37, + -0.42, + -0.33, + -0.06, + 0.26, + 0.34, + 0.3, + 0.22, + 0.19, + 0.32, + 0.39, + 0.25, + -0.07, + -0.45, + -0.75, + -0.77, + -0.77, + -0.8200000000000001, + -0.85, + -0.64, + -0.23, + 0.07, + 0.02, + -0.21, + -0.38, + -0.32, + -0.15, + 0.18, + 0.39, + 0.45, + 0.35000000000000003, + 0.07, + -0.32, + -0.72, + -0.8300000000000001, + -0.73, + -0.54, + -0.42, + -0.3, + -0.01, + 0.33, + 0.46, + 0.36, + 0.15, + 0.06, + 0.11, + 0.09, + 0.03, + 0.06, + 0.25, + 0.61, + 0.92, + 1.08, + 1.05, + 0.79, + 0.45, + 0.16, + -0.06, + -0.18, + -0.16, + -0.24, + -0.25, + -0.08, + 0.11, + 0.11, + -0.13, + -0.28, + -0.11, + 0.22, + 0.42, + 0.2, + -0.15, + -0.26, + -0.23, + 0.0, + 0.27, + 0.31, + 0.22, + -0.13, + -0.5700000000000001, + -0.89, + -1.06, + -0.97, + -0.67, + -0.29, + -0.12, + -0.29, + -0.6, + -0.84, + -0.84, + -0.65, + -0.32 + ], + [ + 1.1300000000000001, + 1.31, + 1.26, + 1.19, + 1.21, + 1.24, + 1.28, + 1.32, + 1.36, + 1.3900000000000001, + 1.43, + 1.45, + 1.49, + 1.52, + 1.58, + 1.6500000000000001, + 1.72, + 1.81, + 1.8900000000000001, + 1.96, + 2.02, + 2.07, + 2.12, + 2.18, + 2.24, + 2.3000000000000003, + 2.37, + 2.43, + 2.49, + 2.56, + 2.63, + 2.74, + 2.86, + 2.95, + 3.02, + 3.09, + 3.16, + 3.19, + 3.19, + 3.11, + 2.99, + 2.94, + 2.92, + 2.98, + 3.0700000000000003, + 3.12, + 3.12, + 3.0300000000000002, + 2.92, + 2.7800000000000002, + 2.63, + 2.48, + 2.33, + 2.12, + 1.8800000000000001, + 1.8, + 1.78, + 1.87, + 1.99, + 2.08, + 2.16, + 2.17, + 2.13, + 2.0300000000000002, + 1.93, + 1.82, + 1.72, + 1.59, + 1.46, + 1.32, + 1.2, + 1.11, + 1.04, + 0.93, + 0.8, + 0.66, + 0.53, + 0.45, + 0.39, + 0.36, + 0.34, + 0.33, + 0.3, + 0.22, + 0.07, + -0.13, + -0.33, + -0.58, + -0.86, + -1.26, + -1.71, + -2.17, + -2.59, + -2.88, + -3.1, + -3.2600000000000002, + -3.5100000000000002, + -3.7800000000000002, + -4.09, + -4.39, + -4.45, + -4.58, + -4.41, + -4.4, + -4.08, + -3.79, + -3.21, + -2.6, + -1.95, + -1.46, + -1.1, + -0.85, + -0.64, + -0.38, + -0.06, + 0.36, + 0.74, + 1.0, + 1.25, + 1.35, + 1.48, + 1.57, + 1.6400000000000001, + 1.68, + 1.72, + 1.82, + 1.99, + 2.18, + 2.39, + 2.57, + 2.72, + 2.82, + 2.96, + 3.08, + 3.1, + 3.04, + 2.95, + 2.94, + 2.97, + 2.98, + 2.95, + 2.84, + 2.73, + 2.64, + 2.56, + 2.48, + 2.39, + 2.2800000000000002, + 2.14, + 1.96, + 1.78, + 1.6400000000000001, + 1.51, + 1.45, + 1.41, + 1.34, + 1.28, + 1.18, + 1.06, + 0.9400000000000001, + 0.81, + 0.76, + 0.74, + 0.75, + 0.77, + 0.71, + 0.63, + 0.5700000000000001, + 0.54, + 0.56, + 0.65, + 0.73, + 0.86, + 0.99, + 1.1300000000000001, + 1.26, + 1.42, + 1.57, + 1.73, + 1.86, + 1.81, + 1.7, + 1.6600000000000001, + 1.6500000000000001, + 1.6600000000000001, + 1.74, + 1.8, + 1.84, + 1.84, + 1.76, + 1.71, + 1.7, + 1.67, + 1.7, + 1.73, + 1.58, + 1.44, + 1.16, + 0.99, + 0.86, + 0.7000000000000001, + 0.4, + 0.0, + -0.51, + -1.1, + -1.67, + -2.2, + -2.56, + -2.65, + -2.2800000000000002, + -1.79, + -1.3, + -1.1, + -1.09, + -1.1, + -1.07, + -1.01, + -0.78, + -0.52, + -0.31, + 0.14, + 0.25, + 0.29, + 0.4, + 0.52, + 0.84, + 0.96, + 0.93, + 0.8300000000000001, + 0.81, + 0.84, + 0.6900000000000001, + 0.53, + 0.56, + 0.66, + 0.85, + 0.91, + 0.66, + 0.31, + -0.24, + -0.48, + -0.41000000000000003, + -0.18, + -0.04, + -0.09, + -0.28, + -0.4, + -0.4, + -0.43, + -0.42, + -0.42, + -0.39, + -0.34, + -0.31, + -0.35000000000000003, + -0.38, + -0.44, + -0.32, + -0.1, + 0.05, + 0.12, + -0.05, + -0.12, + 0.08, + 0.21, + 0.27, + 0.11, + -0.25, + -0.64, + -0.78, + -0.75, + -0.5700000000000001, + -0.52, + -0.63, + -0.41000000000000003, + -0.13, + 0.08, + 0.04, + -0.21, + -0.44, + -0.51, + -0.34, + -0.07, + 0.17, + 0.33, + 0.23, + -0.03, + -0.42, + -0.76, + -0.85, + -0.7000000000000001, + -0.48, + -0.46, + -0.38, + -0.16, + 0.14, + 0.36, + 0.28, + 0.15, + 0.13, + 0.16, + 0.12, + 0.01, + -0.03, + 0.14, + 0.45, + 0.78, + 0.98, + 0.96, + 0.77, + 0.43, + 0.08, + -0.13, + -0.12, + -0.07, + -0.01, + 0.01, + 0.03, + 0.16, + 0.17, + -0.07, + -0.34, + -0.27, + 0.0, + 0.09, + -0.02, + -0.15, + -0.22, + 0.0, + 0.21, + 0.22, + 0.26, + -0.01, + -0.37, + -0.64, + -0.96, + -1.07, + -0.96, + -0.63, + -0.23, + -0.05, + -0.21, + -0.53, + -0.74, + -0.76, + -0.55, + -0.26 + ], + [ + 1.1300000000000001, + 1.32, + 1.27, + 1.2, + 1.22, + 1.25, + 1.29, + 1.33, + 1.36, + 1.4000000000000001, + 1.44, + 1.49, + 1.53, + 1.58, + 1.6400000000000001, + 1.71, + 1.78, + 1.84, + 1.9100000000000001, + 1.97, + 2.02, + 2.07, + 2.13, + 2.18, + 2.24, + 2.3000000000000003, + 2.36, + 2.42, + 2.49, + 2.56, + 2.66, + 2.77, + 2.86, + 2.96, + 3.04, + 3.1, + 3.17, + 3.2, + 3.14, + 3.0500000000000003, + 2.97, + 2.94, + 2.99, + 3.09, + 3.21, + 3.29, + 3.3000000000000003, + 3.19, + 3.06, + 2.86, + 2.73, + 2.61, + 2.47, + 2.23, + 1.95, + 1.74, + 1.71, + 1.72, + 1.84, + 1.96, + 2.04, + 2.08, + 2.04, + 1.96, + 1.85, + 1.75, + 1.62, + 1.48, + 1.33, + 1.19, + 1.06, + 0.97, + 0.86, + 0.75, + 0.61, + 0.48, + 0.42, + 0.33, + 0.29, + 0.25, + 0.2, + 0.19, + 0.12, + 0.03, + -0.14, + -0.34, + -0.58, + -0.85, + -1.23, + -1.69, + -2.23, + -2.77, + -3.2, + -3.5100000000000002, + -3.7600000000000002, + -3.98, + -4.24, + -4.51, + -4.8100000000000005, + -4.86, + -4.92, + -4.66, + -4.49, + -4.07, + -3.73, + -3.16, + -2.5300000000000002, + -1.82, + -1.1500000000000001, + -0.58, + -0.22, + 0.06, + 0.28, + 0.42, + 0.68, + 0.9400000000000001, + 1.12, + 1.32, + 1.3800000000000001, + 1.48, + 1.57, + 1.6600000000000001, + 1.73, + 1.78, + 1.8, + 1.8900000000000001, + 2.05, + 2.24, + 2.41, + 2.58, + 2.72, + 2.82, + 2.91, + 3.0, + 2.99, + 2.9, + 2.85, + 2.88, + 2.95, + 3.0, + 3.0, + 2.94, + 2.83, + 2.7600000000000002, + 2.67, + 2.56, + 2.47, + 2.33, + 2.19, + 2.0300000000000002, + 1.85, + 1.69, + 1.55, + 1.44, + 1.4000000000000001, + 1.4000000000000001, + 1.37, + 1.35, + 1.26, + 1.1300000000000001, + 0.99, + 0.85, + 0.76, + 0.71, + 0.65, + 0.61, + 0.53, + 0.47000000000000003, + 0.43, + 0.44, + 0.48, + 0.5700000000000001, + 0.65, + 0.77, + 0.9, + 1.02, + 1.1, + 1.2, + 1.33, + 1.44, + 1.46, + 1.36, + 1.27, + 1.23, + 1.23, + 1.3, + 1.4000000000000001, + 1.5, + 1.52, + 1.51, + 1.46, + 1.41, + 1.36, + 1.28, + 1.33, + 1.4000000000000001, + 1.27, + 1.18, + 1.02, + 0.88, + 0.71, + 0.5, + 0.1, + -0.35000000000000003, + -0.93, + -1.58, + -2.13, + -2.49, + -2.42, + -2.02, + -1.33, + -0.86, + -0.66, + -0.72, + -0.81, + -0.8200000000000001, + -0.59, + -0.38, + -0.29, + -0.09, + -0.25, + -0.19, + -0.41000000000000003, + -0.36, + 0.05, + 0.38, + 0.76, + 0.76, + 0.84, + 0.9400000000000001, + 1.01, + 0.84, + 0.46, + 0.23, + 0.25, + 0.35000000000000003, + 0.49, + 0.48, + 0.18, + -0.05, + -0.31, + -0.27, + -0.03, + 0.16, + 0.08, + -0.05, + -0.14, + -0.28, + -0.37, + -0.45, + -0.49, + -0.44, + -0.34, + -0.3, + -0.28, + -0.29, + -0.25, + -0.2, + -0.1, + 0.01, + -0.12, + -0.32, + -0.28, + -0.08, + 0.19, + 0.25, + 0.09, + -0.28, + -0.63, + -0.72, + -0.48, + -0.16, + 0.02, + 0.04, + -0.02, + 0.15, + 0.23, + 0.06, + -0.19, + -0.43, + -0.56, + -0.4, + -0.13, + 0.24, + 0.41000000000000003, + 0.33, + 0.07, + -0.37, + -0.7000000000000001, + -0.76, + -0.5700000000000001, + -0.48, + -0.5, + -0.5700000000000001, + -0.41000000000000003, + -0.08, + 0.13, + 0.22, + 0.2, + 0.17, + 0.19, + 0.14, + 0.0, + -0.08, + 0.08, + 0.37, + 0.66, + 0.88, + 0.99, + 0.81, + 0.47000000000000003, + 0.11, + -0.1, + -0.05, + 0.14, + 0.24, + 0.14, + 0.11, + 0.18, + 0.15, + -0.01, + -0.22, + -0.33, + -0.2, + -0.1, + -0.17, + -0.23, + -0.02, + 0.18, + 0.21, + 0.21, + -0.06, + -0.32, + -0.5700000000000001, + -0.84, + -0.93, + -1.0, + -0.87, + -0.5, + -0.15, + -0.01, + -0.14, + -0.47000000000000003, + -0.7000000000000001, + -0.71, + -0.55, + -0.36 + ], + [ + 1.2, + 1.3900000000000001, + 1.3, + 1.21, + 1.22, + 1.26, + 1.3, + 1.33, + 1.3800000000000001, + 1.42, + 1.48, + 1.53, + 1.59, + 1.6500000000000001, + 1.72, + 1.78, + 1.84, + 1.9000000000000001, + 1.94, + 2.0, + 2.04, + 2.09, + 2.14, + 2.2, + 2.2600000000000002, + 2.32, + 2.37, + 2.45, + 2.5100000000000002, + 2.61, + 2.71, + 2.81, + 2.9, + 2.97, + 3.0500000000000003, + 3.15, + 3.21, + 3.21, + 3.14, + 3.0300000000000002, + 2.97, + 2.96, + 3.04, + 3.14, + 3.2600000000000002, + 3.36, + 3.3200000000000003, + 3.24, + 3.04, + 2.85, + 2.71, + 2.63, + 2.5100000000000002, + 2.3000000000000003, + 2.07, + 1.82, + 1.6600000000000001, + 1.6600000000000001, + 1.71, + 1.84, + 1.93, + 1.96, + 1.94, + 1.85, + 1.74, + 1.62, + 1.48, + 1.32, + 1.17, + 1.02, + 0.89, + 0.79, + 0.6900000000000001, + 0.55, + 0.43, + 0.38, + 0.32, + 0.31, + 0.25, + 0.19, + 0.13, + 0.03, + -0.04, + -0.21, + -0.4, + -0.61, + -0.87, + -1.21, + -1.68, + -2.22, + -2.83, + -3.37, + -3.74, + -4.0600000000000005, + -4.2700000000000005, + -4.54, + -4.8, + -5.08, + -5.16, + -5.23, + -4.94, + -4.67, + -4.15, + -3.7, + -3.1, + -2.48, + -1.8, + -1.09, + -0.39, + 0.15, + 0.61, + 0.88, + 1.06, + 1.1300000000000001, + 1.23, + 1.29, + 1.42, + 1.46, + 1.51, + 1.57, + 1.6500000000000001, + 1.73, + 1.81, + 1.8, + 1.81, + 1.8800000000000001, + 2.04, + 2.19, + 2.35, + 2.5, + 2.62, + 2.75, + 2.84, + 2.89, + 2.84, + 2.77, + 2.74, + 2.8000000000000003, + 2.91, + 2.99, + 3.0, + 3.0, + 2.97, + 2.89, + 2.7600000000000002, + 2.64, + 2.47, + 2.34, + 2.19, + 2.0300000000000002, + 1.8900000000000001, + 1.73, + 1.57, + 1.47, + 1.3900000000000001, + 1.41, + 1.47, + 1.48, + 1.46, + 1.36, + 1.19, + 1.02, + 0.85, + 0.73, + 0.62, + 0.53, + 0.44, + 0.37, + 0.32, + 0.3, + 0.33, + 0.34, + 0.41000000000000003, + 0.52, + 0.64, + 0.76, + 0.8300000000000001, + 0.84, + 0.96, + 1.04, + 1.04, + 0.97, + 0.88, + 0.84, + 0.87, + 0.93, + 1.07, + 1.18, + 1.24, + 1.25, + 1.25, + 1.19, + 1.03, + 0.93, + 0.92, + 1.02, + 1.12, + 1.05, + 0.96, + 0.8200000000000001, + 0.6900000000000001, + 0.47000000000000003, + 0.24, + -0.17, + -0.7000000000000001, + -1.32, + -1.92, + -2.18, + -2.15, + -1.57, + -0.8300000000000001, + -0.31, + -0.1, + -0.22, + -0.36, + -0.28, + -0.05, + 0.11, + 0.17, + -0.07, + -0.31, + -0.89, + -1.2, + -1.42, + -1.04, + -0.43, + -0.08, + 0.32, + 0.53, + 0.92, + 1.17, + 1.05, + 0.64, + 0.16, + -0.1, + -0.05, + 0.05, + 0.14, + 0.2, + -0.01, + -0.13, + -0.1, + 0.1, + 0.28, + 0.34, + 0.21, + 0.02, + -0.16, + -0.41000000000000003, + -0.56, + -0.5700000000000001, + -0.46, + -0.33, + -0.28, + -0.23, + -0.2, + -0.12, + -0.01, + 0.04, + 0.0, + -0.16, + -0.28, + -0.29, + -0.04, + 0.25, + 0.31, + 0.13, + -0.12, + -0.43, + -0.51, + -0.16, + 0.27, + 0.48, + 0.55, + 0.47000000000000003, + 0.43, + 0.31, + 0.13, + -0.15, + -0.39, + -0.38, + -0.27, + 0.15, + 0.51, + 0.65, + 0.58, + 0.15, + -0.3, + -0.62, + -0.66, + -0.55, + -0.5, + -0.63, + -0.75, + -0.67, + -0.35000000000000003, + -0.01, + 0.14, + 0.2, + 0.22, + 0.22, + 0.14, + 0.01, + 0.02, + 0.1, + 0.26, + 0.56, + 0.93, + 1.06, + 0.96, + 0.61, + 0.19, + 0.0, + 0.08, + 0.32, + 0.39, + 0.23, + 0.04, + 0.04, + 0.14, + 0.03, + -0.16, + -0.25, + -0.25, + -0.23, + -0.27, + -0.16, + 0.06, + 0.19, + 0.23, + -0.04, + -0.31, + -0.61, + -0.85, + -0.91, + -0.96, + -0.91, + -0.73, + -0.5, + -0.2, + -0.09, + -0.33, + -0.55, + -0.74, + -0.76, + -0.61, + -0.47000000000000003 + ], + [ + 1.16, + 1.36, + 1.3, + 1.24, + 1.24, + 1.28, + 1.32, + 1.36, + 1.41, + 1.46, + 1.51, + 1.58, + 1.6500000000000001, + 1.72, + 1.79, + 1.86, + 1.92, + 1.96, + 2.0100000000000002, + 2.04, + 2.08, + 2.12, + 2.18, + 2.23, + 2.29, + 2.35, + 2.43, + 2.5, + 2.6, + 2.69, + 2.7800000000000002, + 2.87, + 2.93, + 3.0, + 3.08, + 3.18, + 3.24, + 3.23, + 3.17, + 3.06, + 2.98, + 3.0100000000000002, + 3.06, + 3.15, + 3.24, + 3.2800000000000002, + 3.2800000000000002, + 3.16, + 2.99, + 2.83, + 2.67, + 2.6, + 2.52, + 2.39, + 2.17, + 1.94, + 1.73, + 1.6400000000000001, + 1.69, + 1.75, + 1.84, + 1.8800000000000001, + 1.84, + 1.75, + 1.62, + 1.47, + 1.3, + 1.1400000000000001, + 0.98, + 0.86, + 0.76, + 0.65, + 0.54, + 0.4, + 0.34, + 0.3, + 0.32, + 0.3, + 0.23, + 0.16, + 0.02, + -0.1, + -0.29, + -0.48, + -0.71, + -0.9500000000000001, + -1.25, + -1.67, + -2.19, + -2.82, + -3.38, + -3.81, + -4.17, + -4.3500000000000005, + -4.62, + -4.89, + -5.18, + -5.3100000000000005, + -5.43, + -5.16, + -4.88, + -4.29, + -3.75, + -3.12, + -2.47, + -1.79, + -1.11, + -0.45, + 0.22, + 0.8200000000000001, + 1.22, + 1.52, + 1.57, + 1.61, + 1.56, + 1.54, + 1.54, + 1.57, + 1.6, + 1.6500000000000001, + 1.69, + 1.78, + 1.79, + 1.79, + 1.78, + 1.84, + 1.96, + 2.1, + 2.21, + 2.34, + 2.45, + 2.57, + 2.68, + 2.7, + 2.7, + 2.63, + 2.63, + 2.7600000000000002, + 2.89, + 2.98, + 3.02, + 3.06, + 3.08, + 2.99, + 2.86, + 2.65, + 2.47, + 2.3000000000000003, + 2.17, + 2.06, + 1.93, + 1.79, + 1.6300000000000001, + 1.49, + 1.43, + 1.44, + 1.54, + 1.6300000000000001, + 1.6400000000000001, + 1.59, + 1.43, + 1.23, + 1.04, + 0.84, + 0.68, + 0.53, + 0.39, + 0.3, + 0.19, + 0.15, + 0.09, + 0.09, + 0.13, + 0.25, + 0.45, + 0.59, + 0.65, + 0.66, + 0.56, + 0.6, + 0.58, + 0.47000000000000003, + 0.47000000000000003, + 0.51, + 0.56, + 0.67, + 0.79, + 0.87, + 0.9500000000000001, + 0.98, + 1.01, + 0.97, + 0.79, + 0.61, + 0.58, + 0.68, + 0.8200000000000001, + 0.86, + 0.77, + 0.75, + 0.64, + 0.5700000000000001, + 0.39, + 0.09, + -0.42, + -1.03, + -1.56, + -1.8900000000000001, + -1.7, + -1.2, + -0.56, + 0.11, + 0.18, + 0.13, + -0.01, + 0.08, + 0.27, + 0.45, + 0.28, + -0.06, + -0.63, + -1.34, + -2.09, + -2.31, + -2.2800000000000002, + -1.68, + -0.98, + -0.52, + 0.1, + 0.78, + 1.32, + 1.26, + 0.8200000000000001, + 0.15, + -0.31, + -0.44, + -0.35000000000000003, + -0.03, + 0.12, + 0.16, + 0.03, + -0.04, + 0.16, + 0.4, + 0.45, + 0.39, + 0.17, + -0.12, + -0.44, + -0.65, + -0.6, + -0.49, + -0.37, + -0.29, + -0.28, + -0.21, + -0.04, + 0.12, + 0.21, + 0.16, + 0.02, + -0.15, + -0.04, + 0.21, + 0.31, + 0.36, + 0.32, + 0.08, + -0.1, + -0.09, + 0.04, + 0.42, + 0.74, + 0.6900000000000001, + 0.6900000000000001, + 0.55, + 0.41000000000000003, + 0.16, + -0.09, + -0.17, + -0.18, + 0.14, + 0.54, + 0.88, + 1.02, + 0.7000000000000001, + 0.24, + -0.29, + -0.61, + -0.68, + -0.5700000000000001, + -0.61, + -0.8300000000000001, + -0.96, + -0.8300000000000001, + -0.54, + -0.19, + 0.08, + 0.17, + 0.22, + 0.17, + 0.16, + 0.19, + 0.15, + 0.11, + 0.2, + 0.46, + 0.89, + 1.19, + 1.11, + 0.78, + 0.34, + 0.11, + 0.24, + 0.44, + 0.45, + 0.23, + -0.01, + -0.1, + 0.0, + 0.04, + -0.12, + -0.23, + -0.21, + -0.23, + -0.22, + -0.14, + 0.01, + 0.18, + 0.0, + -0.27, + -0.54, + -0.85, + -0.9400000000000001, + -0.9500000000000001, + -0.89, + -0.8, + -0.73, + -0.52, + -0.42, + -0.48, + -0.62, + -0.84, + -0.91, + -0.81, + -0.67, + -0.55 + ], + [ + 1.26, + 1.47, + 1.36, + 1.25, + 1.27, + 1.31, + 1.35, + 1.3900000000000001, + 1.44, + 1.5, + 1.56, + 1.6300000000000001, + 1.71, + 1.79, + 1.86, + 1.93, + 1.98, + 2.0300000000000002, + 2.07, + 2.1, + 2.14, + 2.19, + 2.23, + 2.3000000000000003, + 2.36, + 2.44, + 2.5100000000000002, + 2.6, + 2.69, + 2.7800000000000002, + 2.87, + 2.93, + 2.99, + 3.0300000000000002, + 3.1, + 3.17, + 3.23, + 3.24, + 3.17, + 3.1, + 3.04, + 3.0100000000000002, + 3.06, + 3.11, + 3.17, + 3.21, + 3.18, + 3.1, + 2.97, + 2.82, + 2.7, + 2.61, + 2.5100000000000002, + 2.42, + 2.23, + 2.0100000000000002, + 1.8, + 1.68, + 1.68, + 1.74, + 1.78, + 1.8, + 1.76, + 1.6500000000000001, + 1.5, + 1.32, + 1.1400000000000001, + 0.97, + 0.8300000000000001, + 0.76, + 0.66, + 0.5700000000000001, + 0.44, + 0.34, + 0.26, + 0.28, + 0.32, + 0.25, + 0.18, + 0.03, + -0.13, + -0.34, + -0.58, + -0.8300000000000001, + -1.07, + -1.35, + -1.71, + -2.16, + -2.77, + -3.35, + -3.79, + -4.16, + -4.32, + -4.53, + -4.78, + -5.1000000000000005, + -5.3, + -5.47, + -5.23, + -5.0, + -4.4, + -3.79, + -3.13, + -2.46, + -1.82, + -1.1400000000000001, + -0.51, + 0.14, + 0.73, + 1.26, + 1.68, + 1.86, + 1.95, + 1.8800000000000001, + 1.79, + 1.69, + 1.6500000000000001, + 1.6400000000000001, + 1.6600000000000001, + 1.6600000000000001, + 1.7, + 1.73, + 1.76, + 1.74, + 1.72, + 1.78, + 1.8900000000000001, + 1.99, + 2.08, + 2.13, + 2.23, + 2.31, + 2.39, + 2.47, + 2.45, + 2.48, + 2.5500000000000003, + 2.73, + 2.9, + 3.02, + 3.08, + 3.13, + 3.13, + 3.08, + 2.88, + 2.66, + 2.46, + 2.29, + 2.18, + 2.09, + 1.96, + 1.83, + 1.69, + 1.55, + 1.49, + 1.54, + 1.62, + 1.74, + 1.81, + 1.75, + 1.6600000000000001, + 1.46, + 1.25, + 1.04, + 0.81, + 0.59, + 0.4, + 0.2, + 0.06, + -0.09, + -0.17, + -0.22, + -0.18, + -0.01, + 0.23, + 0.54, + 0.61, + 0.46, + 0.3, + 0.05, + -0.09, + -0.07, + 0.04, + 0.18, + 0.33, + 0.43, + 0.51, + 0.58, + 0.63, + 0.6900000000000001, + 0.77, + 0.76, + 0.61, + 0.38, + 0.33, + 0.44, + 0.51, + 0.55, + 0.54, + 0.54, + 0.7000000000000001, + 0.6900000000000001, + 0.65, + 0.34, + -0.14, + -0.8, + -1.32, + -1.56, + -1.5, + -1.1, + -0.42, + -0.09, + 0.19, + 0.04, + -0.05, + 0.13, + 0.37, + 0.37, + 0.14, + -0.34, + -1.02, + -1.79, + -2.6, + -3.24, + -3.12, + -2.88, + -2.15, + -1.28, + -0.34, + 0.67, + 1.33, + 1.48, + 0.8, + 0.06, + -0.47000000000000003, + -0.76, + -0.5, + -0.14, + 0.22, + 0.31, + 0.15, + 0.04, + 0.1, + 0.35000000000000003, + 0.5, + 0.4, + 0.25, + -0.11, + -0.42, + -0.55, + -0.58, + -0.44, + -0.36, + -0.29, + -0.32, + -0.19, + 0.02, + 0.31, + 0.44, + 0.35000000000000003, + 0.21, + 0.16, + 0.26, + 0.36, + 0.42, + 0.43, + 0.41000000000000003, + 0.43, + 0.31, + 0.18, + 0.28, + 0.38, + 0.51, + 0.64, + 0.61, + 0.58, + 0.42, + 0.21, + 0.07, + 0.01, + 0.16, + 0.47000000000000003, + 0.84, + 1.24, + 1.19, + 0.8300000000000001, + 0.3, + -0.27, + -0.6, + -0.63, + -0.66, + -0.78, + -1.02, + -1.1, + -1.0, + -0.64, + -0.29, + -0.03, + 0.11, + 0.11, + 0.1, + 0.18, + 0.32, + 0.35000000000000003, + 0.21, + 0.09, + 0.31, + 0.74, + 1.1500000000000001, + 1.21, + 0.87, + 0.48, + 0.26, + 0.31, + 0.51, + 0.5700000000000001, + 0.26, + -0.09, + -0.11, + -0.09, + -0.08, + -0.14, + -0.17, + -0.14, + -0.1, + -0.14, + -0.11, + 0.01, + -0.11, + -0.26, + -0.48, + -0.76, + -0.81, + -0.85, + -0.8200000000000001, + -0.72, + -0.67, + -0.62, + -0.64, + -0.65, + -0.84, + -1.03, + -1.16, + -1.07, + -0.91, + -0.7000000000000001, + -0.55 + ], + [ + 1.18, + 1.41, + 1.35, + 1.29, + 1.3, + 1.33, + 1.37, + 1.42, + 1.47, + 1.53, + 1.6, + 1.68, + 1.76, + 1.84, + 1.9100000000000001, + 1.97, + 2.02, + 2.08, + 2.12, + 2.17, + 2.21, + 2.2600000000000002, + 2.31, + 2.38, + 2.45, + 2.5300000000000002, + 2.61, + 2.71, + 2.8000000000000003, + 2.88, + 2.95, + 3.0100000000000002, + 3.04, + 3.08, + 3.1, + 3.15, + 3.19, + 3.19, + 3.17, + 3.11, + 3.06, + 3.0300000000000002, + 3.02, + 3.06, + 3.12, + 3.16, + 3.14, + 3.0500000000000003, + 2.95, + 2.7800000000000002, + 2.68, + 2.5100000000000002, + 2.43, + 2.29, + 2.17, + 1.96, + 1.74, + 1.6300000000000001, + 1.6300000000000001, + 1.69, + 1.72, + 1.72, + 1.6500000000000001, + 1.54, + 1.37, + 1.2, + 1.02, + 0.86, + 0.79, + 0.7000000000000001, + 0.62, + 0.53, + 0.4, + 0.29, + 0.26, + 0.28, + 0.21, + 0.15, + -0.01, + -0.19, + -0.41000000000000003, + -0.66, + -0.93, + -1.21, + -1.5, + -1.81, + -2.21, + -2.75, + -3.29, + -3.7600000000000002, + -4.14, + -4.3100000000000005, + -4.45, + -4.65, + -4.88, + -5.13, + -5.38, + -5.18, + -4.97, + -4.39, + -3.7800000000000002, + -3.0700000000000003, + -2.4, + -1.78, + -1.1500000000000001, + -0.54, + 0.06, + 0.61, + 1.1500000000000001, + 1.6400000000000001, + 1.96, + 2.17, + 2.18, + 2.12, + 1.97, + 1.8, + 1.72, + 1.7, + 1.67, + 1.6500000000000001, + 1.67, + 1.69, + 1.71, + 1.68, + 1.71, + 1.77, + 1.87, + 1.95, + 1.96, + 1.98, + 1.99, + 2.05, + 2.09, + 2.14, + 2.19, + 2.2600000000000002, + 2.4, + 2.62, + 2.89, + 3.0, + 3.1, + 3.15, + 3.19, + 3.06, + 2.87, + 2.66, + 2.47, + 2.32, + 2.21, + 2.09, + 1.96, + 1.83, + 1.68, + 1.62, + 1.61, + 1.67, + 1.8, + 1.87, + 1.92, + 1.92, + 1.82, + 1.69, + 1.48, + 1.26, + 0.96, + 0.68, + 0.37, + 0.12, + -0.15, + -0.34, + -0.51, + -0.5700000000000001, + -0.54, + -0.34, + 0.02, + 0.39, + 0.62, + 0.37, + -0.06, + -0.45, + -0.75, + -0.6, + -0.36, + -0.06, + 0.14, + 0.23, + 0.27, + 0.32, + 0.33, + 0.42, + 0.54, + 0.53, + 0.4, + 0.26, + 0.18, + 0.21, + 0.26, + 0.17, + 0.15, + 0.23, + 0.45, + 0.8, + 0.74, + 0.58, + -0.08, + -0.75, + -1.31, + -1.55, + -1.5, + -1.2, + -0.78, + -0.36, + -0.27, + -0.33, + -0.19, + 0.03, + 0.22, + 0.2, + -0.13, + -0.67, + -1.33, + -2.12, + -2.95, + -3.5100000000000002, + -3.95, + -3.61, + -3.14, + -2.0, + -0.73, + 0.59, + 1.54, + 1.3900000000000001, + 0.77, + -0.14, + -0.76, + -0.76, + -0.58, + -0.12, + 0.35000000000000003, + 0.46, + 0.26, + 0.03, + 0.06, + 0.21, + 0.34, + 0.34, + 0.14, + -0.06, + -0.31, + -0.44, + -0.38, + -0.3, + -0.22, + -0.18, + -0.16, + -0.14, + 0.13, + 0.51, + 0.58, + 0.52, + 0.38, + 0.34, + 0.38, + 0.46, + 0.45, + 0.43, + 0.55, + 0.65, + 0.63, + 0.46, + 0.3, + 0.26, + 0.27, + 0.39, + 0.51, + 0.53, + 0.45, + 0.31, + 0.19, + 0.21, + 0.35000000000000003, + 0.54, + 0.97, + 1.1500000000000001, + 1.18, + 0.84, + 0.28, + -0.15, + -0.47000000000000003, + -0.61, + -0.64, + -0.8300000000000001, + -1.08, + -1.26, + -1.03, + -0.73, + -0.37, + -0.07, + 0.06, + 0.02, + 0.01, + 0.13, + 0.37, + 0.53, + 0.32, + 0.03, + 0.11, + 0.56, + 0.98, + 1.11, + 0.9500000000000001, + 0.55, + 0.29, + 0.37, + 0.53, + 0.52, + 0.39, + 0.08, + -0.14, + -0.09, + -0.1, + -0.12, + -0.14, + -0.02, + 0.07, + 0.05, + -0.01, + -0.18, + -0.33, + -0.58, + -0.76, + -0.71, + -0.67, + -0.66, + -0.6, + -0.55, + -0.54, + -0.52, + -0.6, + -0.78, + -1.01, + -1.3, + -1.25, + -1.22, + -0.98, + -0.73, + -0.62 + ], + [ + 1.31, + 1.56, + 1.41, + 1.29, + 1.31, + 1.35, + 1.3900000000000001, + 1.44, + 1.5, + 1.56, + 1.6300000000000001, + 1.71, + 1.79, + 1.86, + 1.93, + 1.99, + 2.05, + 2.1, + 2.15, + 2.21, + 2.27, + 2.32, + 2.39, + 2.45, + 2.5300000000000002, + 2.61, + 2.7, + 2.79, + 2.88, + 2.95, + 3.0300000000000002, + 3.0700000000000003, + 3.1, + 3.11, + 3.11, + 3.11, + 3.13, + 3.14, + 3.12, + 3.1, + 3.04, + 2.99, + 2.96, + 2.99, + 3.0700000000000003, + 3.14, + 3.0700000000000003, + 2.99, + 2.77, + 2.65, + 2.44, + 2.29, + 2.14, + 2.05, + 1.9100000000000001, + 1.74, + 1.58, + 1.48, + 1.51, + 1.58, + 1.6, + 1.58, + 1.52, + 1.3900000000000001, + 1.26, + 1.11, + 0.96, + 0.88, + 0.78, + 0.71, + 0.61, + 0.47000000000000003, + 0.35000000000000003, + 0.25, + 0.22, + 0.12, + 0.05, + -0.12, + -0.3, + -0.51, + -0.74, + -1.0, + -1.29, + -1.6, + -1.93, + -2.32, + -2.8000000000000003, + -3.29, + -3.7800000000000002, + -4.16, + -4.3500000000000005, + -4.5, + -4.66, + -4.78, + -4.96, + -5.18, + -5.03, + -4.87, + -4.32, + -3.7, + -2.99, + -2.27, + -1.6600000000000001, + -1.08, + -0.53, + 0.04, + 0.56, + 1.05, + 1.5, + 1.9100000000000001, + 2.2600000000000002, + 2.38, + 2.43, + 2.29, + 2.14, + 1.94, + 1.78, + 1.74, + 1.7, + 1.6600000000000001, + 1.6400000000000001, + 1.6600000000000001, + 1.68, + 1.72, + 1.75, + 1.81, + 1.9000000000000001, + 1.92, + 1.87, + 1.83, + 1.82, + 1.81, + 1.83, + 1.84, + 1.92, + 2.0100000000000002, + 2.21, + 2.44, + 2.66, + 2.9, + 2.99, + 3.11, + 3.0700000000000003, + 2.99, + 2.81, + 2.62, + 2.45, + 2.32, + 2.19, + 2.07, + 1.93, + 1.78, + 1.71, + 1.71, + 1.8, + 1.95, + 2.0300000000000002, + 2.1, + 2.09, + 2.08, + 2.0100000000000002, + 1.8900000000000001, + 1.72, + 1.43, + 1.12, + 0.73, + 0.36, + -0.01, + -0.34, + -0.63, + -0.85, + -0.97, + -0.96, + -0.81, + -0.39, + 0.12, + 0.34, + 0.28, + -0.3, + -0.87, + -1.03, + -1.07, + -0.59, + -0.2, + -0.02, + 0.07, + 0.11, + 0.12, + 0.17, + 0.2, + 0.27, + 0.31, + 0.23, + 0.11, + 0.08, + 0.08, + 0.0, + -0.18, + -0.38, + -0.28, + 0.01, + 0.39, + 0.74, + 0.39, + -0.07, + -0.87, + -1.56, + -1.75, + -1.74, + -1.44, + -1.07, + -0.76, + -0.65, + -0.54, + -0.38, + -0.07, + 0.16, + 0.07, + -0.3, + -0.77, + -1.3800000000000001, + -2.11, + -2.89, + -3.68, + -4.05, + -4.23, + -3.49, + -2.56, + -0.85, + 0.6900000000000001, + 1.37, + 1.54, + 0.52, + -0.5, + -0.88, + -0.9, + -0.5700000000000001, + -0.09, + 0.31, + 0.51, + 0.38, + 0.07, + -0.02, + 0.12, + 0.2, + 0.18, + 0.08, + -0.09, + -0.25, + -0.29, + -0.23, + -0.17, + -0.06, + -0.02, + 0.01, + 0.04, + 0.22, + 0.44, + 0.64, + 0.52, + 0.39, + 0.38, + 0.42, + 0.42, + 0.37, + 0.44, + 0.66, + 0.78, + 0.72, + 0.5700000000000001, + 0.27, + 0.1, + 0.14, + 0.23, + 0.48, + 0.58, + 0.53, + 0.4, + 0.32, + 0.31, + 0.35000000000000003, + 0.47000000000000003, + 0.67, + 0.91, + 0.84, + 0.58, + 0.29, + -0.08, + -0.33, + -0.44, + -0.54, + -0.77, + -1.06, + -1.16, + -1.1, + -0.77, + -0.39, + -0.05, + 0.14, + 0.07, + -0.1, + 0.08, + 0.41000000000000003, + 0.48, + 0.37, + 0.1, + -0.01, + 0.33, + 0.8300000000000001, + 1.09, + 0.97, + 0.65, + 0.39, + 0.3, + 0.43, + 0.52, + 0.38, + 0.2, + 0.02, + -0.04, + -0.06, + -0.09, + -0.02, + 0.12, + 0.22, + 0.25, + 0.01, + -0.27, + -0.64, + -0.93, + -0.89, + -0.68, + -0.5700000000000001, + -0.54, + -0.59, + -0.6, + -0.45, + -0.44, + -0.5, + -0.71, + -0.97, + -1.1, + -1.26, + -1.1400000000000001, + -1.06, + -0.92, + -0.68 + ], + [ + 1.19, + 1.44, + 1.3800000000000001, + 1.32, + 1.33, + 1.37, + 1.41, + 1.46, + 1.52, + 1.58, + 1.6500000000000001, + 1.73, + 1.81, + 1.8800000000000001, + 1.94, + 2.0, + 2.06, + 2.11, + 2.17, + 2.24, + 2.3000000000000003, + 2.37, + 2.43, + 2.5, + 2.57, + 2.66, + 2.74, + 2.84, + 2.91, + 2.99, + 3.06, + 3.11, + 3.12, + 3.11, + 3.08, + 3.06, + 3.0500000000000003, + 3.0500000000000003, + 3.06, + 3.02, + 2.98, + 2.9, + 2.86, + 2.89, + 2.99, + 3.0, + 2.98, + 2.72, + 2.5, + 2.29, + 2.1, + 1.97, + 1.81, + 1.75, + 1.6400000000000001, + 1.51, + 1.3800000000000001, + 1.35, + 1.42, + 1.44, + 1.45, + 1.41, + 1.33, + 1.25, + 1.16, + 1.06, + 0.99, + 0.92, + 0.8300000000000001, + 0.75, + 0.55, + 0.4, + 0.23, + 0.14, + 0.01, + -0.09, + -0.26, + -0.45, + -0.65, + -0.87, + -1.09, + -1.34, + -1.6400000000000001, + -1.98, + -2.39, + -2.88, + -3.39, + -3.87, + -4.26, + -4.45, + -4.6000000000000005, + -4.71, + -4.87, + -4.91, + -5.03, + -4.8500000000000005, + -4.69, + -4.21, + -3.62, + -2.91, + -2.17, + -1.49, + -0.9, + -0.41000000000000003, + 0.07, + 0.53, + 0.99, + 1.4000000000000001, + 1.75, + 2.12, + 2.36, + 2.56, + 2.49, + 2.44, + 2.2, + 2.02, + 1.8900000000000001, + 1.81, + 1.74, + 1.67, + 1.6400000000000001, + 1.6500000000000001, + 1.72, + 1.79, + 1.81, + 1.86, + 1.8800000000000001, + 1.86, + 1.79, + 1.71, + 1.68, + 1.6600000000000001, + 1.6300000000000001, + 1.6600000000000001, + 1.68, + 1.84, + 1.99, + 2.2, + 2.42, + 2.61, + 2.8000000000000003, + 2.87, + 2.91, + 2.83, + 2.7, + 2.54, + 2.4, + 2.27, + 2.14, + 2.0100000000000002, + 1.87, + 1.79, + 1.78, + 1.8800000000000001, + 2.11, + 2.3000000000000003, + 2.39, + 2.38, + 2.35, + 2.29, + 2.22, + 2.11, + 1.8800000000000001, + 1.61, + 1.18, + 0.76, + 0.35000000000000003, + -0.09, + -0.51, + -0.89, + -1.17, + -1.36, + -1.41, + -1.3, + -0.97, + -0.37, + 0.02, + -0.09, + -0.4, + -0.9, + -1.26, + -1.02, + -0.73, + -0.36, + -0.11, + -0.04, + 0.0, + 0.05, + 0.06, + 0.07, + 0.09, + 0.1, + 0.06, + -0.01, + -0.02, + -0.06, + -0.21, + -0.5, + -0.8300000000000001, + -0.92, + -0.55, + -0.11, + 0.21, + 0.26, + -0.33, + -1.06, + -1.61, + -2.07, + -1.9100000000000001, + -1.69, + -1.31, + -0.98, + -0.8200000000000001, + -0.72, + -0.45, + -0.09, + 0.09, + 0.01, + -0.25, + -0.65, + -1.1300000000000001, + -1.79, + -2.59, + -3.37, + -4.0200000000000005, + -4.03, + -3.75, + -2.34, + -0.91, + 0.46, + 1.56, + 1.03, + 0.17, + -0.7000000000000001, + -1.23, + -1.08, + -0.7000000000000001, + -0.23, + 0.23, + 0.45, + 0.37, + 0.17, + 0.05, + 0.06, + 0.1, + 0.08, + 0.01, + -0.09, + -0.2, + -0.24, + -0.18, + -0.11, + -0.02, + 0.13, + 0.1, + 0.08, + 0.21, + 0.4, + 0.42, + 0.36, + 0.34, + 0.36, + 0.39, + 0.37, + 0.4, + 0.52, + 0.64, + 0.74, + 0.6900000000000001, + 0.41000000000000003, + 0.2, + 0.08, + 0.08, + 0.38, + 0.61, + 0.72, + 0.6900000000000001, + 0.53, + 0.41000000000000003, + 0.34, + 0.3, + 0.35000000000000003, + 0.41000000000000003, + 0.49, + 0.44, + 0.29, + 0.16, + 0.0, + -0.2, + -0.34, + -0.45, + -0.63, + -0.9500000000000001, + -1.1500000000000001, + -1.06, + -0.8300000000000001, + -0.36, + 0.09, + 0.25, + 0.21, + 0.05, + -0.01, + 0.19, + 0.44, + 0.3, + 0.03, + -0.05, + 0.22, + 0.72, + 1.1, + 1.1, + 0.77, + 0.43, + 0.29, + 0.29, + 0.38, + 0.38, + 0.21, + 0.05, + -0.05, + -0.01, + 0.0, + 0.05, + 0.19, + 0.38, + 0.24, + 0.01, + -0.45, + -0.9400000000000001, + -1.09, + -0.99, + -0.8, + -0.63, + -0.72, + -0.87, + -0.79, + -0.54, + -0.34, + -0.4, + -0.52, + -0.71, + -0.84, + -0.93, + -1.06, + -1.2, + -1.19, + -1.03 + ], + [ + 1.34, + 1.62, + 1.43, + 1.31, + 1.34, + 1.3800000000000001, + 1.42, + 1.47, + 1.53, + 1.6, + 1.67, + 1.75, + 1.82, + 1.8800000000000001, + 1.94, + 2.0, + 2.06, + 2.11, + 2.18, + 2.25, + 2.32, + 2.38, + 2.45, + 2.52, + 2.59, + 2.68, + 2.77, + 2.84, + 2.92, + 2.99, + 3.06, + 3.09, + 3.1, + 3.06, + 3.0100000000000002, + 2.95, + 2.92, + 2.91, + 2.91, + 2.9, + 2.84, + 2.7800000000000002, + 2.73, + 2.71, + 2.79, + 2.86, + 2.65, + 2.41, + 2.19, + 1.9100000000000001, + 1.82, + 1.67, + 1.6500000000000001, + 1.59, + 1.52, + 1.4000000000000001, + 1.34, + 1.35, + 1.36, + 1.35, + 1.29, + 1.22, + 1.16, + 1.1300000000000001, + 1.09, + 1.04, + 1.0, + 0.91, + 0.87, + 0.63, + 0.45, + 0.22, + 0.05, + -0.12, + -0.26, + -0.44, + -0.63, + -0.8300000000000001, + -1.04, + -1.23, + -1.44, + -1.68, + -1.98, + -2.38, + -2.88, + -3.42, + -3.96, + -4.42, + -4.61, + -4.75, + -4.73, + -4.83, + -4.8100000000000005, + -4.96, + -4.69, + -4.49, + -4.0600000000000005, + -3.5500000000000003, + -2.89, + -2.12, + -1.3900000000000001, + -0.72, + -0.2, + 0.22, + 0.6, + 0.99, + 1.32, + 1.6, + 1.8800000000000001, + 2.13, + 2.4, + 2.46, + 2.48, + 2.32, + 2.2, + 2.02, + 1.93, + 1.84, + 1.78, + 1.69, + 1.61, + 1.6600000000000001, + 1.77, + 1.83, + 1.85, + 1.84, + 1.82, + 1.78, + 1.67, + 1.6, + 1.57, + 1.57, + 1.55, + 1.53, + 1.6, + 1.67, + 1.84, + 1.97, + 2.17, + 2.35, + 2.5, + 2.62, + 2.64, + 2.63, + 2.52, + 2.41, + 2.32, + 2.2, + 2.09, + 1.96, + 1.87, + 1.85, + 1.94, + 2.17, + 2.44, + 2.67, + 2.7800000000000002, + 2.69, + 2.61, + 2.52, + 2.45, + 2.24, + 2.05, + 1.61, + 1.19, + 0.81, + 0.4, + -0.05, + -0.59, + -1.03, + -1.4000000000000001, + -1.6, + -1.72, + -1.68, + -1.36, + -0.93, + -0.49, + -0.34, + -0.5700000000000001, + -0.88, + -1.03, + -1.01, + -0.71, + -0.42, + -0.22, + -0.13, + -0.03, + 0.03, + -0.01, + -0.04, + -0.06, + -0.05, + -0.09, + -0.14, + -0.15, + -0.2, + -0.4, + -0.8, + -1.1400000000000001, + -1.23, + -1.06, + -0.5, + -0.15, + -0.12, + -0.42, + -1.07, + -1.73, + -1.97, + -2.09, + -1.79, + -1.46, + -1.16, + -0.96, + -0.76, + -0.51, + -0.2, + 0.04, + 0.07, + -0.09, + -0.37, + -0.74, + -1.26, + -2.04, + -2.87, + -3.44, + -3.7800000000000002, + -3.11, + -2.19, + -0.8200000000000001, + 0.47000000000000003, + 0.78, + 0.72, + -0.22, + -1.17, + -1.3900000000000001, + -1.31, + -0.87, + -0.38, + 0.1, + 0.42, + 0.41000000000000003, + 0.23, + 0.11, + 0.08, + 0.05, + 0.0, + -0.04, + -0.11, + -0.18, + -0.18, + -0.14, + -0.09, + -0.05, + 0.02, + 0.15, + 0.15, + 0.18, + 0.27, + 0.24, + 0.22, + 0.25, + 0.31, + 0.36, + 0.4, + 0.47000000000000003, + 0.56, + 0.62, + 0.6, + 0.44, + 0.25, + 0.11, + 0.09, + 0.33, + 0.6, + 0.8200000000000001, + 0.98, + 0.78, + 0.61, + 0.43, + 0.33, + 0.27, + 0.25, + 0.3, + 0.25, + 0.12, + 0.01, + -0.04, + -0.05, + -0.13, + -0.28, + -0.42, + -0.65, + -0.89, + -1.07, + -1.08, + -0.74, + -0.3, + 0.18, + 0.52, + 0.34, + 0.12, + 0.0, + 0.01, + 0.15, + 0.19, + -0.02, + -0.21, + 0.08, + 0.68, + 1.1400000000000001, + 1.21, + 0.93, + 0.5, + 0.24, + 0.22, + 0.25, + 0.26, + 0.15, + -0.07, + -0.19, + -0.09, + 0.04, + 0.1, + 0.23, + 0.29, + 0.25, + -0.15, + -0.64, + -0.98, + -1.19, + -1.12, + -0.91, + -0.91, + -1.1300000000000001, + -1.24, + -1.04, + -0.72, + -0.42, + -0.3, + -0.47000000000000003, + -0.51, + -0.62, + -0.65, + -1.1, + -1.48, + -1.57, + -1.47 + ], + [ + 1.22, + 1.46, + 1.3900000000000001, + 1.33, + 1.34, + 1.3800000000000001, + 1.43, + 1.47, + 1.53, + 1.6, + 1.67, + 1.74, + 1.81, + 1.8800000000000001, + 1.93, + 1.99, + 2.06, + 2.12, + 2.18, + 2.25, + 2.32, + 2.39, + 2.46, + 2.5300000000000002, + 2.61, + 2.69, + 2.7600000000000002, + 2.84, + 2.91, + 2.98, + 3.0300000000000002, + 3.06, + 3.0500000000000003, + 2.99, + 2.91, + 2.81, + 2.74, + 2.72, + 2.71, + 2.7, + 2.67, + 2.61, + 2.57, + 2.5500000000000003, + 2.57, + 2.5, + 2.37, + 2.18, + 1.95, + 1.81, + 1.6400000000000001, + 1.6300000000000001, + 1.61, + 1.59, + 1.53, + 1.44, + 1.3900000000000001, + 1.37, + 1.34, + 1.27, + 1.1500000000000001, + 1.07, + 1.04, + 1.01, + 1.01, + 0.99, + 0.9, + 0.84, + 0.64, + 0.46, + 0.2, + -0.02, + -0.23, + -0.43, + -0.63, + -0.8300000000000001, + -1.02, + -1.22, + -1.3900000000000001, + -1.57, + -1.74, + -1.97, + -2.3000000000000003, + -2.7800000000000002, + -3.34, + -3.93, + -4.48, + -4.74, + -4.93, + -4.8, + -4.74, + -4.6000000000000005, + -4.61, + -4.41, + -4.24, + -3.86, + -3.42, + -2.84, + -2.17, + -1.41, + -0.64, + -0.03, + 0.46, + 0.8, + 1.09, + 1.34, + 1.53, + 1.72, + 1.86, + 2.06, + 2.24, + 2.33, + 2.2600000000000002, + 2.18, + 2.05, + 1.95, + 1.87, + 1.83, + 1.77, + 1.68, + 1.6300000000000001, + 1.6600000000000001, + 1.75, + 1.84, + 1.82, + 1.75, + 1.72, + 1.6500000000000001, + 1.57, + 1.51, + 1.5, + 1.54, + 1.55, + 1.55, + 1.55, + 1.6300000000000001, + 1.71, + 1.82, + 1.93, + 2.09, + 2.25, + 2.33, + 2.38, + 2.34, + 2.29, + 2.25, + 2.23, + 2.18, + 2.07, + 1.97, + 1.93, + 1.98, + 2.19, + 2.45, + 2.7800000000000002, + 3.0300000000000002, + 3.0100000000000002, + 2.96, + 2.82, + 2.73, + 2.5100000000000002, + 2.34, + 1.9100000000000001, + 1.53, + 1.1500000000000001, + 0.88, + 0.54, + 0.1, + -0.45, + -1.03, + -1.37, + -1.62, + -1.76, + -1.79, + -1.6300000000000001, + -1.26, + -0.91, + -0.65, + -0.62, + -0.75, + -0.9, + -0.8300000000000001, + -0.67, + -0.41000000000000003, + -0.23, + -0.08, + -0.02, + -0.03, + -0.11, + -0.2, + -0.24, + -0.26, + -0.28, + -0.29, + -0.29, + -0.36, + -0.6, + -0.9400000000000001, + -1.26, + -1.36, + -1.09, + -0.71, + -0.33, + -0.24, + -0.58, + -1.04, + -1.61, + -2.0, + -1.97, + -1.8800000000000001, + -1.53, + -1.24, + -0.97, + -0.78, + -0.52, + -0.24, + 0.01, + 0.19, + 0.13, + -0.06, + -0.33, + -0.71, + -1.27, + -2.04, + -2.73, + -2.85, + -2.64, + -1.72, + -0.66, + -0.07, + 0.35000000000000003, + -0.04, + -0.67, + -1.27, + -1.6300000000000001, + -1.4000000000000001, + -0.97, + -0.38, + 0.14, + 0.4, + 0.44, + 0.31, + 0.18, + 0.11, + 0.0, + -0.09, + -0.1, + -0.12, + -0.15, + -0.14, + -0.11, + -0.05, + -0.13, + -0.13, + 0.0, + 0.14, + 0.21, + 0.24, + 0.21, + 0.14, + 0.19, + 0.29, + 0.32, + 0.39, + 0.48, + 0.56, + 0.55, + 0.38, + 0.21, + 0.08, + 0.02, + 0.24, + 0.55, + 0.8300000000000001, + 1.08, + 0.96, + 0.8200000000000001, + 0.59, + 0.36, + 0.21, + 0.16, + 0.18, + 0.25, + 0.15, + -0.1, + -0.23, + -0.22, + -0.19, + -0.19, + -0.29, + -0.46, + -0.66, + -0.87, + -1.06, + -0.97, + -0.71, + -0.14, + 0.41000000000000003, + 0.51, + 0.49, + 0.17, + -0.08, + -0.08, + -0.05, + -0.03, + -0.17, + -0.28, + -0.08, + 0.53, + 1.2, + 1.35, + 1.0, + 0.61, + 0.31, + 0.17, + 0.19, + 0.18, + -0.03, + -0.28, + -0.29, + -0.22, + -0.07, + 0.06, + 0.17, + 0.27, + 0.05, + -0.32, + -0.71, + -1.03, + -1.2, + -1.2, + -1.16, + -1.26, + -1.46, + -1.58, + -1.43, + -0.99, + -0.64, + -0.63, + -0.61, + -0.68, + -0.58, + -0.89, + -1.2, + -1.71, + -2.11, + -1.95 + ], + [ + 1.36, + 1.61, + 1.44, + 1.31, + 1.33, + 1.37, + 1.41, + 1.46, + 1.52, + 1.58, + 1.6500000000000001, + 1.73, + 1.8, + 1.86, + 1.93, + 2.0, + 2.06, + 2.13, + 2.19, + 2.27, + 2.34, + 2.4, + 2.46, + 2.54, + 2.62, + 2.69, + 2.7600000000000002, + 2.83, + 2.89, + 2.95, + 3.0, + 3.0, + 2.98, + 2.92, + 2.81, + 2.69, + 2.58, + 2.5300000000000002, + 2.52, + 2.49, + 2.47, + 2.44, + 2.4, + 2.36, + 2.31, + 2.21, + 2.13, + 1.98, + 1.8900000000000001, + 1.76, + 1.71, + 1.69, + 1.68, + 1.67, + 1.6, + 1.5, + 1.43, + 1.3800000000000001, + 1.29, + 1.1500000000000001, + 1.02, + 0.96, + 0.93, + 0.93, + 0.93, + 0.84, + 0.74, + 0.55, + 0.37, + 0.14, + -0.08, + -0.3, + -0.54, + -0.76, + -1.0, + -1.21, + -1.41, + -1.56, + -1.7, + -1.83, + -1.96, + -2.19, + -2.5500000000000003, + -3.0700000000000003, + -3.71, + -4.34, + -4.71, + -5.01, + -4.86, + -4.75, + -4.42, + -4.2, + -4.0, + -3.7800000000000002, + -3.5100000000000002, + -3.19, + -2.72, + -2.18, + -1.48, + -0.7000000000000001, + -0.01, + 0.6, + 1.01, + 1.28, + 1.48, + 1.57, + 1.6600000000000001, + 1.69, + 1.79, + 1.97, + 2.12, + 2.13, + 2.06, + 1.98, + 1.86, + 1.83, + 1.78, + 1.8, + 1.79, + 1.71, + 1.61, + 1.6400000000000001, + 1.72, + 1.75, + 1.71, + 1.6400000000000001, + 1.59, + 1.54, + 1.47, + 1.44, + 1.5, + 1.56, + 1.61, + 1.62, + 1.59, + 1.61, + 1.6400000000000001, + 1.69, + 1.75, + 1.82, + 1.96, + 2.05, + 2.05, + 2.02, + 2.04, + 2.09, + 2.13, + 2.17, + 2.11, + 2.0300000000000002, + 2.0300000000000002, + 2.18, + 2.41, + 2.72, + 3.0300000000000002, + 3.14, + 3.19, + 3.0300000000000002, + 2.96, + 2.71, + 2.5100000000000002, + 2.09, + 1.69, + 1.3, + 1.0, + 0.84, + 0.74, + 0.28, + -0.27, + -0.76, + -1.16, + -1.4000000000000001, + -1.59, + -1.68, + -1.6400000000000001, + -1.44, + -1.08, + -0.8, + -0.5700000000000001, + -0.6, + -0.6900000000000001, + -0.72, + -0.5700000000000001, + -0.34, + -0.13, + 0.06, + 0.08, + -0.03, + -0.18, + -0.39, + -0.44, + -0.48, + -0.48, + -0.47000000000000003, + -0.48, + -0.52, + -0.72, + -1.05, + -1.31, + -1.27, + -1.05, + -0.67, + -0.32, + -0.38, + -0.66, + -1.17, + -1.69, + -1.81, + -1.8800000000000001, + -1.67, + -1.51, + -1.16, + -0.87, + -0.66, + -0.48, + -0.25, + 0.05, + 0.22, + 0.27, + 0.18, + 0.03, + -0.18, + -0.55, + -1.09, + -1.69, + -2.02, + -1.8800000000000001, + -1.35, + -0.91, + -0.43, + -0.46, + -0.62, + -1.1, + -1.5, + -1.61, + -1.47, + -0.9, + -0.21, + 0.26, + 0.47000000000000003, + 0.44, + 0.33, + 0.25, + 0.16, + 0.03, + -0.09, + -0.15, + -0.13, + -0.15, + -0.16, + -0.1, + -0.2, + -0.28, + -0.25, + -0.17, + 0.06, + 0.26, + 0.25, + 0.22, + 0.17, + 0.18, + 0.21, + 0.2, + 0.26, + 0.41000000000000003, + 0.49, + 0.37, + 0.21, + 0.06, + -0.05, + 0.08, + 0.29, + 0.6900000000000001, + 1.09, + 1.06, + 0.96, + 0.75, + 0.55, + 0.28, + 0.0, + -0.05, + 0.05, + 0.08, + 0.05, + -0.17, + -0.42, + -0.44, + -0.33, + -0.29, + -0.35000000000000003, + -0.49, + -0.67, + -0.84, + -0.97, + -0.97, + -0.53, + 0.02, + 0.4, + 0.63, + 0.39, + 0.16, + -0.04, + -0.18, + -0.13, + -0.12, + -0.26, + -0.47000000000000003, + -0.23, + 0.43, + 1.03, + 1.28, + 1.11, + 0.7000000000000001, + 0.38, + 0.19, + 0.1, + 0.0, + -0.16, + -0.33, + -0.46, + -0.28, + -0.16, + -0.05, + 0.11, + 0.11, + -0.09, + -0.47000000000000003, + -0.81, + -1.1400000000000001, + -1.3, + -1.4000000000000001, + -1.47, + -1.6500000000000001, + -1.8900000000000001, + -1.99, + -1.83, + -1.49, + -1.29, + -1.16, + -1.18, + -1.12, + -1.09, + -1.16, + -1.52, + -2.06, + -2.38, + -2.58 + ], + [ + 1.25, + 1.46, + 1.3900000000000001, + 1.31, + 1.32, + 1.35, + 1.3900000000000001, + 1.44, + 1.5, + 1.57, + 1.6400000000000001, + 1.71, + 1.78, + 1.86, + 1.93, + 2.0, + 2.08, + 2.15, + 2.22, + 2.29, + 2.36, + 2.41, + 2.48, + 2.5500000000000003, + 2.63, + 2.7, + 2.7600000000000002, + 2.83, + 2.88, + 2.91, + 2.93, + 2.92, + 2.88, + 2.82, + 2.71, + 2.58, + 2.47, + 2.41, + 2.37, + 2.32, + 2.27, + 2.2600000000000002, + 2.24, + 2.19, + 2.12, + 2.08, + 1.97, + 1.96, + 1.9000000000000001, + 1.84, + 1.82, + 1.78, + 1.77, + 1.71, + 1.6500000000000001, + 1.54, + 1.43, + 1.34, + 1.17, + 1.02, + 0.89, + 0.8300000000000001, + 0.84, + 0.85, + 0.78, + 0.68, + 0.46, + 0.24, + 0.03, + -0.19, + -0.38, + -0.58, + -0.8300000000000001, + -1.08, + -1.32, + -1.57, + -1.7, + -1.8, + -1.87, + -1.93, + -2.09, + -2.32, + -2.71, + -3.3000000000000003, + -3.91, + -4.45, + -4.86, + -4.8, + -4.7, + -4.32, + -3.98, + -3.67, + -3.37, + -3.12, + -2.81, + -2.46, + -2.05, + -1.47, + -0.81, + -0.13, + 0.53, + 1.04, + 1.4000000000000001, + 1.6300000000000001, + 1.7, + 1.73, + 1.6300000000000001, + 1.6400000000000001, + 1.76, + 1.92, + 2.0100000000000002, + 2.02, + 1.93, + 1.8, + 1.79, + 1.75, + 1.81, + 1.85, + 1.83, + 1.75, + 1.67, + 1.6300000000000001, + 1.6600000000000001, + 1.6400000000000001, + 1.56, + 1.47, + 1.42, + 1.3900000000000001, + 1.37, + 1.42, + 1.5, + 1.61, + 1.69, + 1.6400000000000001, + 1.62, + 1.59, + 1.59, + 1.57, + 1.56, + 1.6400000000000001, + 1.69, + 1.75, + 1.73, + 1.75, + 1.8, + 1.92, + 2.07, + 2.12, + 2.13, + 2.11, + 2.18, + 2.35, + 2.61, + 2.89, + 3.04, + 3.15, + 3.0300000000000002, + 2.97, + 2.7800000000000002, + 2.63, + 2.22, + 1.79, + 1.3800000000000001, + 0.96, + 0.79, + 0.78, + 0.61, + 0.38, + -0.08, + -0.49, + -0.81, + -1.04, + -1.23, + -1.3800000000000001, + -1.3900000000000001, + -1.28, + -1.05, + -0.5700000000000001, + -0.32, + -0.36, + -0.51, + -0.59, + -0.54, + -0.35000000000000003, + -0.03, + 0.09, + 0.28, + 0.06, + -0.23, + -0.4, + -0.5700000000000001, + -0.59, + -0.62, + -0.63, + -0.65, + -0.72, + -0.87, + -1.12, + -1.27, + -1.25, + -0.96, + -0.62, + -0.38, + -0.33, + -0.74, + -1.28, + -1.45, + -1.6, + -1.48, + -1.3800000000000001, + -1.16, + -0.96, + -0.71, + -0.51, + -0.41000000000000003, + -0.29, + -0.07, + 0.16, + 0.25, + 0.25, + 0.23, + 0.25, + 0.07, + -0.34, + -0.76, + -1.24, + -1.34, + -1.36, + -1.16, + -1.1500000000000001, + -1.23, + -1.3800000000000001, + -1.55, + -1.73, + -1.69, + -1.33, + -0.71, + -0.03, + 0.46, + 0.54, + 0.37, + 0.28, + 0.33, + 0.28, + 0.09, + -0.05, + -0.12, + -0.13, + -0.23, + -0.28, + -0.3, + -0.35000000000000003, + -0.38, + -0.44, + -0.18, + 0.06, + 0.18, + 0.23, + 0.15, + 0.14, + 0.15, + 0.11, + 0.07, + 0.07, + 0.19, + 0.3, + 0.26, + 0.11, + -0.01, + 0.04, + 0.11, + 0.42, + 0.8, + 1.03, + 1.11, + 0.84, + 0.64, + 0.42, + 0.21, + -0.11, + -0.35000000000000003, + -0.26, + -0.13, + -0.18, + -0.31, + -0.48, + -0.58, + -0.51, + -0.41000000000000003, + -0.44, + -0.59, + -0.73, + -0.8300000000000001, + -0.9, + -0.77, + -0.48, + 0.06, + 0.52, + 0.43, + 0.24, + 0.08, + -0.01, + -0.09, + -0.12, + -0.13, + -0.28, + -0.41000000000000003, + -0.37, + 0.15, + 0.8, + 1.11, + 1.07, + 0.78, + 0.44, + 0.18, + -0.03, + -0.15, + -0.24, + -0.38, + -0.34, + -0.29, + -0.23, + -0.2, + -0.01, + 0.09, + -0.21, + -0.65, + -1.07, + -1.42, + -1.67, + -1.8, + -2.0100000000000002, + -2.2800000000000002, + -2.52, + -2.64, + -2.49, + -2.29, + -2.06, + -1.95, + -1.9100000000000001, + -1.68, + -1.62, + -1.45, + -1.67, + -2.13, + -2.7600000000000002, + -2.82 + ], + [ + 1.34, + 1.56, + 1.4000000000000001, + 1.28, + 1.29, + 1.33, + 1.37, + 1.42, + 1.48, + 1.55, + 1.62, + 1.7, + 1.78, + 1.86, + 1.94, + 2.0300000000000002, + 2.11, + 2.19, + 2.2600000000000002, + 2.33, + 2.39, + 2.44, + 2.5, + 2.57, + 2.63, + 2.7, + 2.77, + 2.83, + 2.87, + 2.88, + 2.85, + 2.82, + 2.74, + 2.66, + 2.58, + 2.47, + 2.37, + 2.31, + 2.25, + 2.2, + 2.13, + 2.1, + 2.11, + 2.08, + 2.07, + 2.04, + 2.0100000000000002, + 2.0300000000000002, + 1.94, + 1.9100000000000001, + 1.83, + 1.8, + 1.71, + 1.6500000000000001, + 1.55, + 1.45, + 1.32, + 1.18, + 1.03, + 0.86, + 0.73, + 0.72, + 0.73, + 0.71, + 0.66, + 0.44, + 0.2, + -0.05, + -0.3, + -0.48, + -0.67, + -0.88, + -1.11, + -1.36, + -1.6300000000000001, + -1.77, + -1.85, + -1.8800000000000001, + -1.8800000000000001, + -1.99, + -2.19, + -2.5, + -2.99, + -3.52, + -4.0600000000000005, + -4.51, + -4.6000000000000005, + -4.58, + -4.23, + -3.84, + -3.49, + -3.14, + -2.82, + -2.49, + -2.17, + -1.8, + -1.36, + -0.8200000000000001, + -0.23, + 0.34, + 0.87, + 1.3, + 1.61, + 1.79, + 1.84, + 1.7, + 1.59, + 1.59, + 1.7, + 1.87, + 2.0, + 1.95, + 1.86, + 1.82, + 1.78, + 1.83, + 1.9000000000000001, + 1.95, + 1.95, + 1.85, + 1.71, + 1.6500000000000001, + 1.6, + 1.53, + 1.3800000000000001, + 1.27, + 1.22, + 1.21, + 1.28, + 1.35, + 1.48, + 1.61, + 1.62, + 1.62, + 1.56, + 1.55, + 1.51, + 1.47, + 1.48, + 1.49, + 1.53, + 1.5, + 1.52, + 1.54, + 1.67, + 1.85, + 1.99, + 2.08, + 2.11, + 2.17, + 2.27, + 2.49, + 2.74, + 2.87, + 2.97, + 2.83, + 2.74, + 2.58, + 2.5, + 2.22, + 1.9000000000000001, + 1.46, + 1.05, + 0.72, + 0.52, + 0.44, + 0.43, + 0.23, + 0.04, + -0.25, + -0.43, + -0.63, + -0.78, + -0.9, + -0.91, + -0.8300000000000001, + -0.55, + -0.16, + 0.04, + 0.04, + -0.34, + -0.56, + -0.63, + -0.52, + -0.34, + -0.01, + 0.08, + 0.16, + -0.1, + -0.34, + -0.49, + -0.58, + -0.62, + -0.7000000000000001, + -0.76, + -0.87, + -1.02, + -1.16, + -1.26, + -1.1400000000000001, + -0.91, + -0.62, + -0.36, + -0.4, + -0.67, + -0.9500000000000001, + -1.1400000000000001, + -1.12, + -0.97, + -0.89, + -0.77, + -0.65, + -0.53, + -0.45, + -0.46, + -0.39, + -0.27, + -0.05, + 0.12, + 0.2, + 0.4, + 0.48, + 0.41000000000000003, + 0.18, + -0.26, + -0.65, + -1.1400000000000001, + -1.43, + -1.59, + -1.86, + -1.93, + -2.13, + -2.09, + -2.0, + -1.73, + -1.22, + -0.5, + 0.27, + 0.6, + 0.49, + 0.31, + 0.25, + 0.28, + 0.26, + 0.14, + -0.07, + -0.12, + -0.23, + -0.31, + -0.43, + -0.5, + -0.41000000000000003, + -0.41000000000000003, + -0.3, + -0.12, + 0.05, + 0.11, + 0.06, + -0.05, + -0.02, + 0.09, + 0.07, + -0.07, + -0.11, + -0.04, + 0.07, + 0.12, + 0.07, + 0.15, + 0.21, + 0.32, + 0.5, + 0.79, + 1.05, + 0.91, + 0.61, + 0.39, + 0.28, + 0.01, + -0.32, + -0.47000000000000003, + -0.5700000000000001, + -0.47000000000000003, + -0.44, + -0.53, + -0.59, + -0.64, + -0.61, + -0.55, + -0.61, + -0.76, + -0.84, + -0.88, + -0.77, + -0.64, + -0.27, + 0.17, + 0.3, + 0.23, + 0.07, + -0.03, + -0.02, + 0.01, + -0.04, + -0.04, + -0.16, + -0.35000000000000003, + -0.32, + -0.09, + 0.44, + 0.89, + 0.96, + 0.79, + 0.48, + 0.07, + -0.2, + -0.25, + -0.29, + -0.25, + -0.18, + -0.21, + -0.26, + -0.16, + -0.03, + -0.03, + -0.3, + -0.8, + -1.43, + -1.84, + -2.24, + -2.49, + -2.87, + -3.2, + -3.48, + -3.58, + -3.4, + -3.15, + -2.87, + -2.69, + -2.33, + -2.13, + -1.6300000000000001, + -1.41, + -1.48, + -1.93, + -2.57, + -3.14 + ], + [ + 1.24, + 1.43, + 1.35, + 1.26, + 1.26, + 1.3, + 1.34, + 1.4000000000000001, + 1.46, + 1.53, + 1.61, + 1.69, + 1.78, + 1.87, + 1.97, + 2.05, + 2.14, + 2.22, + 2.3000000000000003, + 2.37, + 2.43, + 2.48, + 2.5300000000000002, + 2.58, + 2.64, + 2.7, + 2.77, + 2.84, + 2.86, + 2.85, + 2.8000000000000003, + 2.73, + 2.63, + 2.49, + 2.4, + 2.33, + 2.25, + 2.19, + 2.14, + 2.08, + 2.02, + 2.02, + 2.02, + 2.04, + 2.04, + 2.02, + 2.05, + 1.97, + 1.9000000000000001, + 1.8, + 1.72, + 1.62, + 1.48, + 1.41, + 1.31, + 1.2, + 1.09, + 0.96, + 0.85, + 0.7000000000000001, + 0.62, + 0.59, + 0.59, + 0.58, + 0.42, + 0.23, + -0.05, + -0.32, + -0.55, + -0.76, + -0.93, + -1.1500000000000001, + -1.36, + -1.62, + -1.77, + -1.85, + -1.87, + -1.83, + -1.9100000000000001, + -2.12, + -2.43, + -2.96, + -3.45, + -3.9, + -4.33, + -4.39, + -4.42, + -4.12, + -3.79, + -3.41, + -3.0300000000000002, + -2.67, + -2.32, + -1.95, + -1.57, + -1.18, + -0.71, + -0.23, + 0.24, + 0.7000000000000001, + 1.05, + 1.4000000000000001, + 1.6600000000000001, + 1.82, + 1.82, + 1.69, + 1.52, + 1.5, + 1.67, + 1.85, + 1.94, + 1.94, + 1.8800000000000001, + 1.85, + 1.86, + 1.93, + 2.0100000000000002, + 2.09, + 2.05, + 1.96, + 1.8, + 1.6600000000000001, + 1.56, + 1.41, + 1.25, + 1.08, + 1.02, + 1.05, + 1.12, + 1.26, + 1.4000000000000001, + 1.46, + 1.51, + 1.48, + 1.44, + 1.44, + 1.43, + 1.42, + 1.42, + 1.42, + 1.41, + 1.3900000000000001, + 1.3900000000000001, + 1.47, + 1.6500000000000001, + 1.81, + 1.94, + 2.0300000000000002, + 2.1, + 2.18, + 2.33, + 2.54, + 2.71, + 2.84, + 2.63, + 2.44, + 2.18, + 2.0300000000000002, + 1.9000000000000001, + 1.74, + 1.41, + 1.08, + 0.71, + 0.41000000000000003, + 0.13, + -0.05, + -0.02, + 0.1, + 0.04, + 0.07, + -0.07, + -0.2, + -0.34, + -0.37, + -0.37, + -0.29, + -0.02, + 0.27, + 0.55, + 0.15, + -0.23, + -0.68, + -0.9, + -0.99, + -0.92, + -0.5700000000000001, + -0.21, + -0.06, + 0.05, + -0.21, + -0.39, + -0.51, + -0.55, + -0.65, + -0.8300000000000001, + -0.9500000000000001, + -1.1, + -1.23, + -1.16, + -1.02, + -0.8200000000000001, + -0.6, + -0.42, + -0.39, + -0.49, + -0.63, + -0.73, + -0.66, + -0.59, + -0.42, + -0.43, + -0.44, + -0.45, + -0.49, + -0.53, + -0.56, + -0.41000000000000003, + -0.16, + 0.05, + 0.31, + 0.49, + 0.5700000000000001, + 0.53, + 0.32, + 0.04, + -0.41000000000000003, + -0.9, + -1.3900000000000001, + -1.85, + -2.1, + -2.47, + -2.48, + -2.54, + -2.18, + -1.72, + -1.03, + -0.17, + 0.47000000000000003, + 0.67, + 0.49, + 0.14, + 0.03, + 0.05, + 0.03, + -0.15, + -0.27, + -0.3, + -0.35000000000000003, + -0.47000000000000003, + -0.59, + -0.48, + -0.35000000000000003, + -0.22, + -0.09, + 0.01, + 0.1, + 0.03, + -0.2, + -0.24, + -0.19, + -0.04, + 0.08, + -0.05, + -0.25, + -0.21, + -0.06, + 0.03, + 0.22, + 0.34, + 0.51, + 0.63, + 0.61, + 0.78, + 0.88, + 0.79, + 0.36, + -0.03, + -0.07, + -0.16, + -0.37, + -0.54, + -0.62, + -0.75, + -0.73, + -0.73, + -0.74, + -0.7000000000000001, + -0.64, + -0.6, + -0.6900000000000001, + -0.92, + -1.07, + -0.8300000000000001, + -0.66, + -0.36, + -0.02, + 0.14, + 0.19, + 0.03, + -0.18, + -0.13, + 0.02, + 0.0, + -0.01, + -0.01, + 0.02, + -0.16, + -0.34, + -0.17, + 0.13, + 0.54, + 0.8200000000000001, + 0.73, + 0.37, + -0.03, + -0.3, + -0.42, + -0.32, + -0.18, + -0.13, + -0.07, + -0.12, + -0.1, + 0.0, + 0.01, + -0.34, + -0.92, + -1.53, + -2.2800000000000002, + -2.67, + -3.2, + -3.6, + -4.15, + -4.47, + -4.51, + -4.39, + -3.96, + -3.64, + -3.0500000000000003, + -2.59, + -1.97, + -1.41, + -1.01, + -0.89, + -1.52, + -2.3000000000000003, + -2.67 + ], + [ + 1.29, + 1.48, + 1.35, + 1.22, + 1.24, + 1.28, + 1.32, + 1.3800000000000001, + 1.44, + 1.52, + 1.6, + 1.69, + 1.79, + 1.9000000000000001, + 2.0, + 2.09, + 2.18, + 2.27, + 2.36, + 2.42, + 2.48, + 2.52, + 2.56, + 2.59, + 2.63, + 2.69, + 2.77, + 2.82, + 2.84, + 2.8000000000000003, + 2.74, + 2.64, + 2.49, + 2.35, + 2.23, + 2.16, + 2.1, + 2.04, + 2.0, + 1.94, + 1.94, + 1.93, + 1.98, + 2.02, + 1.97, + 1.95, + 1.8800000000000001, + 1.79, + 1.7, + 1.58, + 1.5, + 1.3900000000000001, + 1.28, + 1.18, + 1.09, + 0.96, + 0.86, + 0.78, + 0.67, + 0.6, + 0.52, + 0.46, + 0.44, + 0.33, + 0.19, + -0.03, + -0.28, + -0.53, + -0.76, + -0.9500000000000001, + -1.1400000000000001, + -1.33, + -1.55, + -1.71, + -1.78, + -1.84, + -1.81, + -1.9000000000000001, + -2.14, + -2.46, + -3.0500000000000003, + -3.59, + -4.08, + -4.48, + -4.41, + -4.41, + -4.03, + -3.69, + -3.35, + -2.99, + -2.58, + -2.2, + -1.83, + -1.44, + -1.06, + -0.64, + -0.19, + 0.25, + 0.63, + 0.9, + 1.2, + 1.4000000000000001, + 1.6300000000000001, + 1.79, + 1.79, + 1.62, + 1.45, + 1.49, + 1.62, + 1.81, + 1.93, + 1.9100000000000001, + 1.8800000000000001, + 1.87, + 1.9100000000000001, + 1.98, + 2.08, + 2.14, + 2.16, + 2.02, + 1.84, + 1.67, + 1.5, + 1.33, + 1.12, + 0.96, + 0.89, + 0.9, + 0.96, + 1.08, + 1.2, + 1.29, + 1.31, + 1.31, + 1.32, + 1.33, + 1.3800000000000001, + 1.3900000000000001, + 1.3800000000000001, + 1.36, + 1.33, + 1.3, + 1.32, + 1.43, + 1.6, + 1.8, + 1.92, + 2.0100000000000002, + 2.08, + 2.16, + 2.2800000000000002, + 2.44, + 2.62, + 2.5300000000000002, + 2.34, + 1.84, + 1.48, + 1.31, + 1.18, + 1.06, + 0.84, + 0.58, + 0.3, + -0.08, + -0.47000000000000003, + -0.58, + -0.5, + -0.22, + 0.25, + 0.34, + 0.38, + 0.24, + 0.05, + -0.01, + -0.03, + 0.06, + 0.22, + 0.56, + 0.5, + 0.21, + -0.44, + -0.9500000000000001, + -1.37, + -1.6400000000000001, + -1.51, + -1.25, + -0.71, + -0.21, + -0.12, + -0.17, + -0.4, + -0.56, + -0.63, + -0.66, + -0.81, + -1.02, + -1.19, + -1.25, + -1.18, + -0.87, + -0.62, + -0.53, + -0.44, + -0.33, + -0.34, + -0.41000000000000003, + -0.44, + -0.48, + -0.4, + -0.3, + -0.24, + -0.37, + -0.55, + -0.58, + -0.63, + -0.61, + -0.42, + -0.15, + 0.19, + 0.43, + 0.55, + 0.62, + 0.38, + 0.21, + 0.11, + -0.16, + -0.62, + -1.12, + -1.55, + -1.97, + -2.29, + -2.5500000000000003, + -2.42, + -2.15, + -1.52, + -0.7000000000000001, + 0.1, + 0.72, + 0.79, + 0.36, + -0.02, + -0.32, + -0.38, + -0.54, + -0.68, + -0.6, + -0.58, + -0.53, + -0.62, + -0.5700000000000001, + -0.46, + -0.19, + 0.03, + 0.08, + 0.13, + 0.11, + -0.03, + -0.24, + -0.43, + -0.3, + -0.04, + 0.05, + -0.01, + -0.18, + -0.23, + -0.1, + 0.15, + 0.34, + 0.61, + 0.8200000000000001, + 0.73, + 0.7000000000000001, + 0.7000000000000001, + 0.79, + 0.54, + 0.09, + -0.23, + -0.38, + -0.32, + -0.29, + -0.44, + -0.58, + -0.75, + -0.9400000000000001, + -0.91, + -0.8300000000000001, + -0.72, + -0.48, + -0.43, + -0.62, + -0.9, + -0.98, + -0.85, + -0.43, + -0.08, + 0.07, + 0.18, + 0.05, + -0.17, + -0.28, + -0.22, + -0.11, + -0.08, + -0.08, + -0.01, + 0.02, + 0.01, + -0.17, + -0.31, + -0.05, + 0.3, + 0.5700000000000001, + 0.6, + 0.32, + -0.1, + -0.43, + -0.5700000000000001, + -0.52, + -0.37, + -0.21, + -0.1, + 0.0, + -0.02, + 0.07, + -0.01, + -0.25, + -0.8, + -1.47, + -2.14, + -2.82, + -3.29, + -3.91, + -4.44, + -4.96, + -5.12, + -5.01, + -4.71, + -4.09, + -3.5100000000000002, + -2.61, + -1.81, + -1.08, + -0.45, + -0.52, + -0.98, + -1.81, + -2.2800000000000002 + ], + [ + 1.2, + 1.3900000000000001, + 1.31, + 1.21, + 1.21, + 1.26, + 1.3, + 1.36, + 1.43, + 1.52, + 1.61, + 1.71, + 1.82, + 1.93, + 2.04, + 2.14, + 2.23, + 2.32, + 2.4, + 2.47, + 2.52, + 2.56, + 2.58, + 2.59, + 2.62, + 2.67, + 2.72, + 2.7600000000000002, + 2.74, + 2.66, + 2.57, + 2.47, + 2.32, + 2.16, + 2.05, + 2.0100000000000002, + 1.95, + 1.9100000000000001, + 1.87, + 1.86, + 1.86, + 1.8800000000000001, + 1.92, + 1.9100000000000001, + 1.85, + 1.75, + 1.6400000000000001, + 1.56, + 1.45, + 1.3800000000000001, + 1.31, + 1.23, + 1.17, + 1.08, + 0.99, + 0.87, + 0.76, + 0.67, + 0.58, + 0.5, + 0.41000000000000003, + 0.34, + 0.21, + 0.09, + -0.07, + -0.29, + -0.49, + -0.71, + -0.9, + -1.06, + -1.24, + -1.41, + -1.6, + -1.7, + -1.82, + -1.86, + -1.99, + -2.2800000000000002, + -2.64, + -3.2600000000000002, + -3.84, + -4.33, + -4.78, + -4.68, + -4.61, + -4.09, + -3.67, + -3.25, + -2.88, + -2.5100000000000002, + -2.11, + -1.72, + -1.34, + -0.97, + -0.59, + -0.16, + 0.28, + 0.65, + 0.9, + 1.11, + 1.23, + 1.42, + 1.59, + 1.74, + 1.73, + 1.58, + 1.49, + 1.49, + 1.6300000000000001, + 1.79, + 1.84, + 1.84, + 1.82, + 1.83, + 1.8900000000000001, + 1.97, + 2.07, + 2.16, + 2.15, + 2.07, + 1.86, + 1.6400000000000001, + 1.45, + 1.24, + 1.04, + 0.89, + 0.8200000000000001, + 0.77, + 0.81, + 0.85, + 0.9500000000000001, + 1.03, + 1.07, + 1.1300000000000001, + 1.18, + 1.28, + 1.36, + 1.3800000000000001, + 1.37, + 1.31, + 1.21, + 1.21, + 1.23, + 1.34, + 1.52, + 1.72, + 1.92, + 2.0100000000000002, + 2.07, + 2.11, + 2.05, + 2.18, + 2.29, + 2.2600000000000002, + 1.82, + 1.31, + 0.8200000000000001, + 0.52, + 0.46, + 0.34, + 0.25, + 0.06, + -0.23, + -0.66, + -0.99, + -1.2, + -0.92, + -0.29, + 0.24, + 0.79, + 0.81, + 0.62, + 0.42, + 0.15, + 0.09, + 0.0, + 0.14, + 0.38, + 0.4, + -0.14, + -0.81, + -1.4000000000000001, + -1.92, + -2.1, + -2.07, + -1.6500000000000001, + -1.1, + -0.54, + -0.24, + -0.34, + -0.62, + -0.76, + -0.8, + -0.81, + -0.81, + -1.01, + -1.28, + -1.37, + -1.12, + -0.79, + -0.45, + -0.3, + -0.31, + -0.27, + -0.22, + -0.24, + -0.41000000000000003, + -0.55, + -0.45, + -0.29, + -0.29, + -0.45, + -0.58, + -0.64, + -0.64, + -0.54, + -0.33, + 0.0, + 0.3, + 0.45, + 0.56, + 0.27, + 0.04, + -0.02, + -0.06, + -0.03, + -0.27, + -0.65, + -1.0, + -1.44, + -1.82, + -2.08, + -2.08, + -1.78, + -1.23, + -0.46, + 0.37, + 0.86, + 0.86, + 0.38, + -0.28, + -0.63, + -1.0, + -1.2, + -1.09, + -1.01, + -0.72, + -0.62, + -0.59, + -0.54, + -0.31, + 0.0, + 0.16, + 0.21, + 0.18, + 0.11, + -0.04, + -0.25, + -0.39, + -0.35000000000000003, + -0.11, + 0.06, + 0.01, + -0.04, + -0.07, + 0.05, + 0.27, + 0.52, + 0.79, + 0.86, + 0.81, + 0.5700000000000001, + 0.49, + 0.52, + 0.36, + -0.05, + -0.4, + -0.44, + -0.35000000000000003, + -0.28, + -0.26, + -0.5, + -0.81, + -0.99, + -1.02, + -0.89, + -0.53, + -0.26, + -0.05, + -0.21, + -0.63, + -0.8, + -0.61, + -0.25, + 0.02, + 0.19, + 0.1, + -0.08, + -0.3, + -0.43, + -0.35000000000000003, + -0.23, + -0.19, + -0.21, + -0.1, + 0.04, + 0.02, + -0.06, + -0.18, + -0.17, + 0.15, + 0.43, + 0.49, + 0.28, + -0.11, + -0.59, + -0.8200000000000001, + -0.87, + -0.75, + -0.45, + -0.24, + -0.12, + -0.04, + -0.05, + -0.08, + -0.25, + -0.5, + -1.1300000000000001, + -1.78, + -2.41, + -2.9, + -3.5, + -4.16, + -4.7, + -5.21, + -5.22, + -4.95, + -4.47, + -3.73, + -2.87, + -1.85, + -0.93, + -0.33, + -0.14, + -0.78, + -1.56, + -1.95 + ], + [ + 1.22, + 1.3900000000000001, + 1.29, + 1.18, + 1.19, + 1.24, + 1.29, + 1.36, + 1.43, + 1.53, + 1.62, + 1.73, + 1.84, + 1.96, + 2.07, + 2.18, + 2.2800000000000002, + 2.37, + 2.45, + 2.5, + 2.5500000000000003, + 2.57, + 2.58, + 2.58, + 2.59, + 2.62, + 2.64, + 2.64, + 2.56, + 2.45, + 2.31, + 2.21, + 2.12, + 1.97, + 1.9100000000000001, + 1.86, + 1.84, + 1.8, + 1.8, + 1.79, + 1.8, + 1.82, + 1.81, + 1.77, + 1.67, + 1.54, + 1.45, + 1.36, + 1.29, + 1.24, + 1.19, + 1.1500000000000001, + 1.09, + 1.05, + 0.97, + 0.89, + 0.77, + 0.61, + 0.52, + 0.4, + 0.3, + 0.16, + 0.03, + -0.14, + -0.32, + -0.51, + -0.7000000000000001, + -0.88, + -1.03, + -1.19, + -1.32, + -1.52, + -1.6600000000000001, + -1.87, + -2.04, + -2.24, + -2.62, + -3.0100000000000002, + -3.59, + -4.19, + -4.65, + -5.11, + -4.98, + -4.88, + -4.29, + -3.7600000000000002, + -3.21, + -2.75, + -2.36, + -1.98, + -1.62, + -1.25, + -0.89, + -0.54, + -0.14, + 0.28, + 0.67, + 0.9500000000000001, + 1.1400000000000001, + 1.2, + 1.31, + 1.43, + 1.6, + 1.71, + 1.71, + 1.67, + 1.57, + 1.59, + 1.7, + 1.73, + 1.74, + 1.74, + 1.72, + 1.76, + 1.84, + 1.92, + 2.0100000000000002, + 2.09, + 2.11, + 2.0300000000000002, + 1.87, + 1.62, + 1.37, + 1.17, + 1.01, + 0.87, + 0.79, + 0.74, + 0.64, + 0.66, + 0.67, + 0.72, + 0.8200000000000001, + 0.89, + 1.07, + 1.24, + 1.36, + 1.43, + 1.37, + 1.28, + 1.18, + 1.12, + 1.1500000000000001, + 1.2, + 1.3800000000000001, + 1.62, + 1.83, + 2.07, + 2.1, + 1.86, + 1.77, + 1.71, + 1.8, + 1.78, + 1.42, + 0.81, + 0.25, + -0.03, + -0.17, + -0.15, + -0.2, + -0.35000000000000003, + -0.65, + -1.05, + -1.47, + -1.52, + -1.18, + -0.47000000000000003, + 0.43, + 0.9500000000000001, + 1.23, + 1.02, + 0.63, + 0.35000000000000003, + -0.04, + -0.18, + -0.11, + 0.09, + 0.02, + -0.49, + -1.19, + -1.86, + -2.23, + -2.43, + -2.25, + -1.84, + -1.25, + -0.6900000000000001, + -0.39, + -0.46, + -0.71, + -0.9400000000000001, + -0.9400000000000001, + -0.8200000000000001, + -0.8200000000000001, + -0.99, + -1.26, + -1.43, + -1.23, + -0.66, + -0.25, + -0.07, + -0.06, + -0.11, + -0.11, + -0.24, + -0.47000000000000003, + -0.65, + -0.65, + -0.44, + -0.32, + -0.45, + -0.55, + -0.5700000000000001, + -0.49, + -0.37, + -0.17, + 0.12, + 0.24, + 0.37, + 0.17, + -0.11, + -0.34, + -0.43, + -0.2, + -0.08, + -0.06, + -0.22, + -0.48, + -0.79, + -1.25, + -1.55, + -1.6400000000000001, + -1.47, + -1.02, + -0.41000000000000003, + 0.34, + 0.9, + 0.8200000000000001, + 0.27, + -0.38, + -0.98, + -1.37, + -1.53, + -1.49, + -1.05, + -0.73, + -0.55, + -0.48, + -0.41000000000000003, + -0.17, + 0.09, + 0.27, + 0.25, + 0.18, + 0.11, + -0.01, + -0.2, + -0.32, + -0.27, + -0.15, + 0.02, + 0.11, + 0.07, + 0.17, + 0.29, + 0.42, + 0.65, + 0.81, + 0.87, + 0.64, + 0.35000000000000003, + 0.21, + 0.19, + 0.11, + -0.13, + -0.38, + -0.39, + -0.29, + -0.2, + -0.29, + -0.6, + -0.9400000000000001, + -1.17, + -1.17, + -0.87, + -0.49, + 0.14, + 0.38, + 0.24, + -0.15, + -0.49, + -0.38, + -0.16, + 0.08, + 0.13, + 0.03, + -0.2, + -0.46, + -0.55, + -0.47000000000000003, + -0.32, + -0.25, + -0.24, + -0.17, + -0.01, + 0.09, + 0.0, + -0.09, + -0.07, + 0.1, + 0.36, + 0.42, + 0.25, + -0.26, + -0.75, + -1.17, + -1.31, + -1.04, + -0.71, + -0.44, + -0.3, + -0.29, + -0.36, + -0.29, + -0.2, + -0.37, + -0.67, + -1.32, + -1.92, + -2.44, + -2.99, + -3.66, + -4.4, + -4.92, + -4.99, + -4.78, + -4.49, + -3.89, + -3.08, + -2.12, + -1.1400000000000001, + -0.4, + -0.27, + -0.77, + -1.53, + -1.94 + ], + [ + 1.16, + 1.34, + 1.26, + 1.16, + 1.17, + 1.22, + 1.28, + 1.36, + 1.44, + 1.54, + 1.6400000000000001, + 1.75, + 1.87, + 1.99, + 2.11, + 2.22, + 2.32, + 2.41, + 2.48, + 2.54, + 2.58, + 2.59, + 2.59, + 2.58, + 2.56, + 2.5500000000000003, + 2.5300000000000002, + 2.47, + 2.36, + 2.18, + 2.05, + 1.96, + 1.8800000000000001, + 1.84, + 1.77, + 1.72, + 1.69, + 1.71, + 1.71, + 1.73, + 1.73, + 1.72, + 1.69, + 1.61, + 1.5, + 1.3900000000000001, + 1.32, + 1.25, + 1.2, + 1.1500000000000001, + 1.11, + 1.07, + 1.05, + 1.02, + 1.0, + 0.91, + 0.74, + 0.58, + 0.39, + 0.26, + 0.14, + 0.0, + -0.16, + -0.34, + -0.55, + -0.75, + -0.9400000000000001, + -1.11, + -1.27, + -1.41, + -1.6, + -1.8, + -2.06, + -2.38, + -2.68, + -3.16, + -3.59, + -4.16, + -4.71, + -5.08, + -5.51, + -5.3500000000000005, + -5.23, + -4.55, + -3.94, + -3.2600000000000002, + -2.68, + -2.2, + -1.8, + -1.48, + -1.1500000000000001, + -0.81, + -0.47000000000000003, + -0.09, + 0.32, + 0.6900000000000001, + 1.0, + 1.22, + 1.27, + 1.32, + 1.37, + 1.49, + 1.6300000000000001, + 1.74, + 1.8, + 1.76, + 1.74, + 1.76, + 1.73, + 1.72, + 1.67, + 1.62, + 1.6400000000000001, + 1.69, + 1.76, + 1.83, + 1.9100000000000001, + 1.97, + 2.0, + 1.96, + 1.8, + 1.58, + 1.32, + 1.1, + 0.9500000000000001, + 0.86, + 0.78, + 0.65, + 0.55, + 0.47000000000000003, + 0.47000000000000003, + 0.49, + 0.55, + 0.73, + 0.93, + 1.16, + 1.33, + 1.3900000000000001, + 1.37, + 1.28, + 1.21, + 1.1300000000000001, + 1.1, + 1.12, + 1.2, + 1.46, + 1.81, + 2.02, + 1.99, + 1.74, + 1.29, + 1.2, + 1.26, + 1.25, + 1.02, + 0.47000000000000003, + -0.03, + -0.35000000000000003, + -0.43, + -0.42, + -0.42, + -0.51, + -0.8200000000000001, + -1.25, + -1.59, + -1.6300000000000001, + -1.24, + -0.54, + 0.37, + 1.1, + 1.34, + 1.25, + 0.86, + 0.37, + -0.03, + -0.36, + -0.35000000000000003, + -0.17, + -0.25, + -0.76, + -1.47, + -1.99, + -2.31, + -2.35, + -2.13, + -1.71, + -1.19, + -0.62, + -0.28, + -0.35000000000000003, + -0.58, + -0.8, + -0.87, + -0.75, + -0.65, + -0.8200000000000001, + -1.27, + -1.47, + -1.26, + -0.72, + -0.07, + 0.21, + 0.18, + 0.11, + -0.06, + -0.25, + -0.54, + -0.79, + -0.76, + -0.55, + -0.39, + -0.37, + -0.45, + -0.41000000000000003, + -0.32, + -0.18, + 0.0, + 0.09, + 0.2, + 0.06, + -0.15, + -0.4, + -0.64, + -0.64, + -0.44, + -0.2, + -0.09, + -0.01, + -0.06, + -0.37, + -0.78, + -1.22, + -1.42, + -1.37, + -1.1300000000000001, + -0.5700000000000001, + 0.12, + 0.64, + 0.6900000000000001, + 0.15, + -0.45, + -1.04, + -1.3900000000000001, + -1.57, + -1.3900000000000001, + -0.98, + -0.65, + -0.44, + -0.4, + -0.32, + -0.14, + 0.1, + 0.24, + 0.24, + 0.16, + 0.08, + -0.02, + -0.15, + -0.24, + -0.16, + -0.05, + 0.01, + 0.11, + 0.21, + 0.31, + 0.46, + 0.6, + 0.76, + 0.91, + 0.74, + 0.45, + 0.06, + -0.14, + -0.19, + -0.24, + -0.27, + -0.26, + -0.27, + -0.2, + -0.21, + -0.47000000000000003, + -0.8200000000000001, + -1.31, + -1.52, + -1.48, + -1.1500000000000001, + -0.39, + 0.24, + 0.75, + 0.66, + 0.15, + -0.2, + -0.27, + -0.09, + 0.03, + 0.04, + -0.06, + -0.3, + -0.5700000000000001, + -0.6900000000000001, + -0.54, + -0.31, + -0.21, + -0.15, + -0.1, + 0.0, + 0.11, + 0.13, + 0.04, + 0.02, + 0.18, + 0.28, + 0.34, + 0.06, + -0.44, + -1.07, + -1.54, + -1.54, + -1.27, + -0.8200000000000001, + -0.51, + -0.5, + -0.61, + -0.64, + -0.56, + -0.34, + -0.17, + -0.43, + -0.9, + -1.51, + -2.2, + -2.7600000000000002, + -3.48, + -4.22, + -4.51, + -4.6000000000000005, + -4.37, + -4.12, + -3.85, + -3.18, + -2.38, + -1.51, + -0.72, + -0.51, + -0.98, + -1.69, + -1.99 + ], + [ + 1.1400000000000001, + 1.31, + 1.23, + 1.1500000000000001, + 1.16, + 1.21, + 1.27, + 1.36, + 1.44, + 1.55, + 1.6600000000000001, + 1.77, + 1.8900000000000001, + 2.02, + 2.14, + 2.2600000000000002, + 2.36, + 2.44, + 2.5100000000000002, + 2.57, + 2.6, + 2.62, + 2.62, + 2.57, + 2.52, + 2.46, + 2.38, + 2.2800000000000002, + 2.1, + 1.93, + 1.8, + 1.73, + 1.73, + 1.69, + 1.6500000000000001, + 1.59, + 1.59, + 1.6, + 1.6600000000000001, + 1.68, + 1.6500000000000001, + 1.62, + 1.56, + 1.47, + 1.3800000000000001, + 1.3, + 1.24, + 1.19, + 1.1300000000000001, + 1.08, + 1.04, + 1.02, + 1.01, + 1.01, + 0.98, + 0.84, + 0.67, + 0.42, + 0.22, + 0.09, + -0.03, + -0.16, + -0.32, + -0.55, + -0.78, + -1.02, + -1.24, + -1.44, + -1.6300000000000001, + -1.85, + -2.12, + -2.44, + -2.88, + -3.2800000000000002, + -3.8200000000000003, + -4.3, + -4.84, + -5.3500000000000005, + -5.69, + -6.03, + -5.82, + -5.66, + -4.93, + -4.23, + -3.41, + -2.71, + -2.12, + -1.6400000000000001, + -1.29, + -0.99, + -0.71, + -0.4, + -0.02, + 0.39, + 0.75, + 1.06, + 1.31, + 1.4000000000000001, + 1.43, + 1.4000000000000001, + 1.45, + 1.56, + 1.7, + 1.78, + 1.85, + 1.9000000000000001, + 1.8900000000000001, + 1.86, + 1.83, + 1.75, + 1.67, + 1.6, + 1.61, + 1.6400000000000001, + 1.69, + 1.75, + 1.79, + 1.85, + 1.87, + 1.85, + 1.75, + 1.52, + 1.28, + 1.06, + 0.89, + 0.8, + 0.68, + 0.55, + 0.42, + 0.34, + 0.36, + 0.39, + 0.44, + 0.61, + 0.8200000000000001, + 1.05, + 1.2, + 1.24, + 1.28, + 1.27, + 1.21, + 1.19, + 1.11, + 1.02, + 1.08, + 1.27, + 1.62, + 1.87, + 1.84, + 1.44, + 0.99, + 0.66, + 0.7000000000000001, + 0.78, + 0.58, + 0.32, + -0.07, + -0.36, + -0.43, + -0.44, + -0.42, + -0.52, + -0.8, + -1.19, + -1.43, + -1.48, + -1.1300000000000001, + -0.47000000000000003, + 0.27, + 1.01, + 1.33, + 1.24, + 0.91, + 0.42, + -0.04, + -0.38, + -0.44, + -0.28, + -0.4, + -0.9, + -1.53, + -1.98, + -2.09, + -1.94, + -1.7, + -1.3, + -0.8300000000000001, + -0.32, + 0.01, + -0.02, + -0.28, + -0.51, + -0.6, + -0.55, + -0.46, + -0.73, + -1.18, + -1.49, + -1.3, + -0.68, + -0.02, + 0.42, + 0.46, + 0.18, + -0.08, + -0.31, + -0.6, + -0.84, + -0.8300000000000001, + -0.6, + -0.4, + -0.35000000000000003, + -0.36, + -0.32, + -0.18, + -0.05, + 0.05, + 0.13, + 0.08, + -0.06, + -0.25, + -0.5, + -0.68, + -0.68, + -0.68, + -0.52, + -0.25, + -0.07, + 0.04, + -0.14, + -0.68, + -1.25, + -1.54, + -1.62, + -1.44, + -1.04, + -0.33, + 0.32, + 0.39, + 0.09, + -0.5, + -0.78, + -1.1300000000000001, + -1.25, + -1.07, + -0.86, + -0.56, + -0.44, + -0.42, + -0.37, + -0.21, + -0.02, + 0.1, + 0.14, + 0.1, + 0.03, + -0.06, + -0.15, + -0.13, + -0.05, + 0.06, + 0.11, + 0.1, + 0.2, + 0.32, + 0.47000000000000003, + 0.77, + 0.9500000000000001, + 0.93, + 0.73, + 0.21, + -0.26, + -0.58, + -0.71, + -0.65, + -0.5700000000000001, + -0.34, + -0.11, + -0.12, + -0.31, + -0.62, + -1.17, + -1.67, + -2.08, + -1.98, + -1.4000000000000001, + -0.64, + 0.28, + 0.8, + 0.74, + 0.25, + -0.15, + -0.24, + -0.09, + 0.01, + 0.0, + -0.12, + -0.37, + -0.65, + -0.74, + -0.55, + -0.27, + -0.07, + -0.03, + -0.01, + 0.08, + 0.22, + 0.24, + 0.17, + 0.15, + 0.16, + 0.26, + 0.14, + -0.15, + -0.72, + -1.36, + -1.7, + -1.67, + -1.27, + -0.75, + -0.55, + -0.61, + -0.78, + -0.85, + -0.74, + -0.45, + -0.19, + -0.13, + -0.55, + -1.04, + -1.73, + -2.5300000000000002, + -3.25, + -3.8000000000000003, + -4.1, + -3.92, + -3.68, + -3.59, + -3.36, + -3.1, + -2.45, + -1.72, + -1.03, + -0.8, + -1.26, + -1.82, + -2.0100000000000002 + ], + [ + 1.12, + 1.29, + 1.21, + 1.1300000000000001, + 1.1400000000000001, + 1.19, + 1.26, + 1.35, + 1.45, + 1.56, + 1.67, + 1.79, + 1.9100000000000001, + 2.04, + 2.17, + 2.29, + 2.39, + 2.46, + 2.52, + 2.58, + 2.63, + 2.65, + 2.62, + 2.56, + 2.45, + 2.32, + 2.21, + 2.0300000000000002, + 1.85, + 1.69, + 1.58, + 1.58, + 1.57, + 1.57, + 1.53, + 1.51, + 1.5, + 1.57, + 1.6400000000000001, + 1.6500000000000001, + 1.61, + 1.52, + 1.44, + 1.35, + 1.27, + 1.22, + 1.17, + 1.12, + 1.06, + 1.01, + 0.98, + 0.96, + 0.96, + 0.96, + 0.85, + 0.71, + 0.46, + 0.21, + 0.05, + -0.07, + -0.19, + -0.32, + -0.52, + -0.76, + -1.04, + -1.31, + -1.59, + -1.84, + -2.14, + -2.49, + -2.89, + -3.44, + -3.92, + -4.51, + -4.99, + -5.42, + -5.91, + -6.16, + -6.47, + -6.28, + -6.07, + -5.36, + -4.6000000000000005, + -3.7, + -2.86, + -2.15, + -1.57, + -1.1300000000000001, + -0.8, + -0.56, + -0.32, + 0.04, + 0.47000000000000003, + 0.85, + 1.1500000000000001, + 1.3900000000000001, + 1.48, + 1.55, + 1.51, + 1.49, + 1.54, + 1.6500000000000001, + 1.74, + 1.83, + 1.9000000000000001, + 1.95, + 1.96, + 1.93, + 1.9000000000000001, + 1.82, + 1.72, + 1.6500000000000001, + 1.61, + 1.62, + 1.6500000000000001, + 1.68, + 1.7, + 1.73, + 1.76, + 1.74, + 1.6600000000000001, + 1.49, + 1.24, + 1.0, + 0.8300000000000001, + 0.64, + 0.52, + 0.37, + 0.24, + 0.26, + 0.3, + 0.38, + 0.45, + 0.53, + 0.71, + 0.89, + 0.99, + 1.04, + 1.07, + 1.1400000000000001, + 1.18, + 1.16, + 1.08, + 0.96, + 0.9400000000000001, + 1.11, + 1.34, + 1.6, + 1.52, + 1.12, + 0.61, + 0.29, + 0.12, + 0.18, + 0.31, + 0.14, + 0.04, + -0.1, + -0.27, + -0.3, + -0.33, + -0.43, + -0.66, + -0.96, + -1.2, + -1.1400000000000001, + -0.9, + -0.44, + 0.27, + 0.86, + 1.22, + 1.1500000000000001, + 0.8200000000000001, + 0.4, + -0.07, + -0.38, + -0.42, + -0.37, + -0.5, + -0.98, + -1.59, + -1.86, + -1.8, + -1.43, + -0.97, + -0.65, + -0.23, + 0.16, + 0.33, + 0.28, + -0.04, + -0.28, + -0.36, + -0.32, + -0.47000000000000003, + -0.74, + -1.12, + -1.43, + -1.22, + -0.58, + 0.05, + 0.48, + 0.52, + 0.21, + -0.21, + -0.53, + -0.67, + -0.78, + -0.81, + -0.61, + -0.39, + -0.3, + -0.31, + -0.26, + -0.13, + -0.05, + 0.05, + 0.09, + 0.04, + 0.01, + -0.18, + -0.32, + -0.47000000000000003, + -0.76, + -0.8300000000000001, + -0.8200000000000001, + -0.61, + -0.3, + -0.15, + -0.32, + -0.9500000000000001, + -1.59, + -2.0300000000000002, + -2.12, + -2.05, + -1.6400000000000001, + -0.91, + -0.19, + 0.16, + -0.11, + -0.26, + -0.54, + -0.64, + -0.75, + -0.79, + -0.61, + -0.56, + -0.52, + -0.54, + -0.51, + -0.39, + -0.23, + -0.1, + -0.05, + -0.02, + -0.02, + -0.1, + -0.17, + -0.13, + 0.01, + 0.12, + 0.16, + 0.15, + 0.11, + 0.23, + 0.48, + 0.79, + 1.09, + 1.06, + 0.64, + 0.04, + -0.59, + -1.0, + -1.22, + -1.23, + -0.93, + -0.49, + -0.13, + -0.05, + -0.3, + -0.76, + -1.33, + -1.92, + -2.36, + -2.24, + -1.67, + -0.8300000000000001, + 0.1, + 0.55, + 0.46, + 0.12, + -0.28, + -0.23, + -0.05, + 0.05, + 0.03, + -0.14, + -0.41000000000000003, + -0.68, + -0.73, + -0.5, + -0.16, + 0.06, + 0.11, + 0.1, + 0.14, + 0.28, + 0.32, + 0.25, + 0.18, + 0.19, + 0.11, + -0.02, + -0.34, + -0.92, + -1.43, + -1.7, + -1.58, + -1.09, + -0.68, + -0.55, + -0.68, + -0.88, + -0.99, + -0.88, + -0.59, + -0.28, + -0.06, + 0.06, + -0.41000000000000003, + -0.89, + -1.72, + -2.58, + -3.13, + -3.24, + -3.0100000000000002, + -2.82, + -2.73, + -2.7800000000000002, + -2.56, + -2.29, + -1.68, + -1.18, + -1.06, + -1.3800000000000001, + -1.81, + -1.96 + ], + [ + 1.07, + 1.23, + 1.18, + 1.11, + 1.1300000000000001, + 1.18, + 1.26, + 1.35, + 1.45, + 1.56, + 1.68, + 1.8, + 1.92, + 2.05, + 2.18, + 2.29, + 2.38, + 2.45, + 2.5100000000000002, + 2.57, + 2.62, + 2.64, + 2.6, + 2.49, + 2.32, + 2.15, + 1.96, + 1.78, + 1.61, + 1.46, + 1.44, + 1.44, + 1.47, + 1.47, + 1.47, + 1.44, + 1.49, + 1.57, + 1.6400000000000001, + 1.6500000000000001, + 1.56, + 1.45, + 1.34, + 1.25, + 1.19, + 1.1500000000000001, + 1.11, + 1.06, + 1.0, + 0.9500000000000001, + 0.91, + 0.89, + 0.88, + 0.8, + 0.6900000000000001, + 0.46, + 0.21, + 0.04, + -0.11, + -0.22, + -0.33, + -0.51, + -0.73, + -1.01, + -1.31, + -1.62, + -1.93, + -2.31, + -2.74, + -3.2600000000000002, + -3.9, + -4.47, + -5.0600000000000005, + -5.59, + -5.87, + -6.24, + -6.28, + -6.5600000000000005, + -6.38, + -6.21, + -5.62, + -4.88, + -3.99, + -3.04, + -2.3000000000000003, + -1.62, + -1.05, + -0.64, + -0.38, + -0.2, + 0.08, + 0.49, + 0.91, + 1.25, + 1.49, + 1.56, + 1.6300000000000001, + 1.6, + 1.57, + 1.58, + 1.6300000000000001, + 1.71, + 1.79, + 1.87, + 1.94, + 1.98, + 1.99, + 1.95, + 1.92, + 1.87, + 1.77, + 1.69, + 1.6400000000000001, + 1.62, + 1.6400000000000001, + 1.6400000000000001, + 1.6300000000000001, + 1.6300000000000001, + 1.62, + 1.62, + 1.57, + 1.42, + 1.2, + 0.9500000000000001, + 0.66, + 0.47000000000000003, + 0.28, + 0.13, + 0.07, + 0.1, + 0.25, + 0.34, + 0.41000000000000003, + 0.48, + 0.5700000000000001, + 0.6900000000000001, + 0.78, + 0.81, + 0.85, + 0.92, + 1.01, + 1.04, + 0.99, + 0.92, + 0.86, + 0.96, + 1.16, + 1.2, + 1.1400000000000001, + 0.8, + 0.28, + -0.18, + -0.34, + -0.33, + -0.19, + 0.11, + 0.17, + 0.13, + 0.0, + -0.14, + -0.22, + -0.3, + -0.51, + -0.79, + -0.97, + -0.9500000000000001, + -0.78, + -0.38, + 0.19, + 0.81, + 1.08, + 1.03, + 0.72, + 0.3, + -0.11, + -0.4, + -0.52, + -0.47000000000000003, + -0.58, + -1.11, + -1.67, + -1.8800000000000001, + -1.55, + -0.93, + -0.31, + 0.15, + 0.39, + 0.54, + 0.64, + 0.33, + 0.03, + -0.18, + -0.26, + -0.35000000000000003, + -0.49, + -0.8200000000000001, + -1.21, + -1.19, + -0.93, + -0.52, + 0.08, + 0.41000000000000003, + 0.37, + 0.06, + -0.42, + -0.6900000000000001, + -0.74, + -0.74, + -0.68, + -0.53, + -0.33, + -0.23, + -0.18, + -0.16, + -0.18, + -0.1, + -0.14, + -0.09, + 0.04, + 0.02, + 0.09, + -0.03, + -0.27, + -0.58, + -0.98, + -1.03, + -0.99, + -0.75, + -0.54, + -0.81, + -1.37, + -2.05, + -2.5500000000000003, + -2.73, + -2.65, + -2.16, + -1.43, + -0.66, + -0.22, + -0.1, + -0.23, + -0.17, + -0.27, + -0.34, + -0.39, + -0.5, + -0.51, + -0.58, + -0.64, + -0.68, + -0.5700000000000001, + -0.45, + -0.35000000000000003, + -0.23, + -0.13, + -0.09, + -0.13, + -0.21, + -0.19, + -0.03, + 0.09, + 0.15, + 0.16, + 0.1, + 0.12, + 0.39, + 0.81, + 1.11, + 1.1300000000000001, + 0.65, + -0.02, + -0.67, + -1.28, + -1.57, + -1.6400000000000001, + -1.28, + -0.66, + -0.14, + -0.01, + -0.29, + -0.73, + -1.1500000000000001, + -1.8, + -2.08, + -2.07, + -1.6400000000000001, + -0.8200000000000001, + -0.39, + 0.03, + 0.13, + -0.24, + -0.32, + -0.18, + 0.11, + 0.24, + 0.09, + -0.15, + -0.4, + -0.64, + -0.67, + -0.36, + 0.0, + 0.23, + 0.26, + 0.14, + 0.16, + 0.21, + 0.28, + 0.23, + 0.16, + 0.09, + 0.0, + -0.13, + -0.47000000000000003, + -0.89, + -1.34, + -1.52, + -1.28, + -0.96, + -0.66, + -0.59, + -0.79, + -0.99, + -1.07, + -1.05, + -0.88, + -0.47000000000000003, + 0.02, + 0.32, + 0.51, + 0.07, + -0.6, + -1.5, + -2.13, + -2.2, + -2.04, + -1.85, + -1.87, + -1.94, + -2.02, + -1.81, + -1.58, + -1.24, + -1.08, + -1.33, + -1.68, + -1.6400000000000001 + ], + [ + 1.07, + 1.24, + 1.16, + 1.08, + 1.11, + 1.17, + 1.25, + 1.35, + 1.45, + 1.56, + 1.68, + 1.8, + 1.9100000000000001, + 2.04, + 2.17, + 2.2800000000000002, + 2.36, + 2.41, + 2.45, + 2.5, + 2.5500000000000003, + 2.54, + 2.49, + 2.33, + 2.14, + 1.9100000000000001, + 1.71, + 1.54, + 1.37, + 1.34, + 1.32, + 1.36, + 1.4000000000000001, + 1.43, + 1.42, + 1.45, + 1.5, + 1.61, + 1.68, + 1.62, + 1.5, + 1.37, + 1.24, + 1.16, + 1.1300000000000001, + 1.1, + 1.06, + 1.02, + 0.97, + 0.9, + 0.85, + 0.8200000000000001, + 0.73, + 0.64, + 0.43, + 0.2, + 0.01, + -0.15, + -0.25, + -0.35000000000000003, + -0.51, + -0.71, + -0.97, + -1.28, + -1.59, + -1.92, + -2.31, + -2.77, + -3.37, + -4.09, + -4.8100000000000005, + -5.43, + -5.97, + -6.15, + -6.4, + -6.22, + -6.28, + -6.0, + -5.89, + -5.44, + -4.84, + -4.1, + -3.16, + -2.45, + -1.75, + -1.1500000000000001, + -0.63, + -0.24, + -0.04, + 0.15, + 0.47000000000000003, + 0.87, + 1.26, + 1.58, + 1.67, + 1.71, + 1.6600000000000001, + 1.6300000000000001, + 1.6300000000000001, + 1.6500000000000001, + 1.71, + 1.77, + 1.85, + 1.92, + 2.0, + 2.05, + 2.0, + 1.95, + 1.9100000000000001, + 1.86, + 1.79, + 1.71, + 1.6600000000000001, + 1.6400000000000001, + 1.6300000000000001, + 1.61, + 1.56, + 1.51, + 1.49, + 1.48, + 1.46, + 1.36, + 1.1500000000000001, + 0.81, + 0.5, + 0.18, + -0.01, + -0.13, + -0.18, + -0.09, + 0.07, + 0.22, + 0.27, + 0.33, + 0.4, + 0.5, + 0.56, + 0.59, + 0.63, + 0.67, + 0.73, + 0.8200000000000001, + 0.84, + 0.8, + 0.81, + 0.87, + 0.87, + 0.91, + 0.74, + 0.41000000000000003, + -0.01, + -0.47000000000000003, + -0.8, + -0.76, + -0.5, + -0.11, + 0.26, + 0.27, + 0.17, + 0.0, + -0.1, + -0.18, + -0.38, + -0.68, + -0.9, + -0.99, + -0.8300000000000001, + -0.44, + 0.13, + 0.68, + 0.99, + 0.93, + 0.62, + 0.26, + -0.13, + -0.47000000000000003, + -0.56, + -0.56, + -0.71, + -1.1400000000000001, + -1.68, + -1.95, + -1.49, + -0.62, + 0.14, + 0.68, + 0.8200000000000001, + 0.85, + 0.58, + 0.3, + -0.04, + -0.24, + -0.22, + -0.31, + -0.6, + -0.9400000000000001, + -1.08, + -1.0, + -0.7000000000000001, + -0.28, + -0.08, + 0.1, + 0.18, + -0.18, + -0.6, + -0.76, + -0.72, + -0.58, + -0.56, + -0.45, + -0.25, + -0.14, + -0.09, + -0.1, + -0.16, + -0.36, + -0.4, + -0.27, + -0.12, + 0.08, + 0.16, + 0.22, + -0.04, + -0.48, + -0.92, + -1.26, + -1.28, + -1.2, + -1.12, + -1.19, + -1.6400000000000001, + -2.35, + -2.79, + -3.06, + -2.87, + -2.48, + -1.67, + -0.89, + -0.47000000000000003, + -0.29, + -0.16, + -0.07, + 0.05, + -0.03, + -0.15, + -0.29, + -0.43, + -0.53, + -0.68, + -0.71, + -0.71, + -0.62, + -0.52, + -0.37, + -0.22, + -0.13, + -0.15, + -0.21, + -0.24, + -0.19, + -0.03, + 0.06, + 0.08, + 0.09, + 0.1, + 0.28, + 0.72, + 1.07, + 1.03, + 0.76, + 0.1, + -0.63, + -1.23, + -1.74, + -1.79, + -1.52, + -0.8200000000000001, + -0.17, + -0.07, + -0.28, + -0.55, + -0.89, + -1.11, + -1.5, + -1.57, + -1.24, + -1.1300000000000001, + -0.74, + -0.48, + -0.41000000000000003, + -0.33, + -0.3, + -0.02, + 0.34, + 0.45, + 0.24, + -0.09, + -0.36, + -0.54, + -0.42, + -0.17, + 0.14, + 0.39, + 0.33, + 0.17, + 0.03, + 0.09, + 0.12, + 0.09, + 0.05, + -0.01, + -0.06, + -0.2, + -0.29, + -0.66, + -0.99, + -1.03, + -1.05, + -0.8, + -0.71, + -0.85, + -0.97, + -1.09, + -1.21, + -1.26, + -1.17, + -0.76, + -0.12, + 0.5700000000000001, + 0.98, + 0.96, + 0.35000000000000003, + -0.4, + -1.06, + -1.26, + -1.09, + -1.0, + -1.09, + -1.2, + -1.31, + -1.5, + -1.44, + -1.28, + -1.23, + -1.21, + -1.24, + -1.31 + ], + [ + 0.99, + 1.1500000000000001, + 1.11, + 1.07, + 1.09, + 1.16, + 1.24, + 1.34, + 1.44, + 1.55, + 1.67, + 1.78, + 1.9000000000000001, + 2.02, + 2.14, + 2.25, + 2.31, + 2.34, + 2.36, + 2.38, + 2.4, + 2.39, + 2.27, + 2.12, + 1.8900000000000001, + 1.67, + 1.49, + 1.33, + 1.28, + 1.24, + 1.27, + 1.31, + 1.36, + 1.4000000000000001, + 1.42, + 1.45, + 1.54, + 1.6600000000000001, + 1.68, + 1.57, + 1.43, + 1.28, + 1.17, + 1.12, + 1.1, + 1.08, + 1.05, + 1.02, + 0.96, + 0.9, + 0.8300000000000001, + 0.72, + 0.62, + 0.42, + 0.2, + 0.0, + -0.18, + -0.31, + -0.4, + -0.55, + -0.73, + -0.98, + -1.28, + -1.57, + -1.9000000000000001, + -2.25, + -2.68, + -3.24, + -3.98, + -4.79, + -5.5, + -6.13, + -6.3, + -6.45, + -6.12, + -5.94, + -5.5, + -5.23, + -4.78, + -4.36, + -3.83, + -3.0700000000000003, + -2.48, + -1.83, + -1.34, + -0.8, + -0.29, + 0.02, + 0.26, + 0.47000000000000003, + 0.78, + 1.18, + 1.56, + 1.73, + 1.82, + 1.76, + 1.69, + 1.67, + 1.67, + 1.71, + 1.77, + 1.84, + 1.9100000000000001, + 2.0100000000000002, + 2.09, + 2.08, + 2.0, + 1.94, + 1.9000000000000001, + 1.86, + 1.78, + 1.71, + 1.6600000000000001, + 1.62, + 1.6, + 1.57, + 1.48, + 1.3900000000000001, + 1.31, + 1.32, + 1.33, + 1.27, + 1.06, + 0.71, + 0.29, + -0.07, + -0.31, + -0.42, + -0.43, + -0.31, + -0.16, + -0.03, + 0.05, + 0.09, + 0.18, + 0.27, + 0.37, + 0.4, + 0.39, + 0.39, + 0.42, + 0.52, + 0.62, + 0.64, + 0.65, + 0.5700000000000001, + 0.5700000000000001, + 0.48, + 0.32, + 0.1, + -0.32, + -0.67, + -0.97, + -1.06, + -0.7000000000000001, + -0.27, + 0.13, + 0.34, + 0.21, + 0.09, + 0.05, + -0.03, + -0.28, + -0.63, + -0.9500000000000001, + -1.1, + -0.92, + -0.56, + 0.06, + 0.64, + 0.9, + 0.85, + 0.63, + 0.29, + -0.01, + -0.32, + -0.53, + -0.49, + -0.59, + -1.03, + -1.7, + -1.9000000000000001, + -1.6, + -0.71, + 0.29, + 0.72, + 0.96, + 0.77, + 0.51, + 0.15, + -0.21, + -0.24, + -0.19, + -0.25, + -0.56, + -0.85, + -0.9400000000000001, + -0.76, + -0.41000000000000003, + -0.32, + -0.27, + -0.21, + -0.18, + -0.31, + -0.63, + -0.77, + -0.54, + -0.38, + -0.37, + -0.38, + -0.36, + -0.17, + -0.06, + -0.06, + -0.29, + -0.55, + -0.56, + -0.43, + -0.21, + 0.01, + 0.18, + 0.22, + 0.06, + -0.46, + -0.91, + -1.24, + -1.5, + -1.43, + -1.41, + -1.43, + -1.67, + -2.1, + -2.72, + -2.89, + -2.85, + -2.29, + -1.59, + -0.97, + -0.54, + -0.42, + -0.26, + -0.04, + 0.11, + 0.17, + 0.03, + -0.14, + -0.3, + -0.42, + -0.58, + -0.73, + -0.74, + -0.7000000000000001, + -0.58, + -0.44, + -0.25, + -0.12, + -0.08, + -0.17, + -0.24, + -0.26, + -0.28, + -0.15, + -0.01, + 0.01, + 0.1, + 0.29, + 0.54, + 0.87, + 1.01, + 0.7000000000000001, + 0.31, + -0.38, + -1.1300000000000001, + -1.6300000000000001, + -1.8900000000000001, + -1.54, + -0.93, + -0.39, + -0.14, + -0.32, + -0.47000000000000003, + -0.44, + -0.56, + -0.85, + -1.01, + -1.24, + -1.24, + -1.16, + -0.91, + -0.54, + -0.37, + -0.19, + 0.21, + 0.56, + 0.59, + 0.4, + 0.05, + -0.22, + -0.25, + -0.22, + 0.0, + 0.27, + 0.31, + 0.31, + 0.06, + -0.13, + -0.09, + -0.05, + -0.08, + -0.1, + -0.11, + -0.15, + -0.04, + -0.07, + -0.11, + -0.32, + -0.56, + -0.58, + -0.77, + -0.9500000000000001, + -1.12, + -1.25, + -1.27, + -1.31, + -1.47, + -1.5, + -1.1400000000000001, + -0.43, + 0.45, + 1.04, + 1.27, + 0.96, + 0.23, + -0.3, + -0.5, + -0.49, + -0.49, + -0.51, + -0.6900000000000001, + -0.86, + -1.19, + -1.49, + -1.5, + -1.3, + -1.1, + -0.9500000000000001, + -0.9 + ], + [ + 1.0, + 1.18, + 1.1, + 1.03, + 1.08, + 1.1500000000000001, + 1.23, + 1.33, + 1.43, + 1.54, + 1.6500000000000001, + 1.77, + 1.8800000000000001, + 2.0, + 2.12, + 2.23, + 2.27, + 2.2800000000000002, + 2.2600000000000002, + 2.2600000000000002, + 2.23, + 2.17, + 2.06, + 1.87, + 1.6600000000000001, + 1.49, + 1.31, + 1.25, + 1.19, + 1.21, + 1.23, + 1.28, + 1.34, + 1.3800000000000001, + 1.41, + 1.44, + 1.53, + 1.61, + 1.59, + 1.47, + 1.3, + 1.21, + 1.1400000000000001, + 1.1, + 1.11, + 1.09, + 1.08, + 1.04, + 0.98, + 0.91, + 0.77, + 0.65, + 0.45, + 0.24, + 0.04, + -0.17, + -0.31, + -0.44, + -0.6, + -0.77, + -1.03, + -1.32, + -1.6400000000000001, + -1.95, + -2.25, + -2.64, + -3.11, + -3.79, + -4.5200000000000005, + -5.28, + -6.0200000000000005, + -6.3, + -6.48, + -6.11, + -5.73, + -5.14, + -4.65, + -4.14, + -3.66, + -3.18, + -2.68, + -2.24, + -1.73, + -1.4000000000000001, + -1.0, + -0.58, + -0.13, + 0.24, + 0.43, + 0.68, + 1.02, + 1.41, + 1.6600000000000001, + 1.8800000000000001, + 1.87, + 1.81, + 1.77, + 1.74, + 1.73, + 1.76, + 1.81, + 1.8800000000000001, + 1.99, + 2.09, + 2.12, + 2.08, + 2.0, + 1.94, + 1.8900000000000001, + 1.84, + 1.77, + 1.7, + 1.6400000000000001, + 1.6, + 1.57, + 1.51, + 1.4000000000000001, + 1.23, + 1.12, + 1.12, + 1.17, + 1.1400000000000001, + 0.97, + 0.63, + 0.16, + -0.23, + -0.49, + -0.62, + -0.6, + -0.56, + -0.41000000000000003, + -0.31, + -0.26, + -0.16, + -0.05, + 0.06, + 0.16, + 0.21, + 0.19, + 0.12, + 0.15, + 0.24, + 0.36, + 0.41000000000000003, + 0.29, + 0.2, + 0.09, + 0.01, + -0.04, + -0.22, + -0.42, + -0.74, + -0.97, + -0.98, + -0.85, + -0.36, + 0.01, + 0.14, + 0.21, + 0.16, + 0.14, + 0.0, + -0.21, + -0.67, + -1.04, + -1.11, + -1.03, + -0.58, + 0.03, + 0.54, + 0.84, + 0.84, + 0.63, + 0.41000000000000003, + 0.14, + -0.06, + -0.22, + -0.26, + -0.35000000000000003, + -0.78, + -1.48, + -2.05, + -1.69, + -0.96, + -0.17, + 0.54, + 0.63, + 0.5700000000000001, + 0.33, + -0.03, + -0.19, + -0.23, + -0.2, + -0.19, + -0.34, + -0.64, + -0.62, + -0.37, + -0.24, + -0.28, + -0.48, + -0.43, + -0.36, + -0.45, + -0.68, + -0.65, + -0.36, + -0.18, + -0.2, + -0.39, + -0.48, + -0.32, + -0.12, + -0.18, + -0.41000000000000003, + -0.61, + -0.66, + -0.49, + -0.25, + -0.07, + 0.1, + 0.17, + -0.07, + -0.42, + -0.8300000000000001, + -1.1300000000000001, + -1.28, + -1.48, + -1.43, + -1.3800000000000001, + -1.42, + -1.7, + -2.06, + -2.48, + -2.29, + -1.92, + -1.32, + -0.74, + -0.52, + -0.45, + -0.4, + -0.14, + 0.1, + 0.17, + 0.13, + -0.07, + -0.23, + -0.37, + -0.51, + -0.67, + -0.75, + -0.68, + -0.5700000000000001, + -0.37, + -0.19, + 0.0, + 0.07, + -0.02, + -0.16, + -0.41000000000000003, + -0.49, + -0.41000000000000003, + -0.22, + 0.02, + 0.12, + 0.24, + 0.47000000000000003, + 0.66, + 0.76, + 0.75, + 0.37, + -0.1, + -0.85, + -1.51, + -1.6600000000000001, + -1.57, + -0.99, + -0.45, + -0.38, + -0.47000000000000003, + -0.38, + -0.17, + -0.27, + -0.5, + -1.03, + -1.35, + -1.52, + -1.5, + -1.07, + -0.58, + -0.16, + 0.1, + 0.32, + 0.62, + 0.74, + 0.43, + 0.19, + 0.05, + -0.02, + 0.03, + 0.12, + 0.16, + 0.22, + 0.06, + -0.17, + -0.2, + -0.18, + -0.14, + -0.18, + -0.24, + -0.23, + -0.11, + 0.08, + 0.37, + 0.41000000000000003, + 0.33, + 0.08, + -0.28, + -0.71, + -1.17, + -1.43, + -1.52, + -1.3900000000000001, + -1.41, + -1.75, + -1.95, + -1.7, + -0.97, + -0.13, + 0.7000000000000001, + 1.01, + 0.9, + 0.5, + -0.03, + -0.29, + -0.32, + -0.31, + -0.44, + -0.5, + -0.81, + -1.12, + -1.54, + -1.73, + -1.43, + -1.02, + -0.72, + -0.58 + ], + [ + 0.9, + 1.07, + 1.04, + 1.03, + 1.07, + 1.1400000000000001, + 1.22, + 1.32, + 1.43, + 1.54, + 1.6500000000000001, + 1.76, + 1.8800000000000001, + 2.0100000000000002, + 2.14, + 2.22, + 2.25, + 2.23, + 2.19, + 2.14, + 2.09, + 1.99, + 1.85, + 1.67, + 1.51, + 1.34, + 1.25, + 1.18, + 1.17, + 1.18, + 1.23, + 1.27, + 1.32, + 1.35, + 1.37, + 1.3900000000000001, + 1.45, + 1.52, + 1.48, + 1.31, + 1.18, + 1.16, + 1.1500000000000001, + 1.16, + 1.16, + 1.16, + 1.12, + 1.05, + 0.97, + 0.81, + 0.6900000000000001, + 0.48, + 0.27, + 0.08, + -0.11, + -0.25, + -0.39, + -0.5700000000000001, + -0.75, + -1.02, + -1.33, + -1.7, + -2.05, + -2.39, + -2.72, + -3.1, + -3.69, + -4.29, + -4.98, + -5.65, + -6.0200000000000005, + -6.38, + -6.11, + -5.76, + -5.1000000000000005, + -4.4, + -3.79, + -3.19, + -2.68, + -2.17, + -1.77, + -1.43, + -1.17, + -0.97, + -0.75, + -0.37, + -0.01, + 0.29, + 0.55, + 0.81, + 1.16, + 1.46, + 1.75, + 1.86, + 1.92, + 1.9000000000000001, + 1.86, + 1.82, + 1.78, + 1.78, + 1.82, + 1.92, + 2.04, + 2.14, + 2.16, + 2.11, + 2.0300000000000002, + 1.94, + 1.9000000000000001, + 1.84, + 1.76, + 1.68, + 1.62, + 1.59, + 1.58, + 1.5, + 1.32, + 1.09, + 0.97, + 0.92, + 0.98, + 1.01, + 0.88, + 0.5700000000000001, + 0.17, + -0.26, + -0.55, + -0.68, + -0.76, + -0.72, + -0.68, + -0.61, + -0.53, + -0.38, + -0.23, + -0.09, + -0.01, + 0.02, + 0.01, + -0.07, + -0.12, + 0.01, + 0.15, + 0.08, + -0.06, + -0.25, + -0.38, + -0.37, + -0.36, + -0.33, + -0.45, + -0.62, + -0.79, + -0.87, + -0.7000000000000001, + -0.5, + -0.22, + -0.04, + 0.02, + 0.11, + 0.05, + -0.02, + -0.41000000000000003, + -0.8, + -1.02, + -1.17, + -0.98, + -0.61, + -0.1, + 0.46, + 0.73, + 0.76, + 0.59, + 0.39, + 0.26, + 0.09, + 0.03, + 0.02, + -0.04, + -0.63, + -1.32, + -1.83, + -2.0100000000000002, + -1.35, + -0.63, + -0.13, + 0.23, + 0.32, + 0.15, + -0.02, + -0.2, + -0.25, + -0.2, + -0.2, + -0.27, + -0.25, + -0.18, + -0.01, + 0.05, + -0.19, + -0.45, + -0.53, + -0.38, + -0.46, + -0.6900000000000001, + -0.71, + -0.35000000000000003, + 0.03, + -0.1, + -0.4, + -0.45, + -0.39, + -0.24, + -0.24, + -0.51, + -0.74, + -0.72, + -0.53, + -0.35000000000000003, + -0.19, + -0.01, + 0.04, + -0.07, + -0.41000000000000003, + -0.6900000000000001, + -0.86, + -1.04, + -1.26, + -1.33, + -1.18, + -0.99, + -1.04, + -1.36, + -1.5, + -1.57, + -1.25, + -0.78, + -0.46, + -0.3, + -0.39, + -0.42, + -0.32, + -0.05, + 0.11, + 0.05, + -0.09, + -0.25, + -0.36, + -0.52, + -0.66, + -0.6900000000000001, + -0.64, + -0.46, + -0.24, + 0.03, + 0.22, + 0.25, + 0.18, + -0.2, + -0.54, + -0.71, + -0.67, + -0.38, + -0.06, + 0.15, + 0.24, + 0.33, + 0.46, + 0.55, + 0.54, + 0.45, + -0.06, + -0.59, + -1.1400000000000001, + -1.48, + -1.26, + -0.9500000000000001, + -0.64, + -0.52, + -0.5, + -0.4, + -0.2, + -0.15, + -0.68, + -1.28, + -1.76, + -1.97, + -1.68, + -1.12, + -0.41000000000000003, + 0.09, + 0.33, + 0.5, + 0.56, + 0.5, + 0.44, + 0.27, + 0.21, + 0.13, + 0.16, + 0.1, + 0.07, + 0.06, + -0.11, + -0.23, + -0.28, + -0.12, + -0.08, + -0.2, + -0.29, + -0.27, + -0.09, + 0.26, + 0.65, + 0.88, + 0.74, + 0.5, + -0.09, + -0.67, + -1.19, + -1.6500000000000001, + -1.52, + -1.41, + -1.58, + -2.05, + -2.38, + -2.4, + -1.6500000000000001, + -0.75, + -0.06, + 0.44, + 0.48, + 0.19, + -0.2, + -0.48, + -0.52, + -0.58, + -0.63, + -0.76, + -0.93, + -1.35, + -1.72, + -1.79, + -1.56, + -1.02, + -0.54, + -0.63 + ], + [ + 0.9500000000000001, + 1.1300000000000001, + 1.05, + 1.0, + 1.06, + 1.1300000000000001, + 1.22, + 1.32, + 1.43, + 1.54, + 1.6500000000000001, + 1.77, + 1.9000000000000001, + 2.04, + 2.16, + 2.23, + 2.25, + 2.19, + 2.13, + 2.07, + 1.99, + 1.86, + 1.69, + 1.54, + 1.3800000000000001, + 1.28, + 1.18, + 1.1500000000000001, + 1.1400000000000001, + 1.18, + 1.23, + 1.28, + 1.32, + 1.33, + 1.33, + 1.33, + 1.3900000000000001, + 1.41, + 1.33, + 1.2, + 1.1400000000000001, + 1.1400000000000001, + 1.19, + 1.23, + 1.24, + 1.24, + 1.1500000000000001, + 1.04, + 0.86, + 0.6900000000000001, + 0.5, + 0.3, + 0.11, + -0.07, + -0.18, + -0.29, + -0.43, + -0.62, + -0.9, + -1.22, + -1.6300000000000001, + -2.05, + -2.49, + -2.86, + -3.24, + -3.71, + -4.2, + -4.75, + -5.3, + -5.58, + -5.93, + -5.83, + -5.72, + -5.14, + -4.47, + -3.7800000000000002, + -3.08, + -2.52, + -1.95, + -1.51, + -1.1400000000000001, + -0.84, + -0.7000000000000001, + -0.5700000000000001, + -0.42, + -0.21, + 0.08, + 0.35000000000000003, + 0.6, + 0.87, + 1.2, + 1.5, + 1.71, + 1.8800000000000001, + 1.94, + 1.97, + 1.94, + 1.8900000000000001, + 1.83, + 1.79, + 1.84, + 1.95, + 2.09, + 2.2, + 2.24, + 2.19, + 2.09, + 2.0100000000000002, + 1.9100000000000001, + 1.83, + 1.74, + 1.6600000000000001, + 1.62, + 1.6400000000000001, + 1.6400000000000001, + 1.53, + 1.31, + 1.07, + 0.8300000000000001, + 0.8200000000000001, + 0.86, + 0.86, + 0.81, + 0.58, + 0.21, + -0.17, + -0.49, + -0.71, + -0.8200000000000001, + -0.9, + -0.9, + -0.85, + -0.71, + -0.54, + -0.33, + -0.2, + -0.13, + -0.12, + -0.18, + -0.28, + -0.3, + -0.21, + -0.2, + -0.23, + -0.46, + -0.71, + -0.78, + -0.73, + -0.56, + -0.42, + -0.41000000000000003, + -0.52, + -0.6, + -0.67, + -0.64, + -0.52, + -0.42, + -0.29, + -0.21, + -0.16, + -0.12, + -0.36, + -0.64, + -0.87, + -1.08, + -1.05, + -0.97, + -0.6900000000000001, + -0.22, + 0.21, + 0.53, + 0.54, + 0.37, + 0.22, + 0.14, + 0.11, + 0.08, + 0.07, + -0.13, + -0.43, + -1.19, + -1.86, + -1.9000000000000001, + -1.74, + -1.17, + -0.64, + -0.15, + 0.13, + 0.12, + -0.02, + -0.13, + -0.24, + -0.29, + -0.27, + -0.18, + -0.03, + 0.18, + 0.36, + 0.35000000000000003, + -0.05, + -0.35000000000000003, + -0.31, + -0.26, + -0.45, + -0.81, + -0.6900000000000001, + -0.36, + -0.05, + 0.04, + -0.19, + -0.39, + -0.29, + -0.18, + -0.35000000000000003, + -0.65, + -0.84, + -0.8300000000000001, + -0.71, + -0.55, + -0.35000000000000003, + -0.16, + -0.01, + -0.12, + -0.36, + -0.56, + -0.7000000000000001, + -0.99, + -1.1500000000000001, + -1.17, + -0.9400000000000001, + -0.51, + -0.28, + -0.46, + -0.6, + -0.66, + -0.51, + -0.32, + -0.06, + -0.11, + -0.31, + -0.44, + -0.4, + -0.26, + -0.08, + -0.01, + -0.16, + -0.35000000000000003, + -0.45, + -0.53, + -0.64, + -0.67, + -0.55, + -0.36, + -0.05, + 0.28, + 0.48, + 0.53, + 0.17, + -0.25, + -0.64, + -0.92, + -0.8, + -0.48, + -0.2, + 0.05, + 0.15, + 0.17, + 0.22, + 0.3, + 0.32, + 0.2, + -0.01, + -0.53, + -0.88, + -1.02, + -1.01, + -0.79, + -0.61, + -0.58, + -0.59, + -0.36, + -0.11, + -0.34, + -0.91, + -1.62, + -2.22, + -2.27, + -1.85, + -1.08, + -0.2, + 0.38, + 0.53, + 0.5, + 0.37, + 0.25, + 0.2, + 0.22, + 0.16, + 0.12, + 0.03, + 0.01, + 0.08, + 0.05, + -0.06, + -0.25, + -0.14, + 0.07, + 0.07, + -0.12, + -0.26, + -0.26, + -0.06, + 0.39, + 0.79, + 0.97, + 0.9500000000000001, + 0.5, + 0.07, + -0.58, + -1.11, + -1.31, + -1.44, + -1.37, + -1.49, + -2.11, + -2.81, + -2.49, + -2.0300000000000002, + -1.31, + -0.64, + -0.3, + -0.14, + -0.35000000000000003, + -0.73, + -0.9500000000000001, + -0.96, + -0.89, + -0.9400000000000001, + -1.03, + -1.22, + -1.57, + -1.8800000000000001, + -2.04, + -1.6300000000000001, + -1.07, + -0.88, + -0.76 + ], + [ + 0.8300000000000001, + 1.01, + 1.0, + 1.0, + 1.05, + 1.12, + 1.21, + 1.32, + 1.43, + 1.54, + 1.6600000000000001, + 1.79, + 1.93, + 2.06, + 2.17, + 2.23, + 2.2, + 2.15, + 2.07, + 2.0, + 1.9000000000000001, + 1.77, + 1.6, + 1.43, + 1.32, + 1.22, + 1.1500000000000001, + 1.11, + 1.1300000000000001, + 1.18, + 1.26, + 1.32, + 1.34, + 1.34, + 1.33, + 1.31, + 1.31, + 1.31, + 1.26, + 1.16, + 1.1, + 1.17, + 1.23, + 1.27, + 1.31, + 1.24, + 1.16, + 0.9500000000000001, + 0.75, + 0.54, + 0.33, + 0.15, + -0.04, + -0.13, + -0.2, + -0.28, + -0.41000000000000003, + -0.66, + -0.99, + -1.4000000000000001, + -1.8800000000000001, + -2.38, + -2.86, + -3.34, + -3.77, + -4.23, + -4.65, + -5.07, + -5.22, + -5.41, + -5.32, + -5.2700000000000005, + -4.9, + -4.49, + -3.86, + -3.17, + -2.58, + -2.0, + -1.55, + -1.11, + -0.77, + -0.5, + -0.33, + -0.27, + -0.17, + -0.04, + 0.16, + 0.4, + 0.64, + 0.9500000000000001, + 1.26, + 1.52, + 1.72, + 1.86, + 1.98, + 2.0, + 2.0, + 1.94, + 1.87, + 1.85, + 1.8800000000000001, + 2.0100000000000002, + 2.17, + 2.31, + 2.35, + 2.29, + 2.19, + 2.05, + 1.93, + 1.81, + 1.7, + 1.62, + 1.6300000000000001, + 1.71, + 1.71, + 1.6500000000000001, + 1.4000000000000001, + 1.08, + 0.9, + 0.78, + 0.76, + 0.76, + 0.7000000000000001, + 0.5700000000000001, + 0.28, + -0.09, + -0.41000000000000003, + -0.68, + -0.88, + -1.01, + -1.06, + -0.98, + -0.85, + -0.6, + -0.36, + -0.25, + -0.2, + -0.24, + -0.34, + -0.48, + -0.56, + -0.59, + -0.54, + -0.7000000000000001, + -0.93, + -1.11, + -1.18, + -1.08, + -0.81, + -0.6, + -0.53, + -0.53, + -0.59, + -0.56, + -0.58, + -0.54, + -0.48, + -0.49, + -0.4, + -0.44, + -0.53, + -0.68, + -0.85, + -1.01, + -0.99, + -0.96, + -0.93, + -0.79, + -0.43, + -0.02, + 0.21, + 0.23, + 0.13, + -0.01, + -0.07, + -0.05, + -0.07, + -0.13, + -0.23, + -0.58, + -1.04, + -1.55, + -1.97, + -1.81, + -1.57, + -0.98, + -0.38, + -0.04, + 0.11, + 0.04, + -0.06, + -0.16, + -0.3, + -0.31, + -0.16, + 0.04, + 0.33, + 0.53, + 0.39, + 0.19, + -0.05, + -0.1, + -0.09, + -0.29, + -0.64, + -0.84, + -0.4, + 0.03, + 0.04, + -0.06, + -0.16, + -0.13, + -0.19, + -0.38, + -0.6900000000000001, + -0.9500000000000001, + -1.01, + -0.93, + -0.79, + -0.58, + -0.31, + -0.1, + -0.09, + -0.33, + -0.59, + -0.8300000000000001, + -1.07, + -1.21, + -1.1300000000000001, + -0.54, + 0.09, + 0.21, + 0.29, + -0.02, + -0.01, + -0.07, + 0.04, + 0.03, + -0.04, + -0.21, + -0.43, + -0.51, + -0.41000000000000003, + -0.24, + -0.14, + -0.23, + -0.44, + -0.5700000000000001, + -0.61, + -0.64, + -0.62, + -0.52, + -0.26, + 0.1, + 0.48, + 0.8200000000000001, + 0.62, + 0.23, + -0.33, + -0.8, + -0.89, + -0.81, + -0.5700000000000001, + -0.31, + -0.15, + -0.06, + -0.02, + 0.0, + 0.02, + 0.03, + -0.05, + -0.28, + -0.51, + -0.66, + -0.6900000000000001, + -0.65, + -0.5700000000000001, + -0.55, + -0.56, + -0.46, + -0.27, + -0.23, + -0.41000000000000003, + -1.02, + -1.87, + -2.33, + -2.37, + -1.87, + -0.91, + -0.06, + 0.48, + 0.67, + 0.42, + 0.14, + -0.01, + -0.07, + 0.04, + 0.05, + -0.06, + -0.17, + -0.01, + 0.15, + 0.17, + 0.06, + -0.04, + 0.04, + 0.22, + 0.25, + 0.07, + -0.14, + -0.14, + 0.08, + 0.36, + 0.71, + 0.85, + 0.65, + 0.41000000000000003, + -0.07, + -0.47000000000000003, + -0.76, + -1.03, + -1.19, + -1.16, + -1.58, + -2.11, + -2.33, + -2.35, + -1.85, + -1.4000000000000001, + -1.1, + -0.86, + -0.8200000000000001, + -1.0, + -1.28, + -1.47, + -1.42, + -1.24, + -1.12, + -1.16, + -1.36, + -1.69, + -2.09, + -2.06, + -1.8900000000000001, + -1.46, + -1.19, + -1.3 + ], + [ + 0.88, + 1.06, + 1.0, + 0.97, + 1.03, + 1.11, + 1.21, + 1.31, + 1.42, + 1.54, + 1.6600000000000001, + 1.8, + 1.93, + 2.05, + 2.13, + 2.16, + 2.14, + 2.06, + 1.99, + 1.92, + 1.84, + 1.67, + 1.5, + 1.37, + 1.26, + 1.17, + 1.1, + 1.08, + 1.11, + 1.2, + 1.31, + 1.3800000000000001, + 1.4000000000000001, + 1.3800000000000001, + 1.35, + 1.32, + 1.28, + 1.25, + 1.22, + 1.16, + 1.16, + 1.19, + 1.24, + 1.29, + 1.25, + 1.22, + 1.02, + 0.84, + 0.6, + 0.38, + 0.2, + 0.01, + -0.08, + -0.15, + -0.2, + -0.25, + -0.44, + -0.72, + -1.11, + -1.6, + -2.1, + -2.64, + -3.17, + -3.65, + -4.2, + -4.57, + -4.97, + -5.01, + -5.07, + -4.8500000000000005, + -4.67, + -4.4, + -4.09, + -3.68, + -3.19, + -2.65, + -2.1, + -1.6600000000000001, + -1.26, + -0.91, + -0.59, + -0.35000000000000003, + -0.19, + -0.09, + -0.05, + 0.08, + 0.24, + 0.47000000000000003, + 0.75, + 1.04, + 1.34, + 1.59, + 1.75, + 1.8800000000000001, + 1.96, + 2.0100000000000002, + 2.0, + 1.96, + 1.9100000000000001, + 1.9000000000000001, + 1.97, + 2.1, + 2.3000000000000003, + 2.47, + 2.5, + 2.42, + 2.27, + 2.09, + 1.93, + 1.78, + 1.6500000000000001, + 1.56, + 1.58, + 1.68, + 1.84, + 1.73, + 1.55, + 1.27, + 0.97, + 0.84, + 0.71, + 0.63, + 0.59, + 0.47000000000000003, + 0.27, + -0.04, + -0.37, + -0.65, + -0.9, + -1.06, + -1.12, + -1.09, + -0.9, + -0.67, + -0.47000000000000003, + -0.26, + -0.27, + -0.31, + -0.5, + -0.73, + -0.9, + -1.01, + -1.09, + -1.19, + -1.36, + -1.54, + -1.59, + -1.47, + -1.18, + -0.89, + -0.74, + -0.7000000000000001, + -0.67, + -0.59, + -0.53, + -0.48, + -0.43, + -0.39, + -0.48, + -0.59, + -0.85, + -0.93, + -1.07, + -1.0, + -0.93, + -0.9, + -0.9400000000000001, + -0.79, + -0.56, + -0.22, + -0.01, + 0.04, + -0.05, + -0.15, + -0.18, + -0.22, + -0.25, + -0.34, + -0.42, + -0.6, + -0.89, + -1.32, + -1.69, + -1.96, + -1.69, + -1.31, + -0.7000000000000001, + -0.12, + 0.04, + 0.06, + 0.04, + -0.03, + -0.18, + -0.29, + -0.26, + -0.05, + 0.18, + 0.35000000000000003, + 0.41000000000000003, + 0.26, + 0.16, + 0.18, + 0.2, + -0.17, + -0.56, + -0.63, + -0.45, + -0.11, + 0.1, + 0.0, + -0.05, + -0.1, + -0.15, + -0.41000000000000003, + -0.75, + -0.98, + -1.12, + -1.1, + -0.99, + -0.76, + -0.4, + -0.17, + -0.17, + -0.34, + -0.67, + -1.0, + -1.27, + -1.37, + -0.86, + -0.16, + 0.33, + 0.7000000000000001, + 0.3, + 0.13, + -0.06, + 0.01, + -0.01, + -0.05, + -0.1, + -0.22, + -0.37, + -0.54, + -0.55, + -0.35000000000000003, + -0.25, + -0.39, + -0.58, + -0.68, + -0.7000000000000001, + -0.67, + -0.63, + -0.47000000000000003, + -0.24, + 0.19, + 0.68, + 0.81, + 0.79, + 0.19, + -0.48, + -0.79, + -0.87, + -0.74, + -0.56, + -0.41000000000000003, + -0.32, + -0.25, + -0.21, + -0.19, + -0.19, + -0.24, + -0.33, + -0.5, + -0.53, + -0.54, + -0.44, + -0.34, + -0.4, + -0.44, + -0.43, + -0.38, + -0.3, + -0.25, + -0.56, + -1.11, + -1.75, + -2.2600000000000002, + -2.2800000000000002, + -1.72, + -0.91, + -0.07, + 0.52, + 0.55, + 0.37, + 0.01, + -0.26, + -0.16, + -0.06, + -0.12, + -0.22, + -0.12, + -0.01, + 0.19, + 0.36, + 0.23, + 0.07, + 0.2, + 0.45, + 0.48, + 0.28, + 0.13, + 0.13, + 0.21, + 0.38, + 0.5, + 0.44, + 0.29, + 0.07, + -0.18, + -0.3, + -0.47000000000000003, + -0.8200000000000001, + -1.1400000000000001, + -1.47, + -1.61, + -1.93, + -2.0300000000000002, + -1.76, + -1.4000000000000001, + -1.28, + -1.3, + -1.27, + -1.31, + -1.46, + -1.75, + -1.9000000000000001, + -1.71, + -1.46, + -1.2, + -1.11, + -1.3, + -1.6600000000000001, + -1.97, + -2.2, + -1.94, + -1.72, + -1.75, + -1.9000000000000001 + ], + [ + 0.75, + 0.93, + 0.9400000000000001, + 0.96, + 1.02, + 1.1, + 1.19, + 1.3, + 1.42, + 1.53, + 1.6500000000000001, + 1.78, + 1.9000000000000001, + 2.0, + 2.06, + 2.08, + 2.05, + 1.99, + 1.93, + 1.85, + 1.73, + 1.58, + 1.41, + 1.28, + 1.19, + 1.11, + 1.05, + 1.02, + 1.1, + 1.23, + 1.36, + 1.46, + 1.46, + 1.42, + 1.3800000000000001, + 1.33, + 1.3, + 1.26, + 1.23, + 1.21, + 1.21, + 1.21, + 1.24, + 1.2, + 1.17, + 1.02, + 0.86, + 0.64, + 0.43, + 0.25, + 0.08, + -0.03, + -0.1, + -0.15, + -0.17, + -0.31, + -0.53, + -0.88, + -1.33, + -1.79, + -2.29, + -2.77, + -3.24, + -3.7600000000000002, + -4.23, + -4.75, + -4.83, + -4.89, + -4.59, + -4.26, + -3.95, + -3.58, + -3.2800000000000002, + -2.9, + -2.52, + -2.11, + -1.73, + -1.3800000000000001, + -1.08, + -0.8, + -0.54, + -0.33, + -0.18, + -0.11, + -0.02, + 0.1, + 0.29, + 0.55, + 0.84, + 1.1400000000000001, + 1.45, + 1.62, + 1.79, + 1.8800000000000001, + 1.97, + 2.0100000000000002, + 2.0, + 1.97, + 1.93, + 1.95, + 2.04, + 2.25, + 2.5, + 2.66, + 2.68, + 2.57, + 2.34, + 2.1, + 1.8800000000000001, + 1.71, + 1.51, + 1.4000000000000001, + 1.43, + 1.58, + 1.75, + 1.8900000000000001, + 1.72, + 1.49, + 1.26, + 0.98, + 0.78, + 0.55, + 0.44, + 0.37, + 0.21, + -0.05, + -0.35000000000000003, + -0.64, + -0.89, + -1.07, + -1.17, + -1.1400000000000001, + -1.04, + -0.87, + -0.62, + -0.47000000000000003, + -0.3, + -0.45, + -0.63, + -0.96, + -1.3, + -1.47, + -1.61, + -1.69, + -1.8, + -1.87, + -1.97, + -1.76, + -1.43, + -1.08, + -0.84, + -0.77, + -0.65, + -0.61, + -0.47000000000000003, + -0.37, + -0.24, + -0.15, + -0.32, + -0.6, + -0.8200000000000001, + -1.1, + -0.99, + -0.97, + -0.8, + -0.77, + -0.73, + -0.71, + -0.45, + -0.18, + 0.01, + 0.07, + 0.02, + -0.06, + -0.15, + -0.22, + -0.32, + -0.39, + -0.49, + -0.47000000000000003, + -0.59, + -1.0, + -1.49, + -1.72, + -1.92, + -1.46, + -0.96, + -0.41000000000000003, + -0.01, + 0.11, + 0.16, + 0.05, + -0.11, + -0.29, + -0.43, + -0.37, + -0.17, + 0.04, + 0.2, + 0.27, + 0.27, + 0.32, + 0.18, + -0.03, + -0.43, + -0.65, + -0.43, + -0.13, + -0.01, + 0.01, + -0.08, + -0.12, + -0.24, + -0.45, + -0.73, + -0.99, + -1.11, + -1.1500000000000001, + -1.04, + -0.78, + -0.47000000000000003, + -0.24, + -0.21, + -0.44, + -0.79, + -1.21, + -1.54, + -1.31, + -0.76, + 0.0, + 0.7000000000000001, + 0.41000000000000003, + 0.01, + -0.35000000000000003, + -0.48, + -0.38, + -0.28, + -0.22, + -0.2, + -0.19, + -0.28, + -0.45, + -0.55, + -0.51, + -0.44, + -0.55, + -0.77, + -0.86, + -0.8, + -0.72, + -0.62, + -0.48, + -0.14, + 0.2, + 0.55, + 0.87, + 0.5700000000000001, + 0.06, + -0.48, + -0.8300000000000001, + -0.8200000000000001, + -0.66, + -0.53, + -0.47000000000000003, + -0.41000000000000003, + -0.37, + -0.32, + -0.29, + -0.32, + -0.37, + -0.48, + -0.51, + -0.54, + -0.36, + -0.22, + -0.23, + -0.24, + -0.3, + -0.32, + -0.3, + -0.29, + -0.4, + -0.66, + -1.1500000000000001, + -1.67, + -2.14, + -2.22, + -1.78, + -1.01, + -0.2, + 0.33, + 0.52, + 0.27, + -0.07, + -0.24, + -0.26, + -0.25, + -0.23, + -0.22, + -0.1, + 0.07, + 0.28, + 0.35000000000000003, + 0.34, + 0.32, + 0.4, + 0.6, + 0.73, + 0.6, + 0.47000000000000003, + 0.39, + 0.34, + 0.34, + 0.22, + 0.12, + 0.01, + -0.15, + -0.08, + -0.1, + -0.28, + -0.66, + -1.3800000000000001, + -1.96, + -2.07, + -2.0300000000000002, + -1.79, + -1.26, + -1.1300000000000001, + -1.18, + -1.33, + -1.51, + -1.56, + -1.7, + -1.94, + -2.06, + -1.93, + -1.52, + -1.16, + -0.97, + -1.07, + -1.48, + -1.86, + -1.99, + -1.95, + -2.02, + -2.19, + -2.27 + ], + [ + 0.8, + 0.97, + 0.9400000000000001, + 0.93, + 1.0, + 1.08, + 1.18, + 1.28, + 1.4000000000000001, + 1.51, + 1.62, + 1.75, + 1.86, + 1.94, + 1.99, + 1.99, + 1.96, + 1.92, + 1.87, + 1.76, + 1.6300000000000001, + 1.44, + 1.28, + 1.18, + 1.11, + 1.05, + 0.99, + 1.01, + 1.08, + 1.24, + 1.41, + 1.49, + 1.49, + 1.45, + 1.4000000000000001, + 1.36, + 1.33, + 1.29, + 1.26, + 1.24, + 1.2, + 1.19, + 1.1300000000000001, + 1.08, + 0.96, + 0.8200000000000001, + 0.63, + 0.44, + 0.28, + 0.12, + 0.02, + -0.05, + -0.11, + -0.15, + -0.26, + -0.45, + -0.73, + -1.1300000000000001, + -1.55, + -1.99, + -2.4, + -2.71, + -3.1, + -3.54, + -4.0600000000000005, + -4.42, + -4.69, + -4.46, + -4.15, + -3.75, + -3.2600000000000002, + -2.96, + -2.56, + -2.29, + -1.96, + -1.68, + -1.43, + -1.19, + -0.99, + -0.77, + -0.56, + -0.4, + -0.3, + -0.2, + -0.11, + 0.05, + 0.29, + 0.59, + 0.9, + 1.23, + 1.43, + 1.6400000000000001, + 1.75, + 1.87, + 1.96, + 2.0300000000000002, + 2.02, + 1.99, + 1.96, + 1.97, + 2.13, + 2.41, + 2.68, + 2.86, + 2.88, + 2.7, + 2.43, + 2.07, + 1.77, + 1.53, + 1.32, + 1.19, + 1.16, + 1.4000000000000001, + 1.69, + 1.86, + 1.96, + 1.78, + 1.61, + 1.32, + 0.9400000000000001, + 0.61, + 0.34, + 0.24, + 0.16, + -0.04, + -0.31, + -0.6, + -0.84, + -1.05, + -1.18, + -1.24, + -1.26, + -1.19, + -0.97, + -0.74, + -0.61, + -0.55, + -0.8300000000000001, + -1.21, + -1.57, + -1.94, + -2.0300000000000002, + -2.12, + -2.04, + -2.05, + -1.9000000000000001, + -1.7, + -1.27, + -0.81, + -0.58, + -0.47000000000000003, + -0.47000000000000003, + -0.45, + -0.41000000000000003, + -0.26, + -0.07, + -0.03, + -0.03, + -0.41000000000000003, + -0.73, + -0.76, + -0.78, + -0.5700000000000001, + -0.47000000000000003, + -0.38, + -0.4, + -0.36, + -0.2, + -0.01, + 0.17, + 0.22, + 0.21, + 0.14, + 0.01, + -0.08, + -0.21, + -0.32, + -0.32, + -0.27, + -0.34, + -0.5700000000000001, + -1.08, + -1.53, + -1.6300000000000001, + -1.6400000000000001, + -1.11, + -0.55, + -0.13, + 0.17, + 0.15, + 0.07, + -0.12, + -0.39, + -0.5700000000000001, + -0.6900000000000001, + -0.58, + -0.31, + -0.09, + 0.13, + 0.23, + 0.17, + 0.11, + -0.15, + -0.45, + -0.55, + -0.49, + -0.21, + -0.03, + -0.09, + -0.17, + -0.26, + -0.34, + -0.49, + -0.7000000000000001, + -0.89, + -1.03, + -1.07, + -0.99, + -0.76, + -0.46, + -0.27, + -0.3, + -0.5, + -0.9500000000000001, + -1.46, + -1.6600000000000001, + -1.54, + -0.73, + 0.2, + 0.32, + 0.13, + -0.49, + -1.09, + -1.0, + -0.8, + -0.55, + -0.37, + -0.22, + -0.05, + -0.11, + -0.35000000000000003, + -0.54, + -0.6, + -0.63, + -0.8300000000000001, + -1.03, + -1.03, + -0.9400000000000001, + -0.75, + -0.62, + -0.32, + -0.04, + 0.24, + 0.42, + 0.48, + 0.37, + -0.12, + -0.61, + -0.78, + -0.74, + -0.61, + -0.51, + -0.46, + -0.44, + -0.4, + -0.34, + -0.29, + -0.31, + -0.38, + -0.43, + -0.46, + -0.33, + -0.16, + -0.16, + -0.14, + -0.2, + -0.19, + -0.21, + -0.22, + -0.32, + -0.48, + -0.77, + -1.2, + -1.77, + -2.29, + -2.44, + -2.07, + -1.3, + -0.44, + 0.19, + 0.4, + 0.28, + -0.08, + -0.32, + -0.43, + -0.47000000000000003, + -0.47000000000000003, + -0.33, + -0.12, + 0.11, + 0.22, + 0.37, + 0.47000000000000003, + 0.55, + 0.63, + 0.8200000000000001, + 0.84, + 0.79, + 0.64, + 0.47000000000000003, + 0.33, + 0.12, + 0.05, + 0.0, + -0.08, + 0.05, + 0.11, + 0.19, + 0.12, + -0.75, + -1.76, + -2.29, + -2.67, + -2.33, + -1.78, + -1.32, + -0.99, + -1.17, + -1.45, + -1.56, + -1.59, + -1.72, + -1.99, + -2.12, + -1.93, + -1.52, + -1.0, + -0.71, + -0.91, + -1.29, + -1.6500000000000001, + -1.8900000000000001, + -2.0300000000000002, + -2.23, + -2.58, + -2.85 + ], + [ + 0.6900000000000001, + 0.87, + 0.89, + 0.92, + 0.98, + 1.06, + 1.16, + 1.26, + 1.37, + 1.48, + 1.59, + 1.71, + 1.81, + 1.8900000000000001, + 1.92, + 1.9100000000000001, + 1.8900000000000001, + 1.85, + 1.77, + 1.67, + 1.45, + 1.26, + 1.1300000000000001, + 1.05, + 1.02, + 0.99, + 0.98, + 1.0, + 1.12, + 1.29, + 1.43, + 1.5, + 1.48, + 1.43, + 1.3800000000000001, + 1.35, + 1.32, + 1.27, + 1.23, + 1.16, + 1.12, + 1.05, + 0.99, + 0.87, + 0.75, + 0.59, + 0.41000000000000003, + 0.27, + 0.14, + 0.04, + -0.02, + -0.08, + -0.13, + -0.24, + -0.41000000000000003, + -0.66, + -1.01, + -1.37, + -1.75, + -2.1, + -2.32, + -2.58, + -2.82, + -3.18, + -3.67, + -4.07, + -4.21, + -4.13, + -3.79, + -3.33, + -2.92, + -2.45, + -2.17, + -1.83, + -1.61, + -1.3900000000000001, + -1.23, + -1.09, + -0.93, + -0.78, + -0.63, + -0.54, + -0.46, + -0.38, + -0.26, + -0.05, + 0.22, + 0.58, + 0.93, + 1.17, + 1.4000000000000001, + 1.55, + 1.69, + 1.83, + 1.97, + 2.0300000000000002, + 2.07, + 2.02, + 1.95, + 2.0, + 2.19, + 2.5, + 2.84, + 3.0300000000000002, + 3.02, + 2.85, + 2.47, + 2.05, + 1.6400000000000001, + 1.32, + 1.12, + 0.9400000000000001, + 0.98, + 1.1300000000000001, + 1.51, + 1.87, + 1.96, + 2.07, + 1.8800000000000001, + 1.71, + 1.2, + 0.63, + 0.33, + 0.19, + 0.12, + 0.0, + -0.24, + -0.51, + -0.77, + -1.01, + -1.2, + -1.37, + -1.48, + -1.46, + -1.4000000000000001, + -1.1, + -0.92, + -0.86, + -0.9500000000000001, + -1.34, + -1.86, + -2.09, + -2.4, + -2.22, + -2.0300000000000002, + -1.74, + -1.45, + -1.05, + -0.55, + -0.16, + 0.05, + 0.07, + -0.12, + -0.24, + -0.31, + -0.25, + -0.1, + 0.05, + -0.07, + -0.24, + -0.39, + -0.38, + -0.21, + 0.03, + 0.1, + 0.17, + 0.03, + -0.06, + -0.01, + 0.11, + 0.21, + 0.27, + 0.26, + 0.2, + 0.13, + 0.03, + -0.06, + -0.2, + -0.21, + -0.09, + -0.02, + -0.33, + -0.6900000000000001, + -1.1400000000000001, + -1.41, + -1.47, + -1.3, + -0.75, + -0.17, + -0.01, + 0.03, + -0.08, + -0.22, + -0.42, + -0.6900000000000001, + -0.8200000000000001, + -0.8200000000000001, + -0.65, + -0.35000000000000003, + -0.11, + -0.03, + -0.04, + -0.11, + -0.28, + -0.44, + -0.58, + -0.42, + -0.19, + -0.12, + -0.19, + -0.32, + -0.46, + -0.49, + -0.5, + -0.63, + -0.75, + -0.86, + -0.96, + -0.89, + -0.66, + -0.41000000000000003, + -0.28, + -0.32, + -0.56, + -0.98, + -1.57, + -2.02, + -1.59, + -0.85, + -0.2, + 0.16, + -0.38, + -1.12, + -1.42, + -1.44, + -1.05, + -0.66, + -0.39, + -0.11, + 0.04, + 0.04, + -0.21, + -0.56, + -0.73, + -0.88, + -1.08, + -1.23, + -1.26, + -0.93, + -0.72, + -0.4, + -0.13, + 0.18, + 0.37, + 0.31, + 0.14, + -0.04, + -0.37, + -0.65, + -0.73, + -0.64, + -0.52, + -0.43, + -0.42, + -0.42, + -0.38, + -0.31, + -0.22, + -0.21, + -0.29, + -0.36, + -0.31, + -0.17, + -0.16, + -0.14, + -0.23, + -0.25, + -0.19, + -0.14, + -0.24, + -0.38, + -0.5700000000000001, + -0.8, + -1.3, + -1.98, + -2.5500000000000003, + -2.9, + -2.56, + -1.62, + -0.7000000000000001, + 0.02, + 0.34, + 0.12, + -0.18, + -0.44, + -0.64, + -0.79, + -0.89, + -0.56, + -0.15, + 0.0, + 0.09, + 0.32, + 0.64, + 0.68, + 0.77, + 0.79, + 0.75, + 0.64, + 0.48, + 0.27, + -0.04, + -0.19, + -0.08, + 0.02, + 0.22, + 0.35000000000000003, + 0.46, + 0.58, + 0.09, + -0.63, + -1.79, + -2.79, + -2.88, + -2.73, + -2.07, + -1.37, + -1.22, + -1.34, + -1.55, + -1.59, + -1.6400000000000001, + -1.72, + -1.94, + -2.14, + -1.96, + -1.36, + -0.79, + -0.52, + -0.59, + -1.05, + -1.5, + -1.74, + -2.0300000000000002, + -2.45, + -3.06, + -3.0100000000000002 + ], + [ + 0.74, + 0.89, + 0.89, + 0.9, + 0.97, + 1.04, + 1.1400000000000001, + 1.24, + 1.35, + 1.46, + 1.57, + 1.67, + 1.77, + 1.85, + 1.8800000000000001, + 1.86, + 1.82, + 1.74, + 1.6600000000000001, + 1.47, + 1.26, + 1.08, + 0.9400000000000001, + 0.91, + 0.91, + 0.93, + 0.98, + 1.05, + 1.18, + 1.33, + 1.46, + 1.48, + 1.44, + 1.3800000000000001, + 1.32, + 1.28, + 1.25, + 1.21, + 1.11, + 1.04, + 0.9400000000000001, + 0.87, + 0.75, + 0.64, + 0.51, + 0.37, + 0.24, + 0.13, + 0.04, + -0.01, + -0.08, + -0.12, + -0.23, + -0.38, + -0.6, + -0.91, + -1.23, + -1.55, + -1.85, + -2.0300000000000002, + -2.22, + -2.35, + -2.5500000000000003, + -2.93, + -3.33, + -3.7, + -3.87, + -3.79, + -3.5500000000000003, + -3.14, + -2.69, + -2.3000000000000003, + -1.9000000000000001, + -1.6500000000000001, + -1.4000000000000001, + -1.26, + -1.1500000000000001, + -1.04, + -0.93, + -0.81, + -0.74, + -0.68, + -0.65, + -0.5700000000000001, + -0.4, + -0.19, + 0.16, + 0.53, + 0.85, + 1.12, + 1.29, + 1.45, + 1.62, + 1.8, + 1.95, + 2.06, + 2.07, + 2.04, + 1.97, + 1.97, + 2.18, + 2.56, + 2.89, + 3.12, + 3.14, + 2.94, + 2.57, + 2.0, + 1.53, + 1.21, + 0.9500000000000001, + 0.81, + 0.74, + 0.97, + 1.3, + 1.6500000000000001, + 1.93, + 2.0, + 2.11, + 1.78, + 1.35, + 0.75, + 0.26, + 0.13, + 0.14, + 0.03, + -0.16, + -0.4, + -0.67, + -0.92, + -1.19, + -1.41, + -1.52, + -1.6300000000000001, + -1.49, + -1.3900000000000001, + -1.21, + -1.11, + -1.12, + -1.35, + -1.68, + -2.08, + -2.09, + -2.05, + -1.57, + -1.0, + -0.54, + 0.0, + 0.43, + 0.6900000000000001, + 0.78, + 0.55, + 0.3, + -0.05, + -0.23, + -0.26, + -0.19, + -0.13, + -0.15, + -0.19, + -0.18, + 0.01, + 0.35000000000000003, + 0.48, + 0.67, + 0.47000000000000003, + 0.27, + 0.07, + -0.03, + 0.04, + 0.08, + 0.12, + 0.14, + 0.11, + 0.1, + 0.03, + -0.07, + -0.16, + -0.12, + 0.03, + 0.03, + -0.12, + -0.56, + -0.89, + -1.3, + -1.53, + -1.37, + -0.99, + -0.55, + -0.28, + -0.29, + -0.33, + -0.38, + -0.39, + -0.6, + -0.8, + -0.85, + -0.81, + -0.6, + -0.36, + -0.27, + -0.24, + -0.3, + -0.32, + -0.43, + -0.47000000000000003, + -0.38, + -0.22, + -0.13, + -0.27, + -0.49, + -0.56, + -0.59, + -0.5700000000000001, + -0.55, + -0.64, + -0.68, + -0.73, + -0.71, + -0.52, + -0.27, + -0.17, + -0.27, + -0.49, + -0.97, + -1.6, + -1.96, + -1.9000000000000001, + -1.1300000000000001, + -0.43, + -0.42, + -0.85, + -1.44, + -1.8, + -1.56, + -1.07, + -0.64, + -0.29, + -0.02, + 0.16, + 0.1, + -0.23, + -0.6, + -0.87, + -1.06, + -1.26, + -1.3900000000000001, + -1.1300000000000001, + -0.85, + -0.45, + -0.13, + 0.19, + 0.54, + 0.48, + 0.22, + -0.02, + -0.36, + -0.52, + -0.65, + -0.63, + -0.49, + -0.38, + -0.3, + -0.3, + -0.36, + -0.34, + -0.24, + -0.15, + -0.14, + -0.2, + -0.26, + -0.24, + -0.21, + -0.18, + -0.28, + -0.41000000000000003, + -0.29, + -0.17, + -0.15, + -0.27, + -0.44, + -0.64, + -0.9500000000000001, + -1.42, + -2.13, + -2.93, + -3.25, + -2.94, + -2.05, + -0.92, + -0.13, + 0.08, + -0.02, + -0.28, + -0.5700000000000001, + -0.81, + -1.11, + -1.06, + -0.84, + -0.4, + -0.1, + 0.02, + 0.23, + 0.46, + 0.68, + 0.63, + 0.52, + 0.43, + 0.26, + 0.1, + -0.18, + -0.44, + -0.4, + -0.25, + 0.24, + 0.54, + 0.63, + 0.77, + 0.59, + 0.26, + -0.79, + -1.9100000000000001, + -2.7800000000000002, + -3.18, + -2.87, + -2.34, + -1.76, + -1.45, + -1.56, + -1.71, + -1.79, + -1.8, + -1.9000000000000001, + -2.08, + -2.18, + -1.84, + -1.26, + -0.56, + -0.18, + -0.38, + -0.76, + -1.17, + -1.49, + -1.92, + -2.48, + -2.99, + -3.31 + ], + [ + 0.67, + 0.8200000000000001, + 0.86, + 0.9, + 0.96, + 1.04, + 1.1300000000000001, + 1.24, + 1.34, + 1.45, + 1.54, + 1.6400000000000001, + 1.74, + 1.81, + 1.85, + 1.84, + 1.75, + 1.6600000000000001, + 1.49, + 1.3, + 1.08, + 0.87, + 0.78, + 0.75, + 0.8, + 0.87, + 0.96, + 1.08, + 1.22, + 1.37, + 1.43, + 1.4000000000000001, + 1.35, + 1.29, + 1.23, + 1.18, + 1.1500000000000001, + 1.07, + 0.98, + 0.85, + 0.75, + 0.63, + 0.51, + 0.41000000000000003, + 0.29, + 0.18, + 0.08, + 0.01, + -0.04, + -0.1, + -0.16, + -0.25, + -0.39, + -0.59, + -0.85, + -1.1300000000000001, + -1.3800000000000001, + -1.6300000000000001, + -1.78, + -1.95, + -2.08, + -2.22, + -2.5100000000000002, + -2.83, + -3.19, + -3.48, + -3.6, + -3.56, + -3.34, + -3.04, + -2.62, + -2.22, + -1.8800000000000001, + -1.57, + -1.3900000000000001, + -1.25, + -1.16, + -1.07, + -0.98, + -0.89, + -0.8300000000000001, + -0.8300000000000001, + -0.8, + -0.71, + -0.56, + -0.27, + 0.07, + 0.45, + 0.78, + 0.99, + 1.16, + 1.35, + 1.56, + 1.75, + 1.94, + 2.02, + 2.07, + 2.0100000000000002, + 1.92, + 1.94, + 2.13, + 2.48, + 2.87, + 3.1, + 3.17, + 3.0, + 2.56, + 2.02, + 1.52, + 1.1300000000000001, + 0.92, + 0.71, + 0.6900000000000001, + 0.79, + 1.11, + 1.43, + 1.67, + 1.83, + 1.86, + 1.79, + 1.29, + 0.7000000000000001, + 0.26, + 0.07, + 0.05, + 0.02, + -0.12, + -0.28, + -0.52, + -0.8, + -1.08, + -1.24, + -1.4000000000000001, + -1.3800000000000001, + -1.36, + -1.3900000000000001, + -1.42, + -1.23, + -1.11, + -1.1400000000000001, + -1.28, + -1.44, + -1.52, + -1.23, + -0.71, + -0.09, + 0.61, + 1.05, + 1.33, + 1.46, + 1.23, + 0.97, + 0.5, + 0.14, + -0.13, + -0.24, + -0.3, + -0.31, + -0.28, + -0.27, + -0.07, + 0.26, + 0.52, + 0.78, + 0.68, + 0.46, + 0.16, + -0.07, + -0.12, + -0.08, + -0.02, + -0.01, + 0.01, + 0.04, + 0.02, + -0.04, + -0.14, + -0.19, + -0.15, + 0.01, + 0.09, + -0.23, + -0.62, + -1.03, + -1.4000000000000001, + -1.6300000000000001, + -1.6600000000000001, + -1.31, + -0.96, + -0.74, + -0.67, + -0.59, + -0.41000000000000003, + -0.41000000000000003, + -0.47000000000000003, + -0.65, + -0.81, + -0.79, + -0.65, + -0.48, + -0.37, + -0.38, + -0.32, + -0.32, + -0.37, + -0.42, + -0.33, + -0.21, + -0.21, + -0.33, + -0.49, + -0.63, + -0.61, + -0.59, + -0.59, + -0.58, + -0.59, + -0.52, + -0.46, + -0.26, + -0.04, + -0.05, + -0.16, + -0.36, + -0.75, + -1.44, + -1.99, + -1.84, + -1.35, + -0.87, + -0.81, + -1.29, + -1.8800000000000001, + -1.95, + -1.58, + -1.03, + -0.47000000000000003, + -0.13, + 0.11, + 0.24, + 0.14, + -0.2, + -0.6900000000000001, + -1.03, + -1.27, + -1.44, + -1.26, + -0.99, + -0.52, + -0.1, + 0.14, + 0.47000000000000003, + 0.67, + 0.6900000000000001, + 0.3, + -0.14, + -0.34, + -0.47000000000000003, + -0.52, + -0.49, + -0.41000000000000003, + -0.29, + -0.24, + -0.24, + -0.26, + -0.25, + -0.16, + -0.06, + -0.04, + -0.14, + -0.21, + -0.27, + -0.28, + -0.3, + -0.41000000000000003, + -0.4, + -0.3, + -0.14, + -0.06, + -0.21, + -0.51, + -0.73, + -1.09, + -1.6, + -2.33, + -3.11, + -3.63, + -3.35, + -2.34, + -1.23, + -0.46, + -0.12, + -0.12, + -0.31, + -0.52, + -0.8200000000000001, + -1.1300000000000001, + -1.3, + -0.9500000000000001, + -0.53, + -0.25, + -0.11, + 0.04, + 0.19, + 0.3, + 0.29, + 0.2, + 0.06, + -0.05, + -0.16, + -0.37, + -0.51, + -0.52, + -0.09, + 0.37, + 0.65, + 0.84, + 0.74, + 0.62, + -0.03, + -0.97, + -2.15, + -3.0700000000000003, + -3.29, + -3.11, + -2.5500000000000003, + -2.04, + -1.76, + -1.74, + -1.8900000000000001, + -2.05, + -2.1, + -2.18, + -2.29, + -2.17, + -1.82, + -1.05, + -0.33, + -0.05, + -0.09, + -0.49, + -0.86, + -1.24, + -1.6300000000000001, + -2.32, + -2.93, + -3.0300000000000002 + ], + [ + 0.7000000000000001, + 0.84, + 0.87, + 0.89, + 0.96, + 1.05, + 1.1400000000000001, + 1.25, + 1.35, + 1.44, + 1.53, + 1.61, + 1.7, + 1.79, + 1.83, + 1.78, + 1.69, + 1.52, + 1.35, + 1.12, + 0.9, + 0.72, + 0.61, + 0.62, + 0.68, + 0.81, + 0.9500000000000001, + 1.09, + 1.23, + 1.34, + 1.37, + 1.32, + 1.22, + 1.1500000000000001, + 1.08, + 1.03, + 0.98, + 0.91, + 0.79, + 0.67, + 0.54, + 0.4, + 0.3, + 0.19, + 0.1, + 0.01, + -0.06, + -0.11, + -0.17, + -0.22, + -0.32, + -0.45, + -0.62, + -0.85, + -1.09, + -1.28, + -1.47, + -1.54, + -1.69, + -1.85, + -2.0100000000000002, + -2.32, + -2.6, + -2.94, + -3.25, + -3.38, + -3.45, + -3.35, + -3.18, + -2.89, + -2.57, + -2.2, + -1.9000000000000001, + -1.6400000000000001, + -1.47, + -1.35, + -1.26, + -1.17, + -1.08, + -1.0, + -0.97, + -0.96, + -0.92, + -0.8300000000000001, + -0.63, + -0.36, + 0.01, + 0.39, + 0.66, + 0.87, + 1.04, + 1.22, + 1.43, + 1.6600000000000001, + 1.83, + 1.97, + 1.97, + 1.93, + 1.84, + 1.81, + 2.0100000000000002, + 2.35, + 2.71, + 2.99, + 3.06, + 2.9, + 2.5300000000000002, + 2.05, + 1.57, + 1.24, + 0.98, + 0.8, + 0.71, + 0.77, + 0.96, + 1.19, + 1.3800000000000001, + 1.51, + 1.6, + 1.5, + 1.21, + 0.62, + 0.13, + -0.07, + -0.1, + -0.09, + -0.04, + -0.15, + -0.3, + -0.5700000000000001, + -0.81, + -0.99, + -0.96, + -0.9400000000000001, + -1.02, + -1.16, + -1.28, + -1.28, + -0.9500000000000001, + -0.71, + -0.67, + -0.5700000000000001, + -0.54, + -0.25, + 0.27, + 0.91, + 1.43, + 1.76, + 1.9100000000000001, + 1.71, + 1.48, + 1.05, + 0.62, + 0.23, + -0.04, + -0.23, + -0.34, + -0.4, + -0.44, + -0.32, + -0.09, + 0.24, + 0.55, + 0.59, + 0.44, + 0.16, + -0.18, + -0.28, + -0.15, + -0.05, + 0.06, + 0.09, + 0.08, + 0.07, + 0.01, + -0.06, + -0.22, + -0.31, + -0.22, + -0.06, + -0.14, + -0.4, + -0.85, + -1.29, + -1.6, + -1.84, + -1.83, + -1.67, + -1.36, + -1.18, + -0.97, + -0.65, + -0.46, + -0.35000000000000003, + -0.42, + -0.55, + -0.67, + -0.59, + -0.46, + -0.35000000000000003, + -0.29, + -0.32, + -0.33, + -0.31, + -0.31, + -0.33, + -0.3, + -0.23, + -0.26, + -0.31, + -0.4, + -0.5, + -0.56, + -0.59, + -0.73, + -0.6900000000000001, + -0.52, + -0.41000000000000003, + -0.24, + -0.04, + 0.14, + 0.16, + 0.01, + -0.19, + -0.61, + -1.2, + -1.68, + -1.74, + -1.3800000000000001, + -1.07, + -1.16, + -1.6600000000000001, + -2.08, + -2.18, + -1.62, + -0.85, + -0.32, + 0.07, + 0.26, + 0.34, + 0.2, + -0.22, + -0.72, + -1.25, + -1.53, + -1.42, + -1.22, + -0.7000000000000001, + -0.2, + 0.1, + 0.33, + 0.58, + 0.8300000000000001, + 0.73, + 0.39, + 0.02, + -0.18, + -0.27, + -0.32, + -0.39, + -0.52, + -0.46, + -0.39, + -0.35000000000000003, + -0.21, + -0.15, + -0.02, + 0.07, + -0.01, + -0.11, + -0.24, + -0.32, + -0.34, + -0.36, + -0.36, + -0.34, + -0.23, + -0.03, + 0.01, + -0.06, + -0.36, + -0.74, + -1.11, + -1.69, + -2.44, + -3.38, + -3.87, + -3.65, + -2.7, + -1.52, + -0.7000000000000001, + -0.25, + -0.15, + -0.17, + -0.34, + -0.71, + -1.08, + -1.19, + -1.03, + -0.58, + -0.28, + -0.2, + -0.24, + -0.16, + -0.16, + -0.11, + -0.05, + -0.13, + -0.11, + -0.16, + -0.15, + -0.27, + -0.23, + 0.09, + 0.35000000000000003, + 0.63, + 0.65, + 0.62, + 0.34, + -0.24, + -1.3800000000000001, + -2.66, + -3.31, + -3.54, + -3.22, + -2.73, + -2.22, + -1.8900000000000001, + -1.8900000000000001, + -2.0300000000000002, + -2.2, + -2.35, + -2.39, + -2.31, + -2.16, + -1.6300000000000001, + -0.91, + -0.26, + 0.13, + -0.02, + -0.31, + -0.67, + -1.02, + -1.58, + -2.24, + -2.74, + -2.86 + ], + [ + 0.65, + 0.81, + 0.87, + 0.9, + 0.97, + 1.06, + 1.16, + 1.27, + 1.37, + 1.46, + 1.53, + 1.6, + 1.67, + 1.74, + 1.74, + 1.7, + 1.53, + 1.37, + 1.17, + 0.9500000000000001, + 0.75, + 0.58, + 0.5, + 0.5, + 0.62, + 0.79, + 0.96, + 1.12, + 1.23, + 1.3, + 1.3, + 1.21, + 1.1, + 0.97, + 0.89, + 0.8300000000000001, + 0.78, + 0.7000000000000001, + 0.59, + 0.48, + 0.35000000000000003, + 0.23, + 0.12, + 0.02, + -0.07, + -0.15, + -0.2, + -0.26, + -0.31, + -0.4, + -0.53, + -0.6900000000000001, + -0.91, + -1.1, + -1.27, + -1.41, + -1.4000000000000001, + -1.47, + -1.58, + -1.76, + -2.16, + -2.48, + -2.85, + -3.17, + -3.3000000000000003, + -3.39, + -3.29, + -3.16, + -2.95, + -2.7, + -2.42, + -2.15, + -1.8900000000000001, + -1.72, + -1.57, + -1.48, + -1.3900000000000001, + -1.3, + -1.21, + -1.16, + -1.12, + -1.09, + -1.05, + -0.91, + -0.72, + -0.41000000000000003, + -0.05, + 0.28, + 0.56, + 0.74, + 0.91, + 1.08, + 1.28, + 1.49, + 1.67, + 1.77, + 1.8, + 1.74, + 1.67, + 1.68, + 1.86, + 2.18, + 2.52, + 2.77, + 2.82, + 2.7, + 2.46, + 2.05, + 1.72, + 1.41, + 1.1400000000000001, + 0.96, + 0.81, + 0.8, + 0.84, + 0.9400000000000001, + 1.07, + 1.1500000000000001, + 1.25, + 1.26, + 0.9400000000000001, + 0.46, + -0.04, + -0.37, + -0.35000000000000003, + -0.1, + 0.0, + 0.1, + -0.03, + -0.28, + -0.52, + -0.56, + -0.51, + -0.44, + -0.47000000000000003, + -0.75, + -1.02, + -0.96, + -0.6900000000000001, + -0.31, + 0.03, + 0.16, + 0.39, + 0.65, + 1.12, + 1.57, + 1.79, + 1.98, + 1.86, + 1.6500000000000001, + 1.33, + 0.93, + 0.56, + 0.21, + 0.0, + -0.17, + -0.3, + -0.42, + -0.46, + -0.41000000000000003, + -0.17, + 0.14, + 0.3, + 0.27, + 0.07, + -0.25, + -0.44, + -0.37, + -0.18, + 0.17, + 0.29, + 0.35000000000000003, + 0.32, + 0.18, + 0.1, + -0.08, + -0.25, + -0.41000000000000003, + -0.4, + -0.33, + -0.38, + -0.6900000000000001, + -1.11, + -1.49, + -1.8, + -1.95, + -1.96, + -1.86, + -1.76, + -1.45, + -1.04, + -0.67, + -0.37, + -0.29, + -0.37, + -0.48, + -0.44, + -0.35000000000000003, + -0.15, + -0.01, + -0.11, + -0.18, + -0.3, + -0.33, + -0.27, + -0.21, + -0.21, + -0.2, + -0.17, + -0.16, + -0.21, + -0.26, + -0.4, + -0.63, + -0.74, + -0.78, + -0.5700000000000001, + -0.27, + -0.08, + 0.13, + 0.3, + 0.31, + 0.19, + -0.09, + -0.48, + -0.98, + -1.4000000000000001, + -1.44, + -1.21, + -1.08, + -1.28, + -1.78, + -2.32, + -2.17, + -1.53, + -0.76, + -0.14, + 0.18, + 0.33, + 0.36, + 0.21, + -0.21, + -0.85, + -1.3800000000000001, + -1.56, + -1.5, + -1.01, + -0.49, + 0.0, + 0.36, + 0.42, + 0.55, + 0.76, + 0.77, + 0.45, + 0.13, + 0.0, + 0.02, + -0.13, + -0.47000000000000003, + -0.64, + -0.84, + -0.74, + -0.5, + -0.33, + -0.04, + 0.11, + 0.08, + 0.01, + -0.16, + -0.29, + -0.37, + -0.41000000000000003, + -0.32, + -0.25, + -0.28, + -0.24, + -0.07, + 0.1, + 0.04, + -0.12, + -0.51, + -0.98, + -1.59, + -2.46, + -3.38, + -4.17, + -3.95, + -2.85, + -1.69, + -0.81, + -0.31, + -0.01, + 0.05, + -0.21, + -0.5700000000000001, + -0.89, + -1.04, + -0.87, + -0.52, + -0.25, + -0.21, + -0.32, + -0.51, + -0.46, + -0.37, + -0.29, + -0.16, + -0.11, + 0.12, + 0.15, + 0.12, + 0.14, + 0.07, + 0.26, + 0.33, + 0.34, + 0.36, + 0.15, + -0.59, + -1.71, + -2.85, + -3.64, + -3.61, + -3.22, + -2.73, + -2.2800000000000002, + -2.0, + -2.0, + -2.16, + -2.36, + -2.47, + -2.36, + -2.2600000000000002, + -2.02, + -1.52, + -0.85, + -0.2, + 0.01, + -0.04, + -0.24, + -0.53, + -1.01, + -1.6400000000000001, + -2.23, + -2.72, + -2.69 + ], + [ + 0.67, + 0.8200000000000001, + 0.87, + 0.91, + 0.99, + 1.09, + 1.19, + 1.31, + 1.4000000000000001, + 1.49, + 1.55, + 1.59, + 1.6500000000000001, + 1.6300000000000001, + 1.62, + 1.48, + 1.33, + 1.1400000000000001, + 0.9400000000000001, + 0.76, + 0.58, + 0.45, + 0.39, + 0.43, + 0.58, + 0.78, + 0.99, + 1.12, + 1.19, + 1.23, + 1.23, + 1.12, + 0.96, + 0.8300000000000001, + 0.6900000000000001, + 0.63, + 0.5700000000000001, + 0.49, + 0.4, + 0.29, + 0.18, + 0.07, + -0.04, + -0.14, + -0.23, + -0.31, + -0.38, + -0.44, + -0.51, + -0.62, + -0.77, + -0.97, + -1.1500000000000001, + -1.29, + -1.4000000000000001, + -1.37, + -1.37, + -1.3800000000000001, + -1.5, + -1.92, + -2.31, + -2.8000000000000003, + -3.19, + -3.3200000000000003, + -3.42, + -3.29, + -3.14, + -2.91, + -2.67, + -2.43, + -2.19, + -2.0, + -1.86, + -1.73, + -1.6600000000000001, + -1.58, + -1.52, + -1.44, + -1.36, + -1.3, + -1.26, + -1.22, + -1.12, + -0.99, + -0.77, + -0.47000000000000003, + -0.14, + 0.19, + 0.43, + 0.62, + 0.77, + 0.9400000000000001, + 1.11, + 1.28, + 1.43, + 1.5, + 1.52, + 1.48, + 1.45, + 1.53, + 1.72, + 2.0, + 2.3000000000000003, + 2.45, + 2.5, + 2.43, + 2.22, + 2.07, + 1.8, + 1.52, + 1.26, + 1.07, + 0.93, + 0.74, + 0.65, + 0.68, + 0.71, + 0.8300000000000001, + 0.91, + 0.92, + 0.7000000000000001, + 0.22, + -0.33, + -0.59, + -0.48, + -0.2, + 0.26, + 0.38, + 0.25, + 0.01, + -0.2, + -0.25, + -0.11, + 0.03, + 0.02, + -0.18, + -0.52, + -0.59, + -0.33, + 0.06, + 0.41000000000000003, + 0.6900000000000001, + 0.9, + 1.27, + 1.57, + 1.67, + 1.78, + 1.6400000000000001, + 1.51, + 1.33, + 1.02, + 0.71, + 0.36, + 0.16, + -0.02, + -0.06, + -0.15, + -0.32, + -0.42, + -0.42, + -0.27, + -0.08, + -0.03, + -0.1, + -0.3, + -0.51, + -0.5700000000000001, + -0.43, + -0.08, + 0.25, + 0.56, + 0.6, + 0.48, + 0.34, + 0.13, + -0.04, + -0.28, + -0.46, + -0.64, + -0.66, + -0.7000000000000001, + -0.96, + -1.34, + -1.69, + -1.9100000000000001, + -2.0100000000000002, + -2.06, + -2.06, + -1.86, + -1.49, + -0.99, + -0.46, + -0.19, + -0.18, + -0.26, + -0.29, + -0.25, + -0.11, + 0.1, + 0.19, + 0.15, + -0.09, + -0.26, + -0.35000000000000003, + -0.31, + -0.18, + -0.09, + -0.08, + -0.04, + 0.0, + 0.05, + -0.08, + -0.3, + -0.54, + -0.76, + -0.73, + -0.43, + -0.13, + 0.1, + 0.31, + 0.44, + 0.46, + 0.28, + 0.01, + -0.41000000000000003, + -0.89, + -1.11, + -1.09, + -0.9400000000000001, + -0.87, + -1.17, + -1.73, + -2.14, + -2.02, + -1.35, + -0.5700000000000001, + -0.04, + 0.17, + 0.29, + 0.26, + 0.09, + -0.27, + -0.88, + -1.33, + -1.55, + -1.29, + -0.8300000000000001, + -0.34, + 0.17, + 0.41000000000000003, + 0.48, + 0.47000000000000003, + 0.58, + 0.62, + 0.42, + 0.17, + 0.13, + 0.12, + -0.02, + -0.42, + -0.89, + -1.02, + -0.91, + -0.65, + -0.29, + -0.01, + 0.05, + 0.04, + -0.1, + -0.25, + -0.35000000000000003, + -0.43, + -0.4, + -0.29, + -0.25, + -0.28, + -0.32, + -0.25, + -0.01, + 0.18, + 0.03, + -0.23, + -0.71, + -1.3, + -2.18, + -3.34, + -4.05, + -3.91, + -2.89, + -1.6400000000000001, + -0.74, + -0.18, + 0.16, + 0.17, + -0.06, + -0.42, + -0.74, + -0.8200000000000001, + -0.65, + -0.35000000000000003, + -0.09, + -0.11, + -0.32, + -0.5, + -0.58, + -0.49, + -0.47000000000000003, + -0.34, + -0.09, + 0.14, + 0.36, + 0.36, + 0.16, + 0.08, + 0.05, + 0.06, + 0.17, + 0.17, + -0.07, + -0.76, + -1.86, + -2.99, + -3.56, + -3.5300000000000002, + -3.12, + -2.64, + -2.24, + -2.05, + -2.1, + -2.4, + -2.57, + -2.48, + -2.36, + -2.11, + -1.86, + -1.44, + -0.81, + -0.41000000000000003, + -0.19, + -0.14, + -0.25, + -0.5, + -0.9400000000000001, + -1.6, + -2.27, + -2.56, + -2.5 + ], + [ + 0.64, + 0.8, + 0.88, + 0.92, + 1.01, + 1.11, + 1.23, + 1.34, + 1.43, + 1.51, + 1.56, + 1.59, + 1.55, + 1.54, + 1.37, + 1.23, + 1.03, + 0.84, + 0.67, + 0.5, + 0.39, + 0.29, + 0.28, + 0.36, + 0.53, + 0.78, + 0.98, + 1.11, + 1.1400000000000001, + 1.11, + 1.09, + 1.01, + 0.85, + 0.67, + 0.54, + 0.44, + 0.38, + 0.29, + 0.2, + 0.1, + 0.0, + -0.11, + -0.22, + -0.32, + -0.41000000000000003, + -0.5, + -0.58, + -0.65, + -0.74, + -0.87, + -1.05, + -1.22, + -1.33, + -1.43, + -1.3800000000000001, + -1.36, + -1.34, + -1.37, + -1.69, + -2.1, + -2.64, + -3.13, + -3.38, + -3.5100000000000002, + -3.37, + -3.18, + -2.9, + -2.62, + -2.34, + -2.09, + -1.9100000000000001, + -1.8, + -1.74, + -1.74, + -1.7, + -1.69, + -1.6300000000000001, + -1.56, + -1.48, + -1.42, + -1.37, + -1.27, + -1.17, + -1.04, + -0.8200000000000001, + -0.5700000000000001, + -0.26, + 0.05, + 0.3, + 0.48, + 0.65, + 0.8, + 0.9400000000000001, + 1.06, + 1.1300000000000001, + 1.21, + 1.21, + 1.2, + 1.24, + 1.35, + 1.56, + 1.82, + 1.96, + 2.1, + 2.09, + 2.0300000000000002, + 2.05, + 1.93, + 1.78, + 1.54, + 1.3, + 1.11, + 0.87, + 0.64, + 0.46, + 0.39, + 0.49, + 0.6, + 0.6900000000000001, + 0.65, + 0.44, + 0.02, + -0.47000000000000003, + -0.6900000000000001, + -0.54, + -0.02, + 0.43, + 0.64, + 0.53, + 0.23, + 0.01, + -0.07, + 0.06, + 0.33, + 0.43, + 0.3, + 0.05, + -0.15, + -0.02, + 0.3, + 0.58, + 0.8200000000000001, + 1.02, + 1.32, + 1.48, + 1.49, + 1.26, + 1.1400000000000001, + 1.1, + 0.93, + 0.77, + 0.46, + 0.2, + 0.01, + 0.05, + 0.08, + 0.01, + -0.13, + -0.33, + -0.4, + -0.36, + -0.31, + -0.35000000000000003, + -0.51, + -0.6, + -0.61, + -0.6, + -0.38, + -0.04, + 0.29, + 0.58, + 0.68, + 0.55, + 0.26, + 0.06, + -0.03, + -0.23, + -0.54, + -0.76, + -0.89, + -1.0, + -1.21, + -1.58, + -1.84, + -2.0, + -2.1, + -2.19, + -2.09, + -1.78, + -1.31, + -0.63, + -0.14, + 0.04, + 0.05, + 0.02, + -0.02, + -0.12, + 0.01, + 0.06, + 0.16, + 0.24, + 0.08, + -0.26, + -0.44, + -0.39, + -0.25, + -0.09, + 0.01, + 0.05, + 0.11, + 0.12, + -0.01, + -0.24, + -0.52, + -0.7000000000000001, + -0.5700000000000001, + -0.26, + 0.13, + 0.36, + 0.49, + 0.62, + 0.56, + 0.39, + 0.01, + -0.43, + -0.75, + -0.91, + -0.79, + -0.56, + -0.6, + -0.91, + -1.45, + -1.83, + -1.7, + -1.08, + -0.39, + -0.03, + 0.15, + 0.14, + 0.11, + -0.01, + -0.37, + -0.76, + -1.2, + -1.26, + -1.02, + -0.77, + -0.33, + 0.13, + 0.41000000000000003, + 0.38, + 0.3, + 0.38, + 0.4, + 0.26, + 0.11, + 0.09, + 0.13, + -0.03, + -0.44, + -0.87, + -0.9500000000000001, + -0.81, + -0.5, + -0.15, + -0.1, + -0.04, + -0.13, + -0.26, + -0.33, + -0.41000000000000003, + -0.46, + -0.43, + -0.34, + -0.29, + -0.42, + -0.54, + -0.44, + -0.18, + 0.09, + 0.18, + -0.06, + -0.36, + -0.9500000000000001, + -1.75, + -2.86, + -3.66, + -3.5100000000000002, + -2.63, + -1.43, + -0.6, + -0.03, + 0.29, + 0.33, + 0.06, + -0.31, + -0.5700000000000001, + -0.63, + -0.46, + -0.16, + 0.06, + 0.07, + -0.14, + -0.31, + -0.42, + -0.53, + -0.53, + -0.6, + -0.34, + 0.01, + 0.23, + 0.24, + 0.06, + 0.0, + -0.04, + 0.14, + 0.26, + 0.16, + -0.14, + -0.88, + -1.93, + -2.86, + -3.34, + -3.29, + -2.94, + -2.5, + -2.16, + -2.02, + -2.2, + -2.5100000000000002, + -2.81, + -2.7, + -2.2600000000000002, + -2.0100000000000002, + -1.68, + -1.26, + -0.9500000000000001, + -0.6, + -0.44, + -0.37, + -0.29, + -0.42, + -0.8300000000000001, + -1.41, + -2.0, + -2.25, + -2.18 + ], + [ + 0.64, + 0.8, + 0.88, + 0.9400000000000001, + 1.03, + 1.1400000000000001, + 1.25, + 1.35, + 1.44, + 1.5, + 1.55, + 1.51, + 1.48, + 1.3, + 1.1300000000000001, + 0.9, + 0.7000000000000001, + 0.53, + 0.37, + 0.26, + 0.17, + 0.14, + 0.16, + 0.27, + 0.48, + 0.73, + 0.9500000000000001, + 1.05, + 1.04, + 0.99, + 0.93, + 0.85, + 0.71, + 0.53, + 0.36, + 0.26, + 0.16, + 0.08, + -0.01, + -0.11, + -0.22, + -0.32, + -0.42, + -0.51, + -0.6, + -0.6900000000000001, + -0.77, + -0.86, + -0.98, + -1.16, + -1.31, + -1.42, + -1.49, + -1.43, + -1.3900000000000001, + -1.3800000000000001, + -1.3800000000000001, + -1.6500000000000001, + -1.97, + -2.45, + -3.0, + -3.29, + -3.5100000000000002, + -3.46, + -3.2800000000000002, + -2.96, + -2.64, + -2.29, + -1.97, + -1.74, + -1.6, + -1.57, + -1.6300000000000001, + -1.68, + -1.76, + -1.76, + -1.75, + -1.67, + -1.58, + -1.52, + -1.44, + -1.34, + -1.24, + -1.1, + -0.93, + -0.6900000000000001, + -0.42, + -0.13, + 0.13, + 0.33, + 0.51, + 0.67, + 0.78, + 0.84, + 0.91, + 0.9500000000000001, + 0.97, + 0.98, + 1.04, + 1.18, + 1.3900000000000001, + 1.49, + 1.6300000000000001, + 1.6300000000000001, + 1.62, + 1.7, + 1.73, + 1.76, + 1.6400000000000001, + 1.46, + 1.24, + 0.99, + 0.71, + 0.45, + 0.26, + 0.31, + 0.51, + 0.63, + 0.68, + 0.59, + 0.3, + -0.09, + -0.45, + -0.66, + -0.45, + 0.07, + 0.54, + 0.75, + 0.64, + 0.34, + 0.02, + -0.08, + 0.1, + 0.39, + 0.67, + 0.66, + 0.41000000000000003, + 0.21, + 0.2, + 0.37, + 0.56, + 0.63, + 0.79, + 0.91, + 1.04, + 0.88, + 0.67, + 0.65, + 0.62, + 0.64, + 0.48, + 0.28, + 0.03, + -0.02, + 0.05, + 0.19, + 0.17, + -0.01, + -0.21, + -0.36, + -0.39, + -0.47000000000000003, + -0.67, + -0.79, + -0.8, + -0.73, + -0.53, + -0.33, + -0.06, + 0.27, + 0.54, + 0.63, + 0.3, + 0.02, + -0.13, + -0.21, + -0.24, + -0.51, + -0.78, + -0.92, + -1.11, + -1.37, + -1.7, + -1.95, + -2.07, + -2.14, + -2.16, + -1.96, + -1.55, + -0.88, + -0.24, + 0.16, + 0.32, + 0.29, + 0.26, + 0.2, + 0.1, + -0.26, + -0.24, + -0.05, + 0.06, + 0.09, + -0.19, + -0.55, + -0.6, + -0.4, + -0.18, + -0.01, + 0.09, + 0.11, + 0.05, + -0.05, + -0.23, + -0.48, + -0.6, + -0.46, + -0.07, + 0.33, + 0.65, + 0.78, + 0.74, + 0.66, + 0.37, + -0.02, + -0.39, + -0.6900000000000001, + -0.74, + -0.56, + -0.36, + -0.36, + -0.66, + -1.1400000000000001, + -1.49, + -1.34, + -0.8, + -0.33, + 0.01, + 0.09, + 0.08, + 0.03, + -0.09, + -0.3, + -0.6900000000000001, + -0.88, + -0.93, + -0.97, + -0.78, + -0.54, + -0.14, + 0.23, + 0.25, + 0.14, + 0.16, + 0.21, + 0.11, + -0.04, + -0.1, + -0.03, + -0.13, + -0.49, + -0.7000000000000001, + -0.76, + -0.44, + -0.14, + -0.13, + -0.08, + -0.2, + -0.29, + -0.35000000000000003, + -0.41000000000000003, + -0.47000000000000003, + -0.52, + -0.53, + -0.47000000000000003, + -0.48, + -0.65, + -0.77, + -0.67, + -0.36, + -0.03, + 0.14, + 0.14, + -0.13, + -0.53, + -1.31, + -2.2, + -2.99, + -2.96, + -2.09, + -1.28, + -0.48, + 0.0, + 0.32, + 0.4, + 0.16, + -0.19, + -0.43, + -0.48, + -0.33, + -0.07, + 0.12, + 0.17, + 0.09, + -0.07, + -0.15, + -0.32, + -0.6, + -0.68, + -0.63, + -0.28, + -0.05, + -0.04, + 0.0, + -0.05, + 0.26, + 0.52, + 0.56, + 0.44, + -0.14, + -0.98, + -1.86, + -2.61, + -3.0100000000000002, + -2.92, + -2.65, + -2.32, + -2.0100000000000002, + -1.93, + -2.15, + -2.63, + -2.93, + -2.87, + -2.44, + -1.78, + -1.44, + -1.18, + -0.89, + -0.87, + -0.76, + -0.58, + -0.44, + -0.42, + -0.72, + -1.16, + -1.58, + -1.82, + -1.73 + ], + [ + 0.64, + 0.8, + 0.88, + 0.9500000000000001, + 1.04, + 1.1500000000000001, + 1.24, + 1.33, + 1.3900000000000001, + 1.46, + 1.44, + 1.41, + 1.26, + 1.07, + 0.8200000000000001, + 0.5700000000000001, + 0.37, + 0.2, + 0.09, + 0.01, + -0.02, + -0.01, + 0.04, + 0.18, + 0.4, + 0.66, + 0.88, + 0.97, + 0.9400000000000001, + 0.85, + 0.78, + 0.6900000000000001, + 0.54, + 0.34, + 0.17, + 0.01, + -0.09, + -0.15, + -0.24, + -0.34, + -0.45, + -0.56, + -0.65, + -0.71, + -0.78, + -0.86, + -0.9400000000000001, + -1.07, + -1.24, + -1.4000000000000001, + -1.51, + -1.59, + -1.53, + -1.47, + -1.48, + -1.48, + -1.75, + -2.02, + -2.44, + -2.93, + -3.16, + -3.4, + -3.38, + -3.2600000000000002, + -3.04, + -2.7, + -2.31, + -1.92, + -1.59, + -1.36, + -1.27, + -1.33, + -1.46, + -1.6400000000000001, + -1.75, + -1.84, + -1.83, + -1.73, + -1.6400000000000001, + -1.58, + -1.5, + -1.45, + -1.36, + -1.22, + -1.06, + -0.84, + -0.58, + -0.31, + -0.05, + 0.17, + 0.36, + 0.53, + 0.63, + 0.7000000000000001, + 0.78, + 0.8200000000000001, + 0.86, + 0.85, + 0.88, + 1.01, + 1.12, + 1.22, + 1.18, + 1.17, + 1.18, + 1.27, + 1.3800000000000001, + 1.42, + 1.41, + 1.23, + 1.02, + 0.74, + 0.46, + 0.18, + 0.2, + 0.47000000000000003, + 0.76, + 1.01, + 0.92, + 0.58, + 0.27, + -0.13, + -0.48, + -0.6, + -0.41000000000000003, + -0.04, + 0.43, + 0.58, + 0.46, + 0.24, + -0.08, + -0.22, + -0.05, + 0.34, + 0.66, + 0.79, + 0.59, + 0.34, + 0.26, + 0.32, + 0.36, + 0.35000000000000003, + 0.28, + 0.36, + 0.27, + 0.15, + 0.14, + 0.12, + 0.23, + 0.25, + 0.22, + 0.02, + -0.04, + -0.06, + 0.09, + 0.25, + 0.24, + 0.04, + -0.16, + -0.3, + -0.38, + -0.52, + -0.76, + -0.91, + -0.9, + -0.75, + -0.55, + -0.33, + -0.08, + 0.25, + 0.53, + 0.52, + 0.19, + -0.32, + -0.46, + -0.42, + -0.45, + -0.47000000000000003, + -0.68, + -0.84, + -1.0, + -1.36, + -1.71, + -1.95, + -2.0300000000000002, + -2.04, + -1.9100000000000001, + -1.68, + -1.1300000000000001, + -0.49, + 0.0, + 0.39, + 0.44, + 0.41000000000000003, + 0.37, + 0.3, + -0.05, + -0.42, + -0.75, + -0.59, + -0.19, + -0.1, + -0.25, + -0.5700000000000001, + -0.81, + -0.68, + -0.33, + -0.03, + 0.06, + 0.02, + -0.03, + -0.09, + -0.23, + -0.36, + -0.5, + -0.41000000000000003, + 0.0, + 0.55, + 0.87, + 0.98, + 0.92, + 0.63, + 0.3, + 0.02, + -0.33, + -0.61, + -0.65, + -0.56, + -0.43, + -0.33, + -0.55, + -0.91, + -1.1, + -1.03, + -0.64, + -0.19, + 0.03, + 0.11, + 0.11, + 0.06, + -0.07, + -0.28, + -0.45, + -0.63, + -0.81, + -0.88, + -1.03, + -0.88, + -0.45, + -0.07, + 0.11, + 0.08, + 0.07, + 0.09, + -0.02, + -0.22, + -0.29, + -0.26, + -0.3, + -0.45, + -0.63, + -0.42, + -0.11, + 0.0, + 0.01, + -0.14, + -0.27, + -0.29, + -0.34, + -0.46, + -0.54, + -0.63, + -0.67, + -0.6900000000000001, + -0.78, + -0.93, + -1.03, + -0.86, + -0.47000000000000003, + -0.11, + 0.12, + 0.21, + 0.18, + -0.18, + -0.79, + -1.68, + -2.2, + -2.18, + -1.84, + -1.05, + -0.6, + -0.18, + 0.2, + 0.27, + 0.18, + -0.11, + -0.31, + -0.33, + -0.25, + -0.08, + 0.1, + 0.14, + 0.15, + 0.15, + 0.07, + -0.15, + -0.46, + -0.66, + -0.64, + -0.46, + -0.23, + -0.11, + -0.06, + 0.3, + 0.7000000000000001, + 1.0, + 1.05, + 0.62, + -0.1, + -0.9400000000000001, + -1.76, + -2.32, + -2.49, + -2.5, + -2.31, + -2.05, + -1.86, + -1.78, + -2.0100000000000002, + -2.5500000000000003, + -3.0500000000000003, + -3.02, + -2.46, + -1.8, + -1.18, + -0.92, + -1.02, + -1.05, + -1.07, + -0.9, + -0.6900000000000001, + -0.65, + -0.74, + -1.05, + -1.28, + -1.34, + -1.29 + ], + [ + 0.61, + 0.78, + 0.88, + 0.9500000000000001, + 1.04, + 1.1300000000000001, + 1.21, + 1.27, + 1.33, + 1.31, + 1.3, + 1.16, + 1.0, + 0.77, + 0.51, + 0.27, + 0.07, + -0.08, + -0.17, + -0.19, + -0.18, + -0.13, + -0.04, + 0.1, + 0.33, + 0.58, + 0.77, + 0.86, + 0.78, + 0.68, + 0.58, + 0.49, + 0.32, + 0.12, + -0.1, + -0.26, + -0.33, + -0.39, + -0.47000000000000003, + -0.5700000000000001, + -0.7000000000000001, + -0.81, + -0.87, + -0.9, + -0.9400000000000001, + -1.0, + -1.12, + -1.29, + -1.45, + -1.56, + -1.6600000000000001, + -1.6300000000000001, + -1.59, + -1.6400000000000001, + -1.6400000000000001, + -1.95, + -2.22, + -2.65, + -3.08, + -3.25, + -3.44, + -3.2600000000000002, + -3.14, + -2.92, + -2.65, + -2.32, + -1.9000000000000001, + -1.51, + -1.17, + -0.97, + -0.9500000000000001, + -1.06, + -1.29, + -1.52, + -1.74, + -1.85, + -1.86, + -1.77, + -1.73, + -1.67, + -1.59, + -1.55, + -1.5, + -1.37, + -1.18, + -0.96, + -0.74, + -0.48, + -0.23, + -0.01, + 0.21, + 0.4, + 0.54, + 0.67, + 0.75, + 0.84, + 0.84, + 0.76, + 0.76, + 0.81, + 0.9, + 0.89, + 0.85, + 0.75, + 0.76, + 0.77, + 0.88, + 0.99, + 0.96, + 0.93, + 0.72, + 0.45, + 0.14, + 0.05, + 0.27, + 0.73, + 1.28, + 1.46, + 1.19, + 0.72, + 0.15, + -0.24, + -0.56, + -0.7000000000000001, + -0.55, + -0.19, + 0.01, + 0.15, + 0.2, + -0.03, + -0.2, + -0.31, + -0.23, + 0.17, + 0.51, + 0.59, + 0.53, + 0.31, + 0.18, + 0.17, + 0.14, + -0.01, + -0.18, + -0.35000000000000003, + -0.42, + -0.44, + -0.45, + -0.22, + -0.11, + -0.13, + -0.16, + -0.12, + -0.16, + -0.07, + 0.12, + 0.26, + 0.22, + 0.01, + -0.22, + -0.29, + -0.32, + -0.42, + -0.6, + -0.84, + -0.86, + -0.76, + -0.64, + -0.43, + -0.26, + 0.09, + 0.49, + 0.5, + 0.14, + -0.37, + -0.73, + -0.66, + -0.63, + -0.65, + -0.64, + -0.75, + -0.93, + -1.31, + -1.67, + -1.86, + -1.8900000000000001, + -1.78, + -1.6300000000000001, + -1.27, + -0.79, + -0.35000000000000003, + 0.14, + 0.33, + 0.41000000000000003, + 0.29, + 0.25, + 0.13, + -0.24, + -0.8300000000000001, + -1.17, + -1.17, + -0.76, + -0.33, + -0.43, + -0.74, + -0.97, + -0.9, + -0.51, + -0.09, + 0.05, + -0.04, + -0.16, + -0.17, + -0.15, + -0.28, + -0.42, + -0.37, + 0.05, + 0.63, + 1.16, + 1.27, + 0.9500000000000001, + 0.62, + 0.28, + 0.0, + -0.21, + -0.44, + -0.7000000000000001, + -0.74, + -0.62, + -0.56, + -0.54, + -0.68, + -0.87, + -0.76, + -0.43, + -0.09, + 0.13, + 0.15, + 0.15, + 0.07, + -0.05, + -0.14, + -0.3, + -0.41000000000000003, + -0.59, + -1.0, + -1.22, + -1.18, + -0.73, + -0.24, + -0.01, + 0.06, + 0.12, + 0.08, + -0.11, + -0.34, + -0.45, + -0.42, + -0.39, + -0.49, + -0.4, + -0.19, + 0.01, + 0.13, + -0.02, + -0.2, + -0.18, + -0.17, + -0.24, + -0.37, + -0.58, + -0.71, + -0.8200000000000001, + -0.88, + -1.04, + -1.28, + -1.28, + -0.93, + -0.49, + -0.07, + 0.19, + 0.37, + 0.41000000000000003, + 0.23, + -0.33, + -0.98, + -1.53, + -1.74, + -1.41, + -1.22, + -0.85, + -0.48, + -0.13, + 0.12, + 0.04, + -0.08, + -0.19, + -0.23, + -0.16, + -0.11, + -0.08, + 0.02, + 0.11, + 0.16, + 0.09, + -0.08, + -0.23, + -0.48, + -0.4, + -0.24, + -0.13, + 0.01, + 0.25, + 0.68, + 1.1400000000000001, + 1.42, + 1.29, + 0.72, + -0.06, + -0.93, + -1.59, + -1.94, + -2.1, + -2.1, + -1.99, + -1.86, + -1.69, + -1.67, + -1.86, + -2.37, + -2.97, + -3.06, + -2.5, + -1.7, + -1.08, + -0.89, + -1.05, + -1.33, + -1.3800000000000001, + -1.29, + -1.1, + -0.98, + -1.07, + -1.09, + -1.12, + -1.05, + -0.89 + ], + [ + 0.62, + 0.78, + 0.88, + 0.9400000000000001, + 1.02, + 1.09, + 1.1400000000000001, + 1.2, + 1.17, + 1.1500000000000001, + 1.02, + 0.88, + 0.68, + 0.44, + 0.23, + 0.0, + -0.17, + -0.29, + -0.36, + -0.35000000000000003, + -0.31, + -0.23, + -0.13, + 0.05, + 0.26, + 0.49, + 0.67, + 0.6900000000000001, + 0.62, + 0.47000000000000003, + 0.36, + 0.22, + 0.06, + -0.15, + -0.38, + -0.48, + -0.54, + -0.6, + -0.68, + -0.81, + -0.96, + -1.04, + -1.07, + -1.08, + -1.09, + -1.16, + -1.32, + -1.47, + -1.59, + -1.69, + -1.68, + -1.68, + -1.79, + -1.84, + -2.2, + -2.5, + -2.97, + -3.4, + -3.61, + -3.75, + -3.47, + -3.19, + -2.8000000000000003, + -2.5100000000000002, + -2.21, + -1.84, + -1.46, + -1.07, + -0.77, + -0.64, + -0.63, + -0.8300000000000001, + -1.08, + -1.3800000000000001, + -1.6500000000000001, + -1.82, + -1.86, + -1.94, + -1.9000000000000001, + -1.79, + -1.72, + -1.61, + -1.56, + -1.44, + -1.24, + -1.08, + -0.85, + -0.65, + -0.42, + -0.17, + 0.07, + 0.31, + 0.51, + 0.68, + 0.84, + 0.91, + 0.8200000000000001, + 0.7000000000000001, + 0.61, + 0.64, + 0.66, + 0.64, + 0.53, + 0.42, + 0.26, + 0.26, + 0.34, + 0.44, + 0.58, + 0.56, + 0.47000000000000003, + 0.22, + -0.01, + 0.06, + 0.39, + 1.04, + 1.68, + 1.79, + 1.48, + 0.78, + 0.11, + -0.46, + -0.79, + -0.84, + -0.72, + -0.55, + -0.36, + -0.27, + -0.22, + -0.12, + -0.25, + -0.37, + -0.23, + -0.08, + 0.17, + 0.33, + 0.25, + 0.16, + 0.11, + 0.04, + -0.07, + -0.28, + -0.5700000000000001, + -0.8200000000000001, + -0.9400000000000001, + -0.97, + -0.66, + -0.44, + -0.35000000000000003, + -0.38, + -0.36, + -0.29, + -0.22, + -0.09, + 0.07, + 0.19, + 0.14, + -0.15, + -0.37, + -0.41000000000000003, + -0.28, + -0.26, + -0.42, + -0.64, + -0.78, + -0.8200000000000001, + -0.75, + -0.74, + -0.58, + -0.26, + 0.23, + 0.52, + 0.17, + -0.24, + -0.5700000000000001, + -0.84, + -0.81, + -0.8300000000000001, + -0.8200000000000001, + -0.87, + -1.1, + -1.33, + -1.6300000000000001, + -1.77, + -1.67, + -1.57, + -1.3900000000000001, + -1.09, + -0.81, + -0.37, + -0.13, + 0.13, + 0.07, + -0.04, + -0.13, + -0.23, + -0.58, + -1.21, + -1.69, + -1.6600000000000001, + -1.35, + -0.9400000000000001, + -0.72, + -1.01, + -1.2, + -1.03, + -0.61, + -0.13, + 0.04, + -0.14, + -0.3, + -0.28, + -0.18, + -0.17, + -0.34, + -0.31, + 0.09, + 0.79, + 1.37, + 1.47, + 1.1, + 0.54, + 0.19, + 0.05, + -0.12, + -0.33, + -0.62, + -0.92, + -0.9, + -0.74, + -0.62, + -0.61, + -0.72, + -0.65, + -0.38, + -0.02, + 0.13, + 0.16, + 0.05, + -0.01, + -0.01, + -0.09, + -0.11, + -0.21, + -0.49, + -0.96, + -1.3900000000000001, + -1.29, + -0.89, + -0.36, + -0.02, + 0.13, + 0.21, + 0.15, + -0.1, + -0.38, + -0.55, + -0.51, + -0.44, + -0.32, + -0.25, + -0.02, + 0.18, + 0.09, + -0.08, + -0.2, + -0.15, + 0.0, + -0.06, + -0.23, + -0.46, + -0.7000000000000001, + -0.81, + -0.98, + -1.22, + -1.48, + -1.34, + -0.9500000000000001, + -0.36, + 0.08, + 0.38, + 0.58, + 0.68, + 0.6, + 0.18, + -0.46, + -1.05, + -1.29, + -1.44, + -1.33, + -1.11, + -0.74, + -0.37, + -0.12, + -0.04, + -0.1, + -0.12, + -0.09, + -0.11, + -0.18, + -0.22, + -0.17, + -0.04, + 0.01, + 0.01, + 0.02, + -0.09, + 0.08, + 0.11, + 0.14, + 0.25, + 0.3, + 0.5700000000000001, + 0.9500000000000001, + 1.3900000000000001, + 1.54, + 1.21, + 0.75, + -0.05, + -0.8200000000000001, + -1.32, + -1.6400000000000001, + -1.75, + -1.82, + -1.85, + -1.75, + -1.68, + -1.6, + -1.78, + -2.2600000000000002, + -2.75, + -2.94, + -2.5100000000000002, + -1.68, + -1.12, + -1.0, + -1.22, + -1.55, + -1.75, + -1.6600000000000001, + -1.57, + -1.51, + -1.41, + -1.3, + -1.11, + -0.87, + -0.65 + ], + [ + 0.56, + 0.73, + 0.85, + 0.92, + 0.98, + 1.01, + 1.06, + 1.04, + 1.01, + 0.88, + 0.75, + 0.56, + 0.36, + 0.16, + -0.04, + -0.2, + -0.34, + -0.43, + -0.45, + -0.45, + -0.38, + -0.3, + -0.17, + 0.0, + 0.21, + 0.42, + 0.53, + 0.56, + 0.44, + 0.27, + 0.11, + -0.04, + -0.26, + -0.47000000000000003, + -0.58, + -0.67, + -0.73, + -0.78, + -0.89, + -1.04, + -1.16, + -1.21, + -1.25, + -1.24, + -1.26, + -1.37, + -1.49, + -1.61, + -1.71, + -1.73, + -1.74, + -1.9000000000000001, + -2.02, + -2.43, + -2.79, + -3.29, + -3.77, + -4.04, + -4.21, + -3.95, + -3.5500000000000003, + -2.99, + -2.52, + -2.07, + -1.74, + -1.3900000000000001, + -1.03, + -0.66, + -0.41000000000000003, + -0.29, + -0.38, + -0.59, + -0.93, + -1.23, + -1.51, + -1.74, + -1.94, + -2.07, + -2.09, + -1.97, + -1.77, + -1.6500000000000001, + -1.52, + -1.3800000000000001, + -1.26, + -1.09, + -0.99, + -0.81, + -0.59, + -0.33, + -0.06, + 0.2, + 0.47000000000000003, + 0.6900000000000001, + 0.88, + 0.89, + 0.81, + 0.59, + 0.46, + 0.45, + 0.46, + 0.36, + 0.24, + 0.07, + -0.13, + -0.27, + -0.18, + 0.02, + 0.2, + 0.33, + 0.27, + 0.15, + 0.05, + 0.08, + 0.52, + 1.16, + 1.6400000000000001, + 1.95, + 1.47, + 0.77, + 0.05, + -0.62, + -0.97, + -1.05, + -0.87, + -0.73, + -0.7000000000000001, + -0.61, + -0.4, + -0.24, + -0.21, + -0.29, + -0.34, + -0.23, + -0.14, + -0.04, + 0.04, + 0.08, + 0.06, + 0.04, + -0.13, + -0.42, + -0.78, + -1.09, + -1.29, + -1.1, + -0.79, + -0.44, + -0.37, + -0.42, + -0.39, + -0.33, + -0.24, + -0.23, + -0.09, + 0.01, + -0.14, + -0.37, + -0.6, + -0.5700000000000001, + -0.34, + -0.16, + -0.3, + -0.54, + -0.81, + -0.91, + -0.9500000000000001, + -1.0, + -1.05, + -0.74, + -0.18, + 0.24, + 0.35000000000000003, + -0.06, + -0.4, + -0.67, + -0.91, + -0.93, + -1.07, + -1.19, + -1.3800000000000001, + -1.6400000000000001, + -1.74, + -1.72, + -1.58, + -1.5, + -1.37, + -1.29, + -1.03, + -0.8200000000000001, + -0.53, + -0.46, + -0.46, + -0.56, + -0.64, + -0.77, + -1.1300000000000001, + -1.6600000000000001, + -2.14, + -2.3000000000000003, + -1.97, + -1.6, + -1.47, + -1.37, + -1.42, + -1.19, + -0.5700000000000001, + -0.07, + -0.04, + -0.25, + -0.42, + -0.4, + -0.16, + -0.08, + -0.15, + -0.2, + 0.14, + 0.88, + 1.37, + 1.44, + 1.07, + 0.43, + 0.03, + -0.07, + 0.0, + -0.18, + -0.5, + -0.81, + -1.06, + -0.92, + -0.71, + -0.71, + -0.77, + -0.7000000000000001, + -0.42, + -0.1, + 0.09, + 0.06, + -0.06, + -0.12, + -0.1, + -0.05, + -0.05, + -0.13, + -0.47000000000000003, + -0.9500000000000001, + -1.37, + -1.3800000000000001, + -0.87, + -0.36, + -0.01, + 0.21, + 0.3, + 0.27, + -0.02, + -0.39, + -0.58, + -0.56, + -0.41000000000000003, + -0.25, + 0.0, + 0.21, + 0.25, + 0.13, + -0.11, + -0.23, + -0.18, + -0.01, + 0.11, + -0.09, + -0.32, + -0.55, + -0.75, + -0.93, + -1.21, + -1.3800000000000001, + -1.36, + -0.84, + -0.21, + 0.23, + 0.56, + 0.79, + 0.96, + 0.85, + 0.51, + -0.1, + -0.73, + -1.18, + -1.4000000000000001, + -1.37, + -1.1300000000000001, + -0.8200000000000001, + -0.39, + -0.19, + -0.12, + -0.1, + -0.05, + -0.01, + -0.09, + -0.24, + -0.33, + -0.34, + -0.22, + -0.13, + -0.01, + 0.06, + 0.41000000000000003, + 0.61, + 0.72, + 0.72, + 0.56, + 0.5700000000000001, + 0.67, + 1.02, + 1.28, + 1.23, + 1.07, + 0.55, + 0.06, + -0.52, + -1.01, + -1.2, + -1.42, + -1.61, + -1.74, + -1.78, + -1.72, + -1.7, + -1.76, + -2.12, + -2.65, + -2.77, + -2.37, + -1.82, + -1.3, + -1.21, + -1.52, + -1.86, + -2.04, + -2.14, + -2.1, + -1.99, + -1.8, + -1.51, + -1.1300000000000001, + -0.8200000000000001, + -0.66 + ], + [ + 0.5700000000000001, + 0.72, + 0.81, + 0.88, + 0.9, + 0.91, + 0.89, + 0.87, + 0.77, + 0.63, + 0.45, + 0.25, + 0.07, + -0.11, + -0.26, + -0.38, + -0.46, + -0.5, + -0.51, + -0.48, + -0.42, + -0.32, + -0.21, + -0.01, + 0.18, + 0.34, + 0.44, + 0.37, + 0.26, + 0.07, + -0.11, + -0.36, + -0.59, + -0.74, + -0.81, + -0.8300000000000001, + -0.88, + -0.97, + -1.1, + -1.19, + -1.26, + -1.33, + -1.34, + -1.4000000000000001, + -1.47, + -1.55, + -1.6400000000000001, + -1.74, + -1.79, + -1.83, + -2.0100000000000002, + -2.17, + -2.6, + -3.0300000000000002, + -3.5500000000000003, + -4.08, + -4.4, + -4.65, + -4.47, + -4.0600000000000005, + -3.44, + -2.77, + -2.19, + -1.72, + -1.33, + -1.01, + -0.65, + -0.32, + -0.03, + 0.04, + -0.09, + -0.43, + -0.79, + -1.1500000000000001, + -1.42, + -1.68, + -1.95, + -2.13, + -2.21, + -2.05, + -1.8, + -1.61, + -1.46, + -1.3, + -1.18, + -1.1300000000000001, + -1.06, + -0.97, + -0.75, + -0.5, + -0.23, + 0.05, + 0.29, + 0.59, + 0.75, + 0.84, + 0.65, + 0.43, + 0.36, + 0.32, + 0.22, + 0.1, + -0.02, + -0.21, + -0.42, + -0.5700000000000001, + -0.56, + -0.29, + -0.05, + 0.11, + 0.2, + 0.13, + 0.08, + 0.2, + 0.44, + 0.89, + 1.44, + 1.42, + 1.25, + 0.7000000000000001, + -0.04, + -0.66, + -1.12, + -1.09, + -0.9, + -0.8300000000000001, + -0.85, + -0.76, + -0.48, + -0.25, + -0.22, + -0.34, + -0.42, + -0.4, + -0.32, + -0.26, + -0.09, + 0.07, + 0.19, + 0.16, + -0.05, + -0.4, + -0.84, + -1.25, + -1.35, + -1.21, + -0.72, + -0.31, + -0.17, + -0.25, + -0.31, + -0.24, + -0.28, + -0.32, + -0.36, + -0.31, + -0.41000000000000003, + -0.7000000000000001, + -0.89, + -0.73, + -0.42, + -0.24, + -0.26, + -0.61, + -0.92, + -1.05, + -1.1, + -1.34, + -1.51, + -1.25, + -0.64, + -0.07, + 0.15, + 0.09, + -0.25, + -0.5, + -0.74, + -1.02, + -1.22, + -1.58, + -1.87, + -2.09, + -2.15, + -1.98, + -1.9000000000000001, + -1.71, + -1.76, + -1.69, + -1.57, + -1.37, + -1.25, + -1.1300000000000001, + -1.1400000000000001, + -1.23, + -1.29, + -1.3900000000000001, + -1.77, + -2.33, + -2.64, + -2.73, + -2.69, + -2.36, + -2.15, + -2.02, + -1.72, + -1.17, + -0.53, + -0.13, + -0.04, + -0.35000000000000003, + -0.58, + -0.36, + -0.08, + 0.09, + 0.03, + -0.05, + 0.21, + 0.7000000000000001, + 1.2, + 1.2, + 0.73, + 0.23, + -0.14, + -0.23, + -0.09, + 0.04, + -0.27, + -0.73, + -1.0, + -1.07, + -0.92, + -0.8200000000000001, + -0.8300000000000001, + -0.8300000000000001, + -0.52, + -0.15, + 0.05, + 0.02, + -0.13, + -0.21, + -0.21, + -0.14, + -0.15, + -0.26, + -0.53, + -1.08, + -1.42, + -1.29, + -0.86, + -0.37, + 0.04, + 0.23, + 0.38, + 0.26, + 0.04, + -0.32, + -0.62, + -0.59, + -0.42, + -0.13, + 0.16, + 0.32, + 0.35000000000000003, + 0.21, + -0.07, + -0.27, + -0.22, + -0.09, + 0.01, + 0.01, + -0.25, + -0.46, + -0.66, + -0.8, + -1.05, + -1.3, + -1.1500000000000001, + -0.77, + -0.27, + 0.29, + 0.65, + 0.9500000000000001, + 1.02, + 1.0, + 0.64, + 0.05, + -0.56, + -1.06, + -1.18, + -1.11, + -0.92, + -0.53, + -0.3, + -0.16, + -0.11, + -0.05, + 0.02, + 0.04, + -0.03, + -0.19, + -0.37, + -0.35000000000000003, + -0.29, + -0.15, + -0.02, + 0.36, + 0.8, + 1.11, + 1.24, + 1.04, + 0.79, + 0.5700000000000001, + 0.62, + 0.77, + 0.88, + 0.87, + 0.65, + 0.47000000000000003, + 0.12, + -0.19, + -0.47000000000000003, + -0.72, + -0.98, + -1.33, + -1.6, + -1.76, + -1.81, + -1.76, + -1.81, + -2.07, + -2.41, + -2.59, + -2.41, + -1.8900000000000001, + -1.59, + -1.6, + -1.85, + -2.19, + -2.5, + -2.64, + -2.59, + -2.4, + -2.06, + -1.51, + -1.09, + -0.77, + -0.67 + ], + [ + 0.48, + 0.65, + 0.77, + 0.8, + 0.8200000000000001, + 0.77, + 0.73, + 0.64, + 0.52, + 0.35000000000000003, + 0.17, + -0.02, + -0.2, + -0.34, + -0.46, + -0.53, + -0.56, + -0.5700000000000001, + -0.55, + -0.5, + -0.43, + -0.33, + -0.18, + -0.02, + 0.16, + 0.29, + 0.28, + 0.22, + 0.05, + -0.13, + -0.39, + -0.67, + -0.89, + -1.02, + -1.04, + -1.02, + -1.06, + -1.18, + -1.24, + -1.29, + -1.32, + -1.34, + -1.43, + -1.55, + -1.6500000000000001, + -1.71, + -1.78, + -1.84, + -1.9000000000000001, + -2.1, + -2.29, + -2.74, + -3.18, + -3.73, + -4.29, + -4.65, + -4.95, + -4.87, + -4.5600000000000005, + -3.96, + -3.19, + -2.46, + -1.86, + -1.3800000000000001, + -1.04, + -0.72, + -0.38, + 0.0, + 0.26, + 0.42, + 0.17, + -0.23, + -0.68, + -1.08, + -1.37, + -1.62, + -1.86, + -2.12, + -2.13, + -1.98, + -1.79, + -1.59, + -1.41, + -1.23, + -1.1300000000000001, + -1.1300000000000001, + -1.1500000000000001, + -1.06, + -0.93, + -0.6900000000000001, + -0.46, + -0.25, + 0.02, + 0.29, + 0.56, + 0.5700000000000001, + 0.46, + 0.34, + 0.25, + 0.17, + 0.04, + -0.13, + -0.25, + -0.3, + -0.51, + -0.7000000000000001, + -0.66, + -0.54, + -0.27, + -0.05, + 0.05, + 0.12, + 0.11, + 0.15, + 0.27, + 0.48, + 0.71, + 0.89, + 0.8, + 0.49, + -0.02, + -0.71, + -1.0, + -1.01, + -0.84, + -0.79, + -0.8300000000000001, + -0.74, + -0.46, + -0.2, + -0.24, + -0.45, + -0.5700000000000001, + -0.52, + -0.44, + -0.32, + -0.16, + 0.09, + 0.35000000000000003, + 0.33, + 0.14, + -0.32, + -0.85, + -1.2, + -1.43, + -1.11, + -0.56, + -0.05, + 0.12, + 0.06, + -0.03, + -0.17, + -0.27, + -0.37, + -0.42, + -0.56, + -0.71, + -0.99, + -1.07, + -0.96, + -0.59, + -0.29, + -0.43, + -0.75, + -1.04, + -1.21, + -1.44, + -1.7, + -1.83, + -1.7, + -1.05, + -0.38, + -0.04, + -0.03, + -0.17, + -0.4, + -0.61, + -0.9400000000000001, + -1.43, + -1.96, + -2.47, + -2.75, + -2.84, + -2.7600000000000002, + -2.5300000000000002, + -2.5500000000000003, + -2.43, + -2.37, + -2.23, + -2.1, + -1.98, + -1.8800000000000001, + -1.87, + -1.93, + -1.96, + -2.15, + -2.5500000000000003, + -2.84, + -3.04, + -3.09, + -2.99, + -2.98, + -2.75, + -2.5100000000000002, + -1.8800000000000001, + -1.27, + -0.6, + -0.09, + -0.25, + -0.53, + -0.55, + -0.35000000000000003, + 0.03, + 0.3, + 0.11, + -0.05, + 0.11, + 0.56, + 0.84, + 0.78, + 0.47000000000000003, + -0.02, + -0.38, + -0.36, + -0.14, + 0.02, + -0.02, + -0.5700000000000001, + -1.07, + -1.1300000000000001, + -1.03, + -0.89, + -0.9, + -0.8, + -0.56, + -0.2, + 0.09, + 0.04, + -0.16, + -0.32, + -0.33, + -0.34, + -0.37, + -0.51, + -0.8300000000000001, + -1.21, + -1.47, + -1.45, + -0.99, + -0.4, + -0.07, + 0.18, + 0.21, + 0.23, + -0.02, + -0.32, + -0.5, + -0.59, + -0.35000000000000003, + -0.04, + 0.19, + 0.37, + 0.38, + 0.24, + 0.03, + -0.22, + -0.33, + -0.2, + -0.1, + -0.15, + -0.26, + -0.5, + -0.62, + -0.72, + -0.86, + -1.0, + -1.07, + -0.79, + -0.34, + 0.16, + 0.65, + 0.87, + 1.01, + 0.89, + 0.61, + 0.11, + -0.51, + -0.77, + -0.8, + -0.67, + -0.43, + -0.27, + -0.13, + -0.07, + -0.07, + 0.0, + 0.07, + 0.12, + 0.0, + -0.13, + -0.27, + -0.33, + -0.25, + -0.14, + 0.15, + 0.5700000000000001, + 0.9500000000000001, + 1.37, + 1.37, + 1.12, + 0.79, + 0.47000000000000003, + 0.36, + 0.45, + 0.54, + 0.49, + 0.37, + 0.34, + 0.29, + 0.13, + 0.02, + -0.19, + -0.48, + -0.93, + -1.3900000000000001, + -1.6600000000000001, + -1.82, + -1.76, + -1.75, + -1.93, + -2.2600000000000002, + -2.48, + -2.37, + -2.11, + -1.8800000000000001, + -1.9000000000000001, + -2.19, + -2.65, + -3.0, + -3.19, + -3.0500000000000003, + -2.65, + -1.99, + -1.31, + -0.73, + -0.5, + -0.51 + ], + [ + 0.49, + 0.63, + 0.6900000000000001, + 0.74, + 0.6900000000000001, + 0.62, + 0.52, + 0.41000000000000003, + 0.25, + 0.08, + -0.1, + -0.29, + -0.43, + -0.55, + -0.63, + -0.66, + -0.66, + -0.63, + -0.59, + -0.52, + -0.44, + -0.32, + -0.17, + -0.01, + 0.15, + 0.19, + 0.17, + 0.01, + -0.16, + -0.41000000000000003, + -0.67, + -0.9500000000000001, + -1.19, + -1.27, + -1.26, + -1.24, + -1.28, + -1.32, + -1.33, + -1.34, + -1.33, + -1.3800000000000001, + -1.54, + -1.7, + -1.8, + -1.86, + -1.9000000000000001, + -1.95, + -2.17, + -2.38, + -2.83, + -3.29, + -3.83, + -4.4, + -4.78, + -5.11, + -5.12, + -4.93, + -4.42, + -3.67, + -2.87, + -2.13, + -1.52, + -1.11, + -0.78, + -0.51, + -0.19, + 0.15, + 0.54, + 0.5700000000000001, + 0.49, + 0.04, + -0.51, + -0.89, + -1.27, + -1.51, + -1.75, + -1.8900000000000001, + -1.93, + -1.85, + -1.69, + -1.52, + -1.32, + -1.18, + -1.12, + -1.1400000000000001, + -1.18, + -1.19, + -1.06, + -0.93, + -0.77, + -0.61, + -0.33, + -0.03, + 0.2, + 0.33, + 0.28, + 0.19, + 0.15, + 0.06, + -0.19, + -0.39, + -0.4, + -0.35000000000000003, + -0.42, + -0.63, + -0.76, + -0.64, + -0.47000000000000003, + -0.25, + -0.09, + -0.02, + 0.04, + 0.03, + 0.01, + 0.08, + 0.12, + 0.31, + 0.41000000000000003, + 0.34, + -0.03, + -0.48, + -0.87, + -0.84, + -0.65, + -0.64, + -0.74, + -0.65, + -0.31, + -0.16, + -0.34, + -0.6, + -0.7000000000000001, + -0.64, + -0.52, + -0.41000000000000003, + -0.21, + 0.08, + 0.34, + 0.53, + 0.2, + -0.23, + -0.71, + -1.17, + -1.1500000000000001, + -0.92, + -0.3, + 0.32, + 0.55, + 0.45, + 0.21, + -0.01, + -0.17, + -0.26, + -0.35000000000000003, + -0.5, + -0.8300000000000001, + -1.08, + -1.32, + -1.05, + -0.71, + -0.5, + -0.5, + -0.81, + -1.19, + -1.42, + -1.69, + -2.0100000000000002, + -2.23, + -1.82, + -1.18, + -0.5700000000000001, + -0.17, + -0.12, + -0.23, + -0.4, + -0.63, + -1.0, + -1.73, + -2.5, + -3.16, + -3.61, + -3.75, + -3.75, + -3.72, + -3.59, + -3.45, + -3.25, + -3.0500000000000003, + -2.88, + -2.64, + -2.54, + -2.61, + -2.66, + -2.7800000000000002, + -2.97, + -3.21, + -3.36, + -3.23, + -3.14, + -3.14, + -3.15, + -3.0300000000000002, + -2.45, + -1.94, + -1.16, + -0.59, + -0.38, + -0.41000000000000003, + -0.61, + -0.67, + -0.32, + 0.15, + 0.16, + -0.01, + -0.22, + -0.12, + 0.17, + 0.41000000000000003, + 0.41000000000000003, + 0.11, + -0.19, + -0.48, + -0.52, + -0.19, + 0.09, + -0.06, + -0.48, + -0.97, + -1.26, + -1.05, + -0.85, + -0.8300000000000001, + -0.8200000000000001, + -0.55, + -0.16, + 0.03, + 0.04, + -0.2, + -0.43, + -0.53, + -0.56, + -0.65, + -0.8, + -1.02, + -1.37, + -1.67, + -1.57, + -1.27, + -0.71, + -0.18, + -0.02, + 0.03, + -0.01, + -0.1, + -0.28, + -0.47000000000000003, + -0.41000000000000003, + -0.24, + 0.01, + 0.23, + 0.29, + 0.32, + 0.28, + 0.08, + -0.18, + -0.36, + -0.39, + -0.32, + -0.31, + -0.47000000000000003, + -0.58, + -0.65, + -0.59, + -0.64, + -0.78, + -0.8300000000000001, + -0.8200000000000001, + -0.41000000000000003, + 0.08, + 0.5, + 0.79, + 0.81, + 0.73, + 0.46, + 0.03, + -0.33, + -0.49, + -0.37, + -0.17, + -0.05, + -0.02, + -0.02, + -0.07, + -0.08, + -0.01, + 0.1, + 0.07, + 0.0, + -0.16, + -0.25, + -0.25, + -0.2, + 0.01, + 0.27, + 0.56, + 0.96, + 1.1300000000000001, + 1.18, + 1.0, + 0.62, + 0.36, + 0.21, + 0.24, + 0.36, + 0.33, + 0.33, + 0.29, + 0.32, + 0.41000000000000003, + 0.35000000000000003, + 0.34, + -0.02, + -0.5, + -1.03, + -1.51, + -1.61, + -1.61, + -1.6, + -1.74, + -2.12, + -2.42, + -2.45, + -2.24, + -2.04, + -2.1, + -2.45, + -3.0, + -3.5700000000000003, + -3.69, + -3.47, + -2.77, + -1.83, + -0.93, + -0.12, + 0.07, + -0.06 + ], + [ + 0.38, + 0.53, + 0.63, + 0.62, + 0.5700000000000001, + 0.45, + 0.31, + 0.16, + -0.01, + -0.18, + -0.35000000000000003, + -0.5, + -0.63, + -0.71, + -0.75, + -0.77, + -0.74, + -0.6900000000000001, + -0.61, + -0.55, + -0.44, + -0.33, + -0.19, + -0.02, + 0.07, + 0.13, + -0.01, + -0.17, + -0.42, + -0.68, + -0.96, + -1.24, + -1.41, + -1.49, + -1.46, + -1.43, + -1.4000000000000001, + -1.37, + -1.37, + -1.33, + -1.36, + -1.47, + -1.6400000000000001, + -1.82, + -1.96, + -2.0, + -2.04, + -2.24, + -2.45, + -2.9, + -3.36, + -3.89, + -4.46, + -4.83, + -5.17, + -5.22, + -5.13, + -4.74, + -4.11, + -3.38, + -2.54, + -1.81, + -1.28, + -0.87, + -0.63, + -0.39, + -0.13, + 0.21, + 0.48, + 0.75, + 0.58, + 0.33, + -0.12, + -0.62, + -0.9400000000000001, + -1.28, + -1.45, + -1.6, + -1.6500000000000001, + -1.62, + -1.52, + -1.36, + -1.22, + -1.11, + -1.08, + -1.1400000000000001, + -1.24, + -1.25, + -1.24, + -1.1400000000000001, + -1.05, + -0.85, + -0.67, + -0.32, + -0.07, + 0.04, + 0.08, + 0.1, + 0.08, + -0.13, + -0.45, + -0.63, + -0.56, + -0.39, + -0.37, + -0.52, + -0.72, + -0.77, + -0.6, + -0.43, + -0.27, + -0.18, + -0.12, + -0.1, + -0.15, + -0.26, + -0.19, + -0.12, + 0.19, + 0.34, + 0.14, + -0.28, + -0.52, + -0.54, + -0.48, + -0.5, + -0.59, + -0.49, + -0.3, + -0.24, + -0.42, + -0.76, + -0.88, + -0.72, + -0.5700000000000001, + -0.44, + -0.34, + 0.01, + 0.36, + 0.37, + 0.25, + -0.19, + -0.62, + -0.8200000000000001, + -0.87, + -0.49, + 0.12, + 0.65, + 0.9500000000000001, + 0.86, + 0.51, + 0.2, + 0.03, + -0.02, + -0.06, + -0.25, + -0.61, + -1.07, + -1.16, + -1.18, + -0.79, + -0.53, + -0.59, + -0.8300000000000001, + -1.1, + -1.47, + -1.8, + -2.2600000000000002, + -2.2, + -1.79, + -1.16, + -0.53, + -0.22, + -0.22, + -0.42, + -0.62, + -0.91, + -1.52, + -2.24, + -3.29, + -4.08, + -4.54, + -4.79, + -4.8, + -4.94, + -4.78, + -4.5600000000000005, + -4.17, + -3.9, + -3.5, + -3.19, + -3.15, + -3.3000000000000003, + -3.5300000000000002, + -3.66, + -3.81, + -3.99, + -3.87, + -3.46, + -3.17, + -3.24, + -3.14, + -2.7600000000000002, + -2.22, + -1.46, + -0.93, + -0.55, + -0.41000000000000003, + -0.54, + -0.79, + -0.7000000000000001, + -0.37, + -0.15, + -0.06, + -0.34, + -0.63, + -0.5700000000000001, + -0.31, + -0.17, + -0.15, + -0.19, + -0.39, + -0.51, + -0.41000000000000003, + -0.18, + 0.12, + 0.1, + -0.43, + -1.03, + -1.12, + -1.04, + -0.9, + -0.81, + -0.74, + -0.56, + -0.29, + 0.0, + -0.09, + -0.34, + -0.49, + -0.63, + -0.78, + -0.9, + -1.01, + -1.17, + -1.4000000000000001, + -1.6600000000000001, + -1.82, + -1.46, + -0.99, + -0.49, + -0.15, + -0.12, + -0.19, + -0.19, + -0.27, + -0.32, + -0.28, + -0.1, + 0.11, + 0.18, + 0.2, + 0.24, + 0.27, + 0.11, + -0.22, + -0.5, + -0.58, + -0.5700000000000001, + -0.61, + -0.6900000000000001, + -0.79, + -0.75, + -0.56, + -0.35000000000000003, + -0.46, + -0.61, + -0.53, + -0.39, + 0.07, + 0.48, + 0.66, + 0.65, + 0.5, + 0.3, + 0.01, + -0.26, + -0.25, + -0.01, + 0.2, + 0.22, + 0.14, + 0.02, + -0.1, + -0.1, + -0.05, + 0.04, + 0.02, + -0.12, + -0.27, + -0.25, + -0.22, + -0.02, + 0.16, + 0.34, + 0.52, + 0.64, + 0.77, + 0.76, + 0.66, + 0.51, + 0.28, + 0.19, + 0.29, + 0.38, + 0.4, + 0.31, + 0.27, + 0.31, + 0.4, + 0.62, + 0.5700000000000001, + 0.48, + -0.07, + -0.6900000000000001, + -1.08, + -1.34, + -1.33, + -1.29, + -1.58, + -2.0300000000000002, + -2.4, + -2.5100000000000002, + -2.31, + -2.08, + -2.14, + -2.59, + -3.29, + -3.93, + -4.26, + -3.77, + -2.97, + -1.77, + -0.48, + 0.27, + 0.84, + 0.53 + ], + [ + 0.37, + 0.48, + 0.52, + 0.53, + 0.42, + 0.28, + 0.1, + -0.09, + -0.26, + -0.43, + -0.5700000000000001, + -0.6900000000000001, + -0.77, + -0.8200000000000001, + -0.85, + -0.8300000000000001, + -0.79, + -0.7000000000000001, + -0.62, + -0.53, + -0.47000000000000003, + -0.39, + -0.26, + -0.12, + 0.01, + -0.06, + -0.18, + -0.44, + -0.71, + -1.0, + -1.28, + -1.48, + -1.62, + -1.62, + -1.57, + -1.47, + -1.3800000000000001, + -1.34, + -1.31, + -1.32, + -1.4000000000000001, + -1.53, + -1.75, + -1.96, + -2.06, + -2.14, + -2.32, + -2.52, + -2.96, + -3.42, + -3.93, + -4.48, + -4.84, + -5.17, + -5.24, + -5.19, + -4.89, + -4.39, + -3.7600000000000002, + -3.02, + -2.27, + -1.6, + -1.08, + -0.79, + -0.56, + -0.42, + -0.19, + 0.07, + 0.39, + 0.5700000000000001, + 0.6900000000000001, + 0.48, + 0.25, + -0.12, + -0.51, + -0.76, + -1.0, + -1.11, + -1.23, + -1.24, + -1.2, + -1.1300000000000001, + -1.03, + -1.01, + -1.04, + -1.12, + -1.25, + -1.34, + -1.34, + -1.32, + -1.19, + -1.08, + -0.79, + -0.52, + -0.31, + -0.19, + -0.07, + 0.03, + -0.07, + -0.3, + -0.65, + -0.9, + -0.73, + -0.4, + -0.27, + -0.42, + -0.63, + -0.72, + -0.68, + -0.49, + -0.38, + -0.27, + -0.25, + -0.21, + -0.24, + -0.35000000000000003, + -0.47000000000000003, + -0.23, + 0.11, + 0.34, + 0.38, + 0.12, + -0.18, + -0.29, + -0.27, + -0.39, + -0.55, + -0.55, + -0.42, + -0.39, + -0.7000000000000001, + -0.96, + -0.91, + -0.73, + -0.51, + -0.41000000000000003, + -0.19, + -0.04, + 0.23, + 0.35000000000000003, + 0.12, + -0.19, + -0.43, + -0.56, + -0.49, + -0.13, + 0.41000000000000003, + 0.98, + 1.2, + 1.09, + 0.81, + 0.44, + 0.29, + 0.34, + 0.37, + 0.16, + -0.19, + -0.61, + -1.01, + -0.87, + -0.75, + -0.56, + -0.52, + -0.66, + -0.89, + -1.2, + -1.68, + -1.96, + -2.0300000000000002, + -1.6600000000000001, + -1.04, + -0.63, + -0.37, + -0.42, + -0.78, + -1.18, + -1.6600000000000001, + -2.25, + -3.24, + -4.2700000000000005, + -5.01, + -5.59, + -5.5200000000000005, + -5.71, + -5.69, + -5.93, + -5.39, + -4.96, + -4.43, + -3.98, + -3.67, + -3.63, + -3.93, + -4.3500000000000005, + -4.55, + -4.68, + -4.7, + -4.32, + -3.86, + -3.54, + -3.31, + -2.97, + -2.43, + -1.57, + -0.84, + -0.5, + -0.31, + -0.34, + -0.56, + -0.77, + -0.87, + -0.7000000000000001, + -0.46, + -0.5700000000000001, + -0.85, + -0.93, + -0.9500000000000001, + -0.8300000000000001, + -0.75, + -0.66, + -0.51, + -0.49, + -0.43, + -0.26, + 0.09, + 0.35000000000000003, + 0.16, + -0.29, + -0.81, + -1.1500000000000001, + -1.04, + -0.89, + -0.78, + -0.74, + -0.6, + -0.4, + -0.32, + -0.34, + -0.45, + -0.53, + -0.65, + -0.9, + -1.11, + -1.17, + -1.18, + -1.31, + -1.55, + -1.68, + -1.68, + -1.1500000000000001, + -0.64, + -0.36, + -0.19, + -0.17, + -0.19, + -0.22, + -0.26, + -0.17, + 0.02, + 0.12, + 0.13, + 0.08, + 0.14, + 0.18, + 0.04, + -0.28, + -0.67, + -0.87, + -0.88, + -0.92, + -1.0, + -1.07, + -0.9, + -0.55, + -0.3, + -0.11, + -0.21, + -0.26, + -0.07, + 0.19, + 0.52, + 0.66, + 0.55, + 0.34, + 0.14, + -0.05, + -0.13, + -0.01, + 0.23, + 0.44, + 0.5, + 0.33, + 0.12, + -0.02, + -0.11, + 0.0, + 0.06, + -0.03, + -0.23, + -0.25, + -0.26, + -0.03, + 0.17, + 0.33, + 0.44, + 0.45, + 0.37, + 0.36, + 0.34, + 0.33, + 0.34, + 0.31, + 0.3, + 0.37, + 0.49, + 0.51, + 0.31, + 0.15, + 0.15, + 0.28, + 0.52, + 0.84, + 0.64, + 0.36, + -0.15, + -0.68, + -0.9, + -0.96, + -1.1400000000000001, + -1.46, + -1.95, + -2.44, + -2.48, + -2.21, + -1.99, + -2.08, + -2.56, + -3.44, + -4.26, + -4.42, + -4.18, + -3.0100000000000002, + -1.79, + -0.45, + 0.81, + 1.04, + 1.1300000000000001 + ], + [ + 0.26, + 0.37, + 0.43, + 0.37, + 0.28, + 0.08, + -0.13, + -0.32, + -0.51, + -0.64, + -0.75, + -0.8300000000000001, + -0.87, + -0.9, + -0.91, + -0.88, + -0.78, + -0.67, + -0.56, + -0.51, + -0.52, + -0.49, + -0.38, + -0.22, + -0.18, + -0.22, + -0.45, + -0.74, + -1.06, + -1.36, + -1.56, + -1.72, + -1.74, + -1.68, + -1.55, + -1.3800000000000001, + -1.29, + -1.24, + -1.26, + -1.35, + -1.45, + -1.6400000000000001, + -1.86, + -2.06, + -2.2, + -2.39, + -2.59, + -3.0, + -3.46, + -3.95, + -4.48, + -4.83, + -5.15, + -5.23, + -5.19, + -4.94, + -4.53, + -3.96, + -3.31, + -2.62, + -1.95, + -1.3800000000000001, + -0.98, + -0.74, + -0.65, + -0.53, + -0.35000000000000003, + -0.13, + 0.17, + 0.43, + 0.55, + 0.62, + 0.46, + 0.33, + 0.05, + -0.17, + -0.33, + -0.48, + -0.58, + -0.67, + -0.7000000000000001, + -0.72, + -0.78, + -0.88, + -1.0, + -1.12, + -1.26, + -1.37, + -1.45, + -1.3900000000000001, + -1.31, + -1.12, + -0.88, + -0.64, + -0.48, + -0.33, + -0.19, + -0.17, + -0.21, + -0.54, + -0.9500000000000001, + -1.02, + -0.78, + -0.38, + -0.12, + -0.19, + -0.44, + -0.61, + -0.56, + -0.44, + -0.32, + -0.28, + -0.26, + -0.26, + -0.32, + -0.42, + -0.47000000000000003, + -0.38, + 0.0, + 0.44, + 0.52, + 0.46, + 0.2, + -0.03, + -0.21, + -0.42, + -0.65, + -0.74, + -0.67, + -0.71, + -0.9, + -1.02, + -0.9500000000000001, + -0.58, + -0.27, + -0.05, + 0.04, + 0.2, + 0.24, + 0.22, + 0.06, + -0.1, + -0.28, + -0.39, + -0.33, + -0.02, + 0.54, + 0.98, + 1.21, + 1.11, + 0.84, + 0.6, + 0.53, + 0.64, + 0.6900000000000001, + 0.67, + 0.29, + -0.09, + -0.39, + -0.54, + -0.45, + -0.44, + -0.41000000000000003, + -0.41000000000000003, + -0.56, + -0.75, + -1.1400000000000001, + -1.58, + -1.6500000000000001, + -1.46, + -1.18, + -0.92, + -0.8300000000000001, + -0.97, + -1.32, + -1.96, + -2.52, + -3.22, + -4.11, + -4.98, + -5.9, + -5.82, + -5.96, + -5.73, + -6.19, + -6.01, + -5.97, + -5.25, + -4.74, + -4.25, + -3.92, + -4.09, + -4.53, + -4.86, + -5.14, + -5.22, + -5.14, + -4.8500000000000005, + -4.29, + -3.83, + -3.34, + -2.7600000000000002, + -1.77, + -0.85, + -0.31, + 0.06, + -0.01, + -0.11, + -0.48, + -0.85, + -1.04, + -1.07, + -1.08, + -1.17, + -1.18, + -1.1300000000000001, + -1.01, + -1.03, + -0.97, + -0.8, + -0.68, + -0.49, + -0.36, + -0.05, + 0.36, + 0.49, + 0.42, + -0.19, + -0.77, + -1.01, + -1.08, + -0.86, + -0.68, + -0.62, + -0.65, + -0.64, + -0.65, + -0.67, + -0.64, + -0.62, + -0.68, + -0.93, + -1.26, + -1.29, + -1.09, + -1.05, + -1.24, + -1.46, + -1.45, + -1.28, + -0.84, + -0.47000000000000003, + -0.29, + -0.11, + -0.14, + -0.15, + -0.14, + -0.1, + 0.05, + 0.13, + 0.01, + -0.13, + -0.1, + 0.05, + -0.02, + -0.42, + -0.81, + -1.04, + -1.1500000000000001, + -1.17, + -1.29, + -1.32, + -1.23, + -0.73, + -0.19, + -0.03, + 0.13, + 0.11, + 0.22, + 0.47000000000000003, + 0.73, + 0.75, + 0.53, + 0.26, + 0.03, + -0.07, + -0.03, + 0.12, + 0.4, + 0.64, + 0.6900000000000001, + 0.61, + 0.33, + 0.1, + 0.05, + 0.09, + 0.11, + 0.03, + -0.13, + -0.25, + -0.04, + 0.2, + 0.38, + 0.55, + 0.54, + 0.42, + 0.29, + 0.11, + 0.09, + 0.15, + 0.23, + 0.35000000000000003, + 0.39, + 0.46, + 0.54, + 0.46, + 0.29, + 0.01, + -0.14, + 0.03, + 0.35000000000000003, + 0.62, + 0.88, + 0.64, + 0.37, + -0.06, + -0.48, + -0.71, + -0.98, + -1.44, + -1.98, + -2.3000000000000003, + -2.3000000000000003, + -2.04, + -1.78, + -1.8800000000000001, + -2.5100000000000002, + -3.34, + -4.14, + -4.58, + -3.93, + -3.09, + -1.72, + -0.32, + 0.65, + 1.35, + 1.16 + ], + [ + 0.23, + 0.29, + 0.28, + 0.23, + 0.07, + -0.13, + -0.35000000000000003, + -0.55, + -0.7000000000000001, + -0.8200000000000001, + -0.9, + -0.9400000000000001, + -0.96, + -0.96, + -0.9500000000000001, + -0.88, + -0.76, + -0.59, + -0.48, + -0.54, + -0.6, + -0.62, + -0.55, + -0.4, + -0.3, + -0.45, + -0.6900000000000001, + -1.04, + -1.42, + -1.6400000000000001, + -1.81, + -1.84, + -1.77, + -1.62, + -1.3900000000000001, + -1.24, + -1.16, + -1.17, + -1.29, + -1.4000000000000001, + -1.57, + -1.75, + -2.0, + -2.21, + -2.43, + -2.63, + -3.02, + -3.46, + -3.96, + -4.48, + -4.83, + -5.11, + -5.21, + -5.19, + -4.98, + -4.61, + -4.09, + -3.43, + -2.7600000000000002, + -2.12, + -1.55, + -1.1300000000000001, + -0.85, + -0.81, + -0.75, + -0.68, + -0.55, + -0.29, + -0.02, + 0.24, + 0.45, + 0.54, + 0.62, + 0.54, + 0.52, + 0.37, + 0.32, + 0.2, + 0.12, + 0.03, + -0.08, + -0.19, + -0.44, + -0.67, + -0.88, + -1.08, + -1.22, + -1.3800000000000001, + -1.43, + -1.45, + -1.36, + -1.21, + -0.9400000000000001, + -0.67, + -0.55, + -0.47000000000000003, + -0.37, + -0.36, + -0.52, + -0.86, + -1.08, + -1.09, + -0.71, + -0.15, + 0.12, + 0.05, + -0.19, + -0.41000000000000003, + -0.44, + -0.34, + -0.2, + -0.23, + -0.24, + -0.32, + -0.39, + -0.5, + -0.6, + -0.47000000000000003, + -0.16, + 0.24, + 0.64, + 0.61, + 0.45, + 0.16, + -0.19, + -0.54, + -0.9, + -1.01, + -0.92, + -0.9, + -1.0, + -1.08, + -0.78, + -0.34, + 0.12, + 0.49, + 0.6, + 0.59, + 0.47000000000000003, + 0.23, + 0.17, + 0.06, + -0.1, + -0.33, + -0.33, + -0.11, + 0.36, + 0.81, + 0.93, + 0.81, + 0.58, + 0.44, + 0.45, + 0.63, + 0.84, + 0.8200000000000001, + 0.71, + 0.33, + 0.13, + -0.04, + -0.05, + -0.17, + -0.26, + -0.24, + -0.2, + -0.37, + -0.6, + -0.98, + -1.28, + -1.35, + -1.44, + -1.45, + -1.52, + -1.7, + -2.13, + -2.66, + -3.18, + -3.83, + -4.4, + -5.29, + -5.48, + -5.78, + -5.2, + -5.08, + -5.34, + -5.92, + -5.48, + -5.15, + -4.58, + -4.25, + -4.21, + -4.51, + -4.93, + -5.22, + -5.33, + -5.38, + -5.28, + -5.0, + -4.58, + -3.96, + -3.31, + -2.21, + -1.08, + -0.29, + 0.37, + 0.35000000000000003, + 0.31, + -0.05, + -0.45, + -0.9400000000000001, + -1.36, + -1.51, + -1.71, + -1.6400000000000001, + -1.43, + -1.1300000000000001, + -0.8200000000000001, + -0.77, + -0.78, + -0.7000000000000001, + -0.59, + -0.5, + -0.37, + -0.05, + 0.35000000000000003, + 0.7000000000000001, + 0.35000000000000003, + -0.12, + -0.65, + -1.03, + -0.96, + -0.77, + -0.55, + -0.41000000000000003, + -0.6, + -0.88, + -0.97, + -1.02, + -0.9400000000000001, + -0.75, + -0.8200000000000001, + -1.12, + -1.32, + -1.19, + -0.96, + -0.77, + -0.8200000000000001, + -1.09, + -1.23, + -1.19, + -1.01, + -0.6900000000000001, + -0.4, + -0.27, + -0.13, + -0.11, + -0.05, + 0.06, + 0.15, + 0.09, + -0.17, + -0.36, + -0.37, + -0.24, + -0.18, + -0.42, + -0.81, + -1.08, + -1.18, + -1.3, + -1.46, + -1.61, + -1.3800000000000001, + -0.97, + -0.43, + 0.06, + 0.17, + 0.34, + 0.43, + 0.71, + 0.9, + 0.96, + 0.68, + 0.23, + 0.0, + -0.05, + 0.01, + 0.2, + 0.43, + 0.68, + 0.8300000000000001, + 0.74, + 0.55, + 0.27, + 0.14, + 0.18, + 0.26, + 0.1, + -0.06, + 0.02, + 0.2, + 0.41000000000000003, + 0.6, + 0.62, + 0.64, + 0.49, + 0.28, + 0.16, + 0.06, + 0.14, + 0.31, + 0.4, + 0.42, + 0.44, + 0.44, + 0.39, + 0.09, + -0.21, + -0.42, + -0.38, + -0.06, + 0.4, + 0.66, + 0.9400000000000001, + 0.74, + 0.52, + 0.06, + -0.42, + -0.86, + -1.43, + -1.87, + -2.12, + -2.07, + -1.74, + -1.57, + -1.77, + -2.2800000000000002, + -3.12, + -3.88, + -4.01, + -3.68, + -2.72, + -1.6500000000000001, + -0.38, + 0.75, + 1.12, + 1.21 + ], + [ + 0.13, + 0.17, + 0.16, + 0.05, + -0.14, + -0.36, + -0.58, + -0.76, + -0.87, + -0.96, + -1.0, + -1.03, + -1.03, + -1.03, + -1.0, + -0.91, + -0.71, + -0.52, + -0.51, + -0.5700000000000001, + -0.74, + -0.84, + -0.7000000000000001, + -0.54, + -0.53, + -0.63, + -0.96, + -1.36, + -1.6300000000000001, + -1.85, + -1.8900000000000001, + -1.84, + -1.68, + -1.41, + -1.21, + -1.09, + -1.08, + -1.23, + -1.37, + -1.54, + -1.7, + -1.94, + -2.17, + -2.44, + -2.68, + -3.0300000000000002, + -3.43, + -3.96, + -4.5, + -4.87, + -5.15, + -5.24, + -5.2, + -5.0200000000000005, + -4.69, + -4.23, + -3.59, + -2.92, + -2.18, + -1.58, + -1.17, + -0.84, + -0.88, + -0.88, + -0.92, + -0.86, + -0.66, + -0.45, + -0.17, + 0.09, + 0.3, + 0.48, + 0.5700000000000001, + 0.68, + 0.7000000000000001, + 0.79, + 0.74, + 0.75, + 0.68, + 0.64, + 0.54, + 0.33, + 0.06, + -0.33, + -0.64, + -0.87, + -1.1, + -1.24, + -1.41, + -1.45, + -1.44, + -1.24, + -0.98, + -0.74, + -0.59, + -0.51, + -0.5, + -0.54, + -0.77, + -0.96, + -1.1, + -0.89, + -0.35000000000000003, + 0.15, + 0.41000000000000003, + 0.31, + -0.05, + -0.33, + -0.41000000000000003, + -0.33, + -0.28, + -0.22, + -0.34, + -0.39, + -0.47000000000000003, + -0.59, + -0.6900000000000001, + -0.7000000000000001, + -0.41000000000000003, + 0.01, + 0.4, + 0.71, + 0.55, + 0.25, + -0.18, + -0.73, + -1.08, + -1.17, + -1.08, + -0.9500000000000001, + -1.01, + -1.0, + -0.75, + -0.09, + 0.55, + 1.02, + 1.36, + 1.1300000000000001, + 0.81, + 0.59, + 0.37, + 0.36, + 0.18, + -0.1, + -0.43, + -0.19, + 0.21, + 0.51, + 0.52, + 0.35000000000000003, + 0.11, + -0.03, + 0.09, + 0.32, + 0.63, + 0.79, + 0.67, + 0.5, + 0.31, + 0.32, + 0.15, + 0.04, + -0.06, + -0.09, + -0.01, + 0.06, + -0.19, + -0.5, + -0.92, + -1.32, + -1.6, + -2.0100000000000002, + -2.22, + -2.44, + -2.73, + -2.99, + -3.42, + -3.62, + -4.14, + -4.39, + -4.76, + -4.41, + -3.96, + -3.9, + -4.12, + -4.53, + -4.74, + -4.3100000000000005, + -4.07, + -3.96, + -4.34, + -4.82, + -5.38, + -5.58, + -5.41, + -5.29, + -5.12, + -4.88, + -4.54, + -3.97, + -2.93, + -1.78, + -0.68, + 0.36, + 0.52, + 0.63, + 0.32, + -0.02, + -0.58, + -1.17, + -1.57, + -1.94, + -2.0100000000000002, + -1.99, + -1.61, + -0.96, + -0.66, + -0.55, + -0.55, + -0.5700000000000001, + -0.5700000000000001, + -0.72, + -0.62, + -0.32, + 0.12, + 0.35000000000000003, + 0.33, + -0.13, + -0.65, + -0.8300000000000001, + -0.93, + -0.67, + -0.33, + -0.38, + -0.6, + -0.91, + -1.24, + -1.25, + -1.17, + -1.06, + -1.08, + -1.25, + -1.29, + -1.1300000000000001, + -0.73, + -0.49, + -0.6, + -0.75, + -1.01, + -1.1, + -1.07, + -0.93, + -0.68, + -0.47000000000000003, + -0.29, + -0.09, + 0.07, + 0.25, + 0.23, + 0.08, + -0.25, + -0.62, + -0.63, + -0.44, + -0.35000000000000003, + -0.42, + -0.68, + -0.9, + -1.07, + -1.29, + -1.53, + -1.71, + -1.6500000000000001, + -1.23, + -0.66, + -0.23, + 0.13, + 0.25, + 0.42, + 0.72, + 1.12, + 1.11, + 0.86, + 0.46, + 0.09, + 0.03, + 0.09, + 0.2, + 0.35000000000000003, + 0.56, + 0.79, + 0.85, + 0.64, + 0.38, + 0.23, + 0.22, + 0.24, + 0.19, + 0.17, + 0.25, + 0.44, + 0.64, + 0.62, + 0.61, + 0.56, + 0.5, + 0.36, + 0.27, + 0.25, + 0.31, + 0.41000000000000003, + 0.43, + 0.41000000000000003, + 0.31, + 0.26, + 0.14, + -0.11, + -0.56, + -0.9, + -0.88, + -0.65, + -0.16, + 0.39, + 0.74, + 1.17, + 0.87, + 0.53, + -0.05, + -0.6900000000000001, + -1.21, + -1.6500000000000001, + -1.78, + -1.68, + -1.47, + -1.42, + -1.6400000000000001, + -2.14, + -2.83, + -3.36, + -3.5700000000000003, + -3.0700000000000003, + -2.33, + -1.43, + -0.36, + 0.51, + 1.1, + 0.9500000000000001 + ], + [ + 0.09, + 0.1, + 0.02, + -0.11, + -0.33, + -0.6, + -0.79, + -0.9500000000000001, + -1.04, + -1.07, + -1.1, + -1.11, + -1.11, + -1.1, + -1.06, + -0.92, + -0.71, + -0.55, + -0.48, + -0.71, + -0.93, + -0.96, + -0.88, + -0.73, + -0.68, + -0.88, + -1.22, + -1.54, + -1.79, + -1.86, + -1.84, + -1.71, + -1.47, + -1.23, + -1.06, + -1.02, + -1.19, + -1.36, + -1.56, + -1.73, + -1.93, + -2.14, + -2.44, + -2.7, + -3.06, + -3.43, + -3.96, + -4.5200000000000005, + -4.95, + -5.2700000000000005, + -5.38, + -5.33, + -5.13, + -4.7700000000000005, + -4.36, + -3.8000000000000003, + -3.17, + -2.44, + -1.76, + -1.26, + -0.89, + -0.93, + -0.96, + -1.11, + -1.16, + -1.0, + -0.78, + -0.54, + -0.29, + -0.04, + 0.18, + 0.36, + 0.52, + 0.66, + 0.8300000000000001, + 0.92, + 1.03, + 1.03, + 1.06, + 1.03, + 1.01, + 0.84, + 0.54, + 0.18, + -0.2, + -0.5, + -0.73, + -0.98, + -1.23, + -1.45, + -1.41, + -1.3, + -1.0, + -0.73, + -0.58, + -0.47000000000000003, + -0.47000000000000003, + -0.5700000000000001, + -0.7000000000000001, + -0.8300000000000001, + -0.78, + -0.42, + 0.08, + 0.55, + 0.74, + 0.45, + 0.05, + -0.36, + -0.55, + -0.54, + -0.48, + -0.49, + -0.51, + -0.51, + -0.5, + -0.64, + -0.8300000000000001, + -0.87, + -0.79, + -0.34, + 0.18, + 0.46, + 0.59, + 0.28, + -0.23, + -0.74, + -1.12, + -1.19, + -0.98, + -0.87, + -0.97, + -1.01, + -0.63, + -0.02, + 0.86, + 1.58, + 1.76, + 1.78, + 1.32, + 0.97, + 0.9, + 0.9, + 0.62, + 0.15, + -0.11, + -0.16, + 0.12, + 0.28, + 0.23, + -0.08, + -0.33, + -0.48, + -0.43, + -0.04, + 0.32, + 0.51, + 0.49, + 0.31, + 0.2, + 0.24, + 0.25, + 0.14, + 0.07, + 0.13, + 0.23, + 0.25, + 0.19, + -0.27, + -0.77, + -1.28, + -1.86, + -2.32, + -2.79, + -2.96, + -2.84, + -2.92, + -2.86, + -2.99, + -3.04, + -3.22, + -3.33, + -3.06, + -2.82, + -2.48, + -2.93, + -3.24, + -3.37, + -3.24, + -3.16, + -3.39, + -3.98, + -5.07, + -5.63, + -5.86, + -5.67, + -5.19, + -4.93, + -4.76, + -4.4, + -3.71, + -2.74, + -1.58, + -0.37, + 0.26, + 0.68, + 0.54, + 0.31, + -0.18, + -0.76, + -1.31, + -1.82, + -2.08, + -2.24, + -2.14, + -1.71, + -1.16, + -0.74, + -0.63, + -0.65, + -0.75, + -1.04, + -1.17, + -1.1, + -0.81, + -0.36, + -0.01, + 0.11, + -0.1, + -0.37, + -0.64, + -0.71, + -0.65, + -0.44, + -0.32, + -0.58, + -0.9500000000000001, + -1.19, + -1.34, + -1.31, + -1.31, + -1.33, + -1.35, + -1.29, + -0.92, + -0.5700000000000001, + -0.49, + -0.53, + -0.71, + -0.85, + -1.03, + -1.1300000000000001, + -1.04, + -0.92, + -0.68, + -0.48, + -0.15, + 0.23, + 0.32, + 0.32, + 0.05, + -0.36, + -0.66, + -0.77, + -0.61, + -0.38, + -0.37, + -0.46, + -0.65, + -0.92, + -1.21, + -1.6500000000000001, + -1.93, + -1.94, + -1.6300000000000001, + -1.07, + -0.52, + -0.15, + 0.06, + 0.31, + 0.66, + 1.05, + 1.37, + 1.1, + 0.71, + 0.41000000000000003, + 0.26, + 0.26, + 0.21, + 0.27, + 0.4, + 0.61, + 0.79, + 0.71, + 0.41000000000000003, + 0.21, + 0.22, + 0.24, + 0.3, + 0.34, + 0.5, + 0.7000000000000001, + 0.64, + 0.5, + 0.42, + 0.41000000000000003, + 0.38, + 0.37, + 0.36, + 0.46, + 0.51, + 0.49, + 0.46, + 0.31, + 0.18, + 0.07, + -0.08, + -0.44, + -0.93, + -1.33, + -1.56, + -1.28, + -0.88, + -0.22, + 0.49, + 0.86, + 1.2, + 0.71, + 0.22, + -0.42, + -0.93, + -1.2, + -1.2, + -1.09, + -1.03, + -1.09, + -1.45, + -1.96, + -2.47, + -2.96, + -2.91, + -2.54, + -1.95, + -1.24, + -0.38, + 0.43, + 0.75, + 0.75 + ], + [ + 0.02, + 0.0, + -0.09, + -0.26, + -0.5, + -0.76, + -1.0, + -1.12, + -1.18, + -1.2, + -1.19, + -1.2, + -1.19, + -1.18, + -1.1400000000000001, + -1.01, + -0.77, + -0.58, + -0.65, + -0.8300000000000001, + -1.03, + -1.12, + -1.0, + -0.86, + -0.89, + -1.07, + -1.3800000000000001, + -1.69, + -1.8, + -1.77, + -1.69, + -1.5, + -1.27, + -1.06, + -0.97, + -1.1500000000000001, + -1.35, + -1.61, + -1.81, + -2.0, + -2.19, + -2.45, + -2.73, + -3.09, + -3.45, + -3.96, + -4.53, + -5.0200000000000005, + -5.44, + -5.57, + -5.57, + -5.36, + -4.99, + -4.57, + -4.03, + -3.47, + -2.83, + -2.15, + -1.6, + -1.16, + -1.09, + -1.1, + -1.3, + -1.45, + -1.3800000000000001, + -1.23, + -0.92, + -0.64, + -0.37, + -0.13, + 0.09, + 0.27, + 0.46, + 0.64, + 0.8200000000000001, + 1.01, + 1.11, + 1.19, + 1.22, + 1.29, + 1.28, + 1.24, + 1.01, + 0.71, + 0.37, + 0.06, + -0.2, + -0.54, + -0.88, + -1.19, + -1.36, + -1.2, + -0.97, + -0.72, + -0.52, + -0.44, + -0.36, + -0.43, + -0.47000000000000003, + -0.5, + -0.3, + 0.04, + 0.52, + 0.91, + 0.9400000000000001, + 0.6900000000000001, + 0.13, + -0.35000000000000003, + -0.67, + -0.8, + -0.8200000000000001, + -0.86, + -0.78, + -0.66, + -0.5700000000000001, + -0.62, + -0.87, + -1.1300000000000001, + -1.02, + -0.76, + -0.23, + 0.28, + 0.4, + 0.3, + -0.17, + -0.71, + -1.04, + -1.0, + -0.8300000000000001, + -0.76, + -0.84, + -0.93, + -0.68, + 0.19, + 1.1, + 1.73, + 2.15, + 1.95, + 1.71, + 1.42, + 1.46, + 1.32, + 1.12, + 0.56, + 0.13, + 0.04, + 0.07, + 0.12, + -0.02, + -0.27, + -0.59, + -0.78, + -0.74, + -0.45, + 0.02, + 0.3, + 0.18, + -0.02, + 0.02, + 0.08, + 0.2, + 0.19, + 0.26, + 0.36, + 0.43, + 0.45, + 0.19, + -0.27, + -0.88, + -1.51, + -2.09, + -2.71, + -3.08, + -3.0100000000000002, + -2.82, + -2.36, + -2.16, + -2.0, + -1.9100000000000001, + -2.16, + -2.2, + -2.2800000000000002, + -1.98, + -1.97, + -2.0, + -2.3000000000000003, + -2.18, + -2.16, + -2.1, + -2.56, + -3.41, + -4.49, + -5.68, + -5.93, + -5.79, + -5.38, + -5.0, + -4.74, + -4.3, + -3.61, + -2.66, + -1.57, + -0.61, + 0.14, + 0.4, + 0.42, + 0.09, + -0.34, + -0.91, + -1.47, + -1.93, + -2.2, + -2.43, + -2.48, + -2.09, + -1.57, + -1.16, + -1.0, + -1.07, + -1.44, + -1.77, + -1.87, + -1.78, + -1.37, + -0.93, + -0.31, + 0.02, + 0.09, + 0.0, + -0.3, + -0.54, + -0.61, + -0.59, + -0.48, + -0.51, + -0.81, + -1.03, + -1.22, + -1.4000000000000001, + -1.44, + -1.51, + -1.46, + -1.1300000000000001, + -0.78, + -0.61, + -0.53, + -0.71, + -0.88, + -0.8300000000000001, + -0.89, + -1.0, + -1.09, + -0.9500000000000001, + -0.8200000000000001, + -0.55, + -0.19, + 0.12, + 0.35000000000000003, + 0.22, + -0.05, + -0.39, + -0.64, + -0.71, + -0.59, + -0.38, + -0.19, + -0.22, + -0.42, + -0.71, + -1.27, + -1.81, + -2.23, + -2.44, + -2.04, + -1.54, + -0.84, + -0.31, + -0.08, + 0.15, + 0.56, + 1.08, + 1.27, + 1.31, + 0.93, + 0.73, + 0.58, + 0.45, + 0.37, + 0.22, + 0.29, + 0.53, + 0.68, + 0.62, + 0.39, + 0.24, + 0.19, + 0.35000000000000003, + 0.42, + 0.55, + 0.74, + 0.71, + 0.55, + 0.31, + 0.09, + 0.15, + 0.25, + 0.29, + 0.42, + 0.5, + 0.5700000000000001, + 0.55, + 0.41000000000000003, + 0.26, + 0.1, + -0.06, + -0.27, + -0.62, + -1.19, + -1.75, + -1.99, + -2.0, + -1.53, + -0.97, + -0.21, + 0.51, + 0.6900000000000001, + 0.7000000000000001, + 0.15, + -0.29, + -0.65, + -0.63, + -0.54, + -0.32, + -0.31, + -0.64, + -1.04, + -1.59, + -2.11, + -2.38, + -2.41, + -2.0, + -1.5, + -0.96, + -0.34, + 0.21, + 0.52, + 0.41000000000000003 + ], + [ + -0.03, + -0.07, + -0.2, + -0.38, + -0.64, + -0.9400000000000001, + -1.1500000000000001, + -1.28, + -1.31, + -1.31, + -1.3, + -1.29, + -1.29, + -1.28, + -1.24, + -1.1, + -0.88, + -0.78, + -0.8, + -1.0, + -1.19, + -1.19, + -1.09, + -1.02, + -1.05, + -1.23, + -1.5, + -1.7, + -1.73, + -1.6600000000000001, + -1.52, + -1.33, + -1.1, + -0.96, + -1.08, + -1.29, + -1.6300000000000001, + -1.8900000000000001, + -2.09, + -2.2800000000000002, + -2.52, + -2.7800000000000002, + -3.13, + -3.49, + -3.98, + -4.53, + -5.04, + -5.5200000000000005, + -5.73, + -5.78, + -5.62, + -5.3100000000000005, + -4.88, + -4.36, + -3.83, + -3.2600000000000002, + -2.65, + -2.08, + -1.58, + -1.3900000000000001, + -1.33, + -1.47, + -1.6600000000000001, + -1.7, + -1.67, + -1.3900000000000001, + -1.09, + -0.73, + -0.43, + -0.17, + 0.06, + 0.26, + 0.44, + 0.63, + 0.8300000000000001, + 1.0, + 1.1400000000000001, + 1.21, + 1.29, + 1.35, + 1.45, + 1.44, + 1.3800000000000001, + 1.16, + 0.91, + 0.64, + 0.34, + 0.03, + -0.45, + -0.8300000000000001, + -1.05, + -1.04, + -0.88, + -0.72, + -0.5700000000000001, + -0.43, + -0.37, + -0.29, + -0.3, + -0.16, + 0.03, + 0.36, + 0.76, + 1.06, + 1.1, + 0.8200000000000001, + 0.33, + -0.27, + -0.68, + -0.99, + -1.1400000000000001, + -1.19, + -1.1500000000000001, + -0.8, + -0.52, + -0.58, + -0.86, + -1.1400000000000001, + -1.33, + -1.0, + -0.59, + -0.04, + 0.39, + 0.3, + -0.05, + -0.54, + -0.86, + -0.87, + -0.71, + -0.63, + -0.78, + -0.89, + -0.43, + 0.33, + 1.17, + 1.84, + 1.95, + 1.86, + 1.61, + 1.55, + 1.52, + 1.6, + 1.18, + 0.7000000000000001, + 0.24, + 0.01, + -0.06, + -0.16, + -0.28, + -0.37, + -0.62, + -0.9400000000000001, + -0.99, + -0.7000000000000001, + -0.27, + 0.01, + -0.04, + -0.12, + -0.14, + 0.1, + 0.25, + 0.38, + 0.49, + 0.58, + 0.63, + 0.45, + 0.03, + -0.54, + -1.24, + -1.8800000000000001, + -2.43, + -2.95, + -3.11, + -3.0, + -2.42, + -1.9100000000000001, + -1.53, + -1.23, + -1.32, + -1.3800000000000001, + -1.87, + -2.04, + -2.02, + -1.93, + -1.95, + -1.84, + -1.6400000000000001, + -1.22, + -1.37, + -1.71, + -2.62, + -3.73, + -4.84, + -5.74, + -5.69, + -5.5200000000000005, + -5.18, + -4.84, + -4.39, + -3.52, + -2.58, + -1.74, + -0.87, + -0.22, + 0.09, + 0.06, + -0.15, + -0.58, + -1.06, + -1.6500000000000001, + -2.19, + -2.59, + -2.91, + -2.98, + -2.71, + -2.13, + -1.58, + -1.4000000000000001, + -1.6, + -2.0100000000000002, + -2.5300000000000002, + -2.72, + -2.38, + -1.98, + -1.24, + -0.58, + 0.04, + 0.35000000000000003, + 0.27, + 0.06, + -0.38, + -0.72, + -0.6900000000000001, + -0.58, + -0.5700000000000001, + -0.64, + -0.93, + -1.23, + -1.41, + -1.58, + -1.61, + -1.4000000000000001, + -1.08, + -0.79, + -0.59, + -0.75, + -0.9400000000000001, + -0.92, + -0.86, + -0.71, + -0.71, + -0.84, + -0.88, + -0.79, + -0.63, + -0.33, + -0.04, + 0.06, + 0.01, + -0.22, + -0.37, + -0.55, + -0.5700000000000001, + -0.45, + -0.23, + -0.04, + 0.04, + -0.11, + -0.59, + -1.18, + -1.8800000000000001, + -2.48, + -2.6, + -2.48, + -1.76, + -1.07, + -0.53, + -0.17, + 0.05, + 0.41000000000000003, + 0.8, + 1.07, + 1.0, + 0.91, + 0.73, + 0.74, + 0.63, + 0.49, + 0.39, + 0.43, + 0.6, + 0.63, + 0.54, + 0.41000000000000003, + 0.28, + 0.44, + 0.5700000000000001, + 0.67, + 0.76, + 0.75, + 0.64, + 0.35000000000000003, + -0.02, + -0.11, + -0.03, + 0.11, + 0.23, + 0.33, + 0.43, + 0.49, + 0.49, + 0.38, + 0.27, + 0.11, + -0.11, + -0.33, + -0.73, + -1.29, + -1.93, + -2.38, + -2.41, + -2.2, + -1.59, + -0.9500000000000001, + -0.29, + 0.1, + 0.07, + -0.09, + -0.4, + -0.4, + -0.28, + 0.17, + 0.36, + 0.28, + -0.03, + -0.62, + -1.1500000000000001, + -1.59, + -1.8800000000000001, + -1.79, + -1.44, + -1.0, + -0.55, + -0.23, + 0.08, + 0.28, + 0.22 + ], + [ + -0.06, + -0.15, + -0.3, + -0.5, + -0.77, + -1.05, + -1.28, + -1.3800000000000001, + -1.42, + -1.41, + -1.4000000000000001, + -1.3900000000000001, + -1.3900000000000001, + -1.3900000000000001, + -1.36, + -1.23, + -1.06, + -0.9500000000000001, + -1.04, + -1.22, + -1.29, + -1.27, + -1.2, + -1.16, + -1.19, + -1.33, + -1.53, + -1.69, + -1.6400000000000001, + -1.5, + -1.36, + -1.2, + -1.0, + -0.97, + -1.12, + -1.52, + -1.87, + -2.13, + -2.35, + -2.6, + -2.85, + -3.19, + -3.54, + -4.01, + -4.53, + -5.04, + -5.54, + -5.78, + -5.87, + -5.7700000000000005, + -5.53, + -5.17, + -4.73, + -4.21, + -3.73, + -3.17, + -2.6, + -2.06, + -1.72, + -1.54, + -1.62, + -1.78, + -1.85, + -1.9100000000000001, + -1.77, + -1.53, + -1.1500000000000001, + -0.79, + -0.44, + -0.14, + 0.09, + 0.3, + 0.45, + 0.61, + 0.78, + 0.9400000000000001, + 1.06, + 1.16, + 1.22, + 1.3, + 1.3900000000000001, + 1.52, + 1.52, + 1.5, + 1.33, + 1.09, + 0.8200000000000001, + 0.43, + 0.01, + -0.46, + -0.74, + -0.8300000000000001, + -0.78, + -0.73, + -0.6900000000000001, + -0.56, + -0.44, + -0.34, + -0.18, + -0.04, + 0.2, + 0.48, + 0.74, + 0.99, + 1.04, + 0.8300000000000001, + 0.44, + -0.09, + -0.68, + -1.06, + -1.3800000000000001, + -1.53, + -1.29, + -0.91, + -0.5, + -0.35000000000000003, + -0.6900000000000001, + -1.09, + -1.26, + -1.18, + -0.71, + -0.15, + 0.3, + 0.53, + 0.18, + -0.32, + -0.65, + -0.79, + -0.68, + -0.6, + -0.72, + -0.63, + -0.27, + 0.48, + 1.27, + 1.56, + 1.57, + 1.37, + 1.11, + 1.09, + 1.2, + 1.17, + 0.88, + 0.4, + 0.03, + -0.25, + -0.56, + -0.66, + -0.5700000000000001, + -0.6, + -0.63, + -0.91, + -1.1, + -0.92, + -0.42, + -0.12, + -0.08, + -0.16, + 0.01, + 0.29, + 0.52, + 0.6900000000000001, + 0.75, + 0.8, + 0.6900000000000001, + 0.34, + -0.18, + -0.9400000000000001, + -1.6500000000000001, + -2.33, + -2.84, + -3.09, + -3.2, + -2.7800000000000002, + -2.21, + -1.74, + -1.28, + -1.22, + -1.1500000000000001, + -1.49, + -1.8900000000000001, + -2.32, + -2.5, + -2.45, + -2.4, + -2.06, + -1.43, + -1.04, + -0.86, + -1.28, + -1.81, + -2.9, + -3.92, + -4.8, + -5.45, + -5.3500000000000005, + -5.19, + -4.88, + -4.26, + -3.45, + -2.64, + -1.82, + -1.06, + -0.46, + -0.27, + -0.33, + -0.52, + -0.85, + -1.32, + -1.9000000000000001, + -2.58, + -3.2800000000000002, + -3.65, + -3.84, + -3.43, + -2.49, + -1.9000000000000001, + -1.53, + -1.74, + -2.5, + -3.0700000000000003, + -3.22, + -2.98, + -2.22, + -1.48, + -0.58, + 0.11, + 0.48, + 0.56, + 0.23, + -0.28, + -0.68, + -0.8300000000000001, + -0.66, + -0.52, + -0.68, + -1.04, + -1.3, + -1.45, + -1.58, + -1.59, + -1.4000000000000001, + -1.1500000000000001, + -0.87, + -0.8200000000000001, + -0.91, + -1.03, + -1.03, + -0.72, + -0.45, + -0.4, + -0.46, + -0.64, + -0.73, + -0.64, + -0.52, + -0.37, + -0.39, + -0.4, + -0.36, + -0.46, + -0.39, + -0.39, + -0.3, + -0.09, + 0.16, + 0.26, + 0.1, + -0.31, + -0.96, + -1.68, + -2.23, + -2.52, + -2.29, + -1.79, + -1.1500000000000001, + -0.66, + -0.36, + -0.14, + 0.14, + 0.36, + 0.5, + 0.42, + 0.37, + 0.5, + 0.54, + 0.65, + 0.5700000000000001, + 0.73, + 0.8, + 0.8, + 0.79, + 0.59, + 0.44, + 0.63, + 0.86, + 0.9400000000000001, + 0.99, + 0.84, + 0.68, + 0.43, + 0.05, + -0.2, + -0.23, + -0.09, + 0.11, + 0.2, + 0.18, + 0.26, + 0.32, + 0.34, + 0.4, + 0.31, + 0.11, + -0.11, + -0.38, + -0.74, + -1.36, + -2.04, + -2.54, + -2.7600000000000002, + -2.5300000000000002, + -2.12, + -1.53, + -1.05, + -0.68, + -0.56, + -0.6, + -0.48, + -0.38, + 0.08, + 0.48, + 0.74, + 0.65, + 0.24, + -0.28, + -0.79, + -1.21, + -1.34, + -1.24, + -0.86, + -0.41000000000000003, + -0.22, + -0.04, + 0.04, + 0.09, + 0.02 + ], + [ + -0.11, + -0.21, + -0.38, + -0.61, + -0.86, + -1.12, + -1.34, + -1.45, + -1.49, + -1.5, + -1.49, + -1.5, + -1.5, + -1.5, + -1.48, + -1.37, + -1.22, + -1.2, + -1.29, + -1.3900000000000001, + -1.43, + -1.34, + -1.25, + -1.23, + -1.26, + -1.35, + -1.51, + -1.56, + -1.45, + -1.29, + -1.18, + -1.04, + -0.93, + -0.93, + -1.23, + -1.6300000000000001, + -2.04, + -2.32, + -2.6, + -2.87, + -3.22, + -3.5700000000000003, + -4.05, + -4.55, + -5.05, + -5.53, + -5.79, + -5.87, + -5.8, + -5.58, + -5.29, + -4.94, + -4.51, + -4.11, + -3.63, + -3.15, + -2.6, + -2.1, + -1.76, + -1.68, + -1.76, + -1.8800000000000001, + -1.98, + -1.9000000000000001, + -1.75, + -1.46, + -1.1, + -0.74, + -0.39, + -0.12, + 0.12, + 0.28, + 0.4, + 0.51, + 0.62, + 0.77, + 0.89, + 0.97, + 0.99, + 1.05, + 1.1500000000000001, + 1.3, + 1.53, + 1.58, + 1.57, + 1.4000000000000001, + 1.04, + 0.67, + 0.24, + -0.2, + -0.55, + -0.7000000000000001, + -0.76, + -0.81, + -0.8, + -0.74, + -0.59, + -0.43, + -0.25, + -0.02, + 0.2, + 0.38, + 0.59, + 0.66, + 0.72, + 0.7000000000000001, + 0.38, + -0.07, + -0.62, + -1.17, + -1.55, + -1.62, + -1.42, + -0.92, + -0.41000000000000003, + -0.26, + -0.43, + -0.87, + -1.1400000000000001, + -1.06, + -0.7000000000000001, + -0.12, + 0.47000000000000003, + 0.67, + 0.49, + -0.01, + -0.5, + -0.66, + -0.65, + -0.6, + -0.38, + -0.27, + 0.06, + 0.68, + 1.1300000000000001, + 1.32, + 1.1, + 0.73, + 0.48, + 0.33, + 0.49, + 0.53, + 0.32, + -0.03, + -0.36, + -0.71, + -1.03, + -1.33, + -1.19, + -0.7000000000000001, + -0.68, + -0.81, + -1.01, + -0.8200000000000001, + -0.39, + -0.05, + 0.02, + 0.04, + 0.23, + 0.58, + 0.89, + 0.96, + 0.97, + 0.89, + 0.7000000000000001, + 0.27, + -0.4, + -1.19, + -2.06, + -2.71, + -3.25, + -3.45, + -3.2800000000000002, + -2.87, + -2.46, + -1.97, + -1.8900000000000001, + -1.8, + -1.78, + -1.99, + -2.32, + -2.72, + -3.0700000000000003, + -3.21, + -3.0700000000000003, + -2.64, + -1.82, + -1.05, + -0.88, + -1.05, + -1.54, + -2.04, + -3.1, + -4.09, + -4.73, + -5.05, + -4.92, + -4.59, + -4.0200000000000005, + -3.36, + -2.59, + -1.84, + -1.07, + -0.63, + -0.49, + -0.67, + -0.9500000000000001, + -1.17, + -1.52, + -2.2, + -3.12, + -3.91, + -4.62, + -4.68, + -4.09, + -3.0700000000000003, + -1.8, + -1.47, + -1.82, + -2.57, + -3.37, + -3.62, + -3.06, + -2.33, + -1.34, + -0.42, + 0.17, + 0.56, + 0.64, + 0.41000000000000003, + -0.19, + -0.7000000000000001, + -0.8, + -0.64, + -0.58, + -0.8300000000000001, + -1.17, + -1.4000000000000001, + -1.51, + -1.46, + -1.48, + -1.52, + -1.29, + -1.21, + -1.16, + -1.07, + -1.12, + -0.97, + -0.65, + -0.23, + -0.04, + -0.16, + -0.35000000000000003, + -0.54, + -0.59, + -0.62, + -0.79, + -0.8300000000000001, + -0.86, + -0.74, + -0.46, + -0.39, + -0.24, + -0.13, + 0.03, + 0.26, + 0.34, + 0.23, + -0.07, + -0.65, + -1.2, + -1.72, + -1.9000000000000001, + -1.74, + -1.47, + -1.07, + -0.77, + -0.59, + -0.41000000000000003, + -0.23, + -0.1, + -0.21, + -0.24, + -0.17, + 0.04, + 0.39, + 0.52, + 0.76, + 0.93, + 1.18, + 1.22, + 0.93, + 0.7000000000000001, + 0.78, + 1.02, + 1.24, + 1.3900000000000001, + 1.11, + 0.81, + 0.49, + 0.14, + -0.15, + -0.29, + -0.24, + 0.01, + 0.17, + 0.17, + 0.12, + 0.01, + 0.08, + 0.29, + 0.37, + 0.35000000000000003, + 0.16, + -0.16, + -0.44, + -0.79, + -1.36, + -2.04, + -2.61, + -2.8000000000000003, + -2.69, + -2.34, + -1.94, + -1.58, + -1.41, + -1.22, + -1.02, + -0.79, + -0.25, + 0.18, + 0.56, + 0.77, + 0.59, + 0.21, + -0.19, + -0.67, + -0.91, + -1.02, + -0.76, + -0.33, + -0.04, + 0.13, + 0.03, + -0.09, + -0.06, + -0.08 + ], + [ + -0.14, + -0.27, + -0.46, + -0.68, + -0.93, + -1.18, + -1.3800000000000001, + -1.5, + -1.57, + -1.58, + -1.59, + -1.6, + -1.59, + -1.6, + -1.58, + -1.48, + -1.41, + -1.41, + -1.48, + -1.56, + -1.49, + -1.37, + -1.26, + -1.21, + -1.2, + -1.22, + -1.32, + -1.3, + -1.17, + -0.98, + -0.91, + -0.91, + -0.8300000000000001, + -0.93, + -1.24, + -1.74, + -2.16, + -2.49, + -2.7800000000000002, + -3.16, + -3.5300000000000002, + -4.05, + -4.5600000000000005, + -5.07, + -5.57, + -5.82, + -5.9, + -5.8, + -5.55, + -5.26, + -4.89, + -4.55, + -4.26, + -3.87, + -3.5300000000000002, + -3.0500000000000003, + -2.57, + -2.08, + -1.75, + -1.67, + -1.74, + -1.86, + -1.8800000000000001, + -1.8, + -1.58, + -1.28, + -0.96, + -0.61, + -0.34, + -0.11, + 0.09, + 0.2, + 0.28, + 0.29, + 0.4, + 0.49, + 0.62, + 0.66, + 0.68, + 0.59, + 0.68, + 0.87, + 1.11, + 1.48, + 1.54, + 1.3800000000000001, + 1.07, + 0.67, + 0.25, + -0.15, + -0.49, + -0.7000000000000001, + -0.8300000000000001, + -0.91, + -0.92, + -0.86, + -0.73, + -0.56, + -0.36, + -0.12, + 0.12, + 0.27, + 0.18, + 0.25, + 0.32, + 0.31, + 0.27, + -0.13, + -0.68, + -1.24, + -1.59, + -1.67, + -1.43, + -0.93, + -0.48, + -0.28, + -0.38, + -0.6900000000000001, + -0.96, + -0.9400000000000001, + -0.58, + -0.02, + 0.58, + 0.9500000000000001, + 0.75, + 0.27, + -0.21, + -0.53, + -0.55, + -0.22, + 0.02, + 0.27, + 0.62, + 0.8300000000000001, + 1.12, + 1.07, + 0.75, + 0.31, + -0.09, + -0.24, + -0.2, + -0.03, + -0.02, + -0.31, + -0.6, + -0.98, + -1.57, + -1.81, + -1.53, + -1.03, + -0.47000000000000003, + -0.56, + -0.67, + -0.51, + -0.16, + 0.18, + 0.21, + 0.23, + 0.47000000000000003, + 0.84, + 1.07, + 1.11, + 0.99, + 0.8300000000000001, + 0.61, + 0.25, + -0.45, + -1.32, + -2.2, + -3.04, + -3.5300000000000002, + -3.77, + -3.59, + -3.34, + -2.93, + -2.84, + -2.8000000000000003, + -2.89, + -2.92, + -2.69, + -2.82, + -3.24, + -3.67, + -3.96, + -3.97, + -3.35, + -2.32, + -1.43, + -0.99, + -1.07, + -1.3, + -1.79, + -2.5300000000000002, + -3.52, + -4.34, + -4.66, + -4.55, + -4.23, + -3.79, + -3.16, + -2.58, + -1.85, + -1.11, + -0.61, + -0.64, + -0.89, + -1.19, + -1.46, + -1.76, + -2.4, + -3.45, + -4.6000000000000005, + -5.29, + -5.5200000000000005, + -4.8, + -3.29, + -2.05, + -1.26, + -1.62, + -2.65, + -3.49, + -3.5300000000000002, + -3.02, + -2.0300000000000002, + -1.01, + -0.35000000000000003, + 0.19, + 0.51, + 0.63, + 0.39, + -0.12, + -0.6, + -0.71, + -0.59, + -0.59, + -0.89, + -1.34, + -1.55, + -1.48, + -1.46, + -1.56, + -1.59, + -1.58, + -1.5, + -1.45, + -1.3800000000000001, + -1.1400000000000001, + -0.92, + -0.52, + -0.08, + 0.17, + 0.12, + -0.13, + -0.34, + -0.48, + -0.63, + -0.9500000000000001, + -1.33, + -1.3, + -1.05, + -0.74, + -0.37, + -0.21, + 0.0, + 0.16, + 0.18, + 0.25, + 0.25, + -0.01, + -0.28, + -0.74, + -1.0, + -1.08, + -1.09, + -0.9500000000000001, + -0.97, + -0.98, + -0.84, + -0.7000000000000001, + -0.53, + -0.51, + -0.62, + -0.75, + -0.58, + -0.08, + 0.28, + 0.5700000000000001, + 0.81, + 1.11, + 1.37, + 1.3800000000000001, + 1.12, + 0.9500000000000001, + 1.03, + 1.23, + 1.48, + 1.3800000000000001, + 1.04, + 0.6, + 0.18, + -0.11, + -0.3, + -0.34, + -0.13, + 0.11, + 0.26, + 0.22, + -0.03, + -0.14, + -0.05, + 0.16, + 0.42, + 0.43, + 0.15, + -0.18, + -0.47000000000000003, + -0.8200000000000001, + -1.32, + -1.95, + -2.46, + -2.68, + -2.61, + -2.35, + -2.11, + -2.0, + -1.8900000000000001, + -1.83, + -1.52, + -0.97, + -0.41000000000000003, + 0.19, + 0.53, + 0.51, + 0.33, + 0.06, + -0.35000000000000003, + -0.6, + -0.8300000000000001, + -0.72, + -0.42, + -0.05, + 0.24, + 0.24, + 0.05, + -0.16, + -0.27, + -0.31 + ], + [ + -0.18, + -0.33, + -0.52, + -0.74, + -0.98, + -1.22, + -1.42, + -1.58, + -1.6500000000000001, + -1.68, + -1.68, + -1.67, + -1.6600000000000001, + -1.6500000000000001, + -1.6300000000000001, + -1.59, + -1.54, + -1.57, + -1.6600000000000001, + -1.62, + -1.5, + -1.35, + -1.22, + -1.12, + -1.04, + -1.01, + -0.98, + -0.96, + -0.79, + -0.66, + -0.71, + -0.75, + -0.85, + -0.96, + -1.36, + -1.87, + -2.31, + -2.64, + -3.0100000000000002, + -3.4, + -3.96, + -4.53, + -5.09, + -5.63, + -5.92, + -6.03, + -5.9, + -5.6000000000000005, + -5.22, + -4.75, + -4.3500000000000005, + -3.97, + -3.74, + -3.5700000000000003, + -3.23, + -2.87, + -2.39, + -1.95, + -1.62, + -1.55, + -1.62, + -1.7, + -1.71, + -1.6, + -1.36, + -1.07, + -0.75, + -0.49, + -0.27, + -0.09, + 0.05, + 0.15, + 0.17, + 0.19, + 0.21, + 0.33, + 0.43, + 0.48, + 0.36, + 0.27, + 0.03, + 0.21, + 0.55, + 0.92, + 1.21, + 1.1, + 0.8300000000000001, + 0.45, + 0.14, + -0.22, + -0.56, + -0.79, + -0.97, + -1.06, + -1.05, + -0.93, + -0.8200000000000001, + -0.7000000000000001, + -0.49, + -0.2, + 0.02, + 0.04, + -0.05, + -0.21, + -0.14, + 0.06, + 0.03, + -0.2, + -0.74, + -1.27, + -1.62, + -1.6600000000000001, + -1.41, + -1.07, + -0.74, + -0.44, + -0.44, + -0.64, + -0.8200000000000001, + -0.78, + -0.46, + 0.12, + 0.8, + 1.17, + 1.1, + 0.61, + 0.09, + -0.23, + -0.29, + 0.03, + 0.51, + 0.84, + 0.92, + 1.08, + 1.08, + 0.93, + 0.58, + 0.14, + -0.33, + -0.59, + -0.54, + -0.29, + -0.2, + -0.28, + -0.61, + -1.12, + -1.7, + -2.0300000000000002, + -1.73, + -0.86, + -0.31, + -0.18, + -0.27, + -0.2, + 0.15, + 0.38, + 0.41000000000000003, + 0.45, + 0.68, + 0.9400000000000001, + 1.08, + 0.96, + 0.67, + 0.51, + 0.36, + 0.05, + -0.44, + -1.3, + -2.15, + -3.0, + -3.63, + -3.87, + -4.0, + -3.75, + -3.61, + -3.54, + -3.81, + -3.99, + -3.89, + -3.64, + -3.38, + -3.64, + -4.2700000000000005, + -4.8100000000000005, + -4.78, + -4.14, + -2.9, + -1.69, + -1.12, + -0.91, + -1.12, + -1.59, + -2.31, + -3.31, + -4.13, + -4.51, + -4.39, + -4.04, + -3.6, + -3.16, + -2.62, + -1.97, + -1.24, + -0.71, + -0.67, + -0.98, + -1.3, + -1.58, + -1.9100000000000001, + -2.5500000000000003, + -3.64, + -4.88, + -5.78, + -5.99, + -5.28, + -3.75, + -2.04, + -1.25, + -1.51, + -2.5500000000000003, + -3.2600000000000002, + -3.3000000000000003, + -2.64, + -1.61, + -0.91, + -0.34, + -0.02, + 0.21, + 0.39, + 0.22, + -0.17, + -0.5, + -0.59, + -0.46, + -0.52, + -0.9500000000000001, + -1.43, + -1.76, + -1.71, + -1.75, + -1.85, + -1.78, + -1.76, + -1.6400000000000001, + -1.59, + -1.48, + -1.23, + -0.8300000000000001, + -0.36, + 0.09, + 0.35000000000000003, + 0.28, + 0.01, + -0.21, + -0.34, + -0.6, + -1.08, + -1.53, + -1.68, + -1.41, + -1.0, + -0.6, + -0.12, + 0.1, + 0.16, + 0.17, + 0.07, + 0.05, + 0.14, + -0.06, + -0.21, + -0.35000000000000003, + -0.39, + -0.38, + -0.67, + -1.02, + -1.18, + -1.18, + -0.9500000000000001, + -0.66, + -0.64, + -0.79, + -0.9, + -0.63, + -0.13, + 0.36, + 0.64, + 0.72, + 1.02, + 1.31, + 1.33, + 1.29, + 1.16, + 1.07, + 1.2, + 1.2, + 0.99, + 0.67, + 0.22, + -0.11, + -0.33, + -0.42, + -0.31, + -0.1, + 0.16, + 0.29, + 0.18, + -0.08, + -0.27, + -0.18, + 0.18, + 0.44, + 0.45, + 0.18, + -0.2, + -0.51, + -0.79, + -1.24, + -1.74, + -2.17, + -2.4, + -2.33, + -2.2, + -2.1, + -2.15, + -2.3000000000000003, + -2.23, + -1.92, + -1.32, + -0.55, + 0.06, + 0.37, + 0.34, + 0.13, + -0.15, + -0.34, + -0.58, + -0.62, + -0.47000000000000003, + -0.21, + 0.13, + 0.32, + 0.29, + 0.09, + -0.14, + -0.41000000000000003, + -0.66 + ], + [ + -0.25, + -0.38, + -0.59, + -0.8, + -1.02, + -1.26, + -1.47, + -1.6300000000000001, + -1.73, + -1.76, + -1.75, + -1.74, + -1.72, + -1.71, + -1.68, + -1.6400000000000001, + -1.6400000000000001, + -1.69, + -1.7, + -1.6, + -1.42, + -1.23, + -1.11, + -1.0, + -0.89, + -0.8, + -0.74, + -0.65, + -0.53, + -0.54, + -0.62, + -0.84, + -0.9500000000000001, + -1.22, + -1.62, + -2.1, + -2.54, + -2.88, + -3.2600000000000002, + -3.77, + -4.37, + -5.01, + -5.61, + -6.0, + -6.18, + -6.12, + -5.82, + -5.36, + -4.78, + -4.21, + -3.64, + -3.3000000000000003, + -3.13, + -3.0100000000000002, + -2.8000000000000003, + -2.45, + -2.02, + -1.57, + -1.3800000000000001, + -1.31, + -1.42, + -1.5, + -1.5, + -1.3800000000000001, + -1.17, + -0.88, + -0.6, + -0.37, + -0.18, + -0.02, + 0.12, + 0.23, + 0.27, + 0.33, + 0.34, + 0.49, + 0.58, + 0.63, + 0.48, + 0.07, + -0.18, + -0.5, + -0.16, + 0.22, + 0.5, + 0.62, + 0.35000000000000003, + 0.14, + -0.13, + -0.39, + -0.7000000000000001, + -1.02, + -1.27, + -1.29, + -1.18, + -1.03, + -0.9, + -0.79, + -0.61, + -0.31, + -0.04, + -0.03, + -0.24, + -0.4, + -0.38, + -0.17, + -0.08, + -0.31, + -0.71, + -1.21, + -1.56, + -1.58, + -1.47, + -1.24, + -0.9500000000000001, + -0.7000000000000001, + -0.48, + -0.45, + -0.59, + -0.5, + -0.19, + 0.39, + 1.07, + 1.45, + 1.4000000000000001, + 0.99, + 0.47000000000000003, + 0.02, + -0.04, + 0.14, + 0.63, + 0.96, + 1.02, + 1.02, + 0.9400000000000001, + 0.84, + 0.52, + 0.11, + -0.31, + -0.68, + -0.68, + -0.39, + -0.15, + -0.22, + -0.53, + -1.03, + -1.56, + -1.93, + -1.47, + -0.6, + -0.04, + 0.09, + -0.02, + 0.04, + 0.27, + 0.47000000000000003, + 0.61, + 0.7000000000000001, + 0.79, + 0.96, + 0.88, + 0.5, + 0.14, + -0.15, + -0.19, + -0.32, + -0.68, + -1.12, + -1.99, + -2.74, + -3.41, + -3.99, + -4.12, + -4.18, + -4.05, + -4.04, + -4.32, + -4.7700000000000005, + -4.71, + -4.29, + -3.95, + -4.0, + -4.59, + -5.38, + -5.5600000000000005, + -4.75, + -3.2600000000000002, + -1.85, + -0.93, + -0.6900000000000001, + -0.85, + -1.33, + -2.19, + -3.19, + -3.95, + -4.33, + -4.39, + -4.03, + -3.63, + -3.22, + -2.79, + -2.19, + -1.5, + -1.0, + -0.77, + -0.97, + -1.29, + -1.56, + -1.9000000000000001, + -2.58, + -3.66, + -4.86, + -5.86, + -6.12, + -5.5, + -4.0600000000000005, + -2.3000000000000003, + -1.42, + -1.69, + -2.31, + -3.0, + -2.94, + -2.21, + -1.51, + -0.9, + -0.54, + -0.36, + -0.15, + -0.03, + -0.05, + -0.34, + -0.53, + -0.43, + -0.31, + -0.46, + -0.93, + -1.58, + -1.97, + -2.37, + -2.39, + -2.19, + -2.13, + -1.74, + -1.59, + -1.54, + -1.42, + -1.19, + -0.76, + -0.19, + 0.31, + 0.54, + 0.43, + 0.11, + -0.15, + -0.27, + -0.56, + -1.08, + -1.62, + -1.86, + -1.78, + -1.35, + -0.75, + -0.25, + 0.18, + 0.24, + 0.03, + -0.09, + -0.02, + 0.1, + 0.22, + 0.15, + 0.12, + 0.14, + -0.04, + -0.53, + -1.1300000000000001, + -1.48, + -1.44, + -1.08, + -0.7000000000000001, + -0.48, + -0.66, + -0.77, + -0.54, + -0.15, + 0.34, + 0.42, + 0.5, + 0.68, + 0.96, + 1.29, + 1.28, + 1.18, + 1.07, + 0.75, + 0.51, + 0.41000000000000003, + 0.13, + -0.13, + -0.31, + -0.46, + -0.45, + -0.34, + -0.14, + 0.12, + 0.21, + 0.11, + -0.11, + -0.33, + -0.18, + 0.17, + 0.47000000000000003, + 0.47000000000000003, + 0.16, + -0.23, + -0.55, + -0.8300000000000001, + -1.1400000000000001, + -1.57, + -1.87, + -2.0, + -2.0100000000000002, + -1.93, + -1.95, + -2.17, + -2.43, + -2.52, + -2.22, + -1.6, + -0.8, + -0.1, + 0.23, + 0.27, + 0.06, + -0.1, + -0.28, + -0.33, + -0.32, + -0.23, + 0.01, + 0.16, + 0.26, + 0.33, + 0.21, + -0.13, + -0.52, + -0.87 + ], + [ + -0.27, + -0.44, + -0.64, + -0.85, + -1.07, + -1.3, + -1.51, + -1.6600000000000001, + -1.77, + -1.81, + -1.81, + -1.81, + -1.79, + -1.77, + -1.74, + -1.67, + -1.6600000000000001, + -1.69, + -1.67, + -1.5, + -1.26, + -1.06, + -0.93, + -0.88, + -0.8300000000000001, + -0.73, + -0.68, + -0.6, + -0.6, + -0.61, + -0.85, + -1.07, + -1.33, + -1.59, + -2.0100000000000002, + -2.5, + -2.87, + -3.21, + -3.6, + -4.15, + -4.7700000000000005, + -5.42, + -5.91, + -6.19, + -6.29, + -6.08, + -5.67, + -5.04, + -4.37, + -3.67, + -3.0500000000000003, + -2.71, + -2.5300000000000002, + -2.37, + -2.19, + -1.76, + -1.33, + -1.04, + -0.85, + -1.01, + -1.1400000000000001, + -1.31, + -1.3, + -1.24, + -1.04, + -0.79, + -0.53, + -0.29, + -0.1, + 0.09, + 0.29, + 0.43, + 0.5700000000000001, + 0.64, + 0.81, + 0.92, + 1.09, + 1.11, + 0.9, + 0.44, + -0.23, + -0.5700000000000001, + -0.88, + -0.5, + -0.18, + -0.08, + -0.07, + -0.23, + -0.42, + -0.67, + -0.98, + -1.35, + -1.6, + -1.61, + -1.37, + -1.06, + -0.91, + -0.77, + -0.62, + -0.33, + -0.03, + 0.03, + -0.2, + -0.35000000000000003, + -0.31, + -0.24, + -0.15, + -0.24, + -0.62, + -1.06, + -1.36, + -1.5, + -1.41, + -1.3, + -1.08, + -0.74, + -0.37, + -0.2, + -0.1, + -0.06, + 0.29, + 0.8, + 1.22, + 1.6600000000000001, + 1.52, + 1.1400000000000001, + 0.72, + 0.26, + -0.04, + 0.14, + 0.38, + 0.63, + 0.74, + 0.67, + 0.75, + 0.6900000000000001, + 0.5, + 0.14, + -0.31, + -0.68, + -0.77, + -0.49, + -0.17, + -0.18, + -0.45, + -0.78, + -1.33, + -1.34, + -0.93, + -0.35000000000000003, + 0.21, + 0.21, + 0.06, + 0.06, + 0.28, + 0.58, + 0.74, + 0.84, + 0.92, + 0.8300000000000001, + 0.48, + -0.01, + -0.53, + -0.85, + -0.96, + -0.9400000000000001, + -1.04, + -1.32, + -1.68, + -2.44, + -3.24, + -3.86, + -4.42, + -4.49, + -4.16, + -4.13, + -4.48, + -4.91, + -5.25, + -4.84, + -4.2, + -4.1, + -4.65, + -5.42, + -5.84, + -4.92, + -3.36, + -1.75, + -0.72, + -0.41000000000000003, + -0.55, + -1.1400000000000001, + -1.99, + -2.74, + -3.5500000000000003, + -4.05, + -4.09, + -4.04, + -3.64, + -3.31, + -2.9, + -2.49, + -1.86, + -1.27, + -1.03, + -1.0, + -1.19, + -1.45, + -1.8, + -2.42, + -3.44, + -4.66, + -5.47, + -5.92, + -5.51, + -4.18, + -2.94, + -1.96, + -1.85, + -2.48, + -2.8000000000000003, + -2.66, + -2.19, + -1.56, + -1.02, + -0.76, + -0.56, + -0.34, + -0.28, + -0.36, + -0.51, + -0.53, + -0.37, + -0.21, + -0.34, + -0.93, + -1.67, + -2.5100000000000002, + -2.96, + -3.09, + -2.87, + -2.17, + -1.75, + -1.3900000000000001, + -1.33, + -1.34, + -1.11, + -0.68, + -0.08, + 0.49, + 0.7000000000000001, + 0.59, + 0.22, + -0.09, + -0.24, + -0.47000000000000003, + -0.97, + -1.6, + -2.0300000000000002, + -2.0300000000000002, + -1.77, + -1.1300000000000001, + -0.38, + 0.08, + 0.14, + -0.09, + -0.17, + -0.07, + 0.17, + 0.32, + 0.34, + 0.33, + 0.35000000000000003, + 0.07, + -0.54, + -1.28, + -1.72, + -1.62, + -1.19, + -0.62, + -0.3, + -0.3, + -0.5, + -0.48, + -0.11, + -0.05, + 0.03, + 0.14, + 0.32, + 0.65, + 0.99, + 1.26, + 1.18, + 0.72, + 0.2, + -0.18, + -0.32, + -0.29, + -0.3, + -0.4, + -0.41000000000000003, + -0.43, + -0.36, + -0.19, + -0.07, + 0.07, + 0.04, + -0.18, + -0.24, + -0.11, + 0.24, + 0.54, + 0.5, + 0.16, + -0.26, + -0.56, + -0.8300000000000001, + -1.1400000000000001, + -1.4000000000000001, + -1.61, + -1.68, + -1.67, + -1.6600000000000001, + -1.78, + -2.05, + -2.41, + -2.62, + -2.44, + -1.85, + -1.12, + -0.37, + 0.12, + 0.18, + 0.15, + 0.0, + 0.01, + 0.0, + 0.03, + 0.13, + 0.1, + 0.14, + 0.18, + 0.23, + 0.21, + -0.13, + -0.65, + -1.1300000000000001 + ], + [ + -0.33, + -0.48, + -0.68, + -0.89, + -1.12, + -1.35, + -1.54, + -1.7, + -1.78, + -1.84, + -1.87, + -1.87, + -1.87, + -1.84, + -1.73, + -1.6400000000000001, + -1.58, + -1.6, + -1.6, + -1.3900000000000001, + -1.09, + -0.88, + -0.8, + -0.8300000000000001, + -0.87, + -0.89, + -0.8200000000000001, + -0.85, + -0.84, + -1.03, + -1.24, + -1.51, + -1.77, + -2.1, + -2.5100000000000002, + -2.87, + -3.24, + -3.62, + -4.03, + -4.53, + -5.17, + -5.67, + -6.0200000000000005, + -6.24, + -6.2, + -5.97, + -5.41, + -4.74, + -4.01, + -3.2800000000000002, + -2.75, + -2.31, + -2.05, + -1.84, + -1.34, + -0.91, + -0.5, + -0.23, + -0.33, + -0.53, + -0.88, + -1.05, + -1.18, + -1.1300000000000001, + -0.99, + -0.76, + -0.51, + -0.3, + -0.05, + 0.19, + 0.43, + 0.59, + 0.78, + 0.9400000000000001, + 1.1500000000000001, + 1.36, + 1.57, + 1.55, + 1.37, + 0.97, + 0.23, + -0.54, + -0.87, + -1.05, + -0.72, + -0.45, + -0.37, + -0.51, + -0.67, + -0.92, + -1.26, + -1.61, + -1.79, + -1.79, + -1.3800000000000001, + -0.99, + -0.66, + -0.56, + -0.4, + -0.16, + 0.01, + 0.1, + 0.03, + -0.13, + -0.23, + -0.16, + -0.12, + -0.22, + -0.41000000000000003, + -0.81, + -1.1300000000000001, + -1.23, + -1.23, + -1.11, + -0.98, + -0.5700000000000001, + -0.14, + 0.13, + 0.3, + 0.47000000000000003, + 0.75, + 1.03, + 1.43, + 1.35, + 1.3, + 1.09, + 0.6900000000000001, + 0.4, + 0.09, + -0.07, + 0.13, + 0.19, + 0.23, + 0.34, + 0.5, + 0.6, + 0.45, + 0.1, + -0.43, + -0.8300000000000001, + -0.91, + -0.63, + -0.3, + -0.21, + -0.34, + -0.61, + -0.66, + -0.73, + -0.48, + 0.1, + 0.26, + 0.18, + 0.1, + 0.12, + 0.25, + 0.56, + 0.8, + 0.88, + 0.8300000000000001, + 0.54, + 0.13, + -0.45, + -1.08, + -1.4000000000000001, + -1.6, + -1.67, + -1.62, + -1.58, + -1.76, + -2.25, + -3.08, + -3.92, + -4.53, + -4.51, + -4.11, + -3.81, + -4.14, + -4.89, + -5.21, + -5.15, + -4.48, + -3.93, + -4.3500000000000005, + -5.15, + -5.3, + -4.72, + -3.09, + -1.49, + -0.64, + -0.23, + -0.56, + -1.06, + -1.57, + -2.32, + -2.84, + -3.37, + -3.7600000000000002, + -3.7, + -3.5700000000000003, + -3.23, + -2.97, + -2.57, + -2.14, + -1.59, + -1.17, + -1.07, + -1.09, + -1.23, + -1.59, + -2.2800000000000002, + -3.17, + -4.07, + -4.98, + -5.33, + -5.21, + -4.51, + -3.2600000000000002, + -2.61, + -2.46, + -2.58, + -2.85, + -2.85, + -2.4, + -1.7, + -1.2, + -0.7000000000000001, + -0.37, + -0.28, + -0.25, + -0.42, + -0.54, + -0.53, + -0.24, + -0.03, + -0.25, + -0.86, + -1.9000000000000001, + -2.86, + -3.61, + -3.7800000000000002, + -3.13, + -2.36, + -1.59, + -1.22, + -1.12, + -1.1400000000000001, + -1.02, + -0.55, + 0.0, + 0.54, + 0.85, + 0.67, + 0.33, + 0.04, + -0.11, + -0.3, + -0.75, + -1.35, + -1.97, + -2.33, + -2.14, + -1.6300000000000001, + -0.8, + -0.26, + -0.21, + -0.21, + -0.27, + -0.06, + 0.23, + 0.37, + 0.34, + 0.31, + 0.26, + 0.07, + -0.65, + -1.46, + -1.86, + -1.82, + -1.3, + -0.61, + -0.13, + -0.05, + -0.2, + -0.28, + -0.37, + -0.33, + -0.29, + -0.18, + 0.13, + 0.49, + 0.72, + 0.98, + 0.99, + 0.41000000000000003, + -0.32, + -0.72, + -0.78, + -0.54, + -0.39, + -0.32, + -0.32, + -0.31, + -0.32, + -0.3, + -0.2, + -0.11, + -0.08, + -0.09, + -0.17, + 0.08, + 0.45, + 0.62, + 0.54, + 0.21, + -0.21, + -0.56, + -0.8200000000000001, + -1.08, + -1.29, + -1.4000000000000001, + -1.4000000000000001, + -1.3900000000000001, + -1.44, + -1.55, + -1.85, + -2.31, + -2.6, + -2.56, + -2.13, + -1.42, + -0.71, + -0.15, + 0.14, + 0.13, + 0.21, + 0.25, + 0.41000000000000003, + 0.46, + 0.34, + 0.22, + 0.05, + 0.02, + 0.08, + 0.01, + -0.3, + -0.9400000000000001, + -1.43 + ], + [ + -0.33, + -0.51, + -0.71, + -0.9400000000000001, + -1.18, + -1.41, + -1.6, + -1.7, + -1.8, + -1.86, + -1.9100000000000001, + -1.93, + -1.93, + -1.83, + -1.69, + -1.49, + -1.41, + -1.47, + -1.46, + -1.34, + -1.05, + -0.78, + -0.78, + -0.88, + -1.04, + -1.12, + -1.17, + -1.2, + -1.36, + -1.51, + -1.75, + -2.0100000000000002, + -2.31, + -2.64, + -2.92, + -3.2600000000000002, + -3.62, + -4.0, + -4.5200000000000005, + -5.0600000000000005, + -5.45, + -5.82, + -6.03, + -6.1000000000000005, + -6.0600000000000005, + -5.69, + -5.17, + -4.46, + -3.73, + -3.12, + -2.5500000000000003, + -2.13, + -1.76, + -1.1300000000000001, + -0.5700000000000001, + -0.03, + 0.39, + 0.45, + 0.29, + -0.14, + -0.53, + -0.87, + -1.0, + -1.06, + -0.92, + -0.75, + -0.53, + -0.31, + -0.05, + 0.23, + 0.43, + 0.61, + 0.6900000000000001, + 0.9500000000000001, + 1.16, + 1.48, + 1.59, + 1.68, + 1.58, + 1.25, + 0.77, + -0.08, + -0.77, + -0.9400000000000001, + -0.8300000000000001, + -0.45, + -0.39, + -0.52, + -0.8300000000000001, + -1.11, + -1.36, + -1.57, + -1.77, + -1.53, + -1.2, + -0.7000000000000001, + -0.31, + -0.11, + -0.03, + -0.03, + 0.13, + 0.16, + 0.11, + -0.01, + -0.12, + -0.17, + -0.16, + -0.17, + -0.37, + -0.54, + -0.81, + -0.89, + -0.8200000000000001, + -0.75, + -0.52, + -0.27, + 0.1, + 0.41000000000000003, + 0.48, + 0.71, + 0.9, + 1.16, + 1.09, + 1.01, + 0.8300000000000001, + 0.7000000000000001, + 0.66, + 0.4, + 0.17, + 0.0, + -0.16, + -0.15, + -0.12, + 0.08, + 0.35000000000000003, + 0.51, + 0.39, + -0.09, + -0.61, + -1.01, + -1.1500000000000001, + -0.76, + -0.36, + -0.26, + -0.31, + -0.22, + -0.22, + -0.14, + 0.07, + 0.13, + 0.21, + 0.28, + 0.21, + 0.22, + 0.4, + 0.48, + 0.67, + 0.75, + 0.5700000000000001, + 0.29, + -0.17, + -0.76, + -1.32, + -1.82, + -2.11, + -2.2800000000000002, + -2.21, + -2.0300000000000002, + -2.04, + -2.39, + -3.0, + -3.9, + -4.36, + -4.2700000000000005, + -3.72, + -3.37, + -3.5700000000000003, + -4.37, + -5.13, + -4.97, + -4.55, + -4.03, + -3.91, + -4.46, + -4.79, + -3.91, + -2.6, + -1.46, + -0.53, + -0.58, + -0.79, + -1.1300000000000001, + -1.5, + -1.7, + -2.18, + -2.72, + -3.17, + -3.39, + -3.27, + -3.0700000000000003, + -2.81, + -2.57, + -2.12, + -1.6600000000000001, + -1.22, + -0.99, + -0.91, + -1.02, + -1.48, + -2.06, + -2.79, + -3.59, + -4.14, + -4.68, + -4.78, + -4.3100000000000005, + -3.77, + -3.13, + -2.85, + -2.92, + -3.16, + -3.16, + -2.8000000000000003, + -2.11, + -1.1300000000000001, + -0.48, + -0.07, + 0.0, + -0.09, + -0.31, + -0.46, + -0.25, + 0.01, + 0.21, + 0.03, + -0.87, + -1.99, + -3.17, + -4.08, + -3.96, + -3.2600000000000002, + -2.25, + -1.42, + -0.97, + -0.9, + -0.86, + -0.67, + -0.36, + 0.23, + 0.65, + 0.84, + 0.77, + 0.44, + 0.17, + 0.1, + 0.02, + -0.26, + -0.91, + -1.62, + -2.27, + -2.5500000000000003, + -2.12, + -1.51, + -0.9, + -0.55, + -0.53, + -0.32, + -0.04, + 0.23, + 0.31, + 0.23, + 0.14, + 0.15, + -0.11, + -0.72, + -1.53, + -2.08, + -1.96, + -1.48, + -0.71, + -0.05, + 0.08, + -0.03, + -0.23, + -0.4, + -0.55, + -0.53, + -0.19, + 0.17, + 0.28, + 0.48, + 0.62, + 0.51, + 0.16, + -0.56, + -1.04, + -0.87, + -0.62, + -0.38, + -0.24, + -0.19, + -0.18, + -0.23, + -0.3, + -0.28, + -0.2, + -0.12, + -0.1, + 0.1, + 0.36, + 0.59, + 0.74, + 0.56, + 0.18, + -0.15, + -0.48, + -0.76, + -1.01, + -1.19, + -1.23, + -1.17, + -1.1500000000000001, + -1.21, + -1.37, + -1.6300000000000001, + -2.09, + -2.5300000000000002, + -2.5300000000000002, + -2.24, + -1.7, + -0.99, + -0.44, + -0.09, + 0.14, + 0.25, + 0.49, + 0.68, + 0.72, + 0.5, + 0.19, + -0.07, + -0.17, + -0.12, + -0.23, + -0.74, + -1.31, + -1.6600000000000001 + ], + [ + -0.4, + -0.54, + -0.73, + -0.96, + -1.23, + -1.49, + -1.6500000000000001, + -1.75, + -1.8, + -1.8800000000000001, + -1.92, + -1.96, + -1.9100000000000001, + -1.78, + -1.53, + -1.29, + -1.16, + -1.26, + -1.3900000000000001, + -1.26, + -1.06, + -0.88, + -0.84, + -1.07, + -1.3, + -1.47, + -1.55, + -1.73, + -1.8900000000000001, + -2.11, + -2.32, + -2.57, + -2.86, + -3.12, + -3.37, + -3.61, + -3.96, + -4.47, + -5.04, + -5.48, + -5.78, + -5.87, + -5.91, + -5.91, + -5.73, + -5.43, + -4.86, + -4.21, + -3.61, + -2.99, + -2.46, + -1.99, + -1.29, + -0.56, + 0.16, + 0.76, + 0.98, + 1.01, + 0.73, + 0.22, + -0.25, + -0.6, + -0.84, + -0.87, + -0.86, + -0.68, + -0.51, + -0.29, + -0.06, + 0.21, + 0.4, + 0.43, + 0.47000000000000003, + 0.62, + 0.91, + 1.16, + 1.36, + 1.4000000000000001, + 1.43, + 1.34, + 0.9500000000000001, + 0.38, + -0.37, + -0.66, + -0.45, + -0.18, + -0.14, + -0.43, + -0.8200000000000001, + -1.11, + -1.21, + -1.33, + -1.26, + -1.16, + -0.79, + -0.32, + 0.01, + 0.3, + 0.22, + 0.14, + 0.04, + 0.08, + 0.05, + -0.06, + -0.13, + -0.21, + -0.24, + -0.26, + -0.32, + -0.49, + -0.52, + -0.51, + -0.35000000000000003, + -0.22, + -0.06, + 0.17, + 0.38, + 0.42, + 0.49, + 0.55, + 0.8200000000000001, + 0.91, + 0.8200000000000001, + 0.61, + 0.4, + 0.41000000000000003, + 0.48, + 0.44, + 0.22, + -0.05, + -0.26, + -0.36, + -0.28, + -0.06, + 0.3, + 0.47000000000000003, + 0.18, + -0.24, + -0.7000000000000001, + -1.16, + -1.03, + -0.75, + -0.43, + -0.26, + -0.18, + 0.0, + 0.2, + 0.29, + 0.17, + 0.14, + 0.2, + 0.29, + 0.49, + 0.56, + 0.45, + 0.46, + 0.44, + 0.41000000000000003, + 0.34, + 0.07, + -0.38, + -0.97, + -1.62, + -2.29, + -2.66, + -2.85, + -2.83, + -2.66, + -2.5, + -2.65, + -3.15, + -3.61, + -4.07, + -3.9, + -3.23, + -2.83, + -3.15, + -3.64, + -4.3100000000000005, + -4.75, + -4.21, + -3.79, + -3.71, + -3.91, + -3.8200000000000003, + -3.29, + -2.31, + -1.26, + -0.97, + -0.9400000000000001, + -1.23, + -1.46, + -1.36, + -1.3800000000000001, + -1.67, + -2.22, + -2.7600000000000002, + -3.0300000000000002, + -2.99, + -2.79, + -2.5500000000000003, + -2.2800000000000002, + -2.0100000000000002, + -1.53, + -1.04, + -0.74, + -0.67, + -0.9400000000000001, + -1.35, + -1.99, + -2.56, + -2.98, + -3.44, + -3.91, + -4.24, + -4.3, + -3.91, + -3.48, + -3.18, + -3.2, + -3.48, + -3.79, + -3.44, + -2.49, + -1.36, + -0.24, + 0.06, + 0.17, + -0.12, + -0.23, + -0.18, + 0.02, + 0.34, + 0.62, + 0.11, + -0.76, + -2.1, + -3.4, + -4.0, + -3.95, + -3.08, + -1.99, + -1.16, + -0.73, + -0.52, + -0.45, + -0.24, + 0.17, + 0.53, + 0.86, + 0.96, + 0.78, + 0.53, + 0.35000000000000003, + 0.34, + 0.41000000000000003, + 0.31, + -0.21, + -1.05, + -1.98, + -2.62, + -2.67, + -2.11, + -1.52, + -1.1, + -0.73, + -0.44, + -0.15, + 0.09, + 0.21, + 0.03, + -0.07, + -0.04, + -0.13, + -0.81, + -1.68, + -2.16, + -2.21, + -1.62, + -0.8200000000000001, + -0.26, + 0.06, + -0.04, + -0.22, + -0.44, + -0.65, + -0.52, + -0.11, + 0.16, + 0.19, + 0.04, + 0.09, + 0.16, + -0.24, + -0.68, + -0.9, + -0.86, + -0.53, + -0.3, + -0.18, + -0.07, + -0.03, + -0.08, + -0.14, + -0.22, + -0.18, + -0.11, + 0.08, + 0.33, + 0.58, + 0.8, + 0.73, + 0.46, + 0.13, + -0.19, + -0.43, + -0.7000000000000001, + -0.96, + -1.1300000000000001, + -1.1500000000000001, + -1.07, + -0.97, + -1.06, + -1.19, + -1.57, + -1.98, + -2.2600000000000002, + -2.42, + -2.19, + -1.78, + -1.28, + -0.6900000000000001, + -0.28, + -0.01, + 0.26, + 0.55, + 0.75, + 0.6900000000000001, + 0.43, + -0.01, + -0.24, + -0.27, + -0.3, + -0.58, + -1.08, + -1.55, + -1.8900000000000001 + ], + [ + -0.38, + -0.56, + -0.73, + -0.98, + -1.28, + -1.54, + -1.73, + -1.81, + -1.84, + -1.87, + -1.93, + -1.92, + -1.85, + -1.6600000000000001, + -1.35, + -1.06, + -0.97, + -1.05, + -1.22, + -1.3, + -1.1300000000000001, + -0.98, + -1.08, + -1.3, + -1.6400000000000001, + -1.8800000000000001, + -2.1, + -2.2800000000000002, + -2.5, + -2.71, + -2.92, + -3.15, + -3.41, + -3.65, + -3.85, + -4.05, + -4.44, + -5.0200000000000005, + -5.5200000000000005, + -5.89, + -5.98, + -5.86, + -5.7, + -5.58, + -5.42, + -5.05, + -4.6000000000000005, + -4.05, + -3.49, + -2.9, + -2.35, + -1.6600000000000001, + -0.9, + -0.01, + 0.8, + 1.18, + 1.3800000000000001, + 1.3, + 0.98, + 0.5700000000000001, + 0.09, + -0.32, + -0.53, + -0.6900000000000001, + -0.66, + -0.58, + -0.42, + -0.24, + 0.01, + 0.25, + 0.37, + 0.31, + 0.28, + 0.3, + 0.55, + 0.8300000000000001, + 0.96, + 1.01, + 1.06, + 1.12, + 0.89, + 0.38, + -0.05, + -0.29, + -0.13, + 0.14, + 0.18, + -0.3, + -0.75, + -0.92, + -0.93, + -0.85, + -0.78, + -0.67, + -0.41000000000000003, + -0.14, + 0.28, + 0.41000000000000003, + 0.37, + 0.12, + -0.06, + -0.13, + -0.13, + -0.17, + -0.23, + -0.18, + -0.21, + -0.33, + -0.4, + -0.47000000000000003, + -0.46, + -0.28, + -0.12, + 0.16, + 0.28, + 0.52, + 0.53, + 0.46, + 0.33, + 0.3, + 0.49, + 0.67, + 0.62, + 0.34, + 0.23, + 0.27, + 0.34, + 0.36, + 0.16, + -0.17, + -0.4, + -0.47000000000000003, + -0.35000000000000003, + 0.01, + 0.28, + 0.28, + 0.09, + -0.3, + -0.68, + -0.8, + -0.87, + -0.59, + -0.29, + -0.26, + -0.16, + 0.15, + 0.47000000000000003, + 0.42, + 0.21, + 0.08, + 0.16, + 0.45, + 0.75, + 0.8200000000000001, + 0.59, + 0.29, + 0.15, + 0.13, + 0.08, + -0.08, + -0.5700000000000001, + -1.24, + -2.23, + -3.0, + -3.49, + -3.66, + -3.59, + -3.37, + -3.22, + -3.16, + -3.2, + -3.5300000000000002, + -3.69, + -3.46, + -3.02, + -2.68, + -2.56, + -3.0300000000000002, + -3.41, + -3.67, + -3.74, + -3.35, + -3.21, + -3.29, + -3.24, + -2.7, + -1.97, + -1.53, + -1.21, + -1.37, + -1.69, + -1.58, + -1.32, + -1.1300000000000001, + -1.32, + -1.8800000000000001, + -2.48, + -2.8000000000000003, + -2.74, + -2.5100000000000002, + -2.2600000000000002, + -2.08, + -1.86, + -1.42, + -0.9400000000000001, + -0.44, + -0.51, + -0.8, + -1.44, + -2.0100000000000002, + -2.35, + -2.57, + -2.91, + -3.34, + -3.87, + -4.17, + -4.05, + -3.66, + -3.33, + -3.36, + -3.8200000000000003, + -4.26, + -4.32, + -3.21, + -1.69, + -0.68, + 0.0, + -0.2, + -0.32, + -0.33, + -0.13, + 0.12, + 0.54, + 0.43, + 0.19, + -0.85, + -2.21, + -3.25, + -3.95, + -3.62, + -2.69, + -1.68, + -0.86, + -0.36, + -0.16, + 0.0, + 0.29, + 0.62, + 0.88, + 1.07, + 0.96, + 0.81, + 0.49, + 0.38, + 0.49, + 0.75, + 0.66, + 0.44, + -0.48, + -1.6, + -2.46, + -2.85, + -2.57, + -1.97, + -1.41, + -0.9500000000000001, + -0.59, + -0.32, + -0.17, + -0.14, + -0.19, + -0.25, + -0.17, + -0.31, + -0.8, + -1.7, + -2.42, + -2.32, + -1.86, + -1.11, + -0.42, + -0.25, + -0.23, + -0.34, + -0.54, + -0.58, + -0.45, + -0.18, + 0.06, + -0.1, + -0.41000000000000003, + -0.46, + -0.36, + -0.39, + -0.67, + -0.85, + -0.66, + -0.39, + -0.24, + -0.12, + 0.01, + 0.13, + 0.11, + 0.04, + 0.06, + 0.01, + 0.15, + 0.34, + 0.53, + 0.79, + 0.8300000000000001, + 0.66, + 0.32, + -0.03, + -0.26, + -0.45, + -0.68, + -0.97, + -1.18, + -1.18, + -1.03, + -0.98, + -1.0, + -1.32, + -1.59, + -1.8800000000000001, + -2.15, + -2.1, + -2.0100000000000002, + -1.73, + -1.33, + -0.89, + -0.46, + -0.1, + 0.21, + 0.42, + 0.5700000000000001, + 0.49, + 0.08, + -0.27, + -0.39, + -0.41000000000000003, + -0.51, + -0.78, + -1.31, + -1.79, + -1.82 + ], + [ + -0.5, + -0.61, + -0.78, + -0.98, + -1.29, + -1.61, + -1.8, + -1.8900000000000001, + -1.8900000000000001, + -1.8900000000000001, + -1.8900000000000001, + -1.87, + -1.75, + -1.51, + -1.21, + -0.91, + -0.77, + -0.96, + -1.17, + -1.27, + -1.24, + -1.2, + -1.29, + -1.67, + -2.05, + -2.39, + -2.66, + -2.89, + -3.12, + -3.31, + -3.5100000000000002, + -3.7600000000000002, + -4.0, + -4.22, + -4.4, + -4.69, + -5.13, + -5.59, + -6.04, + -6.18, + -6.0200000000000005, + -5.7700000000000005, + -5.49, + -5.25, + -5.03, + -4.75, + -4.32, + -3.86, + -3.27, + -2.72, + -2.07, + -1.3900000000000001, + -0.45, + 0.53, + 1.12, + 1.48, + 1.52, + 1.44, + 1.22, + 0.84, + 0.45, + 0.06, + -0.26, + -0.43, + -0.5, + -0.44, + -0.33, + -0.15, + 0.08, + 0.33, + 0.48, + 0.39, + 0.19, + 0.18, + 0.31, + 0.51, + 0.64, + 0.68, + 0.71, + 0.68, + 0.54, + 0.23, + -0.1, + -0.17, + 0.06, + 0.31, + 0.15, + -0.18, + -0.62, + -0.79, + -0.65, + -0.43, + -0.42, + -0.33, + -0.27, + -0.05, + 0.22, + 0.49, + 0.4, + 0.09, + -0.15, + -0.27, + -0.36, + -0.36, + -0.28, + -0.16, + -0.09, + -0.27, + -0.5, + -0.56, + -0.52, + -0.32, + -0.1, + 0.08, + 0.38, + 0.52, + 0.66, + 0.46, + 0.18, + 0.17, + 0.26, + 0.43, + 0.45, + 0.32, + 0.19, + 0.19, + 0.27, + 0.23, + -0.01, + -0.27, + -0.47000000000000003, + -0.52, + -0.24, + 0.04, + 0.21, + 0.23, + -0.02, + -0.27, + -0.4, + -0.49, + -0.48, + -0.33, + -0.31, + -0.31, + -0.1, + 0.28, + 0.49, + 0.45, + 0.22, + 0.03, + 0.2, + 0.62, + 0.9, + 0.86, + 0.58, + 0.09, + -0.23, + -0.22, + -0.11, + -0.31, + -0.75, + -1.84, + -3.0100000000000002, + -3.96, + -4.5600000000000005, + -4.69, + -4.55, + -4.29, + -4.04, + -3.63, + -3.4, + -3.37, + -3.45, + -3.34, + -2.97, + -2.6, + -2.43, + -2.34, + -2.6, + -2.7800000000000002, + -2.86, + -2.77, + -2.83, + -2.82, + -2.68, + -2.27, + -1.8800000000000001, + -1.58, + -1.53, + -1.69, + -1.7, + -1.6, + -1.21, + -0.86, + -1.03, + -1.6400000000000001, + -2.25, + -2.57, + -2.57, + -2.3000000000000003, + -2.14, + -2.11, + -1.98, + -1.59, + -0.89, + -0.46, + -0.29, + -0.88, + -1.56, + -2.06, + -2.32, + -2.45, + -2.56, + -3.02, + -3.65, + -4.0, + -4.04, + -3.68, + -3.2800000000000002, + -3.31, + -3.91, + -4.69, + -4.7700000000000005, + -4.13, + -2.47, + -1.07, + -0.67, + -0.6, + -0.61, + -0.62, + -0.33, + -0.02, + 0.06, + 0.18, + -0.26, + -1.02, + -2.0, + -3.11, + -3.4, + -3.1, + -2.2600000000000002, + -1.23, + -0.49, + -0.01, + 0.24, + 0.4, + 0.61, + 0.8, + 1.01, + 0.92, + 0.84, + 0.46, + 0.26, + 0.24, + 0.43, + 0.61, + 0.87, + 0.5, + -0.12, + -1.2, + -2.31, + -2.71, + -2.63, + -2.15, + -1.54, + -1.04, + -0.67, + -0.47000000000000003, + -0.39, + -0.43, + -0.48, + -0.5, + -0.34, + -0.28, + -0.97, + -1.84, + -2.37, + -2.61, + -2.0, + -1.29, + -0.81, + -0.56, + -0.56, + -0.5700000000000001, + -0.55, + -0.5700000000000001, + -0.47000000000000003, + -0.22, + -0.23, + -0.58, + -0.86, + -0.8200000000000001, + -0.63, + -0.52, + -0.63, + -0.66, + -0.55, + -0.34, + -0.16, + -0.06, + 0.09, + 0.19, + 0.27, + 0.32, + 0.37, + 0.47000000000000003, + 0.54, + 0.62, + 0.76, + 0.8, + 0.79, + 0.56, + 0.14, + -0.2, + -0.35000000000000003, + -0.48, + -0.73, + -1.03, + -1.22, + -1.31, + -1.1300000000000001, + -1.0, + -1.19, + -1.48, + -1.71, + -1.9100000000000001, + -1.83, + -1.78, + -1.62, + -1.5, + -1.24, + -0.88, + -0.49, + -0.11, + 0.11, + 0.26, + 0.27, + 0.08, + -0.21, + -0.45, + -0.58, + -0.54, + -0.67, + -1.12, + -1.56, + -1.8, + -1.83 + ], + [ + -0.52, + -0.68, + -0.8, + -1.02, + -1.3, + -1.62, + -1.8900000000000001, + -1.96, + -1.95, + -1.9100000000000001, + -1.8800000000000001, + -1.8, + -1.6500000000000001, + -1.44, + -1.1300000000000001, + -0.86, + -0.81, + -0.92, + -1.21, + -1.37, + -1.35, + -1.37, + -1.69, + -2.07, + -2.5300000000000002, + -2.94, + -3.16, + -3.45, + -3.67, + -3.88, + -4.13, + -4.39, + -4.61, + -4.82, + -5.1000000000000005, + -5.44, + -5.8500000000000005, + -6.2700000000000005, + -6.45, + -6.3, + -6.0, + -5.59, + -5.21, + -4.93, + -4.67, + -4.36, + -4.0200000000000005, + -3.48, + -2.98, + -2.38, + -1.77, + -0.92, + 0.02, + 0.8200000000000001, + 1.44, + 1.6, + 1.58, + 1.46, + 1.3, + 1.04, + 0.6900000000000001, + 0.32, + -0.04, + -0.26, + -0.36, + -0.35000000000000003, + -0.24, + -0.08, + 0.18, + 0.47000000000000003, + 0.5700000000000001, + 0.56, + 0.28, + 0.08, + 0.13, + 0.28, + 0.37, + 0.39, + 0.39, + 0.33, + 0.18, + -0.07, + -0.22, + -0.17, + -0.04, + 0.13, + 0.14, + -0.29, + -0.66, + -0.68, + -0.46, + -0.31, + -0.16, + -0.23, + -0.24, + -0.1, + 0.17, + 0.4, + 0.43, + 0.15, + -0.18, + -0.4, + -0.56, + -0.63, + -0.47000000000000003, + -0.2, + -0.09, + -0.18, + -0.5, + -0.66, + -0.52, + -0.39, + -0.21, + -0.12, + 0.19, + 0.49, + 0.55, + 0.47000000000000003, + 0.23, + 0.06, + 0.21, + 0.35000000000000003, + 0.4, + 0.32, + 0.21, + 0.19, + 0.18, + 0.1, + -0.06, + -0.29, + -0.44, + -0.34, + -0.19, + 0.04, + 0.19, + 0.09, + -0.06, + -0.14, + -0.17, + -0.27, + -0.25, + -0.25, + -0.28, + -0.23, + -0.08, + 0.26, + 0.53, + 0.39, + 0.11, + 0.07, + 0.31, + 0.63, + 0.85, + 0.76, + 0.24, + -0.26, + -0.6, + -0.68, + -0.58, + -0.45, + -1.31, + -2.43, + -3.83, + -5.1000000000000005, + -5.68, + -5.9, + -5.69, + -5.3100000000000005, + -4.61, + -3.98, + -3.47, + -3.25, + -3.27, + -3.24, + -2.99, + -2.61, + -2.3000000000000003, + -2.05, + -1.94, + -2.16, + -2.35, + -2.56, + -2.57, + -2.65, + -2.41, + -1.99, + -1.6500000000000001, + -1.53, + -1.59, + -1.6300000000000001, + -1.67, + -1.44, + -0.98, + -0.73, + -0.8300000000000001, + -1.33, + -2.0100000000000002, + -2.37, + -2.32, + -2.23, + -2.23, + -2.32, + -2.31, + -1.98, + -1.1500000000000001, + -0.34, + -0.46, + -0.91, + -1.6600000000000001, + -2.27, + -2.42, + -2.42, + -2.54, + -2.81, + -3.31, + -3.8000000000000003, + -3.77, + -3.4, + -3.1, + -3.13, + -3.68, + -4.67, + -5.24, + -4.41, + -3.13, + -1.78, + -0.9500000000000001, + -0.77, + -0.8300000000000001, + -0.6, + -0.53, + -0.4, + -0.4, + -0.41000000000000003, + -0.61, + -1.09, + -1.83, + -2.4, + -2.73, + -2.35, + -1.53, + -0.74, + -0.08, + 0.25, + 0.41000000000000003, + 0.55, + 0.6, + 0.73, + 0.68, + 0.61, + 0.3, + -0.04, + -0.11, + -0.12, + 0.14, + 0.37, + 0.46, + 0.45, + -0.18, + -1.06, + -1.8800000000000001, + -2.45, + -2.37, + -1.97, + -1.5, + -0.98, + -0.59, + -0.45, + -0.49, + -0.5700000000000001, + -0.7000000000000001, + -0.61, + -0.51, + -0.62, + -0.9500000000000001, + -1.76, + -2.5300000000000002, + -2.4, + -2.09, + -1.49, + -1.0, + -0.87, + -0.89, + -0.8200000000000001, + -0.66, + -0.54, + -0.47000000000000003, + -0.47000000000000003, + -0.62, + -0.87, + -1.09, + -1.04, + -0.63, + -0.44, + -0.51, + -0.59, + -0.47000000000000003, + -0.28, + -0.16, + -0.05, + 0.08, + 0.23, + 0.33, + 0.51, + 0.6900000000000001, + 0.89, + 0.93, + 0.93, + 0.84, + 0.77, + 0.65, + 0.38, + 0.04, + -0.26, + -0.45, + -0.55, + -0.73, + -1.03, + -1.3, + -1.28, + -1.21, + -1.17, + -1.31, + -1.56, + -1.85, + -1.72, + -1.54, + -1.34, + -1.17, + -1.08, + -0.96, + -0.72, + -0.37, + -0.11, + 0.03, + 0.06, + -0.03, + -0.19, + -0.41000000000000003, + -0.6, + -0.5700000000000001, + -0.65, + -1.0, + -1.44, + -1.79, + -2.0, + -1.74 + ], + [ + -0.68, + -0.8, + -0.91, + -1.05, + -1.35, + -1.68, + -1.9100000000000001, + -2.0300000000000002, + -2.0, + -1.94, + -1.8800000000000001, + -1.77, + -1.62, + -1.41, + -1.17, + -0.9500000000000001, + -0.87, + -1.09, + -1.31, + -1.42, + -1.49, + -1.72, + -2.04, + -2.5500000000000003, + -3.04, + -3.27, + -3.5700000000000003, + -3.85, + -4.15, + -4.43, + -4.72, + -4.92, + -5.14, + -5.39, + -5.74, + -6.15, + -6.55, + -6.79, + -6.66, + -6.38, + -5.87, + -5.39, + -4.97, + -4.59, + -4.28, + -3.98, + -3.5300000000000002, + -3.08, + -2.5500000000000003, + -2.02, + -1.27, + -0.44, + 0.43, + 1.2, + 1.56, + 1.6500000000000001, + 1.57, + 1.43, + 1.27, + 1.07, + 0.77, + 0.38, + 0.04, + -0.19, + -0.3, + -0.28, + -0.2, + 0.01, + 0.24, + 0.52, + 0.76, + 0.5700000000000001, + 0.3, + 0.07, + -0.06, + 0.07, + 0.16, + 0.18, + 0.15, + 0.08, + -0.09, + -0.2, + -0.23, + -0.24, + -0.17, + -0.13, + -0.19, + -0.41000000000000003, + -0.7000000000000001, + -0.78, + -0.5, + -0.2, + -0.18, + -0.2, + -0.23, + -0.22, + 0.08, + 0.42, + 0.41000000000000003, + 0.17, + -0.18, + -0.5, + -0.77, + -0.9400000000000001, + -0.81, + -0.39, + -0.13, + -0.25, + -0.46, + -0.51, + -0.42, + -0.24, + -0.21, + -0.1, + 0.02, + 0.34, + 0.54, + 0.38, + 0.19, + 0.16, + 0.25, + 0.45, + 0.51, + 0.42, + 0.28, + 0.21, + 0.16, + 0.07, + -0.05, + -0.2, + -0.24, + -0.2, + -0.09, + 0.04, + 0.07, + 0.02, + -0.05, + -0.08, + -0.14, + -0.17, + -0.18, + -0.16, + -0.19, + -0.19, + 0.02, + 0.34, + 0.42, + 0.24, + 0.08, + 0.1, + 0.31, + 0.59, + 0.61, + 0.29, + -0.2, + -0.8, + -1.23, + -1.33, + -1.1300000000000001, + -1.27, + -1.6300000000000001, + -3.06, + -4.73, + -5.92, + -6.95, + -7.11, + -6.93, + -6.1000000000000005, + -5.09, + -4.12, + -3.37, + -3.11, + -3.16, + -3.12, + -2.89, + -2.5100000000000002, + -2.11, + -1.8, + -1.6300000000000001, + -1.74, + -2.19, + -2.59, + -2.7600000000000002, + -2.8000000000000003, + -2.29, + -1.69, + -1.3800000000000001, + -1.29, + -1.3800000000000001, + -1.49, + -1.47, + -1.29, + -0.97, + -0.64, + -0.6900000000000001, + -1.1500000000000001, + -1.67, + -2.02, + -2.14, + -2.18, + -2.38, + -2.68, + -2.81, + -2.23, + -1.42, + -0.7000000000000001, + -0.32, + -1.06, + -1.8900000000000001, + -2.36, + -2.6, + -2.56, + -2.5, + -2.73, + -3.1, + -3.36, + -3.38, + -3.13, + -2.83, + -2.86, + -3.48, + -4.34, + -4.96, + -4.79, + -3.37, + -2.04, + -1.19, + -0.64, + -0.5, + -0.43, + -0.44, + -0.59, + -0.63, + -0.77, + -0.81, + -1.02, + -1.37, + -1.74, + -1.79, + -1.44, + -0.8200000000000001, + -0.17, + 0.17, + 0.27, + 0.3, + 0.29, + 0.35000000000000003, + 0.31, + 0.3, + 0.14, + -0.15, + -0.29, + -0.51, + -0.22, + -0.1, + 0.05, + 0.11, + 0.01, + -0.31, + -0.9500000000000001, + -1.62, + -1.9000000000000001, + -1.8900000000000001, + -1.6300000000000001, + -1.24, + -0.8200000000000001, + -0.41000000000000003, + -0.24, + -0.39, + -0.59, + -0.6900000000000001, + -0.76, + -0.72, + -0.75, + -1.1500000000000001, + -1.7, + -2.05, + -2.29, + -1.94, + -1.52, + -1.21, + -1.09, + -1.07, + -1.01, + -0.79, + -0.55, + -0.51, + -0.65, + -0.8300000000000001, + -1.03, + -1.1, + -0.8200000000000001, + -0.52, + -0.37, + -0.36, + -0.43, + -0.43, + -0.23, + -0.14, + -0.02, + 0.08, + 0.2, + 0.32, + 0.5700000000000001, + 0.92, + 1.09, + 1.2, + 1.04, + 0.8, + 0.64, + 0.49, + 0.29, + -0.03, + -0.31, + -0.45, + -0.5700000000000001, + -0.76, + -0.98, + -1.16, + -1.29, + -1.22, + -1.16, + -1.35, + -1.59, + -1.6, + -1.51, + -1.23, + -0.91, + -0.81, + -0.73, + -0.7000000000000001, + -0.5700000000000001, + -0.35000000000000003, + -0.16, + -0.06, + -0.13, + -0.21, + -0.31, + -0.46, + -0.48, + -0.53, + -0.79, + -1.27, + -1.7, + -2.12, + -1.9000000000000001, + -1.62 + ], + [ + -0.72, + -0.89, + -0.99, + -1.17, + -1.4000000000000001, + -1.7, + -1.97, + -2.05, + -2.04, + -1.98, + -1.9000000000000001, + -1.79, + -1.6500000000000001, + -1.48, + -1.3, + -1.12, + -1.11, + -1.25, + -1.44, + -1.55, + -1.77, + -2.0, + -2.52, + -3.06, + -3.3200000000000003, + -3.5300000000000002, + -3.85, + -4.21, + -4.58, + -4.94, + -5.13, + -5.32, + -5.47, + -5.75, + -6.17, + -6.67, + -6.99, + -6.98, + -6.78, + -6.23, + -5.7, + -5.17, + -4.71, + -4.26, + -3.87, + -3.47, + -3.0500000000000003, + -2.61, + -2.13, + -1.49, + -0.77, + 0.06, + 0.88, + 1.4000000000000001, + 1.67, + 1.67, + 1.53, + 1.37, + 1.21, + 0.99, + 0.68, + 0.33, + 0.0, + -0.21, + -0.27, + -0.25, + -0.1, + 0.08, + 0.35000000000000003, + 0.61, + 0.6900000000000001, + 0.62, + 0.32, + -0.02, + -0.05, + -0.02, + 0.05, + 0.04, + 0.01, + -0.07, + -0.13, + -0.13, + -0.13, + -0.18, + -0.26, + -0.31, + -0.44, + -0.63, + -0.86, + -0.8, + -0.58, + -0.31, + -0.14, + -0.17, + -0.24, + -0.17, + 0.03, + 0.31, + 0.44, + 0.17, + -0.21, + -0.56, + -0.96, + -1.1300000000000001, + -1.0, + -0.66, + -0.27, + -0.22, + -0.35000000000000003, + -0.38, + -0.13, + 0.07, + -0.01, + -0.07, + 0.12, + 0.33, + 0.4, + 0.31, + 0.19, + 0.17, + 0.4, + 0.67, + 0.72, + 0.61, + 0.46, + 0.33, + 0.27, + 0.16, + 0.0, + -0.07, + -0.11, + -0.1, + -0.02, + 0.03, + 0.04, + -0.01, + -0.07, + -0.11, + -0.13, + -0.15, + -0.14, + -0.13, + -0.12, + -0.09, + 0.11, + 0.28, + 0.31, + 0.19, + 0.06, + 0.17, + 0.41000000000000003, + 0.51, + 0.27, + -0.2, + -0.8200000000000001, + -1.49, + -2.0300000000000002, + -2.31, + -2.15, + -1.8900000000000001, + -2.46, + -3.49, + -5.0, + -6.75, + -7.62, + -8.35, + -7.78, + -6.8, + -5.46, + -4.13, + -3.39, + -3.0700000000000003, + -3.02, + -3.0, + -2.69, + -2.23, + -1.81, + -1.42, + -1.22, + -1.5, + -2.05, + -2.57, + -3.06, + -2.71, + -2.27, + -1.55, + -0.96, + -1.02, + -1.1500000000000001, + -1.26, + -1.32, + -1.19, + -0.96, + -0.7000000000000001, + -0.6, + -0.9, + -1.36, + -1.7, + -1.87, + -2.1, + -2.59, + -3.0300000000000002, + -3.0300000000000002, + -2.7, + -1.72, + -0.76, + -0.74, + -1.1300000000000001, + -1.96, + -2.63, + -2.73, + -2.68, + -2.64, + -2.67, + -2.87, + -3.02, + -2.98, + -2.82, + -2.64, + -2.65, + -3.06, + -3.93, + -4.63, + -4.39, + -3.56, + -2.29, + -1.2, + -0.58, + -0.09, + -0.17, + -0.22, + -0.46, + -0.71, + -0.74, + -0.77, + -0.78, + -0.85, + -0.96, + -0.92, + -0.61, + -0.1, + 0.29, + 0.28, + 0.14, + -0.05, + -0.14, + -0.12, + -0.13, + -0.09, + -0.15, + -0.27, + -0.45, + -0.29, + -0.14, + -0.1, + -0.16, + -0.16, + -0.25, + -0.53, + -0.92, + -1.23, + -1.34, + -1.29, + -1.16, + -0.91, + -0.55, + -0.18, + -0.05, + -0.19, + -0.48, + -0.68, + -0.8, + -0.9, + -1.01, + -1.2, + -1.42, + -1.6600000000000001, + -1.77, + -1.78, + -1.49, + -1.26, + -1.1500000000000001, + -1.2, + -1.08, + -0.8300000000000001, + -0.62, + -0.5700000000000001, + -0.73, + -0.93, + -1.02, + -0.9, + -0.65, + -0.42, + -0.23, + -0.23, + -0.27, + -0.13, + -0.05, + 0.01, + 0.02, + 0.14, + 0.19, + 0.35000000000000003, + 0.59, + 0.88, + 1.16, + 1.11, + 0.92, + 0.66, + 0.44, + 0.34, + 0.2, + -0.03, + -0.29, + -0.49, + -0.62, + -0.73, + -0.86, + -1.05, + -1.19, + -1.21, + -1.27, + -1.32, + -1.44, + -1.42, + -1.27, + -0.97, + -0.8, + -0.62, + -0.66, + -0.6900000000000001, + -0.64, + -0.49, + -0.31, + -0.26, + -0.23, + -0.23, + -0.26, + -0.29, + -0.32, + -0.44, + -0.74, + -1.31, + -1.98, + -1.96, + -1.85, + -1.27 + ], + [ + -0.9, + -1.05, + -1.1300000000000001, + -1.24, + -1.49, + -1.77, + -1.98, + -2.09, + -2.09, + -2.04, + -1.97, + -1.87, + -1.74, + -1.6400000000000001, + -1.5, + -1.35, + -1.31, + -1.48, + -1.67, + -1.86, + -2.04, + -2.5, + -3.0, + -3.34, + -3.62, + -3.8200000000000003, + -4.11, + -4.5600000000000005, + -5.03, + -5.22, + -5.39, + -5.44, + -5.53, + -5.87, + -6.42, + -6.88, + -7.0600000000000005, + -7.0, + -6.57, + -6.05, + -5.44, + -4.9, + -4.37, + -3.87, + -3.42, + -2.97, + -2.61, + -2.18, + -1.6300000000000001, + -1.0, + -0.22, + 0.59, + 1.18, + 1.58, + 1.71, + 1.6400000000000001, + 1.47, + 1.27, + 1.07, + 0.81, + 0.52, + 0.19, + -0.09, + -0.2, + -0.27, + -0.14, + -0.01, + 0.23, + 0.47000000000000003, + 0.64, + 0.74, + 0.61, + 0.34, + 0.11, + -0.02, + 0.01, + 0.04, + 0.03, + -0.05, + -0.07, + -0.04, + 0.02, + 0.11, + 0.06, + -0.16, + -0.36, + -0.53, + -0.77, + -0.92, + -0.9500000000000001, + -0.61, + -0.31, + -0.16, + -0.1, + -0.16, + -0.19, + -0.02, + 0.3, + 0.3, + 0.11, + -0.25, + -0.6, + -0.89, + -1.12, + -1.02, + -0.63, + -0.3, + -0.18, + -0.22, + -0.07, + 0.16, + 0.21, + 0.2, + 0.14, + 0.23, + 0.36, + 0.4, + 0.29, + 0.14, + 0.27, + 0.58, + 0.8, + 0.9500000000000001, + 0.81, + 0.63, + 0.55, + 0.5, + 0.38, + 0.15, + -0.03, + -0.08, + -0.07, + 0.0, + 0.08, + 0.07, + -0.02, + -0.1, + -0.15, + -0.15, + -0.15, + -0.12, + -0.08, + -0.13, + -0.11, + 0.01, + 0.17, + 0.16, + 0.08, + 0.1, + 0.34, + 0.55, + 0.47000000000000003, + 0.14, + -0.5700000000000001, + -1.41, + -2.22, + -2.99, + -3.3000000000000003, + -3.35, + -2.97, + -2.87, + -3.7, + -4.97, + -6.53, + -8.24, + -8.540000000000001, + -8.45, + -7.140000000000001, + -5.59, + -4.34, + -3.48, + -3.14, + -3.06, + -2.89, + -2.41, + -1.84, + -1.33, + -0.96, + -0.81, + -0.97, + -1.72, + -2.48, + -2.67, + -2.71, + -2.0300000000000002, + -1.27, + -0.98, + -0.78, + -0.98, + -1.08, + -1.1, + -1.1, + -0.91, + -0.66, + -0.58, + -0.74, + -1.08, + -1.3900000000000001, + -1.6400000000000001, + -2.11, + -2.68, + -3.18, + -3.4, + -2.85, + -2.06, + -1.22, + -0.77, + -1.32, + -2.19, + -2.67, + -2.93, + -2.85, + -2.74, + -2.75, + -2.74, + -2.73, + -2.64, + -2.54, + -2.45, + -2.42, + -2.65, + -3.29, + -3.97, + -4.11, + -3.42, + -2.48, + -1.37, + -0.45, + -0.12, + 0.07, + -0.15, + -0.34, + -0.55, + -0.67, + -0.5700000000000001, + -0.4, + -0.33, + -0.23, + -0.18, + 0.07, + 0.4, + 0.59, + 0.49, + -0.01, + -0.34, + -0.42, + -0.52, + -0.43, + -0.41000000000000003, + -0.33, + -0.32, + -0.27, + -0.07, + -0.02, + -0.02, + -0.19, + -0.33, + -0.43, + -0.64, + -0.8300000000000001, + -0.86, + -0.84, + -0.73, + -0.66, + -0.5700000000000001, + -0.28, + 0.07, + 0.21, + -0.08, + -0.42, + -0.66, + -0.84, + -1.06, + -1.22, + -1.19, + -1.1300000000000001, + -1.23, + -1.31, + -1.3900000000000001, + -1.37, + -1.1400000000000001, + -1.05, + -1.04, + -1.04, + -0.86, + -0.63, + -0.66, + -0.91, + -1.08, + -1.03, + -0.84, + -0.61, + -0.36, + -0.15, + -0.04, + 0.15, + 0.27, + 0.24, + 0.21, + 0.2, + 0.25, + 0.29, + 0.35000000000000003, + 0.55, + 0.8200000000000001, + 0.91, + 0.85, + 0.63, + 0.37, + 0.26, + 0.26, + 0.17, + -0.01, + -0.27, + -0.53, + -0.6900000000000001, + -0.67, + -0.72, + -0.97, + -1.19, + -1.33, + -1.3800000000000001, + -1.44, + -1.4000000000000001, + -1.37, + -1.17, + -1.03, + -0.84, + -0.8200000000000001, + -0.84, + -0.93, + -0.96, + -0.8, + -0.58, + -0.42, + -0.26, + -0.18, + -0.12, + -0.09, + -0.13, + -0.21, + -0.63, + -1.23, + -1.61, + -1.87, + -1.5, + -0.92 + ], + [ + -0.9400000000000001, + -1.1300000000000001, + -1.24, + -1.3800000000000001, + -1.56, + -1.83, + -2.05, + -2.15, + -2.16, + -2.13, + -2.09, + -1.99, + -1.9000000000000001, + -1.81, + -1.69, + -1.56, + -1.54, + -1.71, + -1.96, + -2.2, + -2.5300000000000002, + -2.96, + -3.27, + -3.66, + -3.8000000000000003, + -4.0200000000000005, + -4.42, + -4.95, + -5.21, + -5.3500000000000005, + -5.33, + -5.29, + -5.47, + -5.89, + -6.43, + -6.890000000000001, + -7.0200000000000005, + -6.74, + -6.32, + -5.72, + -5.12, + -4.55, + -4.01, + -3.49, + -2.98, + -2.64, + -2.25, + -1.79, + -1.2, + -0.44, + 0.36, + 0.98, + 1.45, + 1.67, + 1.69, + 1.55, + 1.32, + 1.09, + 0.8300000000000001, + 0.58, + 0.32, + 0.06, + -0.06, + -0.18, + -0.12, + -0.03, + 0.16, + 0.38, + 0.5700000000000001, + 0.74, + 0.77, + 0.7000000000000001, + 0.44, + 0.19, + 0.07, + 0.07, + 0.08, + 0.06, + 0.06, + 0.06, + 0.12, + 0.29, + 0.39, + 0.31, + 0.09, + -0.23, + -0.52, + -0.8300000000000001, + -1.05, + -0.89, + -0.64, + -0.33, + -0.12, + -0.13, + -0.13, + -0.26, + -0.21, + -0.04, + 0.12, + -0.1, + -0.38, + -0.63, + -0.77, + -0.84, + -0.73, + -0.45, + -0.16, + -0.03, + 0.01, + 0.12, + 0.25, + 0.36, + 0.26, + 0.23, + 0.31, + 0.45, + 0.4, + 0.29, + 0.24, + 0.32, + 0.5700000000000001, + 0.88, + 0.91, + 0.8300000000000001, + 0.6900000000000001, + 0.74, + 0.75, + 0.62, + 0.4, + 0.08, + -0.09, + -0.07, + 0.0, + 0.14, + 0.18, + 0.01, + -0.18, + -0.19, + -0.18, + -0.14, + -0.09, + -0.14, + -0.23, + -0.24, + -0.18, + -0.07, + -0.05, + -0.06, + 0.12, + 0.33, + 0.55, + 0.54, + 0.04, + -0.62, + -1.7, + -2.8000000000000003, + -3.69, + -4.44, + -4.25, + -3.96, + -3.54, + -3.47, + -4.62, + -6.11, + -7.53, + -8.65, + -8.120000000000001, + -7.1000000000000005, + -5.63, + -4.36, + -3.6, + -3.24, + -3.0700000000000003, + -2.74, + -2.18, + -1.37, + -0.77, + -0.46, + -0.26, + -0.64, + -1.22, + -1.9000000000000001, + -2.35, + -2.22, + -1.84, + -1.3800000000000001, + -1.0, + -0.99, + -0.98, + -0.99, + -0.88, + -0.84, + -0.79, + -0.63, + -0.53, + -0.65, + -0.92, + -1.2, + -1.52, + -1.99, + -2.71, + -3.3200000000000003, + -3.39, + -3.15, + -2.2600000000000002, + -1.41, + -1.06, + -1.26, + -2.06, + -2.84, + -2.97, + -2.99, + -2.94, + -2.89, + -2.77, + -2.5, + -2.4, + -2.37, + -2.25, + -2.06, + -2.17, + -2.66, + -3.29, + -3.5700000000000003, + -3.2800000000000002, + -2.45, + -1.49, + -0.61, + -0.07, + -0.06, + -0.15, + -0.31, + -0.45, + -0.46, + -0.33, + -0.12, + 0.21, + 0.25, + 0.29, + 0.39, + 0.61, + 0.74, + 0.49, + 0.13, + -0.23, + -0.45, + -0.55, + -0.63, + -0.55, + -0.48, + -0.37, + -0.24, + -0.05, + 0.13, + -0.06, + -0.29, + -0.39, + -0.5, + -0.61, + -0.7000000000000001, + -0.64, + -0.4, + -0.33, + -0.33, + -0.28, + -0.07, + 0.26, + 0.3, + 0.08, + -0.35000000000000003, + -0.68, + -0.98, + -1.27, + -1.34, + -1.26, + -1.04, + -0.8, + -1.02, + -1.1300000000000001, + -1.06, + -0.85, + -0.77, + -0.78, + -0.81, + -0.8200000000000001, + -0.76, + -0.89, + -1.1300000000000001, + -1.31, + -1.24, + -0.92, + -0.63, + -0.28, + -0.01, + 0.36, + 0.64, + 0.58, + 0.55, + 0.36, + 0.32, + 0.31, + 0.35000000000000003, + 0.32, + 0.43, + 0.54, + 0.5700000000000001, + 0.46, + 0.25, + 0.15, + 0.2, + 0.25, + 0.24, + 0.05, + -0.28, + -0.55, + -0.62, + -0.62, + -0.6900000000000001, + -0.86, + -1.25, + -1.54, + -1.57, + -1.6400000000000001, + -1.59, + -1.5, + -1.3900000000000001, + -1.26, + -1.2, + -1.18, + -1.24, + -1.36, + -1.31, + -1.11, + -0.8300000000000001, + -0.5, + -0.31, + -0.15, + -0.04, + 0.0, + 0.04, + -0.08, + -0.35000000000000003, + -0.84, + -1.29, + -1.4000000000000001, + -1.28, + -0.78 + ], + [ + -1.12, + -1.31, + -1.3900000000000001, + -1.48, + -1.68, + -1.9000000000000001, + -2.1, + -2.24, + -2.25, + -2.25, + -2.2, + -2.11, + -2.0300000000000002, + -1.98, + -1.87, + -1.68, + -1.6400000000000001, + -1.9000000000000001, + -2.23, + -2.56, + -2.95, + -3.12, + -3.42, + -3.61, + -3.84, + -4.16, + -4.66, + -5.05, + -5.29, + -5.24, + -5.04, + -5.11, + -5.39, + -5.88, + -6.47, + -6.83, + -6.76, + -6.47, + -5.95, + -5.37, + -4.76, + -4.2, + -3.67, + -3.15, + -2.74, + -2.37, + -1.98, + -1.5, + -0.71, + 0.19, + 0.8200000000000001, + 1.33, + 1.59, + 1.67, + 1.59, + 1.36, + 1.1, + 0.81, + 0.56, + 0.36, + 0.17, + 0.11, + 0.02, + 0.0, + 0.02, + 0.11, + 0.29, + 0.46, + 0.66, + 0.79, + 0.89, + 0.75, + 0.53, + 0.25, + 0.07, + 0.07, + 0.1, + 0.14, + 0.25, + 0.29, + 0.38, + 0.53, + 0.67, + 0.63, + 0.32, + -0.03, + -0.53, + -0.92, + -0.96, + -0.87, + -0.55, + -0.27, + -0.25, + -0.22, + -0.43, + -0.58, + -0.64, + -0.49, + -0.38, + -0.43, + -0.64, + -0.71, + -0.7000000000000001, + -0.48, + -0.32, + -0.13, + 0.1, + 0.17, + 0.21, + 0.23, + 0.32, + 0.3, + 0.24, + 0.27, + 0.35000000000000003, + 0.4, + 0.41000000000000003, + 0.35000000000000003, + 0.29, + 0.37, + 0.48, + 0.67, + 0.71, + 0.6, + 0.53, + 0.6, + 0.84, + 0.8300000000000001, + 0.58, + 0.29, + 0.02, + -0.07, + 0.11, + 0.26, + 0.28, + 0.11, + -0.1, + -0.24, + -0.18, + -0.14, + -0.14, + -0.24, + -0.36, + -0.47000000000000003, + -0.38, + -0.3, + -0.28, + -0.27, + -0.2, + -0.03, + 0.13, + 0.17, + -0.03, + -0.65, + -1.58, + -2.85, + -4.1, + -4.78, + -5.2, + -4.65, + -4.07, + -3.75, + -3.91, + -5.34, + -6.87, + -7.57, + -7.63, + -6.57, + -5.36, + -4.26, + -3.59, + -3.24, + -3.02, + -2.62, + -1.79, + -0.96, + -0.4, + -0.02, + -0.08, + -0.26, + -0.84, + -1.41, + -1.78, + -1.87, + -1.73, + -1.55, + -1.41, + -1.36, + -1.25, + -0.9500000000000001, + -0.77, + -0.5700000000000001, + -0.54, + -0.56, + -0.53, + -0.61, + -0.8200000000000001, + -1.04, + -1.35, + -1.94, + -2.63, + -3.15, + -3.4, + -3.0500000000000003, + -2.44, + -1.55, + -0.92, + -1.23, + -1.9100000000000001, + -2.58, + -3.04, + -3.09, + -3.17, + -3.0700000000000003, + -2.84, + -2.56, + -2.31, + -2.2, + -1.98, + -1.74, + -1.59, + -1.95, + -2.64, + -3.06, + -2.96, + -2.42, + -1.43, + -0.52, + -0.22, + -0.16, + -0.22, + -0.3, + -0.33, + -0.31, + -0.18, + 0.1, + 0.29, + 0.45, + 0.37, + 0.25, + 0.37, + 0.54, + 0.47000000000000003, + 0.33, + 0.08, + -0.2, + -0.4, + -0.61, + -0.65, + -0.56, + -0.48, + -0.28, + -0.07, + -0.01, + -0.15, + -0.31, + -0.38, + -0.4, + -0.46, + -0.49, + -0.4, + -0.24, + -0.13, + -0.17, + -0.23, + -0.06, + 0.27, + 0.41000000000000003, + 0.1, + -0.3, + -0.7000000000000001, + -1.07, + -1.4000000000000001, + -1.61, + -1.34, + -1.0, + -0.87, + -0.88, + -0.98, + -0.86, + -0.66, + -0.44, + -0.51, + -0.64, + -0.73, + -0.91, + -1.1, + -1.3800000000000001, + -1.52, + -1.32, + -1.02, + -0.56, + -0.17, + 0.32, + 0.78, + 0.8200000000000001, + 0.85, + 0.56, + 0.36, + 0.32, + 0.32, + 0.19, + 0.07, + 0.09, + 0.14, + 0.12, + 0.02, + -0.04, + 0.08, + 0.2, + 0.38, + 0.34, + 0.06, + -0.24, + -0.49, + -0.6, + -0.61, + -0.65, + -0.97, + -1.32, + -1.54, + -1.7, + -1.71, + -1.81, + -1.72, + -1.73, + -1.6600000000000001, + -1.67, + -1.6400000000000001, + -1.67, + -1.67, + -1.55, + -1.26, + -0.8300000000000001, + -0.54, + -0.34, + -0.21, + -0.12, + -0.03, + 0.06, + 0.07, + -0.14, + -0.46, + -0.86, + -1.06, + -1.01, + -0.77 + ], + [ + -1.17, + -1.4000000000000001, + -1.52, + -1.6300000000000001, + -1.78, + -1.99, + -2.18, + -2.29, + -2.34, + -2.33, + -2.29, + -2.21, + -2.16, + -2.1, + -1.95, + -1.77, + -1.73, + -1.92, + -2.38, + -2.81, + -2.94, + -3.11, + -3.22, + -3.4, + -3.73, + -4.17, + -4.66, + -5.14, + -5.19, + -4.96, + -4.9, + -5.0200000000000005, + -5.42, + -6.01, + -6.5, + -6.62, + -6.51, + -6.0600000000000005, + -5.53, + -4.96, + -4.36, + -3.84, + -3.3000000000000003, + -2.9, + -2.52, + -2.18, + -1.82, + -1.09, + -0.18, + 0.61, + 1.23, + 1.51, + 1.59, + 1.57, + 1.42, + 1.16, + 0.79, + 0.51, + 0.34, + 0.18, + 0.2, + 0.19, + 0.22, + 0.21, + 0.12, + 0.16, + 0.29, + 0.48, + 0.66, + 0.84, + 0.87, + 0.81, + 0.5, + 0.18, + 0.06, + 0.06, + 0.12, + 0.26, + 0.37, + 0.5, + 0.6, + 0.76, + 0.9, + 0.8, + 0.55, + 0.03, + -0.48, + -0.8, + -0.9400000000000001, + -0.67, + -0.4, + -0.42, + -0.5, + -0.74, + -0.96, + -1.23, + -1.37, + -1.17, + -0.86, + -0.84, + -0.9400000000000001, + -0.92, + -0.58, + -0.3, + 0.0, + 0.2, + 0.29, + 0.36, + 0.31, + 0.3, + 0.26, + 0.23, + 0.26, + 0.29, + 0.32, + 0.34, + 0.39, + 0.42, + 0.41000000000000003, + 0.4, + 0.47000000000000003, + 0.45, + 0.44, + 0.24, + 0.19, + 0.31, + 0.55, + 0.8, + 0.7000000000000001, + 0.45, + 0.23, + 0.17, + 0.26, + 0.48, + 0.56, + 0.3, + 0.01, + -0.1, + -0.12, + -0.1, + -0.15, + -0.3, + -0.54, + -0.56, + -0.51, + -0.41000000000000003, + -0.44, + -0.54, + -0.79, + -0.8, + -0.87, + -0.78, + -0.4, + -0.59, + -1.28, + -2.4, + -3.74, + -4.84, + -5.32, + -5.37, + -4.5200000000000005, + -3.84, + -3.8200000000000003, + -4.4, + -5.69, + -6.65, + -6.58, + -6.0200000000000005, + -4.93, + -4.0600000000000005, + -3.46, + -3.15, + -2.89, + -2.37, + -1.59, + -0.77, + -0.14, + -0.08, + -0.03, + -0.23, + -0.5700000000000001, + -1.02, + -1.34, + -1.58, + -1.69, + -1.76, + -1.93, + -1.82, + -1.61, + -1.21, + -0.61, + -0.43, + -0.36, + -0.41000000000000003, + -0.53, + -0.63, + -0.76, + -0.97, + -1.29, + -1.8, + -2.44, + -3.0, + -3.13, + -2.96, + -2.37, + -1.58, + -1.01, + -0.91, + -1.61, + -2.39, + -2.84, + -3.18, + -3.22, + -3.23, + -2.95, + -2.58, + -2.31, + -2.05, + -1.76, + -1.24, + -1.03, + -1.36, + -1.96, + -2.59, + -2.71, + -2.15, + -1.29, + -0.63, + -0.24, + -0.24, + -0.28, + -0.25, + -0.2, + -0.2, + -0.17, + 0.0, + 0.15, + 0.21, + 0.05, + -0.07, + -0.13, + 0.05, + 0.39, + 0.4, + 0.33, + 0.13, + -0.31, + -0.59, + -0.64, + -0.59, + -0.48, + -0.36, + -0.14, + -0.06, + -0.19, + -0.37, + -0.3, + -0.15, + -0.21, + -0.28, + -0.24, + -0.19, + -0.14, + -0.24, + -0.3, + -0.19, + 0.09, + 0.3, + 0.13, + -0.29, + -0.65, + -1.1, + -1.51, + -1.61, + -1.5, + -1.1500000000000001, + -0.9400000000000001, + -0.97, + -1.03, + -0.81, + -0.49, + -0.37, + -0.34, + -0.49, + -0.6900000000000001, + -0.89, + -1.2, + -1.44, + -1.46, + -1.29, + -0.87, + -0.45, + 0.04, + 0.55, + 0.77, + 0.92, + 0.7000000000000001, + 0.43, + 0.32, + 0.28, + 0.15, + -0.12, + -0.3, + -0.4, + -0.34, + -0.33, + -0.31, + -0.16, + 0.02, + 0.33, + 0.45, + 0.3, + 0.04, + -0.25, + -0.45, + -0.55, + -0.6, + -0.8, + -1.07, + -1.31, + -1.5, + -1.54, + -1.6, + -1.68, + -1.85, + -1.8900000000000001, + -2.06, + -2.0300000000000002, + -1.99, + -1.9100000000000001, + -1.76, + -1.52, + -1.06, + -0.67, + -0.48, + -0.34, + -0.33, + -0.28, + -0.15, + -0.04, + 0.1, + 0.06, + -0.26, + -0.55, + -0.85, + -0.91, + -0.72 + ], + [ + -1.33, + -1.57, + -1.67, + -1.76, + -1.9100000000000001, + -2.08, + -2.24, + -2.34, + -2.38, + -2.39, + -2.35, + -2.31, + -2.2600000000000002, + -2.2, + -2.06, + -1.82, + -1.73, + -2.0, + -2.41, + -2.69, + -2.84, + -2.86, + -2.87, + -3.17, + -3.5100000000000002, + -4.04, + -4.63, + -4.99, + -5.07, + -4.93, + -4.88, + -5.15, + -5.67, + -6.2, + -6.45, + -6.51, + -6.15, + -5.69, + -5.12, + -4.53, + -4.04, + -3.49, + -3.0700000000000003, + -2.65, + -2.34, + -2.05, + -1.49, + -0.71, + 0.21, + 1.06, + 1.44, + 1.51, + 1.49, + 1.3900000000000001, + 1.21, + 0.92, + 0.59, + 0.32, + 0.15, + 0.16, + 0.19, + 0.36, + 0.44, + 0.27, + 0.15, + 0.12, + 0.2, + 0.39, + 0.59, + 0.76, + 0.86, + 0.67, + 0.36, + 0.09, + 0.02, + 0.06, + 0.13, + 0.25, + 0.39, + 0.52, + 0.67, + 0.84, + 0.96, + 0.9, + 0.59, + 0.16, + -0.33, + -0.7000000000000001, + -0.58, + -0.35000000000000003, + -0.37, + -0.5700000000000001, + -1.0, + -1.49, + -1.8, + -2.13, + -2.14, + -1.8800000000000001, + -1.44, + -1.03, + -1.07, + -1.08, + -0.72, + -0.14, + 0.19, + 0.34, + 0.44, + 0.45, + 0.4, + 0.29, + 0.2, + 0.24, + 0.28, + 0.29, + 0.28, + 0.3, + 0.38, + 0.47000000000000003, + 0.59, + 0.56, + 0.47000000000000003, + 0.42, + 0.22, + 0.03, + -0.2, + -0.09, + 0.17, + 0.42, + 0.61, + 0.5, + 0.48, + 0.46, + 0.5700000000000001, + 0.76, + 0.76, + 0.59, + 0.23, + 0.04, + 0.0, + 0.0, + -0.11, + -0.31, + -0.5, + -0.5700000000000001, + -0.44, + -0.31, + -0.4, + -0.85, + -1.22, + -1.8800000000000001, + -2.07, + -1.81, + -1.3800000000000001, + -0.63, + -0.85, + -1.83, + -3.06, + -4.29, + -5.18, + -5.24, + -4.95, + -3.93, + -3.38, + -3.7600000000000002, + -4.5, + -5.39, + -5.76, + -5.25, + -4.61, + -3.81, + -3.3000000000000003, + -2.99, + -2.73, + -2.23, + -1.53, + -0.76, + -0.45, + -0.3, + -0.31, + -0.39, + -0.52, + -0.75, + -1.1, + -1.34, + -1.6400000000000001, + -1.99, + -2.18, + -2.33, + -2.0, + -1.45, + -0.86, + -0.27, + -0.25, + -0.39, + -0.52, + -0.65, + -0.78, + -0.9500000000000001, + -1.25, + -1.69, + -2.27, + -2.69, + -2.89, + -2.8000000000000003, + -2.37, + -1.6400000000000001, + -0.96, + -0.84, + -1.23, + -1.99, + -2.68, + -3.0, + -3.25, + -3.19, + -2.99, + -2.64, + -2.27, + -1.97, + -1.45, + -0.93, + -0.63, + -0.8200000000000001, + -1.56, + -2.17, + -2.35, + -1.99, + -1.29, + -0.64, + -0.39, + -0.32, + -0.25, + -0.14, + -0.13, + -0.17, + -0.21, + -0.27, + -0.13, + -0.11, + -0.23, + -0.45, + -0.45, + -0.22, + 0.09, + 0.4, + 0.42, + 0.13, + -0.25, + -0.58, + -0.6900000000000001, + -0.56, + -0.43, + -0.29, + -0.11, + -0.06, + -0.17, + -0.24, + -0.16, + -0.02, + 0.04, + -0.09, + -0.23, + -0.2, + -0.22, + -0.31, + -0.41000000000000003, + -0.33, + -0.06, + 0.13, + -0.06, + -0.39, + -0.6900000000000001, + -1.03, + -1.4000000000000001, + -1.6, + -1.48, + -1.23, + -1.06, + -1.07, + -0.98, + -0.75, + -0.51, + -0.4, + -0.37, + -0.37, + -0.55, + -0.77, + -1.04, + -1.2, + -1.22, + -0.98, + -0.62, + -0.26, + 0.16, + 0.45, + 0.67, + 0.6900000000000001, + 0.52, + 0.39, + 0.29, + 0.19, + 0.02, + -0.4, + -0.84, + -0.86, + -0.74, + -0.62, + -0.44, + -0.23, + 0.09, + 0.34, + 0.35000000000000003, + 0.19, + -0.14, + -0.4, + -0.42, + -0.48, + -0.72, + -0.98, + -1.1500000000000001, + -1.35, + -1.31, + -1.22, + -1.27, + -1.36, + -1.6300000000000001, + -1.95, + -2.15, + -2.32, + -2.19, + -1.94, + -1.7, + -1.21, + -0.76, + -0.43, + -0.25, + -0.36, + -0.4, + -0.41000000000000003, + -0.33, + -0.09, + 0.07, + 0.02, + -0.2, + -0.56, + -0.85, + -0.88, + -0.75 + ], + [ + -1.4000000000000001, + -1.6600000000000001, + -1.81, + -1.9000000000000001, + -2.0300000000000002, + -2.18, + -2.3000000000000003, + -2.38, + -2.42, + -2.42, + -2.41, + -2.38, + -2.37, + -2.3000000000000003, + -2.14, + -1.9100000000000001, + -1.85, + -2.0300000000000002, + -2.35, + -2.59, + -2.68, + -2.62, + -2.77, + -2.98, + -3.43, + -3.92, + -4.51, + -4.9, + -5.03, + -5.0200000000000005, + -5.15, + -5.61, + -6.09, + -6.36, + -6.54, + -6.29, + -5.91, + -5.37, + -4.79, + -4.29, + -3.7800000000000002, + -3.3200000000000003, + -2.88, + -2.49, + -2.17, + -1.74, + -1.18, + -0.31, + 0.67, + 1.3, + 1.52, + 1.44, + 1.21, + 1.09, + 1.01, + 0.75, + 0.52, + 0.27, + 0.15, + 0.14, + 0.27, + 0.44, + 0.46, + 0.34, + 0.12, + 0.02, + 0.1, + 0.26, + 0.46, + 0.64, + 0.64, + 0.45, + 0.14, + -0.08, + -0.04, + 0.15, + 0.19, + 0.12, + 0.26, + 0.41000000000000003, + 0.58, + 0.81, + 0.92, + 0.79, + 0.52, + 0.2, + -0.2, + -0.29, + -0.14, + -0.05, + -0.15, + -0.78, + -1.57, + -2.17, + -2.73, + -2.93, + -2.94, + -2.47, + -1.6600000000000001, + -1.22, + -1.02, + -0.99, + -0.75, + -0.2, + 0.25, + 0.43, + 0.55, + 0.5700000000000001, + 0.47000000000000003, + 0.33, + 0.25, + 0.25, + 0.31, + 0.33, + 0.24, + 0.19, + 0.31, + 0.52, + 0.65, + 0.74, + 0.62, + 0.42, + 0.21, + -0.11, + -0.32, + -0.45, + -0.23, + 0.02, + 0.22, + 0.51, + 0.5700000000000001, + 0.74, + 0.88, + 0.93, + 0.9500000000000001, + 0.66, + 0.34, + 0.15, + 0.11, + 0.04, + -0.06, + -0.27, + -0.45, + -0.42, + -0.14, + -0.02, + -0.19, + -0.7000000000000001, + -1.69, + -2.43, + -3.2, + -3.1, + -2.09, + -1.21, + -0.71, + -1.22, + -2.22, + -3.36, + -4.2, + -4.67, + -4.33, + -3.71, + -2.99, + -2.84, + -3.6, + -4.37, + -4.8100000000000005, + -4.8, + -4.2, + -3.59, + -3.1, + -2.85, + -2.58, + -2.19, + -1.55, + -1.12, + -0.8200000000000001, + -0.74, + -0.74, + -0.63, + -0.64, + -0.78, + -1.0, + -1.25, + -1.51, + -1.92, + -2.35, + -2.48, + -2.4, + -1.81, + -1.09, + -0.5700000000000001, + -0.29, + -0.43, + -0.5700000000000001, + -0.6900000000000001, + -0.77, + -0.93, + -1.17, + -1.59, + -2.0, + -2.4, + -2.72, + -2.73, + -2.39, + -1.77, + -1.0, + -0.59, + -0.9, + -1.49, + -2.22, + -2.81, + -3.0500000000000003, + -3.15, + -2.97, + -2.71, + -2.36, + -1.92, + -1.41, + -0.87, + -0.53, + -0.71, + -1.3, + -1.9100000000000001, + -2.14, + -1.8900000000000001, + -1.31, + -0.8300000000000001, + -0.55, + -0.37, + -0.17, + -0.07, + -0.03, + -0.16, + -0.37, + -0.41000000000000003, + -0.38, + -0.32, + -0.32, + -0.47000000000000003, + -0.49, + -0.29, + -0.04, + 0.23, + 0.27, + 0.05, + -0.34, + -0.67, + -0.66, + -0.53, + -0.39, + -0.22, + -0.05, + 0.05, + -0.05, + -0.1, + -0.02, + 0.1, + 0.09, + -0.05, + -0.19, + -0.27, + -0.27, + -0.27, + -0.36, + -0.34, + -0.12, + -0.15, + -0.33, + -0.59, + -0.86, + -0.99, + -1.23, + -1.46, + -1.44, + -1.25, + -1.09, + -1.0, + -0.85, + -0.66, + -0.55, + -0.44, + -0.39, + -0.36, + -0.34, + -0.54, + -0.7000000000000001, + -0.84, + -0.75, + -0.53, + -0.28, + 0.03, + 0.17, + 0.37, + 0.5, + 0.49, + 0.51, + 0.45, + 0.3, + 0.16, + -0.21, + -0.77, + -1.17, + -1.31, + -1.05, + -0.66, + -0.42, + -0.14, + 0.14, + 0.23, + 0.2, + -0.17, + -0.49, + -0.5, + -0.49, + -0.51, + -0.72, + -1.01, + -1.24, + -1.24, + -1.1400000000000001, + -0.96, + -0.8300000000000001, + -1.07, + -1.36, + -1.84, + -2.29, + -2.39, + -2.27, + -1.97, + -1.49, + -1.0, + -0.43, + -0.11, + -0.12, + -0.23, + -0.43, + -0.49, + -0.32, + -0.09, + 0.03, + -0.03, + -0.34, + -0.75, + -0.9, + -0.92, + -0.72 + ], + [ + -1.53, + -1.8, + -1.93, + -2.0300000000000002, + -2.15, + -2.25, + -2.35, + -2.4, + -2.44, + -2.46, + -2.45, + -2.44, + -2.43, + -2.38, + -2.22, + -2.06, + -1.98, + -2.18, + -2.45, + -2.65, + -2.7, + -2.7600000000000002, + -2.9, + -3.15, + -3.5300000000000002, + -4.03, + -4.5200000000000005, + -4.96, + -5.19, + -5.34, + -5.76, + -6.2, + -6.5200000000000005, + -6.73, + -6.51, + -6.23, + -5.71, + -5.16, + -4.6000000000000005, + -4.09, + -3.66, + -3.22, + -2.74, + -2.34, + -1.8900000000000001, + -1.42, + -0.75, + 0.14, + 0.97, + 1.51, + 1.51, + 1.16, + 0.88, + 0.64, + 0.6, + 0.7000000000000001, + 0.5, + 0.38, + 0.26, + 0.19, + 0.29, + 0.42, + 0.46, + 0.32, + 0.11, + -0.02, + 0.01, + 0.13, + 0.31, + 0.41000000000000003, + 0.37, + 0.14, + -0.2, + -0.27, + -0.01, + 0.2, + 0.28, + 0.21, + 0.14, + 0.31, + 0.59, + 0.81, + 0.75, + 0.6, + 0.34, + 0.04, + -0.02, + -0.02, + 0.26, + 0.44, + -0.01, + -0.8300000000000001, + -1.84, + -2.79, + -3.3000000000000003, + -3.56, + -3.45, + -2.9, + -1.98, + -1.03, + -0.8200000000000001, + -0.79, + -0.53, + -0.09, + 0.35000000000000003, + 0.61, + 0.73, + 0.75, + 0.66, + 0.46, + 0.33, + 0.32, + 0.38, + 0.31, + 0.17, + 0.08, + 0.13, + 0.4, + 0.67, + 0.77, + 0.78, + 0.5700000000000001, + 0.28, + -0.04, + -0.37, + -0.49, + -0.52, + -0.29, + 0.01, + 0.29, + 0.73, + 0.96, + 0.99, + 1.02, + 0.8300000000000001, + 0.53, + 0.26, + 0.13, + 0.08, + 0.0, + -0.08, + -0.24, + -0.36, + -0.25, + 0.1, + 0.55, + 0.34, + -0.41000000000000003, + -1.46, + -2.98, + -3.81, + -4.11, + -3.2600000000000002, + -1.81, + -1.08, + -0.75, + -1.34, + -1.93, + -2.59, + -3.14, + -3.15, + -2.79, + -2.37, + -2.31, + -2.82, + -3.7, + -4.33, + -4.36, + -4.01, + -3.43, + -2.94, + -2.68, + -2.46, + -2.08, + -1.73, + -1.33, + -1.21, + -1.16, + -1.04, + -0.93, + -0.88, + -0.99, + -1.07, + -1.22, + -1.3800000000000001, + -1.68, + -2.19, + -2.58, + -2.5300000000000002, + -2.21, + -1.5, + -0.89, + -0.63, + -0.55, + -0.67, + -0.65, + -0.72, + -0.8200000000000001, + -1.05, + -1.35, + -1.74, + -2.24, + -2.62, + -2.77, + -2.57, + -1.85, + -1.04, + -0.49, + -0.43, + -1.06, + -1.78, + -2.44, + -2.93, + -3.06, + -3.09, + -2.84, + -2.54, + -2.11, + -1.6500000000000001, + -1.1300000000000001, + -0.8200000000000001, + -0.93, + -1.31, + -1.86, + -2.05, + -1.86, + -1.48, + -1.07, + -0.72, + -0.43, + -0.16, + 0.06, + 0.02, + -0.17, + -0.39, + -0.54, + -0.49, + -0.36, + -0.33, + -0.27, + -0.29, + -0.26, + -0.04, + 0.03, + 0.06, + -0.11, + -0.47000000000000003, + -0.66, + -0.66, + -0.53, + -0.4, + -0.22, + -0.02, + 0.09, + 0.09, + 0.02, + 0.06, + 0.1, + 0.02, + -0.09, + -0.16, + -0.23, + -0.21, + -0.22, + -0.24, + -0.23, + -0.23, + -0.26, + -0.55, + -0.84, + -0.91, + -1.0, + -1.16, + -1.35, + -1.42, + -1.3, + -1.07, + -0.86, + -0.68, + -0.51, + -0.43, + -0.43, + -0.32, + -0.16, + -0.15, + -0.24, + -0.39, + -0.37, + -0.27, + -0.09, + 0.16, + 0.22, + 0.34, + 0.36, + 0.43, + 0.53, + 0.62, + 0.48, + 0.27, + -0.02, + -0.48, + -1.06, + -1.55, + -1.54, + -1.1300000000000001, + -0.66, + -0.16, + 0.08, + 0.14, + 0.18, + -0.19, + -0.55, + -0.77, + -0.8, + -0.52, + -0.48, + -0.68, + -0.96, + -1.12, + -1.12, + -1.0, + -0.79, + -0.77, + -0.9400000000000001, + -1.3800000000000001, + -1.92, + -2.34, + -2.48, + -2.3000000000000003, + -1.95, + -1.46, + -0.8200000000000001, + -0.26, + 0.08, + 0.08, + -0.2, + -0.42, + -0.44, + -0.28, + -0.01, + 0.14, + -0.09, + -0.47000000000000003, + -0.74, + -0.9, + -0.79, + -0.58 + ], + [ + -1.6, + -1.8800000000000001, + -2.04, + -2.13, + -2.23, + -2.31, + -2.35, + -2.41, + -2.46, + -2.48, + -2.47, + -2.47, + -2.48, + -2.43, + -2.32, + -2.16, + -2.2600000000000002, + -2.47, + -2.72, + -2.9, + -3.02, + -3.13, + -3.2800000000000002, + -3.54, + -3.9, + -4.37, + -4.84, + -5.26, + -5.57, + -5.95, + -6.38, + -6.86, + -7.1000000000000005, + -6.8500000000000005, + -6.61, + -6.08, + -5.5600000000000005, + -5.0, + -4.45, + -3.93, + -3.5, + -3.0300000000000002, + -2.5500000000000003, + -2.05, + -1.56, + -1.02, + -0.31, + 0.46, + 1.18, + 1.51, + 1.32, + 0.86, + 0.29, + 0.11, + 0.27, + 0.42, + 0.67, + 0.55, + 0.42, + 0.34, + 0.33, + 0.43, + 0.44, + 0.31, + 0.13, + 0.0, + -0.07, + -0.01, + 0.09, + 0.14, + 0.05, + -0.24, + -0.47000000000000003, + -0.43, + -0.07, + 0.41000000000000003, + 0.47000000000000003, + 0.36, + 0.3, + 0.45, + 0.72, + 0.8300000000000001, + 0.76, + 0.35000000000000003, + 0.04, + -0.07, + -0.11, + 0.23, + 0.62, + 0.7000000000000001, + 0.26, + -0.74, + -1.92, + -2.97, + -3.71, + -3.95, + -3.84, + -3.19, + -2.07, + -1.07, + -0.4, + -0.35000000000000003, + -0.12, + 0.31, + 0.63, + 0.89, + 1.03, + 1.07, + 0.91, + 0.71, + 0.46, + 0.41000000000000003, + 0.4, + 0.31, + 0.08, + -0.11, + -0.05, + 0.18, + 0.51, + 0.78, + 0.8200000000000001, + 0.78, + 0.48, + 0.09, + -0.24, + -0.48, + -0.51, + -0.43, + -0.15, + 0.32, + 0.78, + 1.04, + 1.09, + 0.84, + 0.55, + 0.23, + -0.04, + -0.03, + 0.0, + -0.06, + -0.14, + -0.23, + -0.3, + -0.11, + 0.44, + 0.91, + 1.09, + 0.29, + -1.22, + -2.74, + -4.3500000000000005, + -4.75, + -4.19, + -2.85, + -1.25, + -0.64, + -0.17, + -0.29, + -0.66, + -1.0, + -1.55, + -1.6300000000000001, + -1.68, + -2.05, + -2.64, + -3.49, + -4.14, + -4.3100000000000005, + -3.96, + -3.39, + -2.91, + -2.52, + -2.29, + -2.04, + -1.69, + -1.5, + -1.3900000000000001, + -1.31, + -1.21, + -1.1, + -1.08, + -1.12, + -1.2, + -1.1500000000000001, + -1.17, + -1.44, + -1.93, + -2.45, + -2.73, + -2.44, + -1.9000000000000001, + -1.27, + -0.8200000000000001, + -0.72, + -0.63, + -0.6, + -0.54, + -0.63, + -0.8, + -1.08, + -1.52, + -2.0300000000000002, + -2.61, + -2.9, + -2.64, + -1.97, + -1.09, + -0.41000000000000003, + -0.28, + -0.65, + -1.45, + -2.22, + -2.77, + -3.16, + -3.18, + -3.06, + -2.75, + -2.39, + -1.93, + -1.53, + -1.23, + -1.16, + -1.51, + -1.86, + -2.06, + -2.0100000000000002, + -1.72, + -1.31, + -0.9400000000000001, + -0.54, + -0.17, + 0.06, + 0.09, + -0.13, + -0.38, + -0.52, + -0.53, + -0.4, + -0.29, + -0.22, + -0.13, + -0.1, + -0.11, + -0.05, + -0.13, + -0.32, + -0.49, + -0.64, + -0.63, + -0.54, + -0.44, + -0.3, + -0.06, + 0.1, + 0.11, + 0.07, + 0.05, + -0.01, + -0.07, + -0.11, + -0.17, + -0.16, + -0.16, + -0.17, + -0.2, + -0.25, + -0.25, + -0.34, + -0.61, + -0.85, + -0.93, + -1.0, + -1.1500000000000001, + -1.37, + -1.5, + -1.35, + -1.11, + -0.78, + -0.44, + -0.29, + -0.26, + -0.22, + -0.02, + 0.12, + 0.1, + 0.02, + -0.04, + -0.02, + 0.03, + 0.21, + 0.31, + 0.39, + 0.41000000000000003, + 0.44, + 0.45, + 0.5700000000000001, + 0.62, + 0.51, + 0.15, + -0.3, + -0.75, + -1.32, + -1.72, + -1.6300000000000001, + -1.12, + -0.4, + 0.06, + 0.27, + 0.28, + -0.09, + -0.46, + -0.91, + -1.1500000000000001, + -0.87, + -0.56, + -0.43, + -0.59, + -0.85, + -1.0, + -1.07, + -0.99, + -0.93, + -1.0, + -1.23, + -1.7, + -2.15, + -2.43, + -2.5, + -2.2600000000000002, + -1.9000000000000001, + -1.44, + -0.8, + -0.18, + 0.16, + 0.09, + -0.18, + -0.46, + -0.51, + -0.19, + 0.13, + 0.16, + -0.08, + -0.36, + -0.55, + -0.59, + -0.42, + -0.34 + ], + [ + -1.6600000000000001, + -1.96, + -2.12, + -2.2, + -2.2800000000000002, + -2.33, + -2.37, + -2.41, + -2.46, + -2.5100000000000002, + -2.5, + -2.5500000000000003, + -2.56, + -2.48, + -2.37, + -2.43, + -2.57, + -2.85, + -3.12, + -3.2800000000000002, + -3.42, + -3.56, + -3.74, + -4.0200000000000005, + -4.42, + -4.8500000000000005, + -5.3100000000000005, + -5.72, + -6.11, + -6.5, + -7.03, + -7.44, + -7.32, + -7.04, + -6.37, + -5.8500000000000005, + -5.38, + -4.84, + -4.28, + -3.7600000000000002, + -3.24, + -2.73, + -2.23, + -1.71, + -1.18, + -0.59, + -0.01, + 0.63, + 1.16, + 1.25, + 0.98, + 0.35000000000000003, + -0.21, + -0.39, + -0.16, + 0.44, + 0.7000000000000001, + 0.78, + 0.65, + 0.5, + 0.48, + 0.43, + 0.42, + 0.32, + 0.15, + -0.06, + -0.18, + -0.21, + -0.17, + -0.13, + -0.24, + -0.47000000000000003, + -0.64, + -0.53, + -0.04, + 0.47000000000000003, + 0.71, + 0.59, + 0.52, + 0.67, + 0.9, + 1.01, + 0.79, + 0.37, + -0.05, + -0.19, + -0.04, + 0.34, + 0.8, + 0.9, + 0.47000000000000003, + -0.49, + -1.73, + -2.88, + -3.7800000000000002, + -4.2700000000000005, + -4.13, + -3.39, + -2.19, + -0.87, + -0.16, + 0.2, + 0.42, + 0.68, + 1.0, + 1.1500000000000001, + 1.29, + 1.36, + 1.22, + 0.9, + 0.63, + 0.45, + 0.39, + 0.25, + -0.01, + -0.24, + -0.23, + -0.01, + 0.3, + 0.63, + 0.88, + 0.86, + 0.68, + 0.28, + -0.16, + -0.4, + -0.45, + -0.37, + -0.12, + 0.34, + 0.8200000000000001, + 1.1, + 0.98, + 0.68, + 0.19, + -0.23, + -0.32, + -0.2, + -0.1, + -0.1, + -0.13, + -0.13, + -0.2, + -0.01, + 0.61, + 1.36, + 1.54, + 1.02, + -0.5, + -2.46, + -4.08, + -5.09, + -4.6000000000000005, + -3.27, + -1.67, + -0.07, + 0.76, + 1.23, + 1.24, + 0.65, + 0.03, + -0.68, + -1.32, + -1.97, + -2.98, + -3.77, + -4.34, + -4.47, + -4.07, + -3.49, + -2.9, + -2.5100000000000002, + -2.16, + -1.9000000000000001, + -1.67, + -1.49, + -1.36, + -1.27, + -1.17, + -1.06, + -1.05, + -1.08, + -1.1, + -1.01, + -0.93, + -1.1, + -1.67, + -2.35, + -2.72, + -2.68, + -2.12, + -1.4000000000000001, + -0.92, + -0.59, + -0.5, + -0.42, + -0.36, + -0.37, + -0.53, + -0.76, + -1.18, + -1.85, + -2.48, + -2.85, + -2.65, + -1.99, + -1.1500000000000001, + -0.48, + -0.33, + -0.64, + -1.34, + -2.15, + -2.82, + -3.21, + -3.3000000000000003, + -3.16, + -2.77, + -2.4, + -2.02, + -1.6300000000000001, + -1.37, + -1.31, + -1.46, + -1.79, + -2.12, + -2.16, + -1.98, + -1.6400000000000001, + -1.1500000000000001, + -0.68, + -0.26, + 0.01, + 0.09, + -0.04, + -0.29, + -0.44, + -0.49, + -0.48, + -0.36, + -0.21, + -0.12, + -0.02, + -0.03, + -0.1, + -0.2, + -0.41000000000000003, + -0.6, + -0.58, + -0.53, + -0.53, + -0.5, + -0.34, + -0.11, + 0.05, + 0.05, + 0.01, + -0.04, + -0.08, + -0.12, + -0.16, + -0.19, + -0.2, + -0.22, + -0.23, + -0.24, + -0.3, + -0.32, + -0.41000000000000003, + -0.54, + -0.73, + -0.89, + -0.98, + -1.1500000000000001, + -1.3900000000000001, + -1.54, + -1.47, + -1.1300000000000001, + -0.68, + -0.27, + -0.01, + 0.03, + 0.13, + 0.31, + 0.44, + 0.41000000000000003, + 0.28, + 0.23, + 0.14, + 0.2, + 0.17, + 0.25, + 0.29, + 0.3, + 0.33, + 0.36, + 0.46, + 0.51, + 0.39, + 0.01, + -0.49, + -1.0, + -1.48, + -1.73, + -1.59, + -0.99, + -0.26, + 0.24, + 0.42, + 0.2, + -0.17, + -0.78, + -1.23, + -1.19, + -0.88, + -0.48, + -0.33, + -0.52, + -0.78, + -1.02, + -1.1400000000000001, + -1.22, + -1.31, + -1.43, + -1.75, + -2.08, + -2.35, + -2.52, + -2.34, + -2.11, + -1.81, + -1.36, + -0.79, + -0.17, + 0.08, + 0.01, + -0.32, + -0.61, + -0.52, + -0.18, + 0.13, + 0.15, + -0.02, + -0.2, + -0.19, + -0.02, + -0.01, + -0.09 + ], + [ + -1.73, + -2.02, + -2.17, + -2.24, + -2.3000000000000003, + -2.36, + -2.4, + -2.44, + -2.48, + -2.5300000000000002, + -2.64, + -2.7, + -2.64, + -2.5500000000000003, + -2.5300000000000002, + -2.61, + -2.96, + -3.3000000000000003, + -3.5300000000000002, + -3.69, + -3.8200000000000003, + -3.98, + -4.18, + -4.49, + -4.88, + -5.29, + -5.71, + -6.07, + -6.46, + -6.9, + -7.41, + -7.57, + -7.44, + -6.68, + -6.0, + -5.47, + -5.01, + -4.59, + -4.03, + -3.5, + -2.98, + -2.45, + -1.93, + -1.4000000000000001, + -0.85, + -0.35000000000000003, + 0.14, + 0.5700000000000001, + 0.8, + 0.86, + 0.46, + -0.13, + -0.56, + -0.73, + -0.24, + 0.39, + 0.9, + 0.99, + 0.84, + 0.6900000000000001, + 0.54, + 0.49, + 0.4, + 0.28, + 0.09, + -0.14, + -0.36, + -0.46, + -0.43, + -0.4, + -0.41000000000000003, + -0.5, + -0.67, + -0.51, + -0.04, + 0.43, + 0.73, + 0.75, + 0.68, + 0.78, + 1.02, + 1.2, + 0.97, + 0.6, + 0.2, + -0.03, + 0.13, + 0.47000000000000003, + 0.91, + 1.05, + 0.62, + -0.18, + -1.29, + -2.61, + -3.73, + -4.3500000000000005, + -4.36, + -3.54, + -2.05, + -0.67, + 0.26, + 0.63, + 0.76, + 1.02, + 1.12, + 1.25, + 1.3900000000000001, + 1.44, + 1.37, + 1.05, + 0.67, + 0.44, + 0.36, + 0.2, + -0.09, + -0.33, + -0.36, + -0.16, + 0.1, + 0.34, + 0.6900000000000001, + 0.93, + 0.76, + 0.34, + -0.1, + -0.3, + -0.35000000000000003, + -0.31, + -0.07, + 0.35000000000000003, + 0.8300000000000001, + 1.03, + 0.87, + 0.44, + -0.11, + -0.56, + -0.63, + -0.38, + -0.16, + -0.09, + -0.03, + -0.04, + -0.1, + 0.05, + 0.64, + 1.46, + 1.8900000000000001, + 1.44, + 0.29, + -1.68, + -3.47, + -4.46, + -4.59, + -3.2600000000000002, + -1.52, + 0.18, + 1.47, + 2.13, + 2.16, + 1.51, + 0.7000000000000001, + -0.22, + -1.1300000000000001, + -2.18, + -3.2800000000000002, + -4.32, + -4.78, + -4.64, + -4.23, + -3.56, + -2.96, + -2.43, + -2.08, + -1.79, + -1.55, + -1.34, + -1.2, + -1.07, + -0.9400000000000001, + -0.87, + -0.86, + -0.9, + -0.88, + -0.76, + -0.62, + -0.77, + -1.35, + -2.14, + -2.7, + -2.72, + -2.18, + -1.42, + -0.72, + -0.39, + -0.25, + -0.18, + -0.17, + -0.19, + -0.23, + -0.45, + -0.88, + -1.55, + -2.2600000000000002, + -2.64, + -2.52, + -1.8800000000000001, + -1.2, + -0.74, + -0.55, + -0.9, + -1.52, + -2.2800000000000002, + -2.94, + -3.25, + -3.34, + -3.0, + -2.62, + -2.08, + -1.7, + -1.41, + -1.1400000000000001, + -1.06, + -1.2, + -1.57, + -1.9100000000000001, + -2.2600000000000002, + -2.2, + -1.79, + -1.24, + -0.76, + -0.35000000000000003, + -0.05, + 0.04, + -0.02, + -0.18, + -0.36, + -0.48, + -0.49, + -0.43, + -0.28, + -0.1, + 0.0, + 0.06, + -0.02, + -0.23, + -0.46, + -0.56, + -0.51, + -0.45, + -0.47000000000000003, + -0.47000000000000003, + -0.32, + -0.13, + -0.04, + -0.04, + -0.09, + -0.1, + -0.07, + -0.13, + -0.22, + -0.27, + -0.41000000000000003, + -0.42, + -0.27, + -0.29, + -0.32, + -0.35000000000000003, + -0.46, + -0.59, + -0.6900000000000001, + -0.8300000000000001, + -0.89, + -1.05, + -1.27, + -1.41, + -1.42, + -1.12, + -0.61, + -0.09, + 0.23, + 0.36, + 0.44, + 0.58, + 0.71, + 0.66, + 0.53, + 0.4, + 0.31, + 0.15, + 0.11, + 0.08, + 0.09, + 0.01, + 0.0, + 0.08, + 0.16, + 0.3, + 0.2, + -0.12, + -0.5700000000000001, + -1.09, + -1.51, + -1.7, + -1.4000000000000001, + -0.84, + -0.25, + 0.29, + 0.39, + 0.17, + -0.39, + -0.99, + -1.25, + -1.17, + -0.71, + -0.27, + -0.25, + -0.48, + -0.88, + -1.19, + -1.41, + -1.58, + -1.74, + -1.95, + -2.16, + -2.33, + -2.47, + -2.31, + -2.14, + -1.8900000000000001, + -1.62, + -1.28, + -0.72, + -0.31, + -0.05, + -0.24, + -0.59, + -0.71, + -0.58, + -0.24, + 0.04, + 0.04, + -0.14, + -0.05, + 0.19, + 0.37, + 0.36, + 0.12 + ], + [ + -1.72, + -2.0300000000000002, + -2.2, + -2.2600000000000002, + -2.33, + -2.38, + -2.43, + -2.49, + -2.5300000000000002, + -2.63, + -2.75, + -2.85, + -2.7800000000000002, + -2.67, + -2.66, + -2.9, + -3.31, + -3.68, + -3.9, + -4.03, + -4.15, + -4.3500000000000005, + -4.58, + -4.87, + -5.2, + -5.55, + -5.82, + -6.19, + -6.5200000000000005, + -6.97, + -7.32, + -7.53, + -7.03, + -6.26, + -5.5200000000000005, + -4.99, + -4.66, + -4.25, + -3.81, + -3.29, + -2.81, + -2.3000000000000003, + -1.75, + -1.22, + -0.7000000000000001, + -0.27, + 0.05, + 0.2, + 0.37, + 0.26, + -0.03, + -0.38, + -0.8, + -0.64, + -0.17, + 0.53, + 1.07, + 1.1500000000000001, + 1.0, + 0.72, + 0.56, + 0.43, + 0.32, + 0.21, + 0.0, + -0.24, + -0.48, + -0.64, + -0.64, + -0.54, + -0.44, + -0.46, + -0.49, + -0.45, + -0.19, + 0.32, + 0.6, + 0.67, + 0.7000000000000001, + 0.8, + 1.02, + 1.21, + 1.33, + 0.9500000000000001, + 0.54, + 0.35000000000000003, + 0.37, + 0.72, + 0.99, + 1.04, + 0.85, + 0.2, + -0.8, + -2.05, + -3.38, + -4.16, + -4.28, + -3.31, + -1.8, + -0.27, + 0.72, + 1.05, + 1.16, + 1.16, + 1.24, + 1.22, + 1.35, + 1.47, + 1.3800000000000001, + 1.03, + 0.61, + 0.37, + 0.29, + 0.18, + -0.11, + -0.38, + -0.4, + -0.3, + -0.22, + 0.01, + 0.38, + 0.74, + 0.75, + 0.34, + 0.02, + -0.2, + -0.28, + -0.24, + -0.1, + 0.33, + 0.76, + 0.92, + 0.76, + 0.28, + -0.33, + -0.79, + -0.87, + -0.54, + -0.21, + -0.04, + 0.03, + -0.01, + -0.1, + -0.02, + 0.54, + 1.24, + 1.83, + 1.79, + 0.71, + -0.66, + -2.45, + -3.69, + -3.73, + -3.06, + -1.29, + 0.25, + 1.44, + 2.0300000000000002, + 1.72, + 1.24, + 0.24, + -0.38, + -1.11, + -2.2, + -3.35, + -4.5200000000000005, + -4.99, + -4.83, + -4.2, + -3.54, + -2.89, + -2.36, + -1.8900000000000001, + -1.59, + -1.3800000000000001, + -1.16, + -1.0, + -0.86, + -0.72, + -0.66, + -0.66, + -0.7000000000000001, + -0.66, + -0.49, + -0.31, + -0.45, + -1.03, + -1.8900000000000001, + -2.57, + -2.62, + -2.12, + -1.28, + -0.54, + -0.17, + -0.03, + -0.01, + -0.01, + -0.01, + -0.06, + -0.25, + -0.71, + -1.32, + -2.0300000000000002, + -2.37, + -2.14, + -1.67, + -1.11, + -0.85, + -0.93, + -1.23, + -1.8800000000000001, + -2.57, + -3.0500000000000003, + -3.34, + -3.17, + -2.83, + -2.17, + -1.6400000000000001, + -1.23, + -0.9400000000000001, + -0.77, + -0.6900000000000001, + -0.76, + -1.12, + -1.68, + -2.08, + -2.16, + -1.7, + -1.1400000000000001, + -0.63, + -0.32, + -0.12, + -0.01, + -0.08, + -0.21, + -0.39, + -0.51, + -0.51, + -0.47000000000000003, + -0.31, + -0.12, + 0.01, + 0.07, + 0.07, + -0.16, + -0.34, + -0.4, + -0.42, + -0.37, + -0.35000000000000003, + -0.32, + -0.24, + -0.1, + -0.05, + -0.12, + -0.14, + -0.07, + -0.03, + -0.07, + -0.2, + -0.47000000000000003, + -0.63, + -0.53, + -0.37, + -0.16, + -0.18, + -0.34, + -0.47000000000000003, + -0.64, + -0.74, + -0.6900000000000001, + -0.68, + -0.75, + -0.89, + -1.1400000000000001, + -1.17, + -1.02, + -0.56, + 0.02, + 0.4, + 0.56, + 0.64, + 0.78, + 0.87, + 0.84, + 0.73, + 0.58, + 0.39, + 0.21, + 0.22, + 0.21, + -0.1, + -0.24, + -0.33, + -0.27, + -0.13, + 0.01, + 0.04, + -0.21, + -0.63, + -1.1, + -1.47, + -1.42, + -1.18, + -0.6900000000000001, + -0.13, + 0.16, + 0.3, + -0.02, + -0.5700000000000001, + -1.02, + -1.25, + -0.96, + -0.44, + -0.15, + -0.2, + -0.61, + -1.11, + -1.51, + -1.8, + -1.96, + -2.14, + -2.27, + -2.32, + -2.41, + -2.27, + -2.11, + -1.87, + -1.6400000000000001, + -1.42, + -1.1, + -0.72, + -0.3, + -0.31, + -0.52, + -0.84, + -0.9400000000000001, + -0.66, + -0.28, + -0.15, + -0.26, + -0.3, + -0.1, + 0.31, + 0.53, + 0.5, + 0.11 + ], + [ + -1.8, + -2.09, + -2.21, + -2.2800000000000002, + -2.34, + -2.41, + -2.48, + -2.54, + -2.62, + -2.72, + -2.87, + -2.98, + -3.02, + -2.91, + -2.97, + -3.2800000000000002, + -3.62, + -3.98, + -4.19, + -4.2700000000000005, + -4.4, + -4.61, + -4.88, + -5.16, + -5.41, + -5.59, + -5.8, + -6.0200000000000005, + -6.37, + -6.75, + -7.15, + -7.0600000000000005, + -6.6000000000000005, + -5.88, + -5.12, + -4.66, + -4.3500000000000005, + -4.0200000000000005, + -3.59, + -3.18, + -2.75, + -2.32, + -1.83, + -1.27, + -0.81, + -0.46, + -0.37, + -0.27, + -0.26, + -0.27, + -0.36, + -0.62, + -0.59, + -0.5, + 0.11, + 0.8300000000000001, + 1.2, + 1.27, + 0.98, + 0.68, + 0.37, + 0.21, + 0.13, + 0.0, + -0.05, + -0.26, + -0.47000000000000003, + -0.58, + -0.66, + -0.53, + -0.38, + -0.33, + -0.38, + -0.41000000000000003, + -0.27, + -0.01, + 0.34, + 0.52, + 0.5700000000000001, + 0.67, + 0.91, + 1.27, + 1.4000000000000001, + 1.27, + 0.84, + 0.5700000000000001, + 0.6, + 0.79, + 0.97, + 1.09, + 0.93, + 0.63, + -0.17, + -1.36, + -2.52, + -3.5500000000000003, + -3.44, + -2.7, + -1.16, + 0.41000000000000003, + 1.29, + 1.6300000000000001, + 1.52, + 1.48, + 1.4000000000000001, + 1.37, + 1.44, + 1.59, + 1.46, + 1.07, + 0.54, + 0.31, + 0.27, + 0.17, + -0.06, + -0.27, + -0.39, + -0.39, + -0.43, + -0.35000000000000003, + 0.04, + 0.49, + 0.62, + 0.43, + 0.09, + -0.01, + -0.1, + -0.24, + -0.1, + 0.3, + 0.74, + 0.93, + 0.72, + 0.25, + -0.36, + -0.93, + -0.93, + -0.61, + -0.21, + 0.04, + 0.19, + 0.08, + -0.18, + -0.19, + 0.22, + 0.96, + 1.53, + 1.7, + 1.29, + -0.03, + -1.3900000000000001, + -2.61, + -3.14, + -2.4, + -1.42, + -0.06, + 0.73, + 0.84, + 0.54, + -0.32, + -0.8, + -1.1400000000000001, + -1.31, + -1.87, + -3.08, + -4.11, + -4.82, + -4.62, + -4.0200000000000005, + -3.37, + -2.73, + -2.07, + -1.59, + -1.3, + -1.09, + -1.05, + -0.92, + -0.75, + -0.62, + -0.49, + -0.51, + -0.5, + -0.42, + -0.25, + -0.07, + -0.14, + -0.81, + -1.69, + -2.31, + -2.5, + -2.0, + -1.1400000000000001, + -0.48, + -0.07, + 0.03, + 0.05, + 0.14, + 0.14, + 0.05, + -0.18, + -0.62, + -1.28, + -1.81, + -2.0100000000000002, + -1.77, + -1.23, + -0.87, + -0.8200000000000001, + -1.07, + -1.58, + -2.18, + -2.77, + -3.24, + -3.27, + -3.1, + -2.49, + -1.81, + -1.25, + -0.84, + -0.62, + -0.48, + -0.38, + -0.48, + -0.73, + -1.33, + -1.79, + -1.75, + -1.4000000000000001, + -0.78, + -0.39, + -0.19, + -0.08, + -0.09, + -0.17, + -0.37, + -0.52, + -0.6, + -0.6, + -0.44, + -0.3, + -0.17, + -0.03, + 0.06, + 0.05, + 0.04, + -0.1, + -0.2, + -0.19, + -0.22, + -0.21, + -0.12, + 0.02, + 0.04, + -0.03, + -0.11, + -0.1, + -0.01, + 0.06, + 0.02, + -0.22, + -0.54, + -0.65, + -0.5700000000000001, + -0.25, + -0.01, + 0.04, + -0.13, + -0.38, + -0.55, + -0.54, + -0.38, + -0.27, + -0.25, + -0.46, + -0.74, + -0.96, + -0.89, + -0.54, + -0.06, + 0.43, + 0.63, + 0.71, + 0.76, + 0.9, + 0.92, + 0.8200000000000001, + 0.66, + 0.46, + 0.54, + 0.6, + 0.48, + 0.14, + -0.43, + -0.54, + -0.45, + -0.25, + -0.2, + -0.22, + -0.34, + -0.72, + -1.12, + -1.29, + -1.23, + -0.8300000000000001, + -0.42, + -0.13, + 0.17, + 0.06, + -0.23, + -0.7000000000000001, + -1.1400000000000001, + -1.1400000000000001, + -0.78, + -0.35000000000000003, + -0.13, + -0.3, + -0.85, + -1.44, + -1.87, + -2.14, + -2.27, + -2.34, + -2.27, + -2.2800000000000002, + -2.17, + -2.05, + -1.8900000000000001, + -1.6500000000000001, + -1.5, + -1.29, + -0.93, + -0.55, + -0.36, + -0.39, + -0.75, + -1.07, + -1.1500000000000001, + -0.8, + -0.43, + -0.38, + -0.51, + -0.53, + -0.25, + 0.21, + 0.5, + 0.3, + -0.02 + ], + [ + -1.73, + -2.06, + -2.22, + -2.2800000000000002, + -2.36, + -2.44, + -2.5100000000000002, + -2.62, + -2.7, + -2.79, + -2.96, + -3.19, + -3.25, + -3.3200000000000003, + -3.43, + -3.65, + -3.99, + -4.26, + -4.4, + -4.49, + -4.61, + -4.8500000000000005, + -5.15, + -5.39, + -5.51, + -5.6000000000000005, + -5.65, + -5.8100000000000005, + -6.1000000000000005, + -6.49, + -6.71, + -6.69, + -6.25, + -5.5200000000000005, + -4.98, + -4.54, + -4.2, + -3.9, + -3.5, + -3.13, + -2.84, + -2.5, + -2.1, + -1.6300000000000001, + -1.18, + -1.04, + -0.9, + -0.86, + -0.81, + -0.66, + -0.63, + -0.51, + -0.47000000000000003, + -0.04, + 0.52, + 1.08, + 1.45, + 1.28, + 0.9400000000000001, + 0.46, + 0.11, + -0.14, + -0.23, + -0.21, + -0.22, + -0.16, + -0.24, + -0.37, + -0.37, + -0.38, + -0.27, + -0.19, + -0.25, + -0.36, + -0.32, + -0.16, + 0.07, + 0.29, + 0.38, + 0.47000000000000003, + 0.72, + 1.1300000000000001, + 1.36, + 1.18, + 0.8, + 0.48, + 0.52, + 0.66, + 0.8, + 0.8200000000000001, + 1.01, + 0.85, + 0.46, + -0.51, + -1.6, + -2.2600000000000002, + -2.47, + -1.62, + -0.22, + 1.04, + 2.0300000000000002, + 2.11, + 1.95, + 1.71, + 1.59, + 1.56, + 1.6600000000000001, + 1.8800000000000001, + 1.73, + 1.26, + 0.74, + 0.33, + 0.33, + 0.28, + 0.07, + -0.13, + -0.18, + -0.31, + -0.51, + -0.6, + -0.24, + 0.3, + 0.42, + 0.31, + 0.29, + 0.2, + 0.03, + -0.15, + -0.11, + 0.34, + 0.87, + 1.02, + 0.89, + 0.41000000000000003, + -0.25, + -0.74, + -0.98, + -0.62, + -0.1, + 0.31, + 0.48, + 0.3, + -0.13, + -0.27, + 0.0, + 0.5700000000000001, + 1.23, + 1.55, + 1.33, + 0.53, + -0.8, + -1.82, + -2.3000000000000003, + -2.22, + -1.32, + -0.67, + -0.28, + -0.44, + -1.09, + -1.85, + -2.12, + -2.02, + -1.68, + -1.6500000000000001, + -2.43, + -3.59, + -4.07, + -4.1, + -3.59, + -2.99, + -2.2600000000000002, + -1.58, + -1.11, + -0.8300000000000001, + -0.87, + -0.89, + -0.9500000000000001, + -0.8, + -0.56, + -0.44, + -0.35000000000000003, + -0.3, + -0.21, + -0.02, + 0.14, + -0.13, + -0.67, + -1.49, + -2.2, + -2.27, + -1.8900000000000001, + -1.2, + -0.47000000000000003, + -0.18, + -0.07, + 0.12, + 0.23, + 0.28, + 0.18, + -0.17, + -0.68, + -1.23, + -1.7, + -1.8, + -1.41, + -0.85, + -0.62, + -0.67, + -1.1300000000000001, + -1.73, + -2.35, + -2.95, + -3.16, + -3.24, + -2.83, + -2.21, + -1.54, + -0.96, + -0.67, + -0.49, + -0.36, + -0.29, + -0.3, + -0.62, + -0.9500000000000001, + -1.31, + -1.31, + -0.8200000000000001, + -0.36, + -0.13, + -0.01, + -0.03, + -0.09, + -0.26, + -0.49, + -0.64, + -0.72, + -0.62, + -0.45, + -0.28, + -0.16, + -0.02, + 0.08, + 0.13, + 0.15, + 0.15, + 0.07, + 0.0, + -0.07, + 0.02, + 0.22, + 0.33, + 0.3, + 0.11, + -0.03, + -0.05, + 0.05, + 0.15, + 0.04, + -0.19, + -0.39, + -0.56, + -0.32, + 0.02, + 0.24, + 0.28, + 0.14, + -0.12, + -0.23, + -0.1, + 0.12, + 0.29, + 0.21, + -0.12, + -0.51, + -0.88, + -0.9400000000000001, + -0.68, + -0.19, + 0.24, + 0.53, + 0.49, + 0.5700000000000001, + 0.63, + 0.73, + 0.73, + 0.59, + 0.62, + 0.76, + 1.03, + 0.89, + 0.34, + -0.29, + -0.62, + -0.43, + -0.3, + -0.3, + -0.43, + -0.65, + -0.87, + -1.11, + -1.24, + -0.9500000000000001, + -0.54, + -0.24, + 0.01, + -0.02, + -0.11, + -0.5, + -0.96, + -1.16, + -1.11, + -0.8300000000000001, + -0.43, + -0.3, + -0.64, + -1.06, + -1.6400000000000001, + -2.11, + -2.27, + -2.36, + -2.22, + -2.12, + -1.99, + -1.9100000000000001, + -1.87, + -1.72, + -1.6600000000000001, + -1.49, + -1.2, + -0.8300000000000001, + -0.46, + -0.27, + -0.38, + -0.79, + -1.2, + -1.21, + -1.03, + -0.67, + -0.52, + -0.68, + -0.72, + -0.32, + 0.11, + 0.27, + 0.13, + -0.22 + ], + [ + -1.85, + -2.14, + -2.23, + -2.2800000000000002, + -2.36, + -2.45, + -2.58, + -2.7, + -2.8000000000000003, + -2.87, + -3.11, + -3.38, + -3.5700000000000003, + -3.68, + -3.83, + -4.04, + -4.2700000000000005, + -4.47, + -4.65, + -4.72, + -4.82, + -5.12, + -5.39, + -5.53, + -5.59, + -5.5, + -5.47, + -5.57, + -5.8100000000000005, + -6.12, + -6.390000000000001, + -6.33, + -5.94, + -5.55, + -5.04, + -4.65, + -4.33, + -3.93, + -3.54, + -3.2, + -2.99, + -2.8000000000000003, + -2.46, + -2.13, + -1.85, + -1.6600000000000001, + -1.54, + -1.3900000000000001, + -1.07, + -0.89, + -0.59, + -0.41000000000000003, + -0.04, + 0.38, + 0.98, + 1.52, + 1.54, + 1.31, + 0.8200000000000001, + 0.29, + -0.12, + -0.36, + -0.56, + -0.47000000000000003, + -0.28, + -0.1, + 0.04, + 0.01, + -0.05, + -0.07, + -0.08, + -0.1, + -0.12, + -0.16, + -0.25, + -0.16, + -0.01, + 0.11, + 0.19, + 0.24, + 0.49, + 0.8, + 1.02, + 0.85, + 0.35000000000000003, + 0.08, + 0.16, + 0.3, + 0.32, + 0.44, + 0.7000000000000001, + 1.03, + 0.74, + 0.18, + -0.67, + -1.33, + -1.34, + -0.68, + 0.41000000000000003, + 1.72, + 2.18, + 2.32, + 1.98, + 1.69, + 1.51, + 1.46, + 1.73, + 1.97, + 2.13, + 1.59, + 1.05, + 0.75, + 0.49, + 0.38, + 0.22, + 0.09, + 0.05, + -0.14, + -0.47000000000000003, + -0.56, + -0.36, + -0.11, + 0.13, + 0.22, + 0.28, + 0.36, + 0.17, + -0.06, + -0.02, + 0.32, + 0.86, + 1.22, + 1.02, + 0.68, + 0.0, + -0.64, + -0.81, + -0.62, + -0.05, + 0.6, + 0.86, + 0.6900000000000001, + 0.15, + -0.26, + -0.1, + 0.39, + 0.89, + 1.34, + 1.22, + 0.56, + -0.27, + -1.27, + -1.81, + -1.73, + -1.49, + -1.04, + -0.99, + -1.36, + -2.18, + -2.68, + -3.16, + -2.61, + -1.99, + -1.8, + -2.06, + -2.77, + -3.43, + -3.24, + -2.87, + -2.14, + -1.43, + -0.87, + -0.42, + -0.39, + -0.52, + -0.8, + -0.92, + -0.9, + -0.64, + -0.42, + -0.34, + -0.16, + -0.05, + 0.09, + 0.05, + -0.1, + -0.75, + -1.47, + -1.9100000000000001, + -2.15, + -1.8, + -1.16, + -0.7000000000000001, + -0.38, + -0.11, + 0.13, + 0.38, + 0.45, + 0.16, + -0.3, + -0.8200000000000001, + -1.41, + -1.77, + -1.75, + -1.36, + -0.93, + -0.52, + -0.81, + -1.21, + -1.87, + -2.49, + -2.83, + -3.1, + -2.91, + -2.56, + -1.94, + -1.25, + -0.87, + -0.62, + -0.44, + -0.33, + -0.29, + -0.34, + -0.47000000000000003, + -0.78, + -0.87, + -0.67, + -0.35000000000000003, + -0.08, + 0.13, + 0.12, + 0.08, + 0.0, + -0.2, + -0.36, + -0.61, + -0.64, + -0.58, + -0.46, + -0.27, + -0.09, + 0.06, + 0.26, + 0.34, + 0.31, + 0.31, + 0.24, + 0.11, + 0.11, + 0.31, + 0.62, + 0.78, + 0.66, + 0.38, + 0.08, + 0.0, + 0.09, + 0.13, + 0.07, + -0.1, + -0.29, + -0.17, + 0.06, + 0.37, + 0.58, + 0.59, + 0.42, + 0.26, + 0.23, + 0.37, + 0.63, + 0.74, + 0.45, + 0.03, + -0.5700000000000001, + -1.02, + -1.1, + -0.92, + -0.42, + 0.05, + 0.13, + 0.11, + 0.02, + 0.14, + 0.32, + 0.39, + 0.34, + 0.42, + 0.77, + 1.09, + 1.16, + 0.44, + -0.23, + -0.44, + -0.38, + -0.28, + -0.39, + -0.65, + -0.88, + -1.03, + -1.19, + -1.07, + -0.78, + -0.41000000000000003, + -0.07, + -0.05, + -0.1, + -0.45, + -0.85, + -1.17, + -1.33, + -1.21, + -0.92, + -0.77, + -0.79, + -0.91, + -1.34, + -1.73, + -2.04, + -2.25, + -2.18, + -2.04, + -1.8900000000000001, + -1.74, + -1.77, + -1.76, + -1.77, + -1.72, + -1.52, + -1.22, + -0.76, + -0.35000000000000003, + -0.17, + -0.29, + -0.6, + -1.02, + -1.29, + -1.05, + -0.8200000000000001, + -0.73, + -0.77, + -0.67, + -0.37, + 0.02, + 0.21, + -0.02, + -0.42 + ], + [ + -1.75, + -2.1, + -2.23, + -2.2800000000000002, + -2.36, + -2.48, + -2.62, + -2.79, + -2.9, + -3.11, + -3.35, + -3.63, + -3.84, + -3.99, + -4.14, + -4.29, + -4.47, + -4.71, + -4.87, + -4.99, + -5.15, + -5.38, + -5.59, + -5.67, + -5.54, + -5.37, + -5.26, + -5.29, + -5.47, + -5.78, + -5.98, + -6.0200000000000005, + -5.87, + -5.57, + -5.3, + -4.94, + -4.5200000000000005, + -4.08, + -3.68, + -3.37, + -3.13, + -2.96, + -2.85, + -2.5500000000000003, + -2.41, + -2.21, + -2.06, + -1.59, + -1.19, + -0.75, + -0.45, + -0.04, + 0.36, + 0.89, + 1.5, + 1.73, + 1.67, + 1.24, + 0.6900000000000001, + 0.31, + -0.05, + -0.38, + -0.52, + -0.63, + -0.31, + 0.01, + 0.18, + 0.32, + 0.22, + 0.17, + 0.03, + -0.03, + -0.08, + -0.03, + -0.09, + -0.08, + -0.02, + 0.06, + 0.05, + 0.03, + 0.14, + 0.44, + 0.52, + 0.22, + -0.11, + -0.29, + -0.28, + -0.14, + -0.19, + 0.01, + 0.39, + 0.84, + 1.01, + 0.52, + -0.08, + -0.55, + -0.68, + -0.14, + 0.88, + 1.5, + 2.05, + 1.8800000000000001, + 1.51, + 1.2, + 0.98, + 1.03, + 1.3800000000000001, + 1.87, + 1.99, + 1.97, + 1.46, + 1.11, + 0.84, + 0.53, + 0.31, + 0.21, + 0.18, + 0.08, + -0.21, + -0.52, + -0.52, + -0.36, + -0.24, + -0.07, + 0.24, + 0.42, + 0.31, + 0.03, + -0.07, + 0.3, + 0.8, + 1.09, + 1.1300000000000001, + 0.7000000000000001, + 0.21, + -0.44, + -0.86, + -0.6, + -0.02, + 0.72, + 1.3, + 0.96, + 0.36, + -0.03, + -0.09, + 0.21, + 0.67, + 0.86, + 0.87, + 0.56, + -0.16, + -0.71, + -1.19, + -1.4000000000000001, + -1.24, + -1.16, + -1.19, + -1.59, + -2.21, + -3.0500000000000003, + -3.08, + -2.97, + -2.29, + -1.79, + -1.97, + -2.38, + -2.52, + -2.41, + -1.76, + -1.05, + -0.49, + 0.04, + 0.16, + 0.07, + -0.24, + -0.65, + -0.9400000000000001, + -0.91, + -0.8300000000000001, + -0.6900000000000001, + -0.49, + -0.35000000000000003, + -0.05, + -0.01, + -0.05, + -0.42, + -0.87, + -1.35, + -1.8, + -1.81, + -1.6300000000000001, + -1.27, + -0.84, + -0.55, + -0.23, + 0.18, + 0.5, + 0.37, + -0.09, + -0.63, + -1.26, + -1.73, + -2.04, + -2.07, + -1.68, + -1.22, + -1.1, + -1.1, + -1.6600000000000001, + -2.18, + -2.6, + -2.87, + -2.81, + -2.65, + -2.17, + -1.58, + -1.18, + -0.84, + -0.64, + -0.48, + -0.34, + -0.33, + -0.41000000000000003, + -0.5700000000000001, + -0.59, + -0.51, + -0.26, + -0.04, + 0.17, + 0.23, + 0.27, + 0.29, + 0.21, + 0.11, + -0.09, + -0.23, + -0.38, + -0.41000000000000003, + -0.35000000000000003, + -0.3, + -0.09, + 0.24, + 0.5, + 0.68, + 0.63, + 0.46, + 0.34, + 0.25, + 0.34, + 0.59, + 1.01, + 1.34, + 1.1300000000000001, + 0.68, + 0.23, + 0.0, + 0.03, + 0.12, + 0.06, + -0.08, + -0.08, + 0.1, + 0.41000000000000003, + 0.74, + 0.9, + 0.87, + 0.76, + 0.62, + 0.62, + 0.81, + 0.9500000000000001, + 0.8200000000000001, + 0.58, + -0.08, + -0.73, + -1.16, + -1.36, + -1.0, + -0.59, + -0.3, + -0.21, + -0.41000000000000003, + -0.58, + -0.38, + -0.13, + -0.12, + -0.18, + -0.14, + 0.29, + 0.8300000000000001, + 0.84, + 0.5700000000000001, + -0.08, + -0.44, + -0.3, + -0.2, + -0.47000000000000003, + -0.8, + -0.97, + -1.12, + -1.1, + -1.02, + -0.6900000000000001, + -0.29, + -0.13, + -0.09, + -0.35000000000000003, + -0.76, + -1.23, + -1.52, + -1.53, + -1.36, + -1.22, + -1.19, + -1.24, + -1.36, + -1.48, + -1.73, + -1.96, + -2.05, + -2.07, + -1.97, + -1.75, + -1.75, + -1.74, + -1.79, + -1.83, + -1.72, + -1.56, + -1.1400000000000001, + -0.66, + -0.32, + -0.1, + -0.11, + -0.4, + -0.73, + -0.99, + -1.07, + -0.85, + -0.78, + -0.79, + -0.73, + -0.37, + 0.05, + 0.13, + -0.05, + -0.45 + ], + [ + -1.93, + -2.24, + -2.27, + -2.29, + -2.39, + -2.5100000000000002, + -2.69, + -2.88, + -3.0700000000000003, + -3.31, + -3.63, + -3.92, + -4.12, + -4.25, + -4.36, + -4.47, + -4.62, + -4.87, + -5.13, + -5.26, + -5.39, + -5.62, + -5.84, + -5.73, + -5.5200000000000005, + -5.2, + -4.99, + -4.99, + -5.1000000000000005, + -5.3, + -5.57, + -5.66, + -5.64, + -5.55, + -5.4, + -5.1000000000000005, + -4.63, + -4.19, + -3.77, + -3.42, + -3.16, + -2.99, + -2.81, + -2.8000000000000003, + -2.63, + -2.56, + -2.09, + -1.6600000000000001, + -1.04, + -0.54, + -0.09, + 0.33, + 0.78, + 1.34, + 1.72, + 1.92, + 1.61, + 1.08, + 0.75, + 0.5, + 0.3, + 0.02, + -0.33, + -0.38, + -0.34, + -0.01, + 0.26, + 0.28, + 0.34, + 0.15, + 0.03, + -0.16, + -0.18, + -0.23, + -0.15, + -0.19, + -0.11, + -0.06, + -0.1, + -0.12, + -0.09, + -0.03, + -0.03, + -0.17, + -0.43, + -0.55, + -0.38, + -0.38, + -0.38, + -0.38, + 0.32, + 0.87, + 0.99, + 0.8200000000000001, + 0.28, + -0.13, + -0.17, + 0.17, + 0.66, + 1.2, + 1.26, + 1.08, + 0.81, + 0.49, + 0.35000000000000003, + 0.45, + 0.78, + 1.36, + 1.77, + 1.73, + 1.69, + 1.33, + 1.1500000000000001, + 0.74, + 0.35000000000000003, + 0.31, + 0.33, + 0.22, + -0.01, + -0.3, + -0.54, + -0.59, + -0.55, + -0.25, + 0.18, + 0.4, + 0.32, + 0.08, + -0.07, + 0.11, + 0.62, + 1.01, + 0.99, + 0.73, + 0.18, + -0.37, + -0.7000000000000001, + -0.74, + -0.03, + 0.87, + 1.22, + 1.21, + 0.61, + 0.06, + -0.01, + 0.16, + 0.33, + 0.46, + 0.39, + 0.24, + 0.06, + -0.31, + -0.59, + -0.81, + -0.91, + -0.89, + -0.98, + -1.34, + -1.8800000000000001, + -2.49, + -2.98, + -2.7800000000000002, + -2.35, + -2.05, + -1.93, + -2.04, + -2.02, + -1.6, + -0.8200000000000001, + -0.18, + 0.37, + 0.52, + 0.52, + 0.34, + -0.12, + -0.56, + -0.89, + -1.08, + -1.08, + -1.09, + -0.9500000000000001, + -0.68, + -0.37, + -0.14, + -0.35000000000000003, + -0.67, + -1.05, + -1.3900000000000001, + -1.54, + -1.59, + -1.49, + -1.26, + -1.06, + -0.79, + -0.35000000000000003, + 0.17, + 0.27, + -0.06, + -0.6, + -1.28, + -1.78, + -2.2, + -2.43, + -2.31, + -2.11, + -1.75, + -1.6300000000000001, + -1.84, + -2.21, + -2.62, + -2.93, + -2.88, + -2.71, + -2.29, + -1.8, + -1.42, + -1.12, + -1.02, + -0.86, + -0.65, + -0.51, + -0.45, + -0.61, + -0.67, + -0.58, + -0.29, + -0.02, + 0.2, + 0.26, + 0.36, + 0.49, + 0.5700000000000001, + 0.55, + 0.48, + 0.31, + 0.18, + 0.04, + -0.1, + -0.21, + -0.27, + -0.14, + 0.29, + 0.74, + 0.98, + 0.97, + 0.6900000000000001, + 0.49, + 0.46, + 0.53, + 0.91, + 1.41, + 1.6, + 1.6300000000000001, + 0.92, + 0.27, + 0.0, + -0.04, + 0.06, + 0.05, + 0.0, + 0.01, + 0.22, + 0.6, + 0.9, + 1.07, + 1.1, + 0.97, + 0.9, + 0.92, + 1.0, + 0.9500000000000001, + 0.8, + 0.32, + -0.2, + -0.85, + -1.3800000000000001, + -1.32, + -1.09, + -0.68, + -0.42, + -0.54, + -0.85, + -0.8200000000000001, + -0.67, + -0.5, + -0.55, + -0.81, + -0.84, + -0.49, + 0.16, + 0.58, + 0.35000000000000003, + -0.02, + -0.28, + -0.32, + -0.36, + -0.46, + -0.77, + -1.01, + -1.01, + -1.04, + -0.85, + -0.6, + -0.33, + -0.14, + -0.24, + -0.53, + -1.06, + -1.61, + -1.86, + -1.79, + -1.6300000000000001, + -1.55, + -1.54, + -1.58, + -1.6300000000000001, + -1.57, + -1.6600000000000001, + -1.8, + -1.96, + -2.02, + -2.0100000000000002, + -1.92, + -1.81, + -1.78, + -1.82, + -1.74, + -1.69, + -1.3900000000000001, + -0.98, + -0.6, + -0.27, + -0.11, + -0.06, + -0.15, + -0.45, + -0.67, + -0.76, + -0.76, + -0.72, + -0.81, + -0.7000000000000001, + -0.46, + -0.09, + 0.2, + -0.07, + -0.49 + ], + [ + -1.82, + -2.21, + -2.29, + -2.34, + -2.42, + -2.59, + -2.77, + -2.96, + -3.18, + -3.52, + -3.9, + -4.18, + -4.3500000000000005, + -4.49, + -4.57, + -4.61, + -4.75, + -5.01, + -5.3, + -5.5, + -5.6000000000000005, + -5.79, + -5.84, + -5.84, + -5.39, + -4.96, + -4.74, + -4.65, + -4.7, + -4.8100000000000005, + -4.98, + -5.17, + -5.26, + -5.32, + -5.26, + -5.0, + -4.62, + -4.16, + -3.71, + -3.3000000000000003, + -2.96, + -2.7, + -2.61, + -2.61, + -2.66, + -2.36, + -2.04, + -1.41, + -0.79, + -0.22, + 0.28, + 0.68, + 1.1300000000000001, + 1.54, + 1.9100000000000001, + 1.82, + 1.41, + 1.0, + 0.8200000000000001, + 0.86, + 0.8200000000000001, + 0.58, + 0.18, + -0.17, + -0.16, + -0.06, + 0.09, + 0.17, + 0.11, + 0.04, + -0.2, + -0.42, + -0.5700000000000001, + -0.58, + -0.62, + -0.5700000000000001, + -0.46, + -0.3, + -0.24, + -0.28, + -0.31, + -0.35000000000000003, + -0.37, + -0.44, + -0.46, + -0.35000000000000003, + -0.3, + -0.31, + -0.36, + 0.01, + 0.41000000000000003, + 1.02, + 1.2, + 0.8300000000000001, + 0.44, + 0.1, + 0.0, + 0.17, + 0.47000000000000003, + 0.5700000000000001, + 0.49, + 0.38, + 0.16, + -0.04, + -0.15, + -0.05, + 0.35000000000000003, + 0.73, + 1.12, + 1.32, + 1.28, + 1.36, + 1.1300000000000001, + 0.9500000000000001, + 0.61, + 0.37, + 0.39, + 0.42, + 0.17, + -0.12, + -0.42, + -0.68, + -0.61, + -0.34, + 0.04, + 0.34, + 0.35000000000000003, + 0.08, + -0.06, + 0.12, + 0.47000000000000003, + 0.87, + 0.96, + 0.64, + 0.16, + -0.34, + -0.76, + -0.63, + -0.17, + 0.62, + 1.32, + 1.12, + 0.67, + 0.28, + 0.06, + 0.11, + 0.14, + 0.04, + -0.08, + -0.08, + 0.01, + -0.01, + -0.18, + -0.31, + -0.47000000000000003, + -0.56, + -0.71, + -0.91, + -1.48, + -2.06, + -2.54, + -2.73, + -2.45, + -2.15, + -2.05, + -1.96, + -1.77, + -1.2, + -0.51, + 0.29, + 0.54, + 0.56, + 0.5, + 0.27, + -0.06, + -0.56, + -0.9500000000000001, + -1.19, + -1.36, + -1.42, + -1.45, + -1.04, + -0.65, + -0.5, + -0.5700000000000001, + -0.92, + -1.27, + -1.42, + -1.44, + -1.47, + -1.43, + -1.3900000000000001, + -1.31, + -1.0, + -0.5, + -0.2, + -0.25, + -0.72, + -1.41, + -1.97, + -2.37, + -2.61, + -2.6, + -2.5300000000000002, + -2.21, + -2.1, + -2.08, + -2.38, + -2.71, + -3.15, + -3.12, + -3.02, + -2.57, + -2.04, + -1.58, + -1.27, + -1.31, + -1.37, + -1.3, + -1.06, + -0.85, + -0.8300000000000001, + -0.84, + -0.84, + -0.64, + -0.19, + 0.21, + 0.29, + 0.35000000000000003, + 0.5, + 0.74, + 0.81, + 0.88, + 0.75, + 0.63, + 0.43, + 0.35000000000000003, + 0.24, + 0.01, + -0.16, + -0.14, + 0.2, + 0.8, + 1.16, + 1.08, + 0.92, + 0.71, + 0.68, + 0.8300000000000001, + 1.05, + 1.43, + 1.8900000000000001, + 1.53, + 1.07, + 0.4, + -0.1, + 0.01, + 0.11, + 0.09, + 0.04, + 0.12, + 0.31, + 0.61, + 0.9400000000000001, + 1.12, + 1.16, + 1.09, + 1.01, + 1.0, + 0.9400000000000001, + 0.8200000000000001, + 0.46, + 0.1, + -0.41000000000000003, + -0.99, + -1.3, + -1.4000000000000001, + -1.0, + -0.6, + -0.53, + -0.68, + -0.81, + -0.88, + -0.72, + -0.59, + -0.8300000000000001, + -1.31, + -1.46, + -1.11, + -0.54, + 0.04, + 0.21, + -0.11, + -0.37, + -0.46, + -0.49, + -0.63, + -0.75, + -0.8200000000000001, + -0.85, + -0.78, + -0.7000000000000001, + -0.47000000000000003, + -0.27, + -0.23, + -0.29, + -0.66, + -1.27, + -1.79, + -2.08, + -2.05, + -1.84, + -1.69, + -1.6500000000000001, + -1.6300000000000001, + -1.46, + -1.47, + -1.47, + -1.6300000000000001, + -1.8, + -2.0300000000000002, + -2.04, + -2.06, + -1.87, + -1.79, + -1.61, + -1.57, + -1.3800000000000001, + -1.1400000000000001, + -0.84, + -0.5, + -0.29, + -0.15, + -0.07, + -0.06, + -0.15, + -0.34, + -0.42, + -0.44, + -0.52, + -0.63, + -0.76, + -0.48, + -0.17, + 0.0, + -0.01, + -0.48 + ], + [ + -2.08, + -2.46, + -2.4, + -2.38, + -2.5300000000000002, + -2.69, + -2.86, + -3.0300000000000002, + -3.31, + -3.72, + -4.12, + -4.4, + -4.58, + -4.72, + -4.75, + -4.7, + -4.83, + -5.16, + -5.49, + -5.59, + -5.66, + -5.73, + -5.86, + -5.5600000000000005, + -5.21, + -4.73, + -4.4, + -4.33, + -4.29, + -4.3, + -4.39, + -4.58, + -4.78, + -4.9, + -4.95, + -4.79, + -4.43, + -3.99, + -3.47, + -3.02, + -2.59, + -2.27, + -2.29, + -2.34, + -2.32, + -2.19, + -1.72, + -1.1400000000000001, + -0.48, + 0.15, + 0.61, + 1.0, + 1.34, + 1.72, + 1.86, + 1.68, + 1.23, + 0.85, + 0.9, + 1.26, + 1.3900000000000001, + 1.12, + 0.7000000000000001, + 0.21, + -0.07, + -0.05, + -0.03, + 0.02, + -0.09, + -0.17, + -0.42, + -0.75, + -1.04, + -1.12, + -1.18, + -1.05, + -0.89, + -0.66, + -0.46, + -0.42, + -0.49, + -0.55, + -0.5700000000000001, + -0.44, + -0.19, + -0.05, + -0.05, + -0.01, + 0.17, + 0.46, + 1.12, + 1.54, + 1.3900000000000001, + 0.89, + 0.44, + 0.1, + 0.03, + 0.1, + 0.15, + 0.06, + 0.01, + -0.08, + -0.19, + -0.33, + -0.39, + -0.26, + -0.05, + 0.23, + 0.44, + 0.61, + 0.6900000000000001, + 0.91, + 1.1, + 0.93, + 0.76, + 0.53, + 0.46, + 0.38, + 0.32, + -0.02, + -0.34, + -0.53, + -0.59, + -0.36, + 0.01, + 0.31, + 0.39, + 0.28, + 0.15, + 0.2, + 0.5700000000000001, + 0.87, + 0.9, + 0.65, + 0.15, + -0.36, + -0.68, + -0.84, + -0.29, + 0.44, + 0.87, + 1.06, + 0.75, + 0.37, + 0.21, + 0.16, + 0.03, + -0.26, + -0.39, + -0.31, + -0.14, + 0.03, + 0.03, + -0.08, + -0.15, + -0.32, + -0.47000000000000003, + -0.73, + -1.08, + -1.72, + -2.38, + -2.5100000000000002, + -2.52, + -2.31, + -2.18, + -2.04, + -1.85, + -1.3, + -0.5, + 0.0, + 0.21, + 0.22, + 0.18, + 0.08, + -0.2, + -0.59, + -0.99, + -1.28, + -1.49, + -1.67, + -1.57, + -1.3900000000000001, + -0.96, + -0.66, + -0.85, + -1.19, + -1.42, + -1.55, + -1.57, + -1.52, + -1.54, + -1.59, + -1.45, + -1.17, + -0.8, + -0.59, + -0.86, + -1.54, + -2.21, + -2.62, + -2.83, + -2.75, + -2.66, + -2.32, + -2.12, + -2.0300000000000002, + -2.2, + -2.54, + -3.0700000000000003, + -3.19, + -3.2800000000000002, + -2.85, + -2.38, + -1.78, + -1.28, + -1.25, + -1.56, + -1.8, + -1.81, + -1.6300000000000001, + -1.37, + -1.18, + -1.11, + -0.99, + -0.5700000000000001, + -0.12, + 0.2, + 0.41000000000000003, + 0.44, + 0.5700000000000001, + 0.75, + 1.0, + 1.02, + 0.97, + 0.72, + 0.52, + 0.45, + 0.48, + 0.27, + -0.04, + -0.1, + 0.18, + 0.62, + 1.0, + 1.11, + 0.93, + 0.86, + 0.9400000000000001, + 1.03, + 1.09, + 1.3, + 1.44, + 1.5, + 0.92, + 0.32, + 0.2, + 0.18, + 0.17, + 0.16, + 0.12, + 0.2, + 0.43, + 0.66, + 0.92, + 1.1300000000000001, + 1.17, + 1.08, + 0.97, + 0.89, + 0.78, + 0.46, + 0.13, + -0.14, + -0.49, + -0.92, + -1.4000000000000001, + -1.23, + -0.89, + -0.6, + -0.47000000000000003, + -0.58, + -0.74, + -0.73, + -0.6, + -0.68, + -1.05, + -1.49, + -1.79, + -1.6, + -0.97, + -0.43, + -0.19, + -0.26, + -0.5, + -0.6900000000000001, + -0.73, + -0.77, + -0.77, + -0.68, + -0.62, + -0.54, + -0.44, + -0.29, + -0.25, + -0.25, + -0.38, + -0.7000000000000001, + -1.24, + -1.85, + -2.14, + -2.08, + -1.87, + -1.61, + -1.3900000000000001, + -1.16, + -1.03, + -1.01, + -1.1500000000000001, + -1.35, + -1.58, + -1.76, + -2.02, + -1.85, + -1.78, + -1.47, + -1.26, + -1.12, + -1.0, + -0.86, + -0.66, + -0.47000000000000003, + -0.32, + -0.17, + -0.06, + 0.0, + 0.01, + -0.03, + -0.08, + -0.08, + -0.22, + -0.4, + -0.51, + -0.53, + -0.25, + -0.02, + -0.18, + -0.49 + ], + [ + -1.96, + -2.4, + -2.45, + -2.52, + -2.65, + -2.82, + -2.98, + -3.15, + -3.4, + -3.85, + -4.34, + -4.62, + -4.79, + -4.84, + -4.76, + -4.73, + -4.91, + -5.25, + -5.54, + -5.68, + -5.61, + -5.59, + -5.5, + -5.3100000000000005, + -4.86, + -4.38, + -4.15, + -4.01, + -3.92, + -3.79, + -3.87, + -4.04, + -4.25, + -4.45, + -4.53, + -4.45, + -4.16, + -3.68, + -3.17, + -2.68, + -2.2600000000000002, + -2.08, + -1.94, + -2.06, + -2.09, + -1.8900000000000001, + -1.5, + -0.84, + -0.11, + 0.48, + 0.98, + 1.23, + 1.49, + 1.68, + 1.8, + 1.52, + 0.97, + 0.76, + 1.09, + 1.56, + 1.81, + 1.6300000000000001, + 1.05, + 0.54, + 0.16, + 0.01, + 0.08, + 0.04, + -0.01, + -0.21, + -0.58, + -1.08, + -1.4000000000000001, + -1.6400000000000001, + -1.54, + -1.45, + -1.17, + -0.9, + -0.7000000000000001, + -0.56, + -0.58, + -0.68, + -0.62, + -0.23, + 0.08, + 0.18, + 0.24, + 0.38, + 0.71, + 1.35, + 2.0300000000000002, + 2.17, + 1.9100000000000001, + 1.2, + 0.37, + 0.13, + -0.02, + -0.01, + -0.08, + -0.17, + -0.28, + -0.3, + -0.33, + -0.41000000000000003, + -0.43, + -0.36, + -0.26, + -0.15, + -0.04, + 0.01, + 0.25, + 0.42, + 0.73, + 0.89, + 0.66, + 0.53, + 0.38, + 0.33, + 0.18, + 0.0, + -0.27, + -0.45, + -0.44, + -0.31, + 0.02, + 0.39, + 0.55, + 0.56, + 0.49, + 0.5, + 0.68, + 0.89, + 0.97, + 0.61, + 0.15, + -0.33, + -0.73, + -0.75, + -0.56, + 0.07, + 0.6, + 0.78, + 0.79, + 0.54, + 0.32, + 0.16, + -0.05, + -0.34, + -0.56, + -0.46, + -0.19, + -0.04, + 0.01, + -0.01, + -0.05, + -0.14, + -0.32, + -0.52, + -0.89, + -1.37, + -1.95, + -2.41, + -2.38, + -2.35, + -2.22, + -2.14, + -1.8900000000000001, + -1.51, + -0.89, + -0.42, + -0.25, + -0.25, + -0.2, + -0.15, + -0.32, + -0.68, + -1.04, + -1.33, + -1.54, + -1.67, + -1.7, + -1.45, + -1.1500000000000001, + -0.96, + -0.99, + -1.29, + -1.62, + -1.71, + -1.77, + -1.75, + -1.74, + -1.6500000000000001, + -1.53, + -1.2, + -0.88, + -0.88, + -1.41, + -2.14, + -2.7800000000000002, + -3.13, + -2.93, + -2.7, + -2.24, + -1.95, + -1.77, + -1.74, + -2.08, + -2.5100000000000002, + -2.92, + -3.2, + -2.96, + -2.58, + -1.95, + -1.34, + -1.06, + -1.18, + -1.61, + -2.11, + -2.25, + -2.1, + -1.83, + -1.47, + -1.21, + -0.87, + -0.51, + -0.08, + 0.26, + 0.35000000000000003, + 0.42, + 0.52, + 0.72, + 0.9500000000000001, + 1.18, + 1.0, + 0.71, + 0.47000000000000003, + 0.44, + 0.43, + 0.36, + 0.12, + -0.07, + 0.09, + 0.43, + 0.73, + 0.85, + 0.87, + 0.99, + 1.12, + 1.05, + 0.98, + 1.0, + 1.09, + 1.03, + 0.76, + 0.53, + 0.44, + 0.34, + 0.24, + 0.0, + 0.0, + 0.19, + 0.49, + 0.77, + 0.99, + 1.1400000000000001, + 1.1500000000000001, + 1.04, + 0.86, + 0.7000000000000001, + 0.44, + 0.13, + -0.09, + -0.27, + -0.45, + -0.8200000000000001, + -1.12, + -1.23, + -0.87, + -0.48, + -0.42, + -0.47000000000000003, + -0.56, + -0.59, + -0.62, + -0.75, + -1.1, + -1.58, + -1.86, + -1.75, + -1.33, + -0.79, + -0.47000000000000003, + -0.47000000000000003, + -0.63, + -0.81, + -0.97, + -0.93, + -0.86, + -0.65, + -0.41000000000000003, + -0.34, + -0.23, + -0.23, + -0.25, + -0.29, + -0.38, + -0.64, + -1.1300000000000001, + -1.67, + -2.0300000000000002, + -2.04, + -1.76, + -1.4000000000000001, + -0.9500000000000001, + -0.5700000000000001, + -0.44, + -0.44, + -0.76, + -1.04, + -1.23, + -1.4000000000000001, + -1.47, + -1.53, + -1.28, + -1.0, + -0.8200000000000001, + -0.63, + -0.67, + -0.64, + -0.56, + -0.49, + -0.34, + -0.17, + -0.04, + 0.07, + 0.12, + 0.15, + 0.16, + 0.15, + 0.1, + -0.14, + -0.31, + -0.34, + -0.27, + -0.16, + -0.19, + -0.47000000000000003 + ], + [ + -2.27, + -2.72, + -2.65, + -2.64, + -2.79, + -2.97, + -3.11, + -3.21, + -3.5, + -4.0, + -4.43, + -4.74, + -4.86, + -4.79, + -4.71, + -4.67, + -4.86, + -5.3, + -5.63, + -5.6000000000000005, + -5.5, + -5.38, + -5.23, + -4.97, + -4.54, + -4.2, + -3.87, + -3.79, + -3.62, + -3.5, + -3.42, + -3.59, + -3.79, + -4.0, + -4.14, + -4.12, + -3.88, + -3.43, + -2.92, + -2.44, + -2.19, + -1.96, + -1.8800000000000001, + -1.84, + -1.87, + -1.74, + -1.25, + -0.59, + 0.16, + 0.89, + 1.21, + 1.4000000000000001, + 1.45, + 1.55, + 1.51, + 1.24, + 0.88, + 0.76, + 1.1500000000000001, + 1.87, + 2.16, + 1.8, + 1.3, + 0.72, + 0.31, + 0.27, + 0.33, + 0.32, + 0.23, + -0.11, + -0.6, + -1.21, + -1.8, + -1.84, + -1.74, + -1.45, + -1.2, + -0.9500000000000001, + -0.78, + -0.65, + -0.6, + -0.61, + -0.44, + -0.14, + 0.19, + 0.35000000000000003, + 0.37, + 0.6, + 1.31, + 2.15, + 2.82, + 3.21, + 2.58, + 1.61, + 0.89, + 0.17, + 0.1, + 0.0, + -0.09, + -0.29, + -0.34, + -0.32, + -0.34, + -0.4, + -0.4, + -0.34, + -0.27, + -0.24, + -0.24, + -0.12, + -0.05, + 0.23, + 0.42, + 0.48, + 0.46, + 0.32, + 0.21, + 0.15, + 0.05, + -0.12, + -0.29, + -0.33, + -0.31, + -0.12, + 0.16, + 0.48, + 0.74, + 0.78, + 0.72, + 0.7000000000000001, + 0.71, + 0.85, + 0.8200000000000001, + 0.62, + 0.12, + -0.34, + -0.68, + -0.85, + -0.56, + -0.2, + 0.29, + 0.65, + 0.71, + 0.64, + 0.4, + 0.15, + -0.16, + -0.49, + -0.59, + -0.41000000000000003, + -0.18, + -0.08, + -0.06, + -0.02, + 0.0, + -0.06, + -0.19, + -0.39, + -0.63, + -1.1500000000000001, + -1.6300000000000001, + -2.05, + -2.24, + -2.25, + -2.21, + -2.11, + -1.97, + -1.57, + -1.1400000000000001, + -0.78, + -0.66, + -0.59, + -0.44, + -0.37, + -0.47000000000000003, + -0.77, + -1.1400000000000001, + -1.41, + -1.58, + -1.69, + -1.68, + -1.54, + -1.26, + -1.04, + -1.1300000000000001, + -1.36, + -1.6400000000000001, + -1.87, + -1.9000000000000001, + -1.94, + -1.82, + -1.6500000000000001, + -1.3900000000000001, + -1.04, + -0.8300000000000001, + -1.03, + -1.62, + -2.49, + -3.13, + -3.12, + -2.87, + -2.17, + -1.6400000000000001, + -1.42, + -1.29, + -1.54, + -1.8900000000000001, + -2.42, + -2.87, + -2.9, + -2.64, + -2.05, + -1.3800000000000001, + -0.9400000000000001, + -0.6900000000000001, + -0.97, + -1.62, + -2.14, + -2.43, + -2.36, + -2.0100000000000002, + -1.61, + -1.09, + -0.67, + -0.32, + 0.02, + 0.2, + 0.31, + 0.35000000000000003, + 0.39, + 0.6, + 0.89, + 1.04, + 1.06, + 0.64, + 0.26, + 0.19, + 0.28, + 0.22, + 0.08, + 0.0, + 0.06, + 0.26, + 0.46, + 0.62, + 0.81, + 1.0, + 1.09, + 1.07, + 0.81, + 0.67, + 0.78, + 0.76, + 0.66, + 0.63, + 0.5, + 0.43, + -0.04, + -0.5, + -0.46, + -0.03, + 0.41000000000000003, + 0.81, + 1.03, + 1.1300000000000001, + 1.1, + 0.91, + 0.73, + 0.46, + 0.17, + -0.13, + -0.36, + -0.25, + -0.24, + -0.64, + -1.04, + -1.09, + -0.87, + -0.58, + -0.35000000000000003, + -0.36, + -0.42, + -0.52, + -0.63, + -0.81, + -1.12, + -1.51, + -1.82, + -1.81, + -1.47, + -1.03, + -0.6900000000000001, + -0.58, + -0.6900000000000001, + -0.88, + -1.04, + -1.1400000000000001, + -0.88, + -0.63, + -0.36, + -0.19, + -0.16, + -0.19, + -0.23, + -0.3, + -0.32, + -0.41000000000000003, + -0.86, + -1.44, + -1.83, + -1.93, + -1.71, + -1.21, + -0.67, + -0.19, + 0.12, + -0.13, + -0.41000000000000003, + -0.76, + -0.92, + -0.96, + -0.92, + -0.93, + -0.79, + -0.67, + -0.43, + -0.52, + -0.56, + -0.58, + -0.58, + -0.47000000000000003, + -0.31, + -0.12, + 0.05, + 0.17, + 0.25, + 0.27, + 0.31, + 0.31, + 0.21, + 0.08, + -0.12, + -0.21, + -0.18, + -0.17, + -0.23, + -0.39 + ], + [ + -2.16, + -2.67, + -2.7600000000000002, + -2.81, + -2.95, + -3.11, + -3.25, + -3.37, + -3.5700000000000003, + -3.97, + -4.39, + -4.64, + -4.7, + -4.65, + -4.51, + -4.53, + -4.92, + -5.34, + -5.5600000000000005, + -5.59, + -5.38, + -5.2, + -5.0200000000000005, + -4.78, + -4.46, + -4.08, + -3.88, + -3.69, + -3.52, + -3.2600000000000002, + -3.24, + -3.27, + -3.49, + -3.69, + -3.87, + -3.96, + -3.77, + -3.3200000000000003, + -2.8000000000000003, + -2.47, + -2.17, + -2.0300000000000002, + -1.8900000000000001, + -1.84, + -1.78, + -1.54, + -1.12, + -0.35000000000000003, + 0.47000000000000003, + 1.07, + 1.47, + 1.43, + 1.22, + 1.16, + 1.1, + 0.91, + 0.72, + 0.78, + 1.3800000000000001, + 2.0100000000000002, + 2.16, + 1.9000000000000001, + 1.34, + 0.8200000000000001, + 0.51, + 0.43, + 0.59, + 0.6900000000000001, + 0.44, + 0.12, + -0.6, + -1.3900000000000001, + -1.83, + -2.0100000000000002, + -1.69, + -1.22, + -0.92, + -0.79, + -0.65, + -0.53, + -0.43, + -0.35000000000000003, + -0.23, + 0.01, + 0.25, + 0.26, + 0.33, + 0.91, + 1.68, + 2.77, + 3.8000000000000003, + 3.85, + 3.54, + 2.5, + 1.43, + 0.86, + 0.36, + 0.23, + 0.03, + -0.13, + -0.27, + -0.29, + -0.31, + -0.33, + -0.29, + -0.2, + -0.1, + -0.08, + -0.05, + -0.03, + 0.06, + 0.18, + 0.15, + 0.08, + 0.12, + 0.08, + 0.08, + 0.0, + -0.08, + -0.24, + -0.26, + -0.18, + -0.02, + 0.14, + 0.4, + 0.67, + 0.81, + 0.81, + 0.74, + 0.59, + 0.56, + 0.61, + 0.63, + 0.4, + 0.03, + -0.42, + -0.77, + -0.77, + -0.6, + -0.22, + 0.07, + 0.46, + 0.77, + 0.66, + 0.42, + 0.08, + -0.36, + -0.62, + -0.6, + -0.37, + -0.11, + -0.02, + -0.06, + -0.06, + 0.03, + 0.05, + -0.09, + -0.28, + -0.6, + -0.98, + -1.48, + -1.8800000000000001, + -2.1, + -2.21, + -2.21, + -2.12, + -1.9100000000000001, + -1.59, + -1.21, + -0.97, + -0.86, + -0.78, + -0.65, + -0.53, + -0.6, + -0.9400000000000001, + -1.28, + -1.5, + -1.68, + -1.74, + -1.73, + -1.57, + -1.33, + -1.18, + -1.1500000000000001, + -1.4000000000000001, + -1.67, + -1.83, + -1.96, + -1.9000000000000001, + -1.79, + -1.55, + -1.18, + -0.86, + -0.7000000000000001, + -0.96, + -1.72, + -2.5300000000000002, + -3.02, + -3.09, + -2.36, + -1.59, + -1.11, + -0.78, + -0.99, + -1.25, + -1.78, + -2.42, + -2.7, + -2.79, + -2.22, + -1.46, + -0.91, + -0.51, + -0.49, + -0.8, + -1.42, + -2.09, + -2.4, + -2.36, + -2.06, + -1.51, + -0.98, + -0.5, + -0.09, + 0.06, + 0.2, + 0.28, + 0.29, + 0.32, + 0.41000000000000003, + 0.72, + 0.99, + 0.81, + 0.42, + 0.04, + -0.16, + -0.12, + -0.03, + -0.03, + 0.04, + 0.08, + 0.1, + 0.24, + 0.44, + 0.67, + 0.88, + 1.03, + 0.8300000000000001, + 0.61, + 0.53, + 0.5700000000000001, + 0.55, + 0.52, + 0.46, + 0.5, + 0.08, + -0.58, + -1.0, + -1.1500000000000001, + -0.5700000000000001, + 0.25, + 0.71, + 0.98, + 1.03, + 0.89, + 0.72, + 0.51, + 0.27, + -0.07, + -0.39, + -0.38, + -0.25, + -0.24, + -0.42, + -0.92, + -1.21, + -1.0, + -0.67, + -0.41000000000000003, + -0.23, + -0.31, + -0.47000000000000003, + -0.65, + -0.8200000000000001, + -1.1, + -1.42, + -1.7, + -1.79, + -1.57, + -1.16, + -0.81, + -0.66, + -0.6900000000000001, + -0.9, + -1.1, + -1.03, + -0.89, + -0.52, + -0.22, + -0.09, + -0.05, + -0.08, + -0.17, + -0.16, + -0.1, + -0.28, + -0.61, + -1.18, + -1.7, + -1.84, + -1.6600000000000001, + -1.21, + -0.5700000000000001, + -0.02, + 0.2, + 0.14, + -0.35000000000000003, + -0.7000000000000001, + -0.75, + -0.64, + -0.6, + -0.49, + -0.5700000000000001, + -0.54, + -0.6, + -0.7000000000000001, + -0.73, + -0.67, + -0.56, + -0.42, + -0.23, + 0.02, + 0.22, + 0.37, + 0.44, + 0.45, + 0.43, + 0.37, + 0.28, + 0.13, + 0.0, + -0.06, + -0.08, + -0.1, + -0.17, + -0.28 + ], + [ + -2.47, + -3.0, + -2.97, + -2.93, + -3.12, + -3.2800000000000002, + -3.4, + -3.48, + -3.65, + -3.88, + -4.19, + -4.37, + -4.43, + -4.39, + -4.3500000000000005, + -4.61, + -4.96, + -5.38, + -5.63, + -5.46, + -5.24, + -5.04, + -4.8500000000000005, + -4.69, + -4.48, + -4.22, + -3.98, + -3.79, + -3.5300000000000002, + -3.33, + -3.2, + -3.29, + -3.41, + -3.62, + -3.87, + -3.96, + -3.84, + -3.45, + -2.99, + -2.59, + -2.36, + -2.16, + -2.0300000000000002, + -1.9100000000000001, + -1.72, + -1.48, + -0.88, + -0.13, + 0.68, + 1.37, + 1.54, + 1.3800000000000001, + 1.05, + 0.63, + 0.58, + 0.58, + 0.55, + 0.84, + 1.3900000000000001, + 1.98, + 2.17, + 1.8, + 1.32, + 0.8300000000000001, + 0.51, + 0.63, + 0.84, + 0.84, + 0.6900000000000001, + 0.12, + -0.61, + -1.3800000000000001, + -2.0, + -1.94, + -1.54, + -1.0, + -0.48, + -0.36, + -0.36, + -0.25, + -0.07, + 0.01, + 0.02, + 0.15, + 0.15, + 0.18, + 0.48, + 1.0, + 2.05, + 3.22, + 4.04, + 4.66, + 4.13, + 3.47, + 2.42, + 1.56, + 1.01, + 0.54, + 0.29, + 0.06, + -0.1, + -0.24, + -0.28, + -0.26, + -0.19, + 0.02, + 0.19, + 0.26, + 0.27, + 0.25, + 0.29, + 0.14, + -0.02, + -0.13, + -0.18, + 0.03, + 0.1, + 0.05, + -0.13, + -0.18, + -0.17, + 0.09, + 0.42, + 0.61, + 0.75, + 0.88, + 0.8, + 0.72, + 0.56, + 0.4, + 0.29, + 0.27, + 0.33, + 0.19, + -0.17, + -0.59, + -0.77, + -0.78, + -0.46, + -0.14, + 0.12, + 0.36, + 0.6, + 0.74, + 0.43, + -0.06, + -0.5, + -0.77, + -0.65, + -0.24, + 0.03, + 0.08, + 0.03, + -0.02, + 0.02, + 0.09, + 0.04, + -0.24, + -0.5700000000000001, + -0.9500000000000001, + -1.42, + -1.77, + -2.07, + -2.2, + -2.31, + -2.13, + -1.9000000000000001, + -1.54, + -1.18, + -1.02, + -1.02, + -0.96, + -0.81, + -0.7000000000000001, + -0.79, + -1.04, + -1.34, + -1.59, + -1.72, + -1.85, + -1.81, + -1.68, + -1.47, + -1.27, + -1.31, + -1.46, + -1.6300000000000001, + -1.77, + -1.79, + -1.78, + -1.6300000000000001, + -1.41, + -1.08, + -0.71, + -0.6, + -0.9, + -1.57, + -2.33, + -2.83, + -2.62, + -2.0100000000000002, + -1.17, + -0.53, + -0.54, + -0.64, + -1.03, + -1.57, + -2.12, + -2.64, + -2.36, + -1.79, + -1.04, + -0.42, + -0.26, + -0.35000000000000003, + -0.71, + -1.29, + -1.8800000000000001, + -2.25, + -2.24, + -1.8900000000000001, + -1.42, + -0.89, + -0.4, + -0.07, + 0.16, + 0.26, + 0.34, + 0.29, + 0.23, + 0.38, + 0.59, + 0.72, + 0.62, + 0.17, + -0.34, + -0.55, + -0.58, + -0.42, + -0.15, + -0.05, + -0.03, + -0.03, + -0.02, + 0.15, + 0.42, + 0.67, + 0.67, + 0.56, + 0.4, + 0.33, + 0.34, + 0.34, + 0.24, + 0.17, + 0.05, + -0.26, + -0.91, + -1.6500000000000001, + -1.52, + -0.9500000000000001, + -0.14, + 0.54, + 0.78, + 0.74, + 0.6, + 0.4, + 0.22, + 0.04, + -0.26, + -0.49, + -0.54, + -0.32, + -0.15, + -0.52, + -0.98, + -1.23, + -1.24, + -0.8, + -0.39, + -0.21, + -0.17, + -0.39, + -0.7000000000000001, + -0.91, + -1.09, + -1.3800000000000001, + -1.6400000000000001, + -1.72, + -1.57, + -1.23, + -0.9, + -0.71, + -0.75, + -0.9, + -0.97, + -0.9400000000000001, + -0.65, + -0.31, + -0.09, + 0.08, + 0.07, + 0.07, + 0.03, + 0.05, + 0.01, + -0.18, + -0.62, + -1.17, + -1.6400000000000001, + -1.86, + -1.68, + -1.19, + -0.6, + -0.05, + 0.23, + -0.07, + -0.46, + -0.76, + -0.84, + -0.6, + -0.39, + -0.44, + -0.5700000000000001, + -0.72, + -0.9500000000000001, + -0.99, + -0.97, + -0.72, + -0.42, + -0.21, + -0.01, + 0.22, + 0.48, + 0.64, + 0.68, + 0.67, + 0.53, + 0.42, + 0.25, + 0.1, + 0.09, + 0.09, + 0.04, + 0.0, + -0.07, + -0.13 + ], + [ + -2.39, + -2.97, + -3.15, + -3.19, + -3.36, + -3.49, + -3.56, + -3.62, + -3.66, + -3.84, + -3.95, + -4.1, + -4.19, + -4.21, + -4.46, + -4.72, + -5.12, + -5.53, + -5.55, + -5.42, + -5.14, + -4.86, + -4.73, + -4.6000000000000005, + -4.55, + -4.44, + -4.18, + -3.94, + -3.67, + -3.46, + -3.38, + -3.48, + -3.59, + -3.73, + -3.92, + -4.0600000000000005, + -3.99, + -3.71, + -3.3000000000000003, + -2.91, + -2.63, + -2.42, + -2.27, + -1.97, + -1.7, + -1.25, + -0.66, + 0.14, + 0.9500000000000001, + 1.45, + 1.68, + 1.35, + 0.75, + 0.39, + 0.15, + 0.22, + 0.47000000000000003, + 0.79, + 1.34, + 1.85, + 1.8800000000000001, + 1.6, + 1.1400000000000001, + 0.71, + 0.5700000000000001, + 0.67, + 0.9400000000000001, + 1.05, + 0.73, + 0.16, + -0.62, + -1.46, + -1.8900000000000001, + -1.97, + -1.44, + -0.66, + -0.2, + 0.07, + 0.06, + 0.09, + 0.21, + 0.23, + 0.22, + 0.08, + 0.08, + 0.22, + 0.51, + 1.22, + 2.17, + 3.13, + 4.05, + 4.49, + 4.61, + 3.91, + 3.2600000000000002, + 2.31, + 1.54, + 0.9500000000000001, + 0.46, + 0.23, + 0.03, + -0.14, + -0.26, + -0.24, + -0.1, + 0.13, + 0.49, + 0.68, + 0.6, + 0.53, + 0.41000000000000003, + 0.25, + -0.11, + -0.37, + -0.12, + 0.22, + 0.33, + 0.27, + 0.11, + -0.05, + 0.13, + 0.55, + 0.88, + 1.1500000000000001, + 1.23, + 1.09, + 0.9500000000000001, + 0.64, + 0.42, + 0.25, + 0.08, + 0.1, + 0.09, + -0.01, + -0.32, + -0.67, + -0.89, + -0.64, + -0.21, + 0.04, + 0.17, + 0.31, + 0.48, + 0.54, + 0.43, + -0.14, + -0.76, + -0.93, + -0.58, + -0.16, + 0.16, + 0.23, + 0.1, + 0.03, + 0.03, + 0.1, + 0.04, + -0.15, + -0.47000000000000003, + -0.84, + -1.24, + -1.67, + -1.95, + -2.2, + -2.18, + -2.1, + -1.75, + -1.3900000000000001, + -1.12, + -1.1, + -1.1300000000000001, + -1.16, + -1.05, + -0.92, + -0.9500000000000001, + -1.08, + -1.31, + -1.5, + -1.69, + -1.86, + -1.94, + -1.81, + -1.6300000000000001, + -1.46, + -1.43, + -1.45, + -1.56, + -1.56, + -1.54, + -1.48, + -1.44, + -1.24, + -1.04, + -0.72, + -0.54, + -0.79, + -1.36, + -2.0300000000000002, + -2.36, + -2.25, + -1.56, + -0.77, + -0.41000000000000003, + -0.31, + -0.44, + -0.6900000000000001, + -1.16, + -1.69, + -1.98, + -1.9000000000000001, + -1.25, + -0.54, + -0.19, + -0.19, + -0.37, + -0.64, + -1.17, + -1.68, + -1.99, + -1.93, + -1.6300000000000001, + -1.25, + -0.81, + -0.38, + -0.04, + 0.19, + 0.36, + 0.38, + 0.35000000000000003, + 0.28, + 0.33, + 0.48, + 0.56, + 0.34, + -0.11, + -0.62, + -1.08, + -1.04, + -0.76, + -0.46, + -0.19, + -0.19, + -0.35000000000000003, + -0.37, + -0.17, + 0.08, + 0.26, + 0.29, + 0.24, + 0.12, + 0.1, + 0.09, + 0.01, + -0.12, + -0.22, + -0.34, + -0.61, + -1.11, + -1.58, + -1.75, + -1.11, + -0.35000000000000003, + 0.22, + 0.44, + 0.41000000000000003, + 0.24, + 0.06, + -0.01, + -0.19, + -0.46, + -0.6900000000000001, + -0.66, + -0.45, + -0.39, + -0.58, + -1.02, + -1.3800000000000001, + -1.21, + -0.85, + -0.41000000000000003, + -0.07, + -0.11, + -0.34, + -0.68, + -1.04, + -1.26, + -1.45, + -1.6600000000000001, + -1.72, + -1.57, + -1.26, + -0.9400000000000001, + -0.8, + -0.79, + -0.87, + -0.92, + -0.7000000000000001, + -0.38, + -0.16, + 0.04, + 0.1, + 0.16, + 0.16, + 0.23, + 0.2, + 0.07, + -0.24, + -0.81, + -1.34, + -1.76, + -1.9100000000000001, + -1.6300000000000001, + -1.16, + -0.55, + -0.04, + -0.1, + -0.34, + -0.73, + -1.01, + -0.85, + -0.61, + -0.39, + -0.4, + -0.63, + -0.97, + -1.1, + -1.22, + -0.9500000000000001, + -0.49, + -0.12, + 0.15, + 0.33, + 0.5, + 0.71, + 0.85, + 0.91, + 0.8, + 0.67, + 0.41000000000000003, + 0.2, + 0.15, + 0.15, + 0.13, + 0.13, + -0.01, + -0.02, + -0.03 + ], + [ + -2.64, + -3.23, + -3.34, + -3.42, + -3.59, + -3.73, + -3.7600000000000002, + -3.7600000000000002, + -3.79, + -3.7800000000000002, + -3.88, + -3.98, + -4.1, + -4.37, + -4.61, + -4.96, + -5.33, + -5.53, + -5.57, + -5.38, + -5.11, + -4.84, + -4.62, + -4.67, + -4.74, + -4.62, + -4.38, + -4.0600000000000005, + -3.73, + -3.5300000000000002, + -3.52, + -3.59, + -3.71, + -3.8000000000000003, + -3.86, + -4.0, + -4.07, + -3.89, + -3.5700000000000003, + -3.25, + -2.87, + -2.65, + -2.34, + -2.0300000000000002, + -1.55, + -1.04, + -0.34, + 0.45, + 1.09, + 1.54, + 1.59, + 1.31, + 0.73, + 0.16, + 0.01, + 0.07, + 0.33, + 0.72, + 1.2, + 1.48, + 1.53, + 1.22, + 0.81, + 0.53, + 0.39, + 0.71, + 1.06, + 1.1, + 0.87, + 0.24, + -0.5700000000000001, + -1.32, + -1.84, + -1.77, + -1.34, + -0.59, + 0.08, + 0.28, + 0.31, + 0.3, + 0.24, + 0.22, + 0.03, + -0.09, + -0.05, + 0.12, + 0.64, + 1.33, + 2.06, + 2.87, + 3.54, + 4.0, + 4.19, + 4.07, + 3.36, + 2.74, + 1.83, + 1.05, + 0.5700000000000001, + 0.32, + 0.11, + -0.09, + -0.19, + -0.19, + -0.06, + 0.2, + 0.58, + 0.9500000000000001, + 1.03, + 0.78, + 0.59, + 0.25, + -0.17, + -0.28, + -0.04, + 0.4, + 0.76, + 0.6, + 0.4, + 0.32, + 0.49, + 0.89, + 1.35, + 1.54, + 1.6300000000000001, + 1.48, + 1.1300000000000001, + 0.81, + 0.54, + 0.33, + 0.21, + 0.14, + 0.09, + -0.07, + -0.41000000000000003, + -0.79, + -0.84, + -0.59, + -0.08, + 0.34, + 0.28, + 0.11, + 0.23, + 0.36, + 0.1, + -0.46, + -1.01, + -1.09, + -0.72, + -0.12, + 0.19, + 0.22, + 0.13, + -0.03, + -0.05, + 0.04, + 0.04, + -0.09, + -0.32, + -0.58, + -0.91, + -1.37, + -1.77, + -1.92, + -1.93, + -1.71, + -1.37, + -1.09, + -1.03, + -1.08, + -1.31, + -1.36, + -1.34, + -1.23, + -1.12, + -1.16, + -1.17, + -1.29, + -1.55, + -1.78, + -1.92, + -1.94, + -1.74, + -1.6, + -1.3900000000000001, + -1.28, + -1.24, + -1.19, + -1.12, + -1.07, + -1.05, + -1.12, + -0.92, + -0.72, + -0.56, + -0.66, + -1.1400000000000001, + -1.58, + -1.8900000000000001, + -1.6500000000000001, + -1.08, + -0.5700000000000001, + -0.22, + -0.22, + -0.3, + -0.38, + -0.6, + -1.07, + -1.32, + -1.2, + -0.71, + -0.25, + -0.12, + -0.24, + -0.51, + -0.8, + -1.11, + -1.53, + -1.67, + -1.59, + -1.27, + -0.92, + -0.65, + -0.3, + -0.02, + 0.21, + 0.34, + 0.41000000000000003, + 0.34, + 0.3, + 0.3, + 0.4, + 0.35000000000000003, + 0.13, + -0.36, + -0.97, + -1.33, + -1.46, + -1.11, + -0.64, + -0.41000000000000003, + -0.49, + -0.65, + -0.6900000000000001, + -0.53, + -0.25, + -0.08, + 0.01, + -0.05, + -0.08, + -0.12, + -0.2, + -0.31, + -0.47000000000000003, + -0.61, + -0.63, + -0.72, + -1.04, + -1.36, + -1.42, + -1.1400000000000001, + -0.47000000000000003, + -0.08, + 0.12, + 0.11, + -0.03, + -0.09, + -0.19, + -0.4, + -0.68, + -0.91, + -0.93, + -0.73, + -0.61, + -0.76, + -1.08, + -1.24, + -1.1300000000000001, + -0.74, + -0.31, + -0.06, + 0.0, + -0.28, + -0.72, + -1.1, + -1.49, + -1.69, + -1.8, + -1.82, + -1.61, + -1.3, + -1.0, + -0.8300000000000001, + -0.86, + -0.89, + -0.77, + -0.52, + -0.26, + -0.02, + 0.01, + 0.01, + 0.05, + 0.14, + 0.22, + 0.35000000000000003, + 0.12, + -0.37, + -0.92, + -1.5, + -1.85, + -1.83, + -1.55, + -0.97, + -0.4, + -0.3, + -0.35000000000000003, + -0.74, + -1.12, + -1.08, + -0.88, + -0.51, + -0.22, + -0.31, + -0.61, + -0.89, + -1.11, + -1.01, + -0.64, + -0.13, + 0.41000000000000003, + 0.64, + 0.68, + 0.78, + 0.8200000000000001, + 0.93, + 0.93, + 0.87, + 0.66, + 0.43, + 0.24, + 0.15, + 0.12, + 0.11, + -0.1, + -0.23, + -0.16, + 0.04 + ], + [ + -2.57, + -3.22, + -3.48, + -3.61, + -3.8200000000000003, + -3.94, + -3.93, + -3.93, + -3.9, + -3.9, + -3.9, + -4.0200000000000005, + -4.33, + -4.61, + -4.93, + -5.26, + -5.43, + -5.6000000000000005, + -5.57, + -5.38, + -5.15, + -4.9, + -4.76, + -4.79, + -4.92, + -4.88, + -4.5200000000000005, + -4.04, + -3.69, + -3.44, + -3.44, + -3.5100000000000002, + -3.58, + -3.56, + -3.61, + -3.7600000000000002, + -3.86, + -3.86, + -3.65, + -3.29, + -2.98, + -2.65, + -2.36, + -1.8900000000000001, + -1.3800000000000001, + -0.74, + 0.0, + 0.65, + 1.18, + 1.48, + 1.51, + 1.23, + 0.78, + 0.27, + -0.02, + 0.04, + 0.22, + 0.58, + 0.9, + 1.1500000000000001, + 1.06, + 0.78, + 0.48, + 0.2, + 0.31, + 0.63, + 1.03, + 1.19, + 0.9500000000000001, + 0.45, + -0.38, + -1.18, + -1.57, + -1.58, + -1.1300000000000001, + -0.54, + 0.04, + 0.33, + 0.32, + 0.2, + 0.11, + -0.12, + -0.3, + -0.39, + -0.36, + 0.11, + 0.66, + 1.33, + 2.04, + 2.54, + 3.0, + 3.36, + 3.5100000000000002, + 3.4, + 3.0300000000000002, + 2.4, + 1.74, + 0.97, + 0.47000000000000003, + 0.21, + 0.07, + -0.1, + -0.09, + -0.08, + -0.11, + 0.12, + 0.59, + 1.03, + 1.24, + 1.1400000000000001, + 0.76, + 0.35000000000000003, + -0.12, + -0.34, + 0.01, + 0.56, + 0.8200000000000001, + 0.86, + 0.63, + 0.59, + 0.74, + 1.08, + 1.42, + 1.68, + 1.73, + 1.76, + 1.43, + 1.08, + 0.8200000000000001, + 0.6900000000000001, + 0.6, + 0.47000000000000003, + 0.35000000000000003, + 0.0, + -0.42, + -0.77, + -0.92, + -0.51, + 0.08, + 0.4, + 0.37, + 0.07, + -0.16, + -0.11, + -0.35000000000000003, + -0.92, + -1.48, + -1.46, + -0.86, + -0.3, + -0.03, + 0.03, + -0.04, + -0.18, + -0.12, + -0.04, + 0.03, + -0.07, + -0.15, + -0.28, + -0.62, + -1.03, + -1.4000000000000001, + -1.56, + -1.47, + -1.1300000000000001, + -0.89, + -0.77, + -0.8300000000000001, + -1.17, + -1.42, + -1.6500000000000001, + -1.6600000000000001, + -1.6, + -1.47, + -1.21, + -1.1300000000000001, + -1.1300000000000001, + -1.32, + -1.59, + -1.8, + -1.83, + -1.76, + -1.47, + -1.19, + -0.9500000000000001, + -0.74, + -0.68, + -0.56, + -0.5700000000000001, + -0.65, + -0.74, + -0.8300000000000001, + -0.64, + -0.5, + -0.58, + -0.8, + -1.18, + -1.23, + -1.02, + -0.67, + -0.21, + -0.15, + -0.15, + -0.13, + -0.1, + -0.26, + -0.52, + -0.76, + -0.65, + -0.35000000000000003, + -0.14, + -0.16, + -0.47000000000000003, + -0.73, + -0.98, + -1.25, + -1.3900000000000001, + -1.49, + -1.23, + -0.9, + -0.61, + -0.35000000000000003, + -0.2, + 0.02, + 0.14, + 0.25, + 0.3, + 0.26, + 0.2, + 0.21, + 0.2, + 0.11, + -0.13, + -0.54, + -1.08, + -1.53, + -1.52, + -1.21, + -0.77, + -0.63, + -0.71, + -0.92, + -0.97, + -0.75, + -0.48, + -0.22, + -0.12, + -0.13, + -0.18, + -0.34, + -0.49, + -0.65, + -0.8200000000000001, + -0.86, + -0.81, + -0.74, + -0.71, + -0.99, + -1.1300000000000001, + -0.88, + -0.55, + -0.2, + -0.08, + -0.08, + -0.07, + -0.12, + -0.3, + -0.53, + -0.96, + -1.25, + -1.2, + -1.02, + -0.85, + -0.9, + -1.03, + -1.08, + -0.93, + -0.5700000000000001, + -0.24, + -0.06, + -0.05, + -0.22, + -0.67, + -1.23, + -1.61, + -1.9100000000000001, + -2.0100000000000002, + -1.92, + -1.72, + -1.29, + -0.98, + -0.98, + -1.01, + -0.91, + -0.72, + -0.47000000000000003, + -0.19, + -0.1, + -0.13, + -0.18, + -0.2, + -0.08, + 0.14, + 0.21, + 0.12, + -0.39, + -0.96, + -1.47, + -1.71, + -1.67, + -1.27, + -0.73, + -0.49, + -0.39, + -0.8, + -1.23, + -1.32, + -1.24, + -0.8300000000000001, + -0.34, + -0.08, + -0.06, + -0.4, + -0.6900000000000001, + -0.8, + -0.61, + -0.2, + 0.41000000000000003, + 0.85, + 1.07, + 1.04, + 0.8200000000000001, + 0.8200000000000001, + 0.75, + 0.75, + 0.71, + 0.5700000000000001, + 0.43, + 0.27, + 0.13, + 0.04, + -0.25, + -0.58, + -0.62, + -0.49, + -0.15 + ], + [ + -2.72, + -3.36, + -3.62, + -3.8000000000000003, + -4.03, + -4.21, + -4.19, + -4.14, + -4.11, + -4.03, + -4.05, + -4.23, + -4.55, + -4.99, + -5.33, + -5.46, + -5.62, + -5.71, + -5.67, + -5.46, + -5.22, + -5.04, + -4.93, + -5.07, + -5.23, + -5.07, + -4.59, + -4.03, + -3.5100000000000002, + -3.29, + -3.25, + -3.3000000000000003, + -3.24, + -3.2, + -3.12, + -3.2600000000000002, + -3.45, + -3.49, + -3.37, + -3.09, + -2.7800000000000002, + -2.5, + -2.14, + -1.69, + -1.1400000000000001, + -0.48, + 0.21, + 0.84, + 1.2, + 1.34, + 1.3800000000000001, + 1.26, + 0.8300000000000001, + 0.41000000000000003, + 0.1, + -0.08, + 0.09, + 0.34, + 0.64, + 0.73, + 0.64, + 0.43, + 0.14, + 0.05, + 0.14, + 0.55, + 0.96, + 1.17, + 1.05, + 0.5700000000000001, + -0.14, + -0.87, + -1.26, + -1.24, + -0.91, + -0.41000000000000003, + -0.07, + 0.18, + 0.2, + 0.06, + -0.21, + -0.44, + -0.64, + -0.75, + -0.45, + 0.0, + 0.65, + 1.31, + 1.92, + 2.42, + 2.62, + 2.7600000000000002, + 2.72, + 2.43, + 2.16, + 1.71, + 1.17, + 0.67, + 0.2, + -0.06, + -0.2, + -0.21, + -0.18, + -0.04, + -0.06, + -0.12, + 0.29, + 0.9500000000000001, + 1.28, + 1.29, + 1.03, + 0.44, + -0.1, + -0.36, + -0.15, + 0.32, + 0.63, + 0.67, + 0.61, + 0.5700000000000001, + 0.72, + 0.96, + 1.11, + 1.32, + 1.55, + 1.55, + 1.46, + 1.1300000000000001, + 0.9400000000000001, + 0.86, + 1.04, + 1.02, + 0.67, + 0.24, + -0.25, + -0.68, + -0.76, + -0.47000000000000003, + 0.15, + 0.56, + 0.4, + -0.08, + -0.38, + -0.61, + -0.86, + -1.42, + -1.85, + -1.73, + -1.1400000000000001, + -0.62, + -0.34, + -0.21, + -0.27, + -0.23, + -0.18, + 0.03, + 0.12, + 0.04, + -0.03, + -0.13, + -0.37, + -0.78, + -1.12, + -1.21, + -1.02, + -0.73, + -0.49, + -0.51, + -0.86, + -1.24, + -1.72, + -1.96, + -2.09, + -2.04, + -1.77, + -1.51, + -1.1, + -1.02, + -1.09, + -1.31, + -1.5, + -1.57, + -1.46, + -1.2, + -0.88, + -0.55, + -0.38, + -0.23, + -0.17, + -0.13, + -0.27, + -0.47000000000000003, + -0.58, + -0.6, + -0.47000000000000003, + -0.4, + -0.58, + -0.65, + -0.67, + -0.54, + -0.21, + -0.15, + -0.13, + -0.11, + -0.03, + 0.02, + -0.05, + -0.29, + -0.46, + -0.42, + -0.25, + -0.16, + -0.34, + -0.63, + -0.92, + -1.12, + -1.24, + -1.36, + -1.27, + -1.02, + -0.63, + -0.31, + -0.16, + -0.02, + 0.0, + 0.07, + 0.12, + 0.13, + 0.09, + 0.03, + -0.01, + -0.09, + -0.17, + -0.35000000000000003, + -0.67, + -1.01, + -1.34, + -1.3, + -0.99, + -0.8, + -0.68, + -0.88, + -1.09, + -1.12, + -0.93, + -0.55, + -0.26, + -0.11, + -0.09, + -0.29, + -0.51, + -0.77, + -1.02, + -1.09, + -1.08, + -0.88, + -0.5700000000000001, + -0.5, + -0.58, + -0.75, + -0.76, + -0.46, + -0.25, + -0.14, + -0.12, + -0.11, + -0.13, + -0.28, + -0.77, + -1.24, + -1.47, + -1.46, + -1.18, + -0.99, + -0.93, + -0.9500000000000001, + -0.93, + -0.73, + -0.45, + -0.23, + -0.1, + -0.13, + -0.3, + -0.6, + -1.1500000000000001, + -1.7, + -1.98, + -2.06, + -1.98, + -1.62, + -1.2, + -1.1, + -1.12, + -1.19, + -1.11, + -0.81, + -0.51, + -0.29, + -0.22, + -0.31, + -0.44, + -0.5, + -0.46, + -0.24, + -0.02, + -0.15, + -0.44, + -0.98, + -1.26, + -1.46, + -1.32, + -0.9400000000000001, + -0.64, + -0.41000000000000003, + -0.73, + -1.18, + -1.51, + -1.61, + -1.34, + -0.88, + -0.34, + 0.07, + 0.04, + -0.2, + -0.48, + -0.5, + -0.29, + 0.22, + 0.71, + 1.08, + 1.21, + 1.05, + 0.79, + 0.45, + 0.37, + 0.33, + 0.31, + 0.38, + 0.31, + 0.24, + 0.12, + -0.22, + -0.67, + -1.01, + -1.16, + -0.84, + -0.36 + ], + [ + -2.67, + -3.37, + -3.75, + -3.97, + -4.3100000000000005, + -4.46, + -4.46, + -4.41, + -4.36, + -4.29, + -4.24, + -4.43, + -4.8100000000000005, + -5.24, + -5.58, + -5.73, + -5.88, + -5.97, + -5.86, + -5.64, + -5.39, + -5.2, + -5.26, + -5.51, + -5.58, + -5.33, + -4.68, + -3.9, + -3.38, + -3.13, + -3.09, + -3.08, + -2.99, + -2.68, + -2.6, + -2.6, + -2.79, + -2.87, + -2.77, + -2.63, + -2.37, + -2.14, + -1.81, + -1.44, + -0.9400000000000001, + -0.34, + 0.32, + 0.85, + 1.1300000000000001, + 1.25, + 1.29, + 1.19, + 0.91, + 0.47000000000000003, + 0.03, + -0.15, + -0.19, + 0.07, + 0.32, + 0.41000000000000003, + 0.3, + 0.08, + 0.01, + -0.05, + 0.11, + 0.49, + 0.9, + 1.12, + 1.07, + 0.71, + 0.07, + -0.54, + -0.88, + -0.85, + -0.62, + -0.39, + -0.11, + -0.03, + -0.03, + -0.19, + -0.45, + -0.63, + -0.8300000000000001, + -0.74, + -0.46, + 0.09, + 0.71, + 1.2, + 1.74, + 2.22, + 2.46, + 2.3000000000000003, + 2.0100000000000002, + 1.6300000000000001, + 1.21, + 0.89, + 0.52, + 0.14, + -0.11, + -0.39, + -0.63, + -0.61, + -0.32, + -0.18, + -0.26, + -0.32, + -0.11, + 0.49, + 1.09, + 1.23, + 1.06, + 0.56, + -0.07, + -0.42, + -0.4, + -0.16, + 0.15, + 0.22, + 0.24, + 0.28, + 0.41000000000000003, + 0.52, + 0.62, + 0.63, + 0.85, + 1.03, + 0.92, + 0.62, + 0.44, + 0.86, + 1.1400000000000001, + 1.41, + 1.17, + 0.63, + 0.1, + -0.29, + -0.42, + -0.18, + 0.3, + 0.67, + 0.5, + -0.06, + -0.61, + -0.8300000000000001, + -1.12, + -1.62, + -1.93, + -1.77, + -1.32, + -0.81, + -0.47000000000000003, + -0.33, + -0.25, + -0.21, + -0.05, + 0.18, + 0.26, + 0.21, + 0.04, + -0.09, + -0.29, + -0.66, + -0.9400000000000001, + -1.0, + -0.81, + -0.5, + -0.33, + -0.48, + -0.89, + -1.52, + -2.0, + -2.42, + -2.54, + -2.39, + -2.14, + -1.61, + -1.19, + -0.85, + -0.85, + -0.9400000000000001, + -1.07, + -1.12, + -1.01, + -0.84, + -0.5700000000000001, + -0.34, + -0.21, + -0.09, + -0.03, + -0.02, + -0.11, + -0.33, + -0.51, + -0.54, + -0.49, + -0.42, + -0.3, + -0.34, + -0.3, + -0.16, + -0.18, + -0.2, + -0.25, + -0.24, + -0.1, + 0.01, + -0.07, + -0.28, + -0.42, + -0.39, + -0.29, + -0.34, + -0.48, + -0.65, + -0.9, + -1.01, + -1.11, + -1.1400000000000001, + -1.06, + -0.9, + -0.53, + -0.17, + 0.02, + 0.05, + 0.05, + 0.0, + 0.01, + -0.03, + -0.09, + -0.17, + -0.25, + -0.32, + -0.4, + -0.49, + -0.61, + -0.84, + -0.86, + -0.84, + -0.72, + -0.56, + -0.72, + -0.92, + -1.1400000000000001, + -1.19, + -1.02, + -0.66, + -0.29, + -0.11, + -0.16, + -0.37, + -0.68, + -1.01, + -1.22, + -1.32, + -1.17, + -0.8300000000000001, + -0.46, + -0.21, + -0.3, + -0.52, + -0.54, + -0.43, + -0.24, + -0.24, + -0.23, + -0.21, + -0.21, + -0.44, + -0.92, + -1.4000000000000001, + -1.6600000000000001, + -1.47, + -1.17, + -0.99, + -0.91, + -0.88, + -0.8, + -0.64, + -0.43, + -0.24, + -0.17, + -0.2, + -0.34, + -0.62, + -0.98, + -1.52, + -1.9100000000000001, + -1.99, + -1.86, + -1.5, + -1.1500000000000001, + -1.04, + -1.32, + -1.46, + -1.3, + -0.99, + -0.65, + -0.42, + -0.37, + -0.48, + -0.7000000000000001, + -0.91, + -0.92, + -0.8300000000000001, + -0.6, + -0.56, + -0.8200000000000001, + -1.01, + -1.26, + -1.1400000000000001, + -0.99, + -0.66, + -0.36, + -0.53, + -0.88, + -1.4000000000000001, + -1.75, + -1.79, + -1.51, + -1.06, + -0.51, + -0.06, + 0.02, + -0.22, + -0.46, + -0.47000000000000003, + -0.19, + 0.23, + 0.6, + 0.89, + 0.88, + 0.6900000000000001, + 0.32, + -0.02, + -0.23, + -0.28, + -0.13, + -0.03, + 0.16, + 0.18, + 0.01, + -0.36, + -0.9, + -1.34, + -1.42, + -1.11, + -0.63 + ], + [ + -2.69, + -3.39, + -3.8000000000000003, + -4.09, + -4.45, + -4.63, + -4.65, + -4.65, + -4.61, + -4.5600000000000005, + -4.5200000000000005, + -4.61, + -4.98, + -5.39, + -5.72, + -6.04, + -6.21, + -6.28, + -6.18, + -5.88, + -5.59, + -5.49, + -5.64, + -5.92, + -6.03, + -5.54, + -4.63, + -3.7600000000000002, + -3.16, + -2.93, + -2.96, + -2.93, + -2.66, + -2.34, + -2.0100000000000002, + -2.0100000000000002, + -2.04, + -2.11, + -2.1, + -1.97, + -1.87, + -1.6600000000000001, + -1.5, + -1.21, + -0.84, + -0.33, + 0.25, + 0.7000000000000001, + 1.0, + 1.1500000000000001, + 1.2, + 1.1500000000000001, + 0.86, + 0.4, + -0.04, + -0.35000000000000003, + -0.39, + -0.22, + 0.03, + 0.12, + 0.01, + -0.05, + -0.1, + 0.01, + 0.21, + 0.51, + 0.87, + 1.1, + 1.07, + 0.79, + 0.27, + -0.25, + -0.48, + -0.51, + -0.47000000000000003, + -0.33, + -0.34, + -0.27, + -0.36, + -0.52, + -0.62, + -0.8, + -0.63, + -0.51, + -0.16, + 0.38, + 0.7000000000000001, + 1.1, + 1.5, + 1.95, + 2.17, + 2.02, + 1.5, + 0.98, + 0.54, + 0.21, + -0.06, + -0.25, + -0.49, + -0.76, + -1.0, + -0.98, + -0.6900000000000001, + -0.41000000000000003, + -0.49, + -0.62, + -0.42, + -0.04, + 0.51, + 0.96, + 0.89, + 0.5700000000000001, + 0.02, + -0.47000000000000003, + -0.59, + -0.51, + -0.4, + -0.25, + -0.21, + -0.14, + -0.05, + 0.03, + -0.06, + -0.06, + -0.03, + 0.14, + -0.03, + -0.33, + -0.23, + 0.19, + 1.2, + 1.6, + 1.56, + 1.1, + 0.65, + 0.35000000000000003, + 0.17, + 0.38, + 0.67, + 0.87, + 0.6900000000000001, + 0.11, + -0.46, + -0.77, + -1.04, + -1.3900000000000001, + -1.69, + -1.59, + -1.1500000000000001, + -0.79, + -0.44, + -0.15, + -0.05, + -0.11, + 0.05, + 0.24, + 0.34, + 0.21, + 0.04, + -0.1, + -0.31, + -0.62, + -0.87, + -0.93, + -0.8, + -0.52, + -0.39, + -0.54, + -1.0, + -1.6500000000000001, + -2.35, + -2.7600000000000002, + -2.87, + -2.72, + -2.2600000000000002, + -1.72, + -1.11, + -0.74, + -0.55, + -0.5700000000000001, + -0.61, + -0.6, + -0.58, + -0.47000000000000003, + -0.38, + -0.33, + -0.24, + -0.22, + -0.16, + -0.19, + -0.24, + -0.36, + -0.54, + -0.6, + -0.55, + -0.42, + -0.3, + -0.15, + -0.09, + -0.11, + -0.18, + -0.41000000000000003, + -0.54, + -0.48, + -0.32, + -0.22, + -0.3, + -0.44, + -0.51, + -0.48, + -0.44, + -0.45, + -0.49, + -0.61, + -0.62, + -0.73, + -0.79, + -0.84, + -0.9400000000000001, + -0.78, + -0.54, + -0.19, + 0.08, + 0.12, + 0.03, + -0.05, + -0.12, + -0.17, + -0.26, + -0.36, + -0.43, + -0.44, + -0.48, + -0.47000000000000003, + -0.51, + -0.5, + -0.51, + -0.43, + -0.36, + -0.49, + -0.65, + -0.85, + -1.07, + -1.21, + -1.05, + -0.76, + -0.41000000000000003, + -0.24, + -0.31, + -0.47000000000000003, + -0.77, + -1.07, + -1.28, + -1.33, + -1.1300000000000001, + -0.77, + -0.36, + -0.07, + -0.07, + -0.29, + -0.4, + -0.32, + -0.39, + -0.4, + -0.52, + -0.5, + -0.4, + -0.62, + -1.05, + -1.53, + -1.59, + -1.35, + -1.09, + -0.93, + -0.88, + -0.85, + -0.78, + -0.67, + -0.44, + -0.23, + -0.19, + -0.29, + -0.41000000000000003, + -0.53, + -0.88, + -1.26, + -1.6500000000000001, + -1.8900000000000001, + -1.75, + -1.46, + -1.1300000000000001, + -1.1500000000000001, + -1.45, + -1.6500000000000001, + -1.51, + -1.1400000000000001, + -0.76, + -0.52, + -0.46, + -0.62, + -0.91, + -1.23, + -1.48, + -1.41, + -1.29, + -1.2, + -1.29, + -1.43, + -1.27, + -1.1400000000000001, + -0.62, + -0.29, + -0.21, + -0.39, + -0.99, + -1.56, + -1.96, + -2.0100000000000002, + -1.75, + -1.32, + -0.77, + -0.35000000000000003, + -0.21, + -0.43, + -0.67, + -0.74, + -0.47000000000000003, + -0.15, + 0.17, + 0.23, + 0.23, + 0.03, + -0.34, + -0.63, + -0.84, + -0.81, + -0.66, + -0.35000000000000003, + -0.11, + 0.05, + -0.07, + -0.44, + -0.97, + -1.41, + -1.48, + -1.27, + -0.92 + ], + [ + -2.7, + -3.38, + -3.75, + -4.08, + -4.47, + -4.71, + -4.8100000000000005, + -4.83, + -4.88, + -4.83, + -4.82, + -4.9, + -5.0600000000000005, + -5.47, + -5.89, + -6.22, + -6.51, + -6.59, + -6.45, + -6.13, + -5.8, + -5.71, + -5.92, + -6.24, + -6.21, + -5.45, + -4.44, + -3.4, + -2.81, + -2.66, + -2.7, + -2.68, + -2.41, + -1.98, + -1.6400000000000001, + -1.48, + -1.51, + -1.5, + -1.49, + -1.43, + -1.35, + -1.28, + -1.17, + -1.05, + -0.79, + -0.42, + 0.03, + 0.48, + 0.77, + 0.97, + 1.1, + 1.05, + 0.71, + 0.26, + -0.13, + -0.46, + -0.52, + -0.36, + -0.2, + -0.11, + -0.08, + -0.12, + -0.02, + 0.13, + 0.32, + 0.61, + 0.9, + 1.09, + 1.07, + 0.79, + 0.42, + 0.09, + -0.13, + -0.22, + -0.28, + -0.46, + -0.5, + -0.61, + -0.6900000000000001, + -0.8200000000000001, + -0.93, + -0.64, + -0.44, + -0.07, + 0.32, + 0.56, + 0.8, + 0.86, + 1.1500000000000001, + 1.58, + 1.78, + 1.59, + 1.0, + 0.43, + 0.03, + -0.26, + -0.42, + -0.6, + -0.8200000000000001, + -1.11, + -1.3900000000000001, + -1.3800000000000001, + -1.09, + -0.81, + -0.68, + -0.81, + -0.79, + -0.43, + -0.08, + 0.33, + 0.65, + 0.45, + 0.06, + -0.35000000000000003, + -0.66, + -0.72, + -0.66, + -0.55, + -0.51, + -0.47000000000000003, + -0.39, + -0.38, + -0.51, + -0.74, + -0.74, + -0.79, + -0.9500000000000001, + -1.17, + -1.06, + -0.21, + 0.86, + 1.67, + 1.69, + 1.44, + 1.09, + 0.92, + 0.91, + 0.92, + 1.1300000000000001, + 1.2, + 0.9500000000000001, + 0.43, + 0.04, + -0.34, + -0.66, + -1.01, + -1.2, + -1.1400000000000001, + -1.01, + -0.64, + -0.29, + 0.0, + 0.06, + 0.0, + -0.08, + 0.07, + 0.14, + -0.02, + -0.11, + -0.21, + -0.33, + -0.56, + -0.84, + -0.97, + -0.9, + -0.78, + -0.6, + -0.71, + -1.1300000000000001, + -1.67, + -2.39, + -2.89, + -3.0, + -2.75, + -2.27, + -1.7, + -1.08, + -0.5700000000000001, + -0.35000000000000003, + -0.24, + -0.22, + -0.23, + -0.22, + -0.27, + -0.35000000000000003, + -0.38, + -0.42, + -0.42, + -0.46, + -0.46, + -0.46, + -0.53, + -0.55, + -0.63, + -0.65, + -0.52, + -0.37, + -0.23, + -0.08, + -0.12, + -0.32, + -0.6, + -0.84, + -0.81, + -0.67, + -0.6, + -0.62, + -0.72, + -0.6900000000000001, + -0.55, + -0.5, + -0.49, + -0.49, + -0.38, + -0.38, + -0.42, + -0.49, + -0.66, + -0.77, + -0.8, + -0.56, + -0.24, + 0.01, + 0.1, + -0.01, + -0.18, + -0.28, + -0.34, + -0.45, + -0.56, + -0.61, + -0.54, + -0.4, + -0.37, + -0.34, + -0.3, + -0.24, + -0.18, + -0.33, + -0.46, + -0.5700000000000001, + -0.78, + -0.96, + -1.09, + -1.07, + -0.78, + -0.55, + -0.43, + -0.41000000000000003, + -0.54, + -0.7000000000000001, + -0.91, + -1.16, + -1.19, + -1.05, + -0.73, + -0.33, + -0.08, + 0.0, + -0.04, + -0.19, + -0.37, + -0.45, + -0.78, + -0.9, + -0.8300000000000001, + -0.73, + -0.77, + -1.21, + -1.46, + -1.44, + -1.23, + -1.0, + -0.92, + -0.93, + -0.86, + -0.79, + -0.6900000000000001, + -0.48, + -0.24, + -0.19, + -0.34, + -0.5700000000000001, + -0.64, + -0.67, + -1.04, + -1.43, + -1.67, + -1.73, + -1.44, + -1.3, + -1.3800000000000001, + -1.62, + -1.8, + -1.6600000000000001, + -1.27, + -0.8200000000000001, + -0.55, + -0.49, + -0.66, + -1.01, + -1.42, + -1.79, + -1.93, + -1.83, + -1.82, + -1.87, + -1.8, + -1.62, + -1.0, + -0.47000000000000003, + 0.05, + 0.12, + -0.29, + -0.9500000000000001, + -1.74, + -2.19, + -2.21, + -1.94, + -1.51, + -0.99, + -0.58, + -0.5, + -0.7000000000000001, + -0.99, + -1.1, + -1.0, + -0.7000000000000001, + -0.5700000000000001, + -0.5, + -0.54, + -0.72, + -0.88, + -1.17, + -1.26, + -1.21, + -1.01, + -0.67, + -0.37, + -0.19, + -0.19, + -0.52, + -0.96, + -1.31, + -1.47, + -1.34, + -1.1 + ], + [ + -2.59, + -3.31, + -3.67, + -3.95, + -4.42, + -4.7700000000000005, + -4.9, + -5.01, + -5.08, + -5.12, + -5.1000000000000005, + -5.14, + -5.29, + -5.5, + -5.92, + -6.36, + -6.65, + -6.75, + -6.5600000000000005, + -6.23, + -5.88, + -5.79, + -6.05, + -6.26, + -5.93, + -5.15, + -3.89, + -2.86, + -2.33, + -2.2, + -2.34, + -2.36, + -2.11, + -1.67, + -1.34, + -1.18, + -1.1400000000000001, + -1.1400000000000001, + -1.12, + -1.1, + -1.01, + -0.97, + -0.9500000000000001, + -0.89, + -0.8, + -0.54, + -0.21, + 0.13, + 0.48, + 0.75, + 0.93, + 0.87, + 0.56, + 0.15, + -0.24, + -0.41000000000000003, + -0.5, + -0.49, + -0.33, + -0.19, + -0.15, + -0.07, + 0.07, + 0.25, + 0.44, + 0.66, + 0.91, + 1.07, + 0.99, + 0.81, + 0.55, + 0.37, + 0.37, + 0.19, + -0.11, + -0.38, + -0.65, + -0.79, + -0.9400000000000001, + -1.07, + -0.9500000000000001, + -0.63, + -0.15, + 0.25, + 0.55, + 0.73, + 0.64, + 0.5700000000000001, + 0.6900000000000001, + 1.04, + 1.31, + 1.05, + 0.44, + -0.16, + -0.44, + -0.49, + -0.68, + -0.9, + -1.1300000000000001, + -1.52, + -1.83, + -1.83, + -1.54, + -1.22, + -1.09, + -0.86, + -0.8200000000000001, + -0.8, + -0.47000000000000003, + -0.14, + 0.18, + 0.3, + 0.01, + -0.33, + -0.6, + -0.74, + -0.65, + -0.61, + -0.61, + -0.61, + -0.53, + -0.55, + -0.73, + -1.04, + -1.28, + -1.34, + -1.5, + -1.71, + -1.49, + -0.54, + 0.47000000000000003, + 1.24, + 1.48, + 1.19, + 1.05, + 0.92, + 1.09, + 1.16, + 1.26, + 1.17, + 1.11, + 0.93, + 0.54, + 0.23, + -0.14, + -0.52, + -0.74, + -0.81, + -0.6900000000000001, + -0.67, + -0.33, + -0.02, + 0.01, + -0.15, + -0.27, + -0.36, + -0.4, + -0.44, + -0.52, + -0.4, + -0.38, + -0.53, + -0.75, + -0.99, + -1.09, + -1.02, + -1.02, + -1.01, + -1.16, + -1.68, + -2.15, + -2.68, + -2.73, + -2.46, + -2.13, + -1.54, + -1.05, + -0.5700000000000001, + -0.24, + -0.12, + -0.04, + -0.06, + -0.11, + -0.27, + -0.43, + -0.58, + -0.63, + -0.6900000000000001, + -0.73, + -0.71, + -0.68, + -0.56, + -0.56, + -0.64, + -0.68, + -0.78, + -0.64, + -0.44, + -0.32, + -0.25, + -0.48, + -0.8300000000000001, + -1.09, + -1.17, + -1.06, + -0.99, + -1.04, + -1.02, + -0.8300000000000001, + -0.63, + -0.49, + -0.48, + -0.4, + -0.26, + -0.19, + -0.21, + -0.44, + -0.62, + -0.75, + -0.79, + -0.65, + -0.33, + -0.1, + -0.06, + -0.14, + -0.33, + -0.43, + -0.48, + -0.63, + -0.8, + -0.8300000000000001, + -0.68, + -0.42, + -0.24, + -0.2, + -0.14, + -0.09, + -0.27, + -0.41000000000000003, + -0.5700000000000001, + -0.67, + -0.68, + -0.86, + -0.99, + -0.9500000000000001, + -0.81, + -0.61, + -0.49, + -0.46, + -0.42, + -0.47000000000000003, + -0.6900000000000001, + -0.93, + -1.08, + -1.0, + -0.75, + -0.47000000000000003, + -0.16, + -0.01, + 0.01, + -0.06, + -0.26, + -0.71, + -1.05, + -1.28, + -1.2, + -0.97, + -1.02, + -1.2, + -1.3900000000000001, + -1.3, + -1.06, + -0.9500000000000001, + -0.96, + -0.92, + -0.79, + -0.74, + -0.64, + -0.48, + -0.31, + -0.25, + -0.52, + -0.77, + -0.79, + -0.74, + -0.79, + -1.19, + -1.5, + -1.56, + -1.59, + -1.48, + -1.6, + -1.86, + -1.92, + -1.71, + -1.3, + -0.8200000000000001, + -0.51, + -0.46, + -0.63, + -0.98, + -1.44, + -1.79, + -2.09, + -2.19, + -2.21, + -2.22, + -2.16, + -1.6600000000000001, + -1.03, + -0.29, + 0.24, + 0.31, + -0.17, + -0.9, + -1.74, + -2.29, + -2.2600000000000002, + -1.92, + -1.41, + -1.01, + -0.68, + -0.61, + -0.86, + -1.22, + -1.41, + -1.41, + -1.33, + -1.21, + -1.21, + -1.24, + -1.25, + -1.4000000000000001, + -1.41, + -1.47, + -1.41, + -1.17, + -0.9500000000000001, + -0.66, + -0.45, + -0.46, + -0.56, + -0.9, + -1.22, + -1.33, + -1.32, + -1.18 + ], + [ + -2.68, + -3.34, + -3.56, + -3.79, + -4.24, + -4.71, + -4.97, + -5.12, + -5.2700000000000005, + -5.33, + -5.39, + -5.41, + -5.45, + -5.65, + -5.92, + -6.36, + -6.63, + -6.66, + -6.47, + -6.05, + -5.76, + -5.72, + -5.9, + -5.9, + -5.55, + -4.44, + -3.22, + -2.21, + -1.6500000000000001, + -1.67, + -1.86, + -1.92, + -1.71, + -1.3800000000000001, + -1.04, + -0.88, + -0.85, + -0.9400000000000001, + -0.9400000000000001, + -0.91, + -0.85, + -0.77, + -0.78, + -0.8200000000000001, + -0.79, + -0.6900000000000001, + -0.47000000000000003, + -0.19, + 0.11, + 0.46, + 0.6900000000000001, + 0.71, + 0.48, + 0.06, + -0.17, + -0.35000000000000003, + -0.45, + -0.46, + -0.43, + -0.28, + -0.14, + -0.04, + 0.12, + 0.31, + 0.52, + 0.72, + 0.89, + 0.96, + 0.92, + 0.75, + 0.67, + 0.79, + 0.86, + 0.75, + 0.32, + -0.2, + -0.55, + -0.8300000000000001, + -1.0, + -1.06, + -0.9400000000000001, + -0.53, + -0.02, + 0.32, + 0.5700000000000001, + 0.64, + 0.42, + 0.16, + 0.25, + 0.55, + 0.78, + 0.61, + -0.03, + -0.67, + -0.79, + -0.74, + -0.8300000000000001, + -1.11, + -1.56, + -1.97, + -2.2800000000000002, + -2.32, + -2.14, + -1.79, + -1.29, + -1.03, + -0.77, + -0.74, + -0.77, + -0.44, + -0.19, + -0.11, + -0.16, + -0.45, + -0.61, + -0.62, + -0.5700000000000001, + -0.54, + -0.6, + -0.64, + -0.56, + -0.5, + -0.71, + -1.11, + -1.42, + -1.58, + -1.75, + -1.81, + -1.52, + -0.96, + 0.05, + 0.64, + 0.6900000000000001, + 0.51, + 0.28, + 0.3, + 0.37, + 0.6900000000000001, + 0.66, + 0.78, + 0.85, + 0.99, + 0.9400000000000001, + 0.65, + 0.15, + -0.22, + -0.35000000000000003, + -0.44, + -0.71, + -0.73, + -0.61, + -0.31, + -0.12, + -0.32, + -0.6, + -0.73, + -0.98, + -1.1, + -1.02, + -0.79, + -0.5, + -0.51, + -0.6900000000000001, + -0.91, + -1.16, + -1.29, + -1.32, + -1.31, + -1.35, + -1.49, + -1.94, + -2.1, + -2.16, + -1.97, + -1.6300000000000001, + -1.42, + -0.96, + -0.66, + -0.39, + -0.21, + -0.2, + -0.17, + -0.3, + -0.43, + -0.64, + -0.81, + -0.91, + -0.9500000000000001, + -0.93, + -0.9, + -0.7000000000000001, + -0.55, + -0.5700000000000001, + -0.65, + -0.93, + -1.06, + -1.08, + -0.89, + -0.64, + -0.59, + -0.71, + -1.09, + -1.3900000000000001, + -1.45, + -1.41, + -1.3800000000000001, + -1.3800000000000001, + -1.25, + -1.0, + -0.71, + -0.52, + -0.47000000000000003, + -0.38, + -0.26, + -0.13, + -0.29, + -0.51, + -0.77, + -0.9, + -0.79, + -0.64, + -0.51, + -0.32, + -0.23, + -0.35000000000000003, + -0.48, + -0.54, + -0.58, + -0.74, + -1.04, + -1.1300000000000001, + -0.92, + -0.55, + -0.24, + -0.08, + -0.03, + -0.16, + -0.35000000000000003, + -0.74, + -0.89, + -0.8200000000000001, + -0.79, + -0.78, + -0.9, + -0.9, + -0.75, + -0.58, + -0.47000000000000003, + -0.33, + -0.2, + -0.2, + -0.44, + -0.79, + -1.03, + -1.02, + -0.84, + -0.59, + -0.35000000000000003, + -0.13, + -0.04, + -0.05, + -0.34, + -0.8200000000000001, + -1.32, + -1.56, + -1.47, + -1.21, + -1.09, + -1.26, + -1.28, + -1.11, + -0.91, + -0.85, + -0.84, + -0.71, + -0.59, + -0.51, + -0.53, + -0.49, + -0.37, + -0.5, + -0.76, + -0.96, + -0.98, + -0.78, + -0.76, + -0.93, + -1.25, + -1.49, + -1.54, + -1.73, + -1.9000000000000001, + -2.0, + -1.97, + -1.6600000000000001, + -1.1300000000000001, + -0.6900000000000001, + -0.41000000000000003, + -0.38, + -0.63, + -0.9400000000000001, + -1.33, + -1.72, + -1.96, + -2.19, + -2.34, + -2.39, + -2.06, + -1.59, + -0.9400000000000001, + -0.16, + 0.15, + 0.15, + -0.11, + -0.92, + -1.61, + -2.06, + -2.09, + -1.61, + -1.17, + -0.8, + -0.58, + -0.62, + -0.86, + -1.16, + -1.49, + -1.55, + -1.59, + -1.6, + -1.6500000000000001, + -1.67, + -1.68, + -1.6400000000000001, + -1.62, + -1.48, + -1.3800000000000001, + -1.34, + -1.1400000000000001, + -0.96, + -0.79, + -0.63, + -0.6900000000000001, + -0.84, + -1.05, + -1.21, + -1.22, + -1.1400000000000001 + ], + [ + -2.46, + -3.17, + -3.44, + -3.72, + -4.12, + -4.53, + -4.9, + -5.19, + -5.39, + -5.57, + -5.64, + -5.72, + -5.73, + -5.83, + -6.11, + -6.32, + -6.53, + -6.46, + -6.16, + -5.76, + -5.48, + -5.41, + -5.53, + -5.49, + -4.8, + -3.75, + -2.5100000000000002, + -1.41, + -0.97, + -0.98, + -1.24, + -1.3900000000000001, + -1.27, + -0.9400000000000001, + -0.68, + -0.53, + -0.59, + -0.71, + -0.87, + -0.85, + -0.76, + -0.71, + -0.7000000000000001, + -0.8, + -0.87, + -0.85, + -0.74, + -0.55, + -0.26, + 0.08, + 0.43, + 0.54, + 0.38, + 0.17, + -0.09, + -0.24, + -0.35000000000000003, + -0.44, + -0.43, + -0.33, + -0.18, + -0.04, + 0.13, + 0.39, + 0.62, + 0.79, + 0.92, + 0.91, + 0.8, + 0.71, + 0.8, + 1.05, + 1.25, + 1.26, + 0.76, + 0.14, + -0.41000000000000003, + -0.74, + -0.9400000000000001, + -1.01, + -0.76, + -0.32, + 0.06, + 0.36, + 0.5, + 0.5, + 0.26, + 0.02, + -0.13, + 0.22, + 0.49, + 0.27, + -0.36, + -0.86, + -1.06, + -0.92, + -0.9500000000000001, + -1.3800000000000001, + -1.8800000000000001, + -2.44, + -2.8000000000000003, + -2.94, + -2.77, + -2.29, + -1.72, + -1.02, + -0.72, + -0.68, + -0.72, + -0.71, + -0.51, + -0.46, + -0.5700000000000001, + -0.66, + -0.6900000000000001, + -0.6, + -0.47000000000000003, + -0.46, + -0.66, + -0.73, + -0.56, + -0.41000000000000003, + -0.62, + -1.07, + -1.44, + -1.62, + -1.67, + -1.72, + -1.62, + -1.04, + -0.52, + -0.09, + 0.0, + -0.24, + -0.6900000000000001, + -0.74, + -0.65, + -0.43, + -0.24, + -0.06, + 0.28, + 0.7000000000000001, + 0.93, + 0.54, + 0.12, + -0.09, + -0.18, + -0.34, + -0.68, + -0.98, + -0.88, + -0.59, + -0.41000000000000003, + -0.41000000000000003, + -0.66, + -1.06, + -1.35, + -1.6600000000000001, + -1.5, + -1.17, + -0.8, + -0.55, + -0.63, + -0.84, + -1.11, + -1.3900000000000001, + -1.48, + -1.49, + -1.48, + -1.5, + -1.56, + -1.68, + -1.49, + -1.29, + -1.2, + -1.05, + -1.02, + -0.8, + -0.67, + -0.59, + -0.55, + -0.6, + -0.58, + -0.68, + -0.86, + -1.0, + -1.1300000000000001, + -1.12, + -1.09, + -0.85, + -0.65, + -0.6, + -0.59, + -0.89, + -1.22, + -1.49, + -1.54, + -1.3900000000000001, + -1.1300000000000001, + -1.0, + -1.17, + -1.37, + -1.6400000000000001, + -1.71, + -1.6400000000000001, + -1.6500000000000001, + -1.61, + -1.5, + -1.2, + -0.86, + -0.71, + -0.6, + -0.52, + -0.36, + -0.35000000000000003, + -0.47000000000000003, + -0.78, + -1.05, + -1.01, + -0.86, + -0.66, + -0.55, + -0.55, + -0.49, + -0.52, + -0.63, + -0.68, + -0.72, + -0.86, + -1.23, + -1.47, + -1.21, + -0.74, + -0.34, + -0.08, + -0.05, + -0.17, + -0.66, + -1.11, + -1.29, + -1.16, + -0.91, + -0.87, + -0.85, + -0.8300000000000001, + -0.7000000000000001, + -0.53, + -0.36, + -0.17, + 0.01, + -0.05, + -0.27, + -0.75, + -1.08, + -1.09, + -0.93, + -0.67, + -0.46, + -0.32, + -0.17, + -0.23, + -0.46, + -0.91, + -1.46, + -1.74, + -1.62, + -1.35, + -1.22, + -1.23, + -1.18, + -0.97, + -0.78, + -0.62, + -0.53, + -0.42, + -0.26, + -0.24, + -0.38, + -0.49, + -0.6, + -0.7000000000000001, + -0.92, + -1.17, + -1.06, + -0.81, + -0.71, + -0.8300000000000001, + -1.04, + -1.31, + -1.62, + -1.87, + -2.1, + -2.15, + -1.9100000000000001, + -1.41, + -0.89, + -0.45, + -0.24, + -0.36, + -0.65, + -1.07, + -1.34, + -1.57, + -1.81, + -1.97, + -2.22, + -2.11, + -1.83, + -1.31, + -0.65, + -0.36, + -0.12, + -0.2, + -0.54, + -0.84, + -1.47, + -1.77, + -1.6, + -1.25, + -0.86, + -0.5700000000000001, + -0.5, + -0.52, + -0.74, + -1.02, + -1.18, + -1.3800000000000001, + -1.44, + -1.58, + -1.71, + -1.79, + -1.87, + -1.81, + -1.6500000000000001, + -1.47, + -1.34, + -1.32, + -1.35, + -1.19, + -0.98, + -0.78, + -0.68, + -0.75, + -0.92, + -1.06, + -1.12, + -1.05 + ], + [ + -2.65, + -3.33, + -3.5300000000000002, + -3.68, + -4.03, + -4.42, + -4.8, + -5.17, + -5.51, + -5.74, + -5.95, + -6.04, + -6.140000000000001, + -6.23, + -6.32, + -6.5, + -6.45, + -6.28, + -5.9, + -5.48, + -5.13, + -5.13, + -5.15, + -4.9, + -4.26, + -3.14, + -1.81, + -0.85, + -0.2, + -0.28, + -0.6, + -0.75, + -0.6900000000000001, + -0.52, + -0.26, + -0.2, + -0.31, + -0.55, + -0.76, + -0.84, + -0.75, + -0.72, + -0.8, + -0.89, + -1.03, + -1.06, + -0.99, + -0.89, + -0.63, + -0.3, + 0.02, + 0.31, + 0.3, + 0.15, + 0.0, + -0.16, + -0.27, + -0.39, + -0.44, + -0.34, + -0.22, + -0.08, + 0.18, + 0.5, + 0.79, + 0.96, + 0.98, + 0.88, + 0.73, + 0.67, + 0.76, + 1.03, + 1.45, + 1.34, + 1.02, + 0.39, + -0.24, + -0.61, + -0.84, + -0.78, + -0.5, + -0.05, + 0.31, + 0.52, + 0.65, + 0.66, + 0.45, + 0.02, + 0.02, + 0.04, + 0.27, + 0.21, + -0.4, + -1.04, + -1.06, + -0.93, + -1.12, + -1.55, + -2.21, + -2.86, + -3.45, + -3.64, + -3.47, + -2.94, + -1.99, + -1.16, + -0.63, + -0.64, + -0.74, + -0.75, + -0.74, + -0.73, + -0.84, + -0.8300000000000001, + -0.78, + -0.56, + -0.41000000000000003, + -0.61, + -0.8200000000000001, + -0.81, + -0.62, + -0.47000000000000003, + -0.58, + -1.03, + -1.45, + -1.52, + -1.54, + -1.58, + -1.5, + -1.32, + -0.88, + -0.49, + -0.41000000000000003, + -0.6900000000000001, + -1.07, + -1.61, + -1.45, + -1.3, + -0.97, + -0.8300000000000001, + -0.26, + 0.32, + 0.41000000000000003, + 0.18, + -0.17, + -0.3, + -0.21, + -0.33, + -0.72, + -1.12, + -1.12, + -0.78, + -0.5, + -0.48, + -0.63, + -1.03, + -1.54, + -1.76, + -1.8800000000000001, + -1.42, + -0.98, + -0.7000000000000001, + -0.61, + -0.81, + -1.08, + -1.3, + -1.5, + -1.6, + -1.59, + -1.57, + -1.51, + -1.29, + -1.02, + -0.76, + -0.74, + -0.88, + -0.9500000000000001, + -1.04, + -1.01, + -1.02, + -1.05, + -1.03, + -0.9400000000000001, + -0.88, + -0.93, + -1.11, + -1.17, + -1.19, + -0.9500000000000001, + -0.73, + -0.63, + -0.59, + -0.89, + -1.21, + -1.56, + -1.8800000000000001, + -1.97, + -1.8, + -1.6500000000000001, + -1.56, + -1.6, + -1.8, + -1.86, + -1.79, + -1.76, + -1.75, + -1.8, + -1.6500000000000001, + -1.42, + -1.18, + -0.96, + -0.86, + -0.76, + -0.68, + -0.62, + -0.8, + -1.1300000000000001, + -1.28, + -1.19, + -0.86, + -0.64, + -0.61, + -0.65, + -0.68, + -0.7000000000000001, + -0.86, + -0.9500000000000001, + -0.9400000000000001, + -1.18, + -1.51, + -1.6600000000000001, + -1.52, + -0.98, + -0.47000000000000003, + -0.21, + -0.09, + -0.41000000000000003, + -0.9400000000000001, + -1.43, + -1.6600000000000001, + -1.43, + -1.1, + -0.88, + -0.84, + -0.77, + -0.61, + -0.46, + -0.27, + -0.13, + -0.03, + 0.02, + -0.37, + -0.79, + -1.04, + -1.1400000000000001, + -0.88, + -0.66, + -0.5, + -0.4, + -0.39, + -0.39, + -0.58, + -1.0, + -1.42, + -1.72, + -1.71, + -1.3900000000000001, + -1.22, + -1.23, + -1.17, + -0.92, + -0.61, + -0.43, + -0.22, + -0.03, + 0.08, + -0.06, + -0.27, + -0.51, + -0.71, + -0.87, + -1.07, + -1.1, + -1.06, + -0.89, + -0.72, + -0.8, + -0.99, + -1.24, + -1.61, + -1.95, + -2.17, + -2.14, + -1.69, + -1.12, + -0.55, + -0.17, + -0.13, + -0.3, + -0.79, + -1.26, + -1.53, + -1.61, + -1.6600000000000001, + -1.77, + -1.71, + -1.69, + -1.3, + -0.8200000000000001, + -0.63, + -0.46, + -0.62, + -0.79, + -0.92, + -1.18, + -1.31, + -1.44, + -1.28, + -0.9400000000000001, + -0.6, + -0.49, + -0.43, + -0.54, + -0.64, + -0.8, + -0.91, + -0.98, + -1.09, + -1.3, + -1.52, + -1.78, + -1.9100000000000001, + -1.8900000000000001, + -1.69, + -1.41, + -1.27, + -1.25, + -1.3, + -1.27, + -0.97, + -0.73, + -0.5700000000000001, + -0.59, + -0.76, + -0.9400000000000001, + -0.97, + -0.91 + ], + [ + -2.38, + -3.16, + -3.54, + -3.74, + -3.99, + -4.32, + -4.72, + -5.16, + -5.57, + -5.92, + -6.19, + -6.41, + -6.53, + -6.66, + -6.72, + -6.68, + -6.5200000000000005, + -6.18, + -5.73, + -5.25, + -4.99, + -4.8500000000000005, + -4.8100000000000005, + -4.5600000000000005, + -3.77, + -2.69, + -1.51, + -0.29, + 0.19, + 0.31, + 0.1, + -0.13, + -0.16, + -0.04, + 0.02, + 0.05, + -0.13, + -0.46, + -0.67, + -0.74, + -0.79, + -0.84, + -0.97, + -1.16, + -1.26, + -1.26, + -1.24, + -1.1400000000000001, + -0.99, + -0.7000000000000001, + -0.37, + -0.16, + 0.02, + 0.05, + -0.04, + -0.09, + -0.21, + -0.33, + -0.41000000000000003, + -0.42, + -0.31, + -0.1, + 0.23, + 0.68, + 1.0, + 1.1500000000000001, + 1.05, + 0.86, + 0.65, + 0.52, + 0.62, + 0.86, + 1.07, + 1.26, + 0.9500000000000001, + 0.43, + -0.07, + -0.48, + -0.59, + -0.53, + -0.23, + 0.25, + 0.61, + 0.77, + 0.98, + 1.03, + 0.92, + 0.55, + 0.15, + 0.19, + 0.25, + 0.04, + -0.38, + -0.8300000000000001, + -1.05, + -1.03, + -1.1400000000000001, + -1.67, + -2.4, + -3.24, + -4.0200000000000005, + -4.48, + -4.34, + -3.54, + -2.39, + -1.27, + -0.73, + -0.61, + -0.75, + -0.74, + -0.71, + -0.78, + -0.8, + -0.86, + -0.64, + -0.5, + -0.55, + -0.73, + -0.93, + -0.99, + -0.7000000000000001, + -0.44, + -0.68, + -1.1300000000000001, + -1.36, + -1.4000000000000001, + -1.34, + -1.3900000000000001, + -1.49, + -1.3900000000000001, + -1.11, + -0.68, + -0.39, + -0.64, + -1.19, + -1.61, + -1.8900000000000001, + -1.49, + -1.31, + -0.96, + -0.63, + -0.19, + 0.03, + -0.24, + -0.63, + -0.55, + -0.31, + -0.38, + -0.8, + -1.1, + -1.1, + -0.86, + -0.55, + -0.41000000000000003, + -0.56, + -0.85, + -1.33, + -1.76, + -1.71, + -1.54, + -1.06, + -0.73, + -0.7000000000000001, + -0.8, + -1.03, + -1.25, + -1.48, + -1.67, + -1.77, + -1.73, + -1.55, + -1.2, + -0.75, + -0.47000000000000003, + -0.49, + -0.76, + -1.05, + -1.23, + -1.36, + -1.42, + -1.47, + -1.36, + -1.22, + -1.04, + -0.9500000000000001, + -1.08, + -1.17, + -1.04, + -0.8, + -0.63, + -0.53, + -0.85, + -1.19, + -1.55, + -1.92, + -2.13, + -2.21, + -2.17, + -2.04, + -2.0300000000000002, + -2.07, + -2.09, + -1.96, + -1.78, + -1.69, + -1.76, + -1.81, + -1.8, + -1.6, + -1.42, + -1.24, + -1.1300000000000001, + -1.05, + -0.96, + -0.96, + -1.12, + -1.36, + -1.53, + -1.31, + -0.87, + -0.59, + -0.63, + -0.73, + -0.75, + -0.85, + -1.08, + -1.34, + -1.3800000000000001, + -1.46, + -1.75, + -1.97, + -1.6300000000000001, + -1.1500000000000001, + -0.67, + -0.32, + -0.35000000000000003, + -0.59, + -1.1, + -1.7, + -1.78, + -1.51, + -1.16, + -0.88, + -0.76, + -0.67, + -0.53, + -0.38, + -0.29, + -0.24, + -0.2, + -0.31, + -0.45, + -0.75, + -1.03, + -0.9, + -0.73, + -0.55, + -0.43, + -0.44, + -0.48, + -0.52, + -0.64, + -0.91, + -1.32, + -1.6, + -1.58, + -1.44, + -1.29, + -1.23, + -1.1400000000000001, + -0.91, + -0.59, + -0.25, + 0.03, + 0.3, + 0.26, + 0.13, + -0.2, + -0.52, + -0.73, + -0.9400000000000001, + -1.05, + -1.09, + -1.0, + -0.86, + -0.87, + -0.93, + -1.12, + -1.36, + -1.59, + -1.94, + -2.05, + -1.82, + -1.4000000000000001, + -0.71, + -0.2, + 0.0, + 0.06, + -0.32, + -0.87, + -1.37, + -1.77, + -1.82, + -1.7, + -1.51, + -1.35, + -1.0, + -0.65, + -0.47000000000000003, + -0.44, + -0.72, + -1.05, + -1.34, + -1.41, + -1.41, + -1.42, + -1.3, + -1.05, + -0.73, + -0.53, + -0.42, + -0.45, + -0.56, + -0.68, + -0.72, + -0.79, + -0.72, + -0.86, + -1.07, + -1.42, + -1.76, + -1.98, + -1.99, + -1.75, + -1.4000000000000001, + -1.1, + -1.1, + -1.1400000000000001, + -1.01, + -0.8200000000000001, + -0.52, + -0.37, + -0.46, + -0.61, + -0.79, + -0.85, + -0.78 + ], + [ + -2.68, + -3.35, + -3.56, + -3.75, + -4.0, + -4.24, + -4.64, + -5.13, + -5.58, + -6.01, + -6.34, + -6.62, + -6.84, + -6.98, + -7.04, + -6.9, + -6.63, + -6.17, + -5.63, + -5.18, + -4.79, + -4.69, + -4.6000000000000005, + -4.15, + -3.5100000000000002, + -2.46, + -1.28, + -0.33, + 0.52, + 0.65, + 0.56, + 0.43, + 0.34, + 0.28, + 0.27, + 0.11, + -0.15, + -0.39, + -0.59, + -0.71, + -0.81, + -1.01, + -1.29, + -1.47, + -1.49, + -1.45, + -1.41, + -1.3800000000000001, + -1.23, + -1.05, + -0.85, + -0.63, + -0.39, + -0.19, + -0.04, + -0.03, + -0.11, + -0.26, + -0.41000000000000003, + -0.47000000000000003, + -0.4, + -0.15, + 0.26, + 0.8, + 1.24, + 1.23, + 1.11, + 0.81, + 0.52, + 0.46, + 0.41000000000000003, + 0.59, + 0.75, + 0.86, + 0.8, + 0.42, + -0.03, + -0.28, + -0.38, + -0.29, + 0.0, + 0.27, + 0.58, + 0.87, + 1.09, + 1.4000000000000001, + 1.23, + 1.02, + 0.53, + 0.23, + 0.16, + 0.06, + -0.42, + -0.84, + -0.96, + -0.96, + -1.19, + -1.6600000000000001, + -2.35, + -3.37, + -4.3100000000000005, + -5.07, + -4.98, + -4.0600000000000005, + -2.73, + -1.44, + -0.75, + -0.72, + -0.76, + -0.66, + -0.52, + -0.54, + -0.61, + -0.51, + -0.42, + -0.42, + -0.54, + -0.87, + -1.1400000000000001, + -0.99, + -0.71, + -0.64, + -0.81, + -1.12, + -1.32, + -1.2, + -1.09, + -1.2, + -1.4000000000000001, + -1.44, + -1.1300000000000001, + -0.7000000000000001, + -0.35000000000000003, + -0.32, + -0.9400000000000001, + -1.55, + -1.54, + -1.34, + -1.04, + -0.9400000000000001, + -0.72, + -0.4, + -0.37, + -0.61, + -0.74, + -0.6900000000000001, + -0.5, + -0.45, + -0.7000000000000001, + -1.01, + -1.04, + -0.79, + -0.53, + -0.4, + -0.41000000000000003, + -0.71, + -1.06, + -1.3800000000000001, + -1.58, + -1.31, + -1.0, + -0.77, + -0.6900000000000001, + -0.84, + -1.04, + -1.3, + -1.52, + -1.8, + -1.98, + -1.94, + -1.72, + -1.27, + -0.7000000000000001, + -0.36, + -0.45, + -0.79, + -1.21, + -1.51, + -1.6600000000000001, + -1.75, + -1.73, + -1.67, + -1.43, + -1.1500000000000001, + -1.12, + -1.1300000000000001, + -1.16, + -1.01, + -0.77, + -0.53, + -0.74, + -1.12, + -1.54, + -1.92, + -2.13, + -2.29, + -2.35, + -2.32, + -2.3000000000000003, + -2.31, + -2.35, + -2.21, + -1.97, + -1.6600000000000001, + -1.52, + -1.6500000000000001, + -1.81, + -1.74, + -1.68, + -1.48, + -1.3800000000000001, + -1.31, + -1.27, + -1.22, + -1.2, + -1.34, + -1.6, + -1.6500000000000001, + -1.37, + -0.96, + -0.67, + -0.64, + -0.79, + -0.8200000000000001, + -0.97, + -1.27, + -1.55, + -1.73, + -1.78, + -1.99, + -2.0, + -1.8, + -1.28, + -0.76, + -0.55, + -0.51, + -0.8, + -1.28, + -1.61, + -1.72, + -1.48, + -1.08, + -0.84, + -0.73, + -0.59, + -0.45, + -0.38, + -0.41000000000000003, + -0.47000000000000003, + -0.55, + -0.58, + -0.63, + -0.71, + -0.6900000000000001, + -0.64, + -0.48, + -0.35000000000000003, + -0.41000000000000003, + -0.44, + -0.46, + -0.51, + -0.61, + -0.81, + -1.12, + -1.43, + -1.54, + -1.44, + -1.33, + -1.28, + -1.1500000000000001, + -0.86, + -0.55, + -0.17, + 0.22, + 0.37, + 0.45, + 0.16, + -0.15, + -0.43, + -0.7000000000000001, + -0.9400000000000001, + -1.08, + -1.11, + -1.0, + -0.92, + -0.98, + -1.2, + -1.4000000000000001, + -1.58, + -1.76, + -1.81, + -1.76, + -1.46, + -0.89, + -0.33, + -0.04, + 0.17, + 0.02, + -0.21, + -0.8, + -1.48, + -1.85, + -2.05, + -1.85, + -1.46, + -0.97, + -0.47000000000000003, + -0.12, + -0.03, + -0.3, + -0.81, + -1.31, + -1.6300000000000001, + -1.76, + -1.62, + -1.48, + -1.21, + -0.93, + -0.61, + -0.38, + -0.3, + -0.38, + -0.52, + -0.74, + -0.91, + -0.88, + -0.88, + -0.8300000000000001, + -1.05, + -1.43, + -1.81, + -2.1, + -2.1, + -1.82, + -1.3900000000000001, + -1.02, + -0.8300000000000001, + -0.8300000000000001, + -0.76, + -0.52, + -0.29, + -0.27, + -0.34, + -0.5700000000000001, + -0.74, + -0.77, + -0.68 + ], + [ + -2.38, + -3.16, + -3.5100000000000002, + -3.75, + -4.0, + -4.2700000000000005, + -4.58, + -5.04, + -5.54, + -5.98, + -6.38, + -6.69, + -6.95, + -7.140000000000001, + -7.18, + -7.0600000000000005, + -6.66, + -6.21, + -5.62, + -5.07, + -4.71, + -4.45, + -4.2, + -3.88, + -3.14, + -2.29, + -1.34, + -0.34, + 0.32, + 0.79, + 0.84, + 0.8, + 0.68, + 0.53, + 0.34, + 0.07, + -0.2, + -0.41000000000000003, + -0.55, + -0.67, + -0.9, + -1.3, + -1.6400000000000001, + -1.76, + -1.75, + -1.6300000000000001, + -1.58, + -1.56, + -1.48, + -1.37, + -1.28, + -1.08, + -0.79, + -0.38, + -0.04, + 0.08, + 0.01, + -0.22, + -0.45, + -0.51, + -0.44, + -0.19, + 0.34, + 0.88, + 1.22, + 1.34, + 1.07, + 0.79, + 0.6, + 0.41000000000000003, + 0.45, + 0.42, + 0.56, + 0.65, + 0.58, + 0.33, + 0.02, + -0.18, + -0.24, + -0.18, + -0.12, + 0.01, + 0.17, + 0.43, + 0.8200000000000001, + 1.1500000000000001, + 1.3900000000000001, + 1.04, + 0.6900000000000001, + 0.33, + 0.06, + -0.18, + -0.52, + -0.86, + -0.98, + -1.01, + -1.11, + -1.44, + -2.0300000000000002, + -2.91, + -4.15, + -4.83, + -4.99, + -4.17, + -2.65, + -1.46, + -0.85, + -0.74, + -0.74, + -0.5700000000000001, + -0.37, + -0.22, + -0.25, + -0.17, + -0.18, + -0.22, + -0.65, + -1.04, + -1.1300000000000001, + -1.03, + -0.8300000000000001, + -0.74, + -0.9400000000000001, + -1.22, + -1.16, + -0.91, + -0.84, + -1.03, + -1.28, + -1.36, + -1.1300000000000001, + -0.59, + -0.19, + -0.28, + -0.64, + -1.12, + -1.31, + -0.96, + -0.61, + -0.7000000000000001, + -0.77, + -0.65, + -0.56, + -0.6900000000000001, + -0.85, + -0.74, + -0.53, + -0.5, + -0.6900000000000001, + -0.87, + -0.89, + -0.76, + -0.53, + -0.35000000000000003, + -0.37, + -0.49, + -0.78, + -1.07, + -1.1300000000000001, + -1.1300000000000001, + -0.89, + -0.6900000000000001, + -0.75, + -0.85, + -1.1, + -1.3800000000000001, + -1.7, + -2.02, + -2.18, + -2.2, + -1.92, + -1.42, + -0.8200000000000001, + -0.4, + -0.46, + -0.9400000000000001, + -1.43, + -1.76, + -1.96, + -1.99, + -1.98, + -1.86, + -1.71, + -1.48, + -1.3, + -1.31, + -1.32, + -1.09, + -0.8, + -0.74, + -0.93, + -1.37, + -1.87, + -2.13, + -2.2600000000000002, + -2.33, + -2.37, + -2.38, + -2.39, + -2.41, + -2.38, + -2.24, + -1.79, + -1.42, + -1.35, + -1.48, + -1.57, + -1.6500000000000001, + -1.48, + -1.37, + -1.32, + -1.36, + -1.3900000000000001, + -1.37, + -1.3900000000000001, + -1.51, + -1.69, + -1.75, + -1.51, + -1.06, + -0.8, + -0.86, + -0.93, + -0.93, + -1.0, + -1.3800000000000001, + -1.78, + -1.87, + -1.93, + -2.09, + -2.21, + -1.92, + -1.42, + -1.02, + -0.71, + -0.73, + -0.9500000000000001, + -1.28, + -1.57, + -1.6, + -1.37, + -1.1, + -0.91, + -0.74, + -0.58, + -0.47000000000000003, + -0.52, + -0.61, + -0.8, + -0.9, + -0.86, + -0.73, + -0.5700000000000001, + -0.41000000000000003, + -0.3, + -0.17, + -0.28, + -0.39, + -0.45, + -0.44, + -0.47000000000000003, + -0.54, + -0.74, + -1.02, + -1.28, + -1.46, + -1.47, + -1.3800000000000001, + -1.27, + -1.05, + -0.81, + -0.47000000000000003, + -0.15, + 0.15, + 0.44, + 0.33, + 0.18, + -0.09, + -0.35000000000000003, + -0.65, + -0.97, + -1.21, + -1.25, + -1.1, + -0.97, + -1.09, + -1.43, + -1.73, + -1.8800000000000001, + -1.8800000000000001, + -1.74, + -1.49, + -1.04, + -0.52, + -0.17, + 0.08, + 0.04, + 0.03, + -0.31, + -0.72, + -1.4000000000000001, + -1.99, + -2.14, + -2.04, + -1.51, + -0.78, + -0.14, + 0.33, + 0.34, + -0.09, + -0.66, + -1.26, + -1.69, + -1.75, + -1.6500000000000001, + -1.36, + -1.12, + -0.78, + -0.43, + -0.21, + -0.05, + -0.19, + -0.4, + -0.79, + -1.16, + -1.23, + -1.16, + -1.07, + -1.1300000000000001, + -1.3900000000000001, + -1.84, + -2.11, + -2.14, + -1.8800000000000001, + -1.35, + -0.89, + -0.63, + -0.53, + -0.45, + -0.31, + -0.21, + -0.18, + -0.38, + -0.6, + -0.76, + -0.8, + -0.8 + ], + [ + -2.7600000000000002, + -3.42, + -3.54, + -3.74, + -3.96, + -4.24, + -4.55, + -4.95, + -5.42, + -5.9, + -6.3100000000000005, + -6.640000000000001, + -6.92, + -7.15, + -7.19, + -6.97, + -6.6000000000000005, + -6.0600000000000005, + -5.5600000000000005, + -4.98, + -4.5, + -4.15, + -3.86, + -3.41, + -2.86, + -2.14, + -1.3800000000000001, + -0.59, + 0.15, + 0.59, + 0.9, + 0.91, + 0.8200000000000001, + 0.6, + 0.3, + 0.0, + -0.29, + -0.46, + -0.54, + -0.7000000000000001, + -1.12, + -1.59, + -1.93, + -2.1, + -1.8800000000000001, + -1.75, + -1.7, + -1.76, + -1.67, + -1.6300000000000001, + -1.55, + -1.5, + -1.07, + -0.5, + -0.06, + 0.18, + 0.04, + -0.28, + -0.51, + -0.55, + -0.39, + -0.05, + 0.4, + 0.92, + 1.26, + 1.21, + 1.07, + 0.88, + 0.7000000000000001, + 0.62, + 0.58, + 0.5, + 0.47000000000000003, + 0.5, + 0.49, + 0.29, + 0.01, + -0.2, + -0.25, + -0.35000000000000003, + -0.48, + -0.54, + -0.53, + -0.24, + 0.28, + 0.75, + 1.08, + 1.08, + 0.77, + 0.34, + 0.01, + -0.34, + -0.76, + -1.1, + -1.1500000000000001, + -1.05, + -1.03, + -1.1, + -1.5, + -2.2, + -3.13, + -4.0600000000000005, + -4.13, + -3.44, + -2.32, + -1.22, + -0.74, + -0.78, + -0.81, + -0.54, + -0.24, + -0.17, + -0.01, + -0.01, + 0.07, + -0.35000000000000003, + -0.79, + -1.12, + -1.25, + -1.02, + -0.8300000000000001, + -0.85, + -1.06, + -1.12, + -0.9400000000000001, + -0.71, + -0.64, + -0.86, + -1.2, + -1.26, + -0.9400000000000001, + -0.5, + -0.13, + -0.06, + -0.48, + -0.91, + -0.89, + -0.59, + -0.51, + -0.52, + -0.72, + -0.79, + -0.75, + -0.79, + -0.8200000000000001, + -0.74, + -0.58, + -0.52, + -0.61, + -0.75, + -0.8, + -0.72, + -0.55, + -0.35000000000000003, + -0.25, + -0.31, + -0.45, + -0.6, + -0.75, + -0.75, + -0.72, + -0.74, + -0.77, + -0.9400000000000001, + -1.1500000000000001, + -1.49, + -1.87, + -2.15, + -2.39, + -2.35, + -2.1, + -1.56, + -0.87, + -0.47000000000000003, + -0.61, + -1.08, + -1.6400000000000001, + -2.06, + -2.2, + -2.25, + -2.17, + -2.07, + -1.9100000000000001, + -1.76, + -1.56, + -1.52, + -1.33, + -1.17, + -0.88, + -0.78, + -1.05, + -1.57, + -1.95, + -2.2, + -2.3000000000000003, + -2.31, + -2.33, + -2.34, + -2.34, + -2.33, + -2.2800000000000002, + -1.95, + -1.55, + -1.17, + -1.0, + -1.16, + -1.35, + -1.32, + -1.22, + -1.16, + -1.1500000000000001, + -1.31, + -1.47, + -1.48, + -1.48, + -1.6, + -1.8, + -1.83, + -1.61, + -1.27, + -1.06, + -1.05, + -1.07, + -1.06, + -1.1300000000000001, + -1.43, + -1.8, + -2.0100000000000002, + -2.07, + -2.21, + -2.29, + -2.21, + -1.76, + -1.26, + -1.01, + -0.91, + -1.06, + -1.32, + -1.55, + -1.58, + -1.44, + -1.24, + -1.02, + -0.81, + -0.65, + -0.62, + -0.74, + -0.98, + -1.18, + -1.27, + -1.18, + -0.85, + -0.44, + -0.2, + 0.02, + -0.07, + -0.22, + -0.43, + -0.52, + -0.5, + -0.46, + -0.58, + -0.77, + -0.99, + -1.24, + -1.3800000000000001, + -1.41, + -1.34, + -1.1500000000000001, + -0.97, + -0.72, + -0.45, + -0.23, + 0.04, + 0.16, + 0.24, + 0.07, + -0.07, + -0.32, + -0.61, + -1.06, + -1.45, + -1.43, + -1.21, + -1.07, + -1.18, + -1.52, + -1.93, + -2.07, + -1.9000000000000001, + -1.6300000000000001, + -1.2, + -0.77, + -0.36, + -0.05, + -0.07, + -0.15, + -0.25, + -0.35000000000000003, + -0.87, + -1.43, + -1.96, + -2.33, + -2.13, + -1.6400000000000001, + -0.88, + 0.02, + 0.51, + 0.6, + 0.24, + -0.4, + -1.01, + -1.46, + -1.6300000000000001, + -1.42, + -1.18, + -0.9500000000000001, + -0.66, + -0.35000000000000003, + -0.01, + 0.03, + 0.06, + -0.36, + -0.8200000000000001, + -1.24, + -1.58, + -1.43, + -1.23, + -1.12, + -1.26, + -1.6300000000000001, + -2.0, + -2.08, + -1.81, + -1.34, + -0.78, + -0.41000000000000003, + -0.32, + -0.25, + -0.21, + -0.14, + -0.25, + -0.4, + -0.66, + -0.89, + -0.9400000000000001, + -0.93 + ], + [ + -2.48, + -3.19, + -3.45, + -3.62, + -3.84, + -4.1, + -4.43, + -4.82, + -5.28, + -5.75, + -6.2, + -6.5600000000000005, + -6.8500000000000005, + -7.0600000000000005, + -7.0600000000000005, + -6.8100000000000005, + -6.3, + -5.78, + -5.28, + -4.82, + -4.25, + -3.79, + -3.43, + -3.04, + -2.5500000000000003, + -2.0100000000000002, + -1.3800000000000001, + -0.78, + -0.16, + 0.38, + 0.67, + 0.85, + 0.75, + 0.5, + 0.19, + -0.16, + -0.41000000000000003, + -0.5, + -0.6, + -0.87, + -1.28, + -1.86, + -2.27, + -2.1, + -1.9000000000000001, + -1.7, + -1.7, + -1.72, + -1.78, + -1.7, + -1.75, + -1.54, + -1.24, + -0.61, + 0.0, + 0.19, + 0.0, + -0.35000000000000003, + -0.61, + -0.6, + -0.28, + 0.12, + 0.5700000000000001, + 1.0, + 1.12, + 1.1500000000000001, + 1.05, + 0.9500000000000001, + 0.84, + 0.79, + 0.63, + 0.53, + 0.39, + 0.39, + 0.39, + 0.29, + 0.03, + -0.26, + -0.53, + -0.74, + -0.96, + -1.21, + -1.12, + -0.65, + -0.06, + 0.66, + 1.03, + 1.21, + 0.98, + 0.48, + -0.03, + -0.58, + -1.09, + -1.34, + -1.44, + -1.2, + -0.91, + -0.81, + -0.8300000000000001, + -1.3800000000000001, + -2.05, + -2.68, + -2.9, + -2.42, + -1.56, + -0.8300000000000001, + -0.68, + -0.79, + -0.84, + -0.71, + -0.52, + -0.27, + -0.18, + 0.03, + -0.19, + -0.49, + -1.0, + -1.4000000000000001, + -1.21, + -0.93, + -0.76, + -0.81, + -0.9400000000000001, + -0.97, + -0.76, + -0.47000000000000003, + -0.5, + -0.84, + -1.11, + -1.08, + -0.8, + -0.34, + 0.0, + -0.05, + -0.27, + -0.62, + -0.74, + -0.54, + -0.33, + -0.5700000000000001, + -0.79, + -0.84, + -0.86, + -0.8300000000000001, + -0.84, + -0.7000000000000001, + -0.55, + -0.5, + -0.52, + -0.61, + -0.6900000000000001, + -0.65, + -0.5, + -0.32, + -0.13, + -0.05, + -0.06, + -0.13, + -0.29, + -0.4, + -0.6, + -0.77, + -0.89, + -1.01, + -1.3, + -1.62, + -1.96, + -2.2800000000000002, + -2.43, + -2.45, + -2.15, + -1.61, + -0.99, + -0.56, + -0.66, + -1.26, + -1.84, + -2.23, + -2.47, + -2.41, + -2.34, + -2.2, + -2.1, + -1.86, + -1.67, + -1.44, + -1.26, + -0.9500000000000001, + -0.72, + -0.7000000000000001, + -0.97, + -1.41, + -1.85, + -2.09, + -2.19, + -2.24, + -2.25, + -2.24, + -2.18, + -2.13, + -1.96, + -1.67, + -1.21, + -0.78, + -0.78, + -0.8300000000000001, + -1.01, + -1.06, + -1.03, + -0.91, + -1.07, + -1.3, + -1.48, + -1.55, + -1.56, + -1.6600000000000001, + -1.79, + -1.8800000000000001, + -1.7, + -1.37, + -1.17, + -1.1500000000000001, + -1.17, + -1.05, + -1.11, + -1.5, + -1.93, + -2.06, + -2.12, + -2.2800000000000002, + -2.52, + -2.36, + -2.11, + -1.6300000000000001, + -1.25, + -1.1, + -1.1500000000000001, + -1.3800000000000001, + -1.6300000000000001, + -1.72, + -1.6300000000000001, + -1.4000000000000001, + -1.1400000000000001, + -0.91, + -0.75, + -0.77, + -1.09, + -1.42, + -1.6500000000000001, + -1.76, + -1.47, + -1.03, + -0.47000000000000003, + 0.01, + 0.05, + 0.02, + -0.31, + -0.62, + -0.6900000000000001, + -0.59, + -0.58, + -0.6900000000000001, + -0.86, + -1.02, + -1.16, + -1.26, + -1.26, + -1.1500000000000001, + -1.03, + -0.87, + -0.7000000000000001, + -0.5700000000000001, + -0.38, + -0.21, + -0.08, + -0.03, + -0.05, + -0.18, + -0.29, + -0.73, + -1.25, + -1.56, + -1.6400000000000001, + -1.37, + -1.09, + -1.22, + -1.61, + -1.94, + -2.0300000000000002, + -1.83, + -1.3800000000000001, + -0.9500000000000001, + -0.56, + -0.22, + -0.15, + -0.2, + -0.37, + -0.55, + -0.76, + -1.01, + -1.59, + -2.1, + -2.34, + -2.34, + -1.84, + -1.09, + -0.23, + 0.55, + 0.68, + 0.39, + -0.15, + -0.77, + -1.21, + -1.34, + -1.23, + -1.03, + -0.8300000000000001, + -0.62, + -0.31, + -0.03, + 0.15, + -0.02, + -0.27, + -0.8, + -1.35, + -1.56, + -1.59, + -1.26, + -0.92, + -1.01, + -1.3800000000000001, + -1.77, + -1.96, + -1.79, + -1.3, + -0.77, + -0.39, + -0.18, + -0.23, + -0.2, + -0.23, + -0.27, + -0.48, + -0.74, + -0.9500000000000001, + -1.1500000000000001, + -1.18 + ], + [ + -2.81, + -3.43, + -3.45, + -3.44, + -3.66, + -3.87, + -4.21, + -4.62, + -5.07, + -5.57, + -6.01, + -6.42, + -6.72, + -6.9, + -6.87, + -6.42, + -5.92, + -5.37, + -4.89, + -4.43, + -3.92, + -3.44, + -3.0300000000000002, + -2.68, + -2.2800000000000002, + -1.83, + -1.37, + -0.88, + -0.39, + 0.06, + 0.42, + 0.5700000000000001, + 0.56, + 0.35000000000000003, + 0.02, + -0.3, + -0.51, + -0.64, + -0.77, + -1.02, + -1.58, + -2.13, + -2.22, + -2.09, + -1.71, + -1.46, + -1.52, + -1.62, + -1.6400000000000001, + -1.6300000000000001, + -1.59, + -1.53, + -1.1300000000000001, + -0.55, + -0.02, + 0.25, + 0.06, + -0.42, + -0.73, + -0.63, + -0.32, + 0.15, + 0.64, + 0.8300000000000001, + 1.0, + 0.96, + 1.0, + 0.96, + 0.92, + 0.72, + 0.59, + 0.36, + 0.17, + 0.24, + 0.37, + 0.32, + 0.08, + -0.36, + -0.9, + -1.22, + -1.51, + -1.58, + -1.28, + -0.68, + 0.28, + 1.02, + 1.54, + 1.6500000000000001, + 1.25, + 0.68, + -0.11, + -0.85, + -1.24, + -1.7, + -1.6, + -1.37, + -0.9500000000000001, + -0.48, + -0.56, + -0.6900000000000001, + -1.25, + -1.61, + -1.75, + -1.46, + -0.85, + -0.52, + -0.45, + -0.79, + -1.04, + -1.09, + -1.0, + -0.79, + -0.53, + -0.36, + -0.36, + -0.78, + -1.34, + -1.32, + -1.1400000000000001, + -0.76, + -0.52, + -0.62, + -0.78, + -0.73, + -0.5, + -0.34, + -0.47000000000000003, + -0.78, + -1.01, + -0.97, + -0.58, + -0.19, + -0.03, + 0.0, + -0.26, + -0.49, + -0.58, + -0.53, + -0.51, + -0.66, + -0.8, + -0.88, + -0.78, + -0.78, + -0.63, + -0.51, + -0.4, + -0.37, + -0.43, + -0.49, + -0.55, + -0.54, + -0.41000000000000003, + -0.19, + 0.03, + 0.25, + 0.35000000000000003, + 0.27, + 0.15, + -0.21, + -0.5, + -0.79, + -1.01, + -1.23, + -1.47, + -1.79, + -2.1, + -2.31, + -2.45, + -2.37, + -2.12, + -1.62, + -1.01, + -0.67, + -0.85, + -1.33, + -1.9000000000000001, + -2.34, + -2.47, + -2.5300000000000002, + -2.37, + -2.25, + -2.08, + -1.8900000000000001, + -1.58, + -1.27, + -0.97, + -0.61, + -0.45, + -0.41000000000000003, + -0.6900000000000001, + -1.11, + -1.5, + -1.81, + -1.97, + -2.06, + -2.09, + -2.05, + -1.99, + -1.86, + -1.68, + -1.37, + -0.93, + -0.7000000000000001, + -0.52, + -0.7000000000000001, + -0.81, + -0.9500000000000001, + -0.96, + -0.96, + -1.03, + -1.3, + -1.56, + -1.57, + -1.53, + -1.55, + -1.68, + -1.69, + -1.54, + -1.29, + -1.07, + -1.02, + -0.96, + -0.93, + -1.1, + -1.48, + -1.9000000000000001, + -2.16, + -2.17, + -2.29, + -2.46, + -2.57, + -2.23, + -1.8900000000000001, + -1.43, + -1.1400000000000001, + -1.19, + -1.44, + -1.74, + -1.93, + -1.82, + -1.53, + -1.23, + -0.9400000000000001, + -0.8200000000000001, + -1.02, + -1.37, + -1.8, + -2.15, + -2.1, + -1.94, + -1.17, + -0.44, + -0.1, + 0.09, + -0.16, + -0.5, + -0.81, + -0.9500000000000001, + -0.8300000000000001, + -0.72, + -0.79, + -0.9500000000000001, + -1.04, + -1.05, + -1.07, + -1.01, + -0.9400000000000001, + -0.91, + -0.85, + -0.85, + -0.77, + -0.59, + -0.42, + -0.26, + -0.23, + -0.25, + -0.31, + -0.53, + -0.86, + -1.37, + -1.77, + -1.71, + -1.3900000000000001, + -1.21, + -1.29, + -1.6, + -1.9000000000000001, + -1.92, + -1.56, + -1.11, + -0.71, + -0.37, + -0.24, + -0.15, + -0.34, + -0.5700000000000001, + -0.8300000000000001, + -1.1500000000000001, + -1.45, + -1.82, + -2.2, + -2.5, + -2.41, + -2.14, + -1.3800000000000001, + -0.47000000000000003, + 0.22, + 0.55, + 0.34, + -0.11, + -0.61, + -1.03, + -1.18, + -1.08, + -0.9, + -0.81, + -0.64, + -0.29, + 0.02, + 0.05, + -0.03, + -0.33, + -0.74, + -1.22, + -1.62, + -1.52, + -1.1500000000000001, + -0.8200000000000001, + -0.7000000000000001, + -1.09, + -1.61, + -1.85, + -1.78, + -1.3900000000000001, + -0.87, + -0.48, + -0.36, + -0.32, + -0.34, + -0.33, + -0.39, + -0.52, + -0.73, + -1.01, + -1.17, + -1.3800000000000001 + ], + [ + -2.57, + -3.2, + -3.4, + -3.44, + -3.52, + -3.75, + -3.99, + -4.39, + -4.84, + -5.29, + -5.75, + -6.12, + -6.44, + -6.59, + -6.4, + -6.0200000000000005, + -5.42, + -4.87, + -4.49, + -4.07, + -3.54, + -3.02, + -2.7, + -2.37, + -2.05, + -1.71, + -1.34, + -1.0, + -0.6, + -0.23, + 0.07, + 0.28, + 0.29, + 0.17, + -0.11, + -0.41000000000000003, + -0.63, + -0.79, + -0.99, + -1.36, + -1.85, + -2.18, + -2.32, + -1.85, + -1.4000000000000001, + -1.27, + -1.29, + -1.44, + -1.52, + -1.49, + -1.3900000000000001, + -1.28, + -0.99, + -0.47000000000000003, + 0.08, + 0.31, + 0.14, + -0.32, + -0.77, + -0.8300000000000001, + -0.51, + -0.07, + 0.28, + 0.55, + 0.5700000000000001, + 0.63, + 0.8, + 0.9500000000000001, + 0.76, + 0.55, + 0.33, + 0.1, + 0.07, + 0.12, + 0.36, + 0.54, + 0.22, + -0.48, + -1.07, + -1.58, + -1.74, + -1.55, + -1.09, + -0.04, + 0.97, + 1.82, + 2.37, + 2.1, + 1.7, + 0.77, + -0.16, + -0.66, + -1.29, + -1.52, + -1.82, + -1.49, + -1.0, + -0.74, + -0.53, + -0.8, + -0.99, + -1.32, + -1.29, + -0.99, + -0.56, + -0.22, + -0.39, + -0.73, + -1.24, + -1.55, + -1.56, + -1.47, + -0.9500000000000001, + -0.63, + -0.65, + -0.9500000000000001, + -1.16, + -1.25, + -0.8300000000000001, + -0.4, + -0.35000000000000003, + -0.46, + -0.56, + -0.49, + -0.31, + -0.23, + -0.38, + -0.72, + -0.9, + -0.72, + -0.41000000000000003, + -0.21, + -0.08, + -0.22, + -0.36, + -0.48, + -0.53, + -0.52, + -0.5700000000000001, + -0.7000000000000001, + -0.84, + -0.72, + -0.52, + -0.36, + -0.19, + -0.1, + -0.1, + -0.18, + -0.33, + -0.43, + -0.48, + -0.44, + -0.27, + -0.02, + 0.32, + 0.6, + 0.6900000000000001, + 0.67, + 0.3, + -0.06, + -0.51, + -0.87, + -1.18, + -1.44, + -1.7, + -1.98, + -2.19, + -2.33, + -2.34, + -2.24, + -1.97, + -1.57, + -1.08, + -0.8200000000000001, + -0.9500000000000001, + -1.41, + -1.8800000000000001, + -2.18, + -2.39, + -2.37, + -2.32, + -2.18, + -2.04, + -1.78, + -1.46, + -1.09, + -0.67, + -0.39, + -0.13, + -0.19, + -0.38, + -0.75, + -1.11, + -1.42, + -1.68, + -1.8, + -1.85, + -1.83, + -1.75, + -1.6400000000000001, + -1.49, + -1.21, + -0.9400000000000001, + -0.65, + -0.65, + -0.68, + -0.86, + -1.0, + -1.0, + -0.99, + -1.09, + -1.35, + -1.5, + -1.52, + -1.4000000000000001, + -1.27, + -1.26, + -1.25, + -1.12, + -0.91, + -0.73, + -0.66, + -0.65, + -0.74, + -0.9400000000000001, + -1.47, + -1.96, + -2.1, + -2.15, + -2.2600000000000002, + -2.43, + -2.44, + -2.32, + -1.87, + -1.4000000000000001, + -1.1300000000000001, + -1.09, + -1.42, + -1.9000000000000001, + -2.06, + -1.94, + -1.6300000000000001, + -1.22, + -0.96, + -0.9500000000000001, + -1.1300000000000001, + -1.61, + -2.1, + -2.36, + -2.5, + -2.0, + -1.33, + -0.62, + -0.11, + -0.14, + -0.33, + -0.71, + -1.1500000000000001, + -1.16, + -1.0, + -0.87, + -0.88, + -0.97, + -0.98, + -0.9400000000000001, + -0.84, + -0.79, + -0.79, + -0.81, + -0.97, + -1.05, + -0.96, + -0.81, + -0.51, + -0.32, + -0.3, + -0.41000000000000003, + -0.52, + -0.73, + -1.1400000000000001, + -1.6, + -1.83, + -1.77, + -1.52, + -1.32, + -1.41, + -1.6500000000000001, + -1.84, + -1.73, + -1.3800000000000001, + -0.88, + -0.48, + -0.39, + -0.27, + -0.32, + -0.4, + -0.6900000000000001, + -1.03, + -1.43, + -1.86, + -2.07, + -2.32, + -2.47, + -2.5500000000000003, + -2.2, + -1.67, + -0.84, + -0.1, + 0.19, + 0.1, + -0.25, + -0.64, + -0.99, + -1.11, + -1.04, + -0.92, + -0.8200000000000001, + -0.55, + -0.22, + -0.01, + 0.07, + -0.1, + -0.28, + -0.67, + -1.1400000000000001, + -1.45, + -1.55, + -1.1300000000000001, + -0.61, + -0.59, + -0.93, + -1.43, + -1.8, + -1.76, + -1.42, + -1.01, + -0.71, + -0.58, + -0.55, + -0.55, + -0.46, + -0.46, + -0.5, + -0.64, + -0.85, + -1.12, + -1.23 + ], + [ + -2.77, + -3.3200000000000003, + -3.38, + -3.42, + -3.49, + -3.64, + -3.87, + -4.16, + -4.55, + -4.94, + -5.33, + -5.66, + -5.92, + -5.99, + -5.8500000000000005, + -5.43, + -4.9, + -4.45, + -4.07, + -3.64, + -3.16, + -2.72, + -2.38, + -2.12, + -1.87, + -1.59, + -1.35, + -1.07, + -0.86, + -0.54, + -0.29, + -0.09, + 0.05, + -0.03, + -0.21, + -0.47000000000000003, + -0.6900000000000001, + -0.89, + -1.24, + -1.6400000000000001, + -2.0100000000000002, + -2.37, + -2.09, + -1.6400000000000001, + -1.23, + -0.99, + -1.16, + -1.34, + -1.3900000000000001, + -1.3800000000000001, + -1.27, + -1.1500000000000001, + -0.89, + -0.48, + -0.01, + 0.41000000000000003, + 0.26, + -0.25, + -0.73, + -1.03, + -0.89, + -0.56, + -0.2, + -0.05, + 0.0, + 0.27, + 0.51, + 0.64, + 0.5700000000000001, + 0.3, + 0.04, + -0.01, + -0.01, + 0.2, + 0.52, + 0.62, + 0.45, + -0.26, + -1.1400000000000001, + -1.55, + -1.54, + -1.24, + -0.37, + 0.65, + 1.74, + 2.66, + 2.68, + 2.63, + 1.77, + 0.9400000000000001, + 0.36, + -0.2, + -0.55, + -1.1500000000000001, + -1.47, + -1.73, + -1.43, + -1.22, + -1.28, + -1.42, + -1.71, + -1.8, + -1.73, + -1.25, + -0.71, + -0.32, + -0.3, + -0.73, + -1.28, + -1.77, + -2.09, + -1.6600000000000001, + -1.26, + -0.8, + -0.68, + -0.81, + -0.9400000000000001, + -0.77, + -0.38, + -0.18, + -0.21, + -0.35000000000000003, + -0.42, + -0.32, + -0.14, + -0.12, + -0.33, + -0.6, + -0.68, + -0.54, + -0.37, + -0.21, + -0.37, + -0.53, + -0.52, + -0.55, + -0.47000000000000003, + -0.43, + -0.53, + -0.71, + -0.71, + -0.48, + -0.2, + 0.21, + 0.28, + 0.36, + 0.21, + -0.07, + -0.25, + -0.41000000000000003, + -0.46, + -0.36, + -0.17, + 0.19, + 0.58, + 0.87, + 1.07, + 0.78, + 0.43, + -0.1, + -0.59, + -1.03, + -1.4000000000000001, + -1.67, + -1.9100000000000001, + -2.13, + -2.27, + -2.31, + -2.19, + -2.05, + -1.82, + -1.48, + -1.1500000000000001, + -0.97, + -1.1400000000000001, + -1.49, + -1.72, + -1.96, + -2.07, + -2.13, + -2.11, + -2.06, + -1.9000000000000001, + -1.69, + -1.35, + -0.97, + -0.58, + -0.2, + -0.04, + 0.01, + -0.19, + -0.43, + -0.78, + -1.1, + -1.35, + -1.53, + -1.6, + -1.61, + -1.56, + -1.51, + -1.3800000000000001, + -1.23, + -1.0, + -0.89, + -0.84, + -0.89, + -0.99, + -1.05, + -1.07, + -1.0, + -1.02, + -1.22, + -1.43, + -1.3900000000000001, + -1.18, + -0.98, + -0.73, + -0.65, + -0.55, + -0.38, + -0.27, + -0.23, + -0.35000000000000003, + -0.49, + -0.9400000000000001, + -1.45, + -1.8800000000000001, + -2.1, + -2.13, + -2.19, + -2.32, + -2.37, + -2.17, + -1.78, + -1.32, + -0.92, + -1.03, + -1.43, + -1.87, + -2.14, + -1.99, + -1.58, + -1.21, + -1.03, + -1.02, + -1.31, + -1.73, + -2.2, + -2.5500000000000003, + -2.47, + -2.15, + -1.4000000000000001, + -0.66, + -0.37, + -0.32, + -0.52, + -0.88, + -1.17, + -1.34, + -1.1300000000000001, + -0.91, + -0.9, + -0.9400000000000001, + -0.92, + -0.77, + -0.66, + -0.62, + -0.65, + -0.85, + -1.05, + -1.17, + -1.18, + -0.86, + -0.52, + -0.31, + -0.24, + -0.42, + -0.67, + -0.97, + -1.42, + -1.77, + -1.96, + -1.87, + -1.6600000000000001, + -1.53, + -1.57, + -1.73, + -1.78, + -1.6500000000000001, + -1.23, + -0.76, + -0.56, + -0.45, + -0.53, + -0.55, + -0.59, + -0.71, + -1.16, + -1.6500000000000001, + -1.98, + -2.21, + -2.31, + -2.41, + -2.39, + -2.2600000000000002, + -1.73, + -1.12, + -0.49, + -0.18, + -0.24, + -0.46, + -0.8, + -1.06, + -1.16, + -1.05, + -0.91, + -0.71, + -0.48, + -0.17, + 0.06, + -0.04, + -0.18, + -0.34, + -0.52, + -0.99, + -1.43, + -1.4000000000000001, + -1.07, + -0.64, + -0.46, + -0.81, + -1.33, + -1.6400000000000001, + -1.59, + -1.32, + -1.01, + -0.79, + -0.72, + -0.73, + -0.62, + -0.54, + -0.42, + -0.41000000000000003, + -0.46, + -0.5700000000000001, + -0.78, + -0.97 + ], + [ + -2.56, + -3.11, + -3.2800000000000002, + -3.3000000000000003, + -3.35, + -3.48, + -3.67, + -3.94, + -4.22, + -4.55, + -4.79, + -5.0600000000000005, + -5.18, + -5.23, + -5.13, + -4.8, + -4.38, + -3.96, + -3.6, + -3.21, + -2.8000000000000003, + -2.38, + -2.12, + -1.8900000000000001, + -1.6600000000000001, + -1.43, + -1.24, + -1.16, + -0.98, + -0.86, + -0.62, + -0.41000000000000003, + -0.26, + -0.17, + -0.34, + -0.52, + -0.71, + -1.0, + -1.33, + -1.74, + -2.15, + -2.2, + -2.0100000000000002, + -1.48, + -1.0, + -0.99, + -1.1, + -1.25, + -1.31, + -1.23, + -1.1400000000000001, + -1.03, + -0.97, + -0.66, + -0.28, + 0.06, + 0.23, + -0.18, + -0.8, + -1.17, + -1.33, + -1.1400000000000001, + -0.76, + -0.59, + -0.34, + -0.14, + 0.21, + 0.41000000000000003, + 0.26, + -0.01, + -0.1, + -0.05, + 0.07, + 0.31, + 0.55, + 0.8, + 0.5, + -0.08, + -0.8300000000000001, + -1.22, + -1.1500000000000001, + -0.61, + 0.2, + 1.17, + 2.2, + 2.52, + 2.72, + 2.24, + 1.6600000000000001, + 1.3, + 0.98, + 0.92, + 0.73, + -0.09, + -1.1, + -1.52, + -1.98, + -2.0, + -2.4, + -2.66, + -2.99, + -3.0700000000000003, + -2.81, + -2.2, + -1.25, + -0.67, + -0.32, + -0.5700000000000001, + -1.12, + -1.73, + -1.83, + -1.69, + -1.12, + -0.6900000000000001, + -0.5700000000000001, + -0.59, + -0.55, + -0.28, + -0.09, + -0.01, + -0.15, + -0.36, + -0.35000000000000003, + -0.16, + -0.04, + -0.1, + -0.3, + -0.5, + -0.58, + -0.5, + -0.34, + -0.48, + -0.63, + -0.7000000000000001, + -0.73, + -0.52, + -0.37, + -0.34, + -0.41000000000000003, + -0.63, + -0.6900000000000001, + -0.42, + 0.08, + 0.33, + 0.5700000000000001, + 0.46, + 0.23, + -0.05, + -0.26, + -0.38, + -0.4, + -0.32, + -0.07, + 0.29, + 0.71, + 1.1, + 1.09, + 0.93, + 0.39, + -0.18, + -0.75, + -1.27, + -1.62, + -1.9000000000000001, + -2.11, + -2.2800000000000002, + -2.36, + -2.3000000000000003, + -2.16, + -1.92, + -1.71, + -1.48, + -1.22, + -1.19, + -1.34, + -1.47, + -1.6300000000000001, + -1.6400000000000001, + -1.7, + -1.79, + -1.84, + -1.83, + -1.75, + -1.55, + -1.27, + -0.92, + -0.54, + -0.23, + 0.01, + 0.02, + -0.02, + -0.28, + -0.54, + -0.87, + -1.1300000000000001, + -1.3, + -1.4000000000000001, + -1.43, + -1.45, + -1.42, + -1.37, + -1.26, + -1.17, + -1.11, + -1.06, + -1.1, + -1.1, + -1.12, + -1.04, + -0.89, + -0.93, + -1.04, + -1.23, + -1.3, + -1.06, + -0.67, + -0.38, + -0.1, + 0.03, + 0.12, + 0.2, + 0.1, + -0.04, + -0.47000000000000003, + -0.92, + -1.47, + -1.9100000000000001, + -2.07, + -2.12, + -2.19, + -2.2800000000000002, + -2.2600000000000002, + -2.1, + -1.71, + -1.2, + -0.9500000000000001, + -0.9500000000000001, + -1.3800000000000001, + -1.8800000000000001, + -2.06, + -1.8800000000000001, + -1.52, + -1.23, + -1.07, + -1.17, + -1.42, + -1.84, + -2.29, + -2.49, + -2.5100000000000002, + -2.07, + -1.43, + -0.87, + -0.55, + -0.5, + -0.5700000000000001, + -0.81, + -1.11, + -1.21, + -1.1500000000000001, + -0.97, + -0.9, + -0.92, + -0.85, + -0.68, + -0.5, + -0.45, + -0.62, + -0.8300000000000001, + -1.09, + -1.26, + -1.18, + -0.93, + -0.5, + -0.16, + -0.21, + -0.37, + -0.72, + -1.1500000000000001, + -1.57, + -1.96, + -2.06, + -2.0100000000000002, + -1.84, + -1.76, + -1.78, + -1.8, + -1.8, + -1.61, + -1.23, + -0.87, + -0.65, + -0.79, + -0.91, + -0.87, + -0.8200000000000001, + -0.96, + -1.25, + -1.75, + -2.13, + -2.22, + -2.19, + -2.24, + -2.23, + -2.06, + -1.81, + -1.24, + -0.77, + -0.5, + -0.52, + -0.74, + -1.02, + -1.24, + -1.23, + -1.1, + -0.81, + -0.58, + -0.34, + -0.07, + -0.04, + -0.16, + -0.3, + -0.41000000000000003, + -0.5700000000000001, + -0.8300000000000001, + -1.23, + -1.3900000000000001, + -1.04, + -0.5700000000000001, + -0.48, + -0.72, + -1.16, + -1.3900000000000001, + -1.34, + -1.06, + -0.79, + -0.7000000000000001, + -0.66, + -0.66, + -0.62, + -0.45, + -0.33, + -0.28, + -0.25, + -0.33, + -0.41000000000000003, + -0.56 + ], + [ + -2.67, + -3.14, + -3.2, + -3.13, + -3.18, + -3.21, + -3.42, + -3.66, + -3.92, + -4.09, + -4.3, + -4.38, + -4.47, + -4.43, + -4.33, + -4.19, + -3.84, + -3.48, + -3.1, + -2.81, + -2.42, + -2.14, + -1.8900000000000001, + -1.6600000000000001, + -1.42, + -1.21, + -1.05, + -1.06, + -1.12, + -1.02, + -0.92, + -0.7000000000000001, + -0.48, + -0.43, + -0.56, + -0.75, + -0.87, + -1.08, + -1.36, + -1.72, + -2.0, + -2.11, + -1.84, + -1.3800000000000001, + -1.1300000000000001, + -1.09, + -1.16, + -1.2, + -1.1500000000000001, + -0.99, + -0.9, + -0.9, + -0.92, + -1.09, + -0.77, + -0.47000000000000003, + -0.29, + -0.32, + -0.85, + -1.41, + -1.6400000000000001, + -1.46, + -1.17, + -0.76, + -0.53, + -0.28, + -0.01, + 0.1, + 0.0, + -0.19, + -0.27, + -0.11, + 0.15, + 0.28, + 0.42, + 0.55, + 0.5, + -0.05, + -0.49, + -0.78, + -0.63, + -0.14, + 0.51, + 1.4000000000000001, + 1.77, + 2.09, + 1.92, + 1.51, + 1.53, + 1.44, + 1.9100000000000001, + 2.38, + 2.07, + 1.35, + -0.03, + -1.33, + -1.96, + -2.82, + -3.27, + -4.11, + -4.37, + -4.6000000000000005, + -4.16, + -3.0500000000000003, + -1.98, + -0.78, + -0.32, + -0.24, + -0.6900000000000001, + -1.12, + -1.35, + -1.1400000000000001, + -0.71, + -0.46, + -0.38, + -0.36, + -0.25, + -0.07, + 0.09, + 0.02, + -0.23, + -0.33, + -0.23, + -0.06, + 0.0, + -0.09, + -0.32, + -0.54, + -0.68, + -0.63, + -0.6900000000000001, + -0.76, + -0.8200000000000001, + -0.84, + -0.68, + -0.44, + -0.25, + -0.16, + -0.41000000000000003, + -0.7000000000000001, + -0.81, + -0.59, + -0.18, + 0.22, + 0.31, + 0.22, + -0.01, + -0.17, + -0.3, + -0.24, + -0.24, + -0.2, + -0.01, + 0.29, + 0.71, + 0.96, + 1.08, + 0.8300000000000001, + 0.38, + -0.3, + -0.96, + -1.47, + -1.87, + -2.13, + -2.33, + -2.45, + -2.49, + -2.39, + -2.18, + -1.95, + -1.72, + -1.5, + -1.37, + -1.35, + -1.45, + -1.57, + -1.46, + -1.4000000000000001, + -1.37, + -1.4000000000000001, + -1.52, + -1.58, + -1.55, + -1.43, + -1.19, + -0.91, + -0.5700000000000001, + -0.29, + -0.1, + 0.0, + -0.07, + -0.2, + -0.48, + -0.76, + -1.0, + -1.17, + -1.27, + -1.35, + -1.3800000000000001, + -1.4000000000000001, + -1.37, + -1.32, + -1.27, + -1.22, + -1.21, + -1.18, + -1.18, + -1.12, + -1.0, + -0.88, + -0.81, + -0.96, + -1.12, + -1.17, + -1.03, + -0.6, + -0.07, + 0.23, + 0.46, + 0.55, + 0.5, + 0.4, + -0.01, + -0.43, + -1.01, + -1.58, + -1.9100000000000001, + -2.1, + -2.14, + -2.21, + -2.24, + -2.23, + -2.07, + -1.77, + -1.36, + -1.02, + -1.12, + -1.42, + -1.82, + -1.92, + -1.74, + -1.45, + -1.21, + -1.23, + -1.33, + -1.59, + -1.96, + -2.25, + -2.47, + -2.36, + -2.0100000000000002, + -1.5, + -1.01, + -0.73, + -0.6, + -0.55, + -0.56, + -0.84, + -1.08, + -1.06, + -1.02, + -0.97, + -0.96, + -0.86, + -0.6, + -0.4, + -0.37, + -0.52, + -0.8300000000000001, + -1.1, + -1.23, + -1.2, + -0.89, + -0.47000000000000003, + -0.21, + -0.15, + -0.41000000000000003, + -0.73, + -1.19, + -1.72, + -2.02, + -2.16, + -2.1, + -2.0300000000000002, + -1.94, + -1.8900000000000001, + -1.8900000000000001, + -1.83, + -1.6400000000000001, + -1.29, + -0.9400000000000001, + -0.92, + -1.07, + -1.28, + -1.33, + -1.22, + -1.23, + -1.53, + -1.92, + -2.2, + -2.2600000000000002, + -2.19, + -2.09, + -2.04, + -1.8900000000000001, + -1.6300000000000001, + -1.3, + -0.88, + -0.68, + -0.72, + -1.0, + -1.27, + -1.42, + -1.41, + -1.04, + -0.71, + -0.45, + -0.2, + -0.09, + -0.05, + -0.24, + -0.46, + -0.51, + -0.56, + -0.8200000000000001, + -1.16, + -1.27, + -1.08, + -0.67, + -0.44, + -0.67, + -0.99, + -1.18, + -1.05, + -0.79, + -0.58, + -0.46, + -0.46, + -0.46, + -0.43, + -0.31, + -0.23, + -0.17, + -0.16, + -0.14, + -0.2, + -0.21 + ], + [ + -2.5100000000000002, + -3.0100000000000002, + -3.14, + -3.08, + -3.0500000000000003, + -3.11, + -3.18, + -3.41, + -3.59, + -3.7600000000000002, + -3.83, + -3.89, + -3.8000000000000003, + -3.74, + -3.75, + -3.63, + -3.42, + -3.06, + -2.77, + -2.46, + -2.22, + -1.97, + -1.73, + -1.46, + -1.2, + -0.93, + -0.91, + -0.99, + -1.1400000000000001, + -1.25, + -1.1500000000000001, + -0.96, + -0.78, + -0.78, + -0.9400000000000001, + -1.19, + -1.3, + -1.22, + -1.4000000000000001, + -1.6, + -1.84, + -1.92, + -1.71, + -1.47, + -1.3, + -1.27, + -1.3, + -1.18, + -0.96, + -0.77, + -0.5700000000000001, + -0.64, + -0.91, + -1.11, + -1.45, + -1.1, + -0.73, + -0.74, + -0.98, + -1.49, + -1.72, + -1.62, + -1.11, + -0.6900000000000001, + -0.46, + -0.26, + -0.2, + -0.18, + -0.26, + -0.41000000000000003, + -0.38, + -0.18, + 0.0, + 0.06, + 0.15, + 0.2, + 0.13, + -0.04, + -0.4, + -0.37, + -0.22, + 0.05, + 0.66, + 1.05, + 1.41, + 1.3800000000000001, + 1.1500000000000001, + 1.22, + 1.25, + 1.9100000000000001, + 2.71, + 3.38, + 3.61, + 2.52, + 1.08, + -0.5, + -1.87, + -2.77, + -3.93, + -4.63, + -5.44, + -5.42, + -4.79, + -3.61, + -1.87, + -0.66, + 0.12, + 0.25, + -0.04, + -0.42, + -0.59, + -0.44, + -0.27, + -0.13, + -0.18, + -0.22, + -0.12, + 0.04, + 0.08, + -0.07, + -0.21, + -0.21, + -0.08, + 0.05, + 0.08, + -0.12, + -0.38, + -0.76, + -0.9400000000000001, + -1.19, + -1.26, + -1.19, + -1.16, + -0.91, + -0.64, + -0.32, + -0.05, + -0.14, + -0.48, + -0.9500000000000001, + -1.27, + -1.07, + -0.6900000000000001, + -0.33, + -0.14, + -0.21, + -0.29, + -0.36, + -0.12, + -0.03, + 0.01, + 0.03, + 0.02, + 0.26, + 0.43, + 0.68, + 0.84, + 0.74, + 0.27, + -0.36, + -1.11, + -1.75, + -2.12, + -2.38, + -2.52, + -2.58, + -2.57, + -2.48, + -2.2600000000000002, + -2.0100000000000002, + -1.78, + -1.57, + -1.44, + -1.47, + -1.57, + -1.55, + -1.45, + -1.24, + -1.12, + -1.12, + -1.19, + -1.33, + -1.36, + -1.29, + -1.1300000000000001, + -0.88, + -0.62, + -0.38, + -0.23, + -0.15, + -0.16, + -0.31, + -0.51, + -0.77, + -0.9500000000000001, + -1.11, + -1.2, + -1.28, + -1.36, + -1.4000000000000001, + -1.3900000000000001, + -1.35, + -1.29, + -1.25, + -1.21, + -1.19, + -1.16, + -1.1, + -1.0, + -0.92, + -0.88, + -0.9500000000000001, + -1.1, + -1.1500000000000001, + -0.96, + -0.52, + 0.01, + 0.5, + 0.72, + 0.77, + 0.73, + 0.39, + 0.0, + -0.5700000000000001, + -1.1400000000000001, + -1.6, + -1.96, + -2.07, + -2.14, + -2.15, + -2.18, + -2.15, + -2.09, + -1.87, + -1.6500000000000001, + -1.4000000000000001, + -1.3800000000000001, + -1.62, + -1.74, + -1.79, + -1.57, + -1.32, + -1.3, + -1.34, + -1.52, + -1.77, + -1.98, + -2.24, + -2.31, + -2.23, + -1.98, + -1.58, + -1.17, + -0.89, + -0.63, + -0.4, + -0.41000000000000003, + -0.56, + -0.87, + -1.12, + -1.11, + -1.11, + -1.07, + -0.88, + -0.61, + -0.32, + -0.26, + -0.49, + -0.79, + -1.11, + -1.27, + -1.18, + -0.89, + -0.55, + -0.29, + -0.3, + -0.49, + -0.78, + -1.19, + -1.68, + -2.09, + -2.19, + -2.2, + -2.11, + -2.02, + -1.97, + -1.92, + -1.84, + -1.62, + -1.29, + -1.04, + -1.0, + -1.34, + -1.6300000000000001, + -1.71, + -1.67, + -1.67, + -1.8900000000000001, + -2.16, + -2.37, + -2.34, + -2.21, + -2.06, + -1.8800000000000001, + -1.72, + -1.48, + -1.18, + -0.91, + -0.74, + -0.86, + -1.1300000000000001, + -1.44, + -1.6, + -1.35, + -1.02, + -0.62, + -0.34, + -0.23, + -0.13, + -0.12, + -0.25, + -0.48, + -0.62, + -0.64, + -0.77, + -1.1, + -1.31, + -1.09, + -0.74, + -0.53, + -0.55, + -0.8300000000000001, + -0.97, + -0.86, + -0.64, + -0.43, + -0.27, + -0.23, + -0.24, + -0.22, + -0.18, + -0.12, + -0.15, + -0.17, + -0.14, + -0.1, + -0.11 + ], + [ + -2.56, + -3.0100000000000002, + -3.13, + -3.12, + -3.1, + -3.12, + -3.16, + -3.2, + -3.36, + -3.41, + -3.48, + -3.49, + -3.4, + -3.24, + -3.22, + -3.3000000000000003, + -3.13, + -2.83, + -2.54, + -2.31, + -2.1, + -1.9100000000000001, + -1.68, + -1.3900000000000001, + -1.07, + -0.91, + -0.89, + -1.09, + -1.35, + -1.48, + -1.48, + -1.3, + -1.12, + -1.16, + -1.5, + -1.75, + -1.67, + -1.58, + -1.43, + -1.55, + -1.73, + -1.79, + -1.73, + -1.56, + -1.46, + -1.45, + -1.36, + -1.17, + -0.91, + -0.61, + -0.42, + -0.34, + -0.66, + -1.1400000000000001, + -1.42, + -1.51, + -1.1300000000000001, + -0.98, + -1.2, + -1.49, + -1.73, + -1.43, + -0.9400000000000001, + -0.48, + -0.21, + -0.26, + -0.33, + -0.42, + -0.56, + -0.59, + -0.51, + -0.34, + -0.26, + -0.2, + -0.18, + -0.13, + -0.2, + -0.33, + -0.32, + -0.29, + -0.12, + 0.15, + 0.43, + 0.81, + 1.08, + 1.06, + 1.1500000000000001, + 1.21, + 1.6300000000000001, + 2.31, + 3.25, + 4.11, + 4.22, + 3.48, + 1.8800000000000001, + 0.26, + -1.1500000000000001, + -2.4, + -3.46, + -4.5, + -5.11, + -5.16, + -4.4, + -2.94, + -1.27, + 0.06, + 0.85, + 0.84, + 0.5700000000000001, + 0.25, + 0.09, + 0.11, + 0.22, + 0.13, + -0.05, + -0.12, + -0.05, + 0.05, + 0.05, + -0.04, + -0.08, + -0.02, + 0.16, + 0.27, + 0.15, + -0.08, + -0.58, + -0.98, + -1.6, + -1.9000000000000001, + -1.98, + -1.92, + -1.52, + -1.16, + -0.6900000000000001, + -0.25, + -0.02, + -0.07, + -0.67, + -1.42, + -1.77, + -1.78, + -1.35, + -0.92, + -0.68, + -0.53, + -0.53, + -0.24, + 0.01, + 0.32, + 0.37, + 0.16, + 0.12, + -0.04, + 0.07, + 0.27, + 0.47000000000000003, + 0.53, + 0.23, + -0.48, + -1.29, + -1.95, + -2.4, + -2.58, + -2.65, + -2.63, + -2.54, + -2.45, + -2.32, + -2.07, + -1.83, + -1.6300000000000001, + -1.51, + -1.53, + -1.59, + -1.58, + -1.46, + -1.25, + -1.0, + -0.92, + -0.99, + -1.1, + -1.17, + -1.1500000000000001, + -1.02, + -0.84, + -0.63, + -0.47000000000000003, + -0.34, + -0.31, + -0.33, + -0.46, + -0.65, + -0.81, + -0.98, + -1.05, + -1.1500000000000001, + -1.24, + -1.32, + -1.3900000000000001, + -1.4000000000000001, + -1.34, + -1.27, + -1.2, + -1.1500000000000001, + -1.1300000000000001, + -1.1, + -1.07, + -1.02, + -0.97, + -1.0, + -1.03, + -1.09, + -1.1, + -0.89, + -0.45, + 0.12, + 0.58, + 0.8, + 0.84, + 0.6, + 0.28, + -0.22, + -0.76, + -1.19, + -1.61, + -1.83, + -1.95, + -1.97, + -2.0, + -1.98, + -1.94, + -1.98, + -2.0300000000000002, + -1.8800000000000001, + -1.84, + -1.76, + -1.71, + -1.76, + -1.57, + -1.36, + -1.26, + -1.25, + -1.49, + -1.69, + -1.82, + -2.02, + -2.11, + -2.16, + -2.13, + -1.96, + -1.6400000000000001, + -1.31, + -0.93, + -0.5700000000000001, + -0.34, + -0.25, + -0.49, + -0.89, + -1.17, + -1.33, + -1.31, + -1.1400000000000001, + -0.9400000000000001, + -0.5700000000000001, + -0.28, + -0.23, + -0.42, + -0.86, + -1.2, + -1.34, + -1.25, + -0.97, + -0.64, + -0.48, + -0.51, + -0.59, + -0.75, + -1.12, + -1.57, + -1.97, + -2.19, + -2.18, + -2.11, + -2.0100000000000002, + -1.94, + -1.8900000000000001, + -1.8, + -1.59, + -1.25, + -0.99, + -1.12, + -1.46, + -1.84, + -2.0100000000000002, + -2.05, + -2.11, + -2.23, + -2.43, + -2.5, + -2.43, + -2.25, + -2.06, + -1.85, + -1.59, + -1.37, + -1.12, + -0.88, + -0.78, + -0.9, + -1.19, + -1.49, + -1.43, + -1.21, + -0.8300000000000001, + -0.46, + -0.36, + -0.32, + -0.24, + -0.21, + -0.28, + -0.44, + -0.62, + -0.72, + -0.84, + -1.06, + -1.23, + -1.12, + -0.76, + -0.46, + -0.48, + -0.6, + -0.73, + -0.71, + -0.51, + -0.3, + -0.14, + -0.03, + -0.02, + -0.05, + -0.03, + -0.09, + -0.18, + -0.25, + -0.26, + -0.19, + -0.14 + ], + [ + -2.48, + -2.95, + -3.1, + -3.14, + -3.22, + -3.2, + -3.13, + -3.14, + -3.14, + -3.2, + -3.21, + -3.22, + -3.15, + -2.99, + -2.96, + -3.0100000000000002, + -2.91, + -2.64, + -2.4, + -2.2, + -2.1, + -1.98, + -1.77, + -1.48, + -1.24, + -1.1400000000000001, + -1.2, + -1.46, + -1.69, + -1.82, + -1.81, + -1.6600000000000001, + -1.51, + -1.6300000000000001, + -1.96, + -2.15, + -2.09, + -1.78, + -1.61, + -1.6, + -1.74, + -1.85, + -1.82, + -1.69, + -1.59, + -1.5, + -1.36, + -1.21, + -1.0, + -0.67, + -0.38, + -0.26, + -0.34, + -0.8300000000000001, + -1.23, + -1.31, + -1.26, + -1.11, + -1.31, + -1.6, + -1.51, + -1.22, + -0.75, + -0.29, + -0.08, + -0.12, + -0.4, + -0.64, + -0.72, + -0.74, + -0.61, + -0.46, + -0.41000000000000003, + -0.44, + -0.37, + -0.28, + -0.35000000000000003, + -0.55, + -0.53, + -0.43, + -0.27, + -0.06, + 0.23, + 0.6900000000000001, + 0.97, + 1.3800000000000001, + 1.58, + 1.85, + 2.32, + 2.81, + 3.6, + 4.29, + 4.34, + 3.68, + 2.39, + 0.91, + -0.26, + -1.41, + -2.37, + -3.35, + -3.86, + -3.8200000000000003, + -3.04, + -1.6, + -0.22, + 1.08, + 1.49, + 1.5, + 1.1, + 0.77, + 0.5700000000000001, + 0.56, + 0.51, + 0.33, + 0.05, + -0.1, + -0.04, + 0.05, + 0.07, + 0.07, + 0.12, + 0.36, + 0.52, + 0.52, + 0.38, + -0.11, + -0.63, + -1.49, + -2.13, + -2.66, + -2.8000000000000003, + -2.48, + -2.06, + -1.46, + -0.91, + -0.36, + -0.01, + -0.17, + -0.81, + -1.71, + -2.34, + -2.32, + -1.96, + -1.49, + -1.1, + -0.88, + -0.51, + -0.2, + 0.3, + 0.6, + 0.52, + 0.33, + -0.13, + -0.34, + -0.48, + -0.34, + 0.07, + 0.25, + 0.05, + -0.5700000000000001, + -1.42, + -2.15, + -2.54, + -2.68, + -2.66, + -2.5100000000000002, + -2.43, + -2.4, + -2.27, + -2.08, + -1.85, + -1.6600000000000001, + -1.54, + -1.56, + -1.62, + -1.61, + -1.5, + -1.29, + -1.04, + -0.84, + -0.84, + -0.92, + -0.98, + -0.96, + -0.86, + -0.73, + -0.61, + -0.49, + -0.43, + -0.41000000000000003, + -0.48, + -0.59, + -0.75, + -0.9, + -0.96, + -1.03, + -1.07, + -1.16, + -1.26, + -1.34, + -1.35, + -1.3, + -1.21, + -1.12, + -1.07, + -1.04, + -1.03, + -1.01, + -1.0, + -1.0, + -1.02, + -1.05, + -1.07, + -0.99, + -0.77, + -0.38, + 0.16, + 0.52, + 0.73, + 0.62, + 0.38, + -0.06, + -0.55, + -0.91, + -1.29, + -1.45, + -1.57, + -1.6500000000000001, + -1.68, + -1.71, + -1.67, + -1.6600000000000001, + -1.72, + -1.9100000000000001, + -2.1, + -2.04, + -1.94, + -1.81, + -1.52, + -1.33, + -1.1500000000000001, + -1.06, + -1.25, + -1.49, + -1.73, + -1.8800000000000001, + -1.94, + -2.0100000000000002, + -2.04, + -2.02, + -1.93, + -1.7, + -1.28, + -0.85, + -0.51, + -0.28, + -0.27, + -0.56, + -1.0, + -1.3900000000000001, + -1.54, + -1.47, + -1.29, + -0.92, + -0.55, + -0.31, + -0.24, + -0.5, + -0.92, + -1.35, + -1.52, + -1.37, + -1.08, + -0.8200000000000001, + -0.7000000000000001, + -0.66, + -0.66, + -0.73, + -0.93, + -1.4000000000000001, + -1.82, + -2.0300000000000002, + -2.06, + -2.0, + -1.92, + -1.85, + -1.83, + -1.74, + -1.51, + -1.18, + -1.04, + -1.16, + -1.55, + -1.94, + -2.18, + -2.2800000000000002, + -2.39, + -2.5300000000000002, + -2.59, + -2.5500000000000003, + -2.44, + -2.25, + -2.07, + -1.87, + -1.62, + -1.37, + -1.16, + -1.01, + -0.92, + -0.97, + -1.25, + -1.26, + -1.2, + -0.87, + -0.48, + -0.29, + -0.24, + -0.39, + -0.41000000000000003, + -0.31, + -0.3, + -0.47000000000000003, + -0.66, + -0.8, + -0.9500000000000001, + -1.11, + -1.16, + -1.04, + -0.6900000000000001, + -0.4, + -0.28, + -0.39, + -0.44, + -0.42, + -0.32, + -0.13, + 0.03, + 0.15, + 0.14, + 0.11, + 0.03, + -0.07, + -0.24, + -0.37, + -0.39, + -0.34, + -0.3 + ], + [ + -2.47, + -2.93, + -3.09, + -3.15, + -3.24, + -3.24, + -3.15, + -3.0500000000000003, + -3.04, + -3.0100000000000002, + -3.02, + -3.1, + -3.0300000000000002, + -2.91, + -2.87, + -2.81, + -2.7, + -2.47, + -2.24, + -2.18, + -2.16, + -2.16, + -2.0300000000000002, + -1.79, + -1.61, + -1.58, + -1.77, + -1.94, + -2.05, + -2.15, + -2.08, + -1.95, + -1.92, + -2.04, + -2.2800000000000002, + -2.47, + -2.29, + -1.98, + -1.8, + -1.8, + -1.9100000000000001, + -2.02, + -1.99, + -1.87, + -1.67, + -1.49, + -1.3900000000000001, + -1.29, + -1.12, + -0.88, + -0.5, + -0.22, + -0.24, + -0.44, + -0.87, + -1.06, + -1.02, + -1.1300000000000001, + -1.33, + -1.4000000000000001, + -1.31, + -1.07, + -0.62, + -0.24, + -0.03, + -0.05, + -0.32, + -0.64, + -0.78, + -0.74, + -0.55, + -0.43, + -0.42, + -0.43, + -0.27, + -0.21, + -0.35000000000000003, + -0.56, + -0.74, + -0.63, + -0.52, + -0.31, + 0.07, + 0.53, + 1.24, + 1.74, + 2.3000000000000003, + 2.73, + 2.97, + 3.38, + 3.8000000000000003, + 4.23, + 4.18, + 3.44, + 2.5, + 1.57, + 0.63, + 0.03, + -0.91, + -1.72, + -2.25, + -2.09, + -1.32, + -0.32, + 1.03, + 1.72, + 2.11, + 1.98, + 1.59, + 1.1400000000000001, + 0.9, + 0.85, + 0.78, + 0.48, + 0.11, + -0.11, + -0.12, + 0.01, + 0.1, + 0.19, + 0.47000000000000003, + 0.72, + 0.9400000000000001, + 0.92, + 0.61, + 0.12, + -0.76, + -1.62, + -2.64, + -3.19, + -3.3200000000000003, + -3.02, + -2.45, + -1.82, + -1.23, + -0.66, + -0.22, + -0.3, + -0.92, + -1.8, + -2.5300000000000002, + -2.66, + -2.34, + -1.93, + -1.51, + -1.11, + -0.6900000000000001, + -0.09, + 0.4, + 0.63, + 0.56, + 0.16, + -0.32, + -0.86, + -1.08, + -0.9, + -0.49, + -0.08, + -0.17, + -0.7000000000000001, + -1.5, + -2.19, + -2.52, + -2.61, + -2.5, + -2.35, + -2.29, + -2.29, + -2.27, + -2.09, + -1.86, + -1.67, + -1.58, + -1.59, + -1.62, + -1.62, + -1.57, + -1.3800000000000001, + -1.12, + -0.92, + -0.77, + -0.76, + -0.77, + -0.72, + -0.66, + -0.58, + -0.51, + -0.46, + -0.42, + -0.45, + -0.52, + -0.65, + -0.79, + -0.88, + -0.9500000000000001, + -0.97, + -1.0, + -1.06, + -1.16, + -1.24, + -1.26, + -1.22, + -1.1300000000000001, + -1.05, + -0.99, + -0.96, + -0.9500000000000001, + -0.9400000000000001, + -0.93, + -0.9400000000000001, + -0.9500000000000001, + -0.97, + -0.93, + -0.84, + -0.63, + -0.26, + 0.08, + 0.43, + 0.47000000000000003, + 0.36, + 0.02, + -0.43, + -0.8300000000000001, + -1.17, + -1.23, + -1.28, + -1.25, + -1.25, + -1.37, + -1.44, + -1.41, + -1.35, + -1.45, + -1.69, + -1.96, + -2.06, + -1.92, + -1.56, + -1.27, + -1.05, + -0.87, + -0.93, + -1.12, + -1.44, + -1.68, + -1.83, + -1.9000000000000001, + -1.92, + -1.95, + -1.96, + -1.8900000000000001, + -1.6, + -1.1300000000000001, + -0.71, + -0.4, + -0.28, + -0.44, + -0.75, + -1.21, + -1.59, + -1.7, + -1.62, + -1.31, + -0.93, + -0.62, + -0.38, + -0.37, + -0.62, + -1.09, + -1.52, + -1.68, + -1.53, + -1.25, + -1.02, + -0.86, + -0.79, + -0.71, + -0.67, + -0.85, + -1.24, + -1.6500000000000001, + -1.86, + -1.9000000000000001, + -1.87, + -1.79, + -1.76, + -1.74, + -1.68, + -1.45, + -1.22, + -1.09, + -1.26, + -1.6500000000000001, + -2.0, + -2.24, + -2.44, + -2.59, + -2.68, + -2.66, + -2.57, + -2.39, + -2.24, + -2.12, + -1.95, + -1.75, + -1.52, + -1.43, + -1.29, + -1.23, + -1.28, + -1.18, + -1.2, + -0.9, + -0.54, + -0.2, + -0.01, + -0.13, + -0.33, + -0.52, + -0.49, + -0.41000000000000003, + -0.5, + -0.75, + -1.0, + -1.1, + -1.16, + -1.1500000000000001, + -0.93, + -0.61, + -0.35000000000000003, + -0.22, + -0.13, + -0.17, + -0.12, + -0.02, + 0.09, + 0.25, + 0.26, + 0.24, + 0.14, + 0.03, + -0.13, + -0.34, + -0.5, + -0.54, + -0.52, + -0.51 + ], + [ + -2.49, + -2.94, + -3.09, + -3.12, + -3.18, + -3.2, + -3.13, + -3.0100000000000002, + -2.95, + -2.91, + -2.88, + -2.96, + -3.0, + -2.89, + -2.7800000000000002, + -2.72, + -2.54, + -2.31, + -2.18, + -2.17, + -2.33, + -2.45, + -2.38, + -2.21, + -2.07, + -2.16, + -2.29, + -2.35, + -2.38, + -2.2600000000000002, + -2.22, + -2.22, + -2.19, + -2.42, + -2.66, + -2.6, + -2.41, + -2.1, + -1.92, + -2.0100000000000002, + -2.15, + -2.24, + -2.19, + -1.99, + -1.73, + -1.52, + -1.41, + -1.33, + -1.2, + -0.97, + -0.64, + -0.29, + -0.18, + -0.34, + -0.59, + -0.8, + -0.85, + -0.96, + -1.06, + -1.1300000000000001, + -1.12, + -0.88, + -0.75, + -0.45, + -0.1, + -0.09, + -0.22, + -0.45, + -0.64, + -0.56, + -0.38, + -0.23, + -0.26, + -0.26, + -0.11, + 0.01, + -0.16, + -0.46, + -0.67, + -0.68, + -0.5700000000000001, + -0.47000000000000003, + -0.07, + 0.49, + 1.22, + 2.06, + 2.69, + 3.25, + 3.5100000000000002, + 3.68, + 3.97, + 4.1, + 3.77, + 3.17, + 2.46, + 1.94, + 1.77, + 1.29, + 0.64, + -0.21, + -0.72, + -0.58, + 0.04, + 1.02, + 1.49, + 2.13, + 2.36, + 2.17, + 1.8800000000000001, + 1.43, + 1.11, + 1.03, + 0.97, + 0.65, + 0.18, + -0.11, + -0.16, + -0.05, + 0.11, + 0.35000000000000003, + 0.68, + 1.08, + 1.31, + 1.3, + 0.99, + 0.33, + -0.55, + -1.61, + -2.62, + -3.44, + -3.5500000000000003, + -3.3200000000000003, + -2.73, + -2.19, + -1.6300000000000001, + -1.09, + -0.7000000000000001, + -0.49, + -0.93, + -1.77, + -2.4, + -2.68, + -2.5100000000000002, + -2.17, + -1.8800000000000001, + -1.44, + -0.87, + -0.24, + 0.18, + 0.41000000000000003, + 0.35000000000000003, + -0.07, + -0.62, + -1.2, + -1.58, + -1.41, + -0.93, + -0.5, + -0.39, + -0.84, + -1.52, + -2.06, + -2.38, + -2.37, + -2.29, + -2.21, + -2.17, + -2.27, + -2.27, + -2.15, + -1.92, + -1.73, + -1.6300000000000001, + -1.61, + -1.6400000000000001, + -1.6500000000000001, + -1.6, + -1.5, + -1.26, + -0.99, + -0.81, + -0.65, + -0.5700000000000001, + -0.51, + -0.44, + -0.41000000000000003, + -0.4, + -0.38, + -0.38, + -0.42, + -0.51, + -0.64, + -0.75, + -0.84, + -0.87, + -0.89, + -0.91, + -0.96, + -1.03, + -1.1, + -1.1400000000000001, + -1.1, + -1.04, + -0.97, + -0.91, + -0.88, + -0.86, + -0.85, + -0.8300000000000001, + -0.8300000000000001, + -0.8300000000000001, + -0.81, + -0.77, + -0.65, + -0.46, + -0.24, + 0.08, + 0.2, + 0.24, + 0.04, + -0.31, + -0.6900000000000001, + -1.07, + -1.26, + -1.26, + -1.1, + -0.99, + -0.99, + -1.1300000000000001, + -1.28, + -1.31, + -1.18, + -1.2, + -1.43, + -1.68, + -1.82, + -1.6300000000000001, + -1.27, + -0.9500000000000001, + -0.73, + -0.76, + -0.8200000000000001, + -0.98, + -1.3, + -1.55, + -1.7, + -1.79, + -1.82, + -1.84, + -1.86, + -1.73, + -1.3800000000000001, + -0.92, + -0.49, + -0.29, + -0.39, + -0.59, + -1.0, + -1.43, + -1.68, + -1.79, + -1.57, + -1.27, + -1.0, + -0.6900000000000001, + -0.59, + -0.6, + -0.81, + -1.27, + -1.6300000000000001, + -1.74, + -1.6300000000000001, + -1.36, + -1.16, + -1.03, + -0.9, + -0.77, + -0.71, + -0.89, + -1.22, + -1.52, + -1.74, + -1.8, + -1.77, + -1.72, + -1.68, + -1.6400000000000001, + -1.58, + -1.45, + -1.22, + -1.2, + -1.41, + -1.71, + -2.04, + -2.34, + -2.57, + -2.72, + -2.7800000000000002, + -2.72, + -2.57, + -2.41, + -2.29, + -2.2, + -2.1, + -1.92, + -1.82, + -1.75, + -1.79, + -1.72, + -1.54, + -1.44, + -1.1500000000000001, + -0.85, + -0.44, + -0.11, + 0.08, + -0.06, + -0.37, + -0.61, + -0.67, + -0.6, + -0.62, + -0.85, + -1.12, + -1.23, + -1.21, + -1.06, + -0.86, + -0.64, + -0.37, + -0.17, + -0.06, + 0.08, + 0.13, + 0.22, + 0.33, + 0.35000000000000003, + 0.34, + 0.22, + 0.08, + -0.07, + -0.27, + -0.47000000000000003, + -0.62, + -0.6900000000000001, + -0.68, + -0.7000000000000001 + ], + [ + -2.42, + -2.9, + -3.06, + -3.06, + -3.11, + -3.1, + -3.06, + -3.0100000000000002, + -2.93, + -2.84, + -2.8000000000000003, + -2.8000000000000003, + -2.85, + -2.84, + -2.73, + -2.62, + -2.43, + -2.25, + -2.15, + -2.27, + -2.54, + -2.74, + -2.7, + -2.6, + -2.58, + -2.65, + -2.73, + -2.69, + -2.42, + -2.3000000000000003, + -2.31, + -2.34, + -2.6, + -2.82, + -2.91, + -2.83, + -2.34, + -2.0, + -1.9100000000000001, + -2.0100000000000002, + -2.3000000000000003, + -2.39, + -2.3000000000000003, + -2.0300000000000002, + -1.78, + -1.58, + -1.41, + -1.28, + -1.1500000000000001, + -0.9, + -0.64, + -0.38, + -0.22, + -0.41000000000000003, + -0.62, + -0.64, + -0.68, + -0.63, + -0.73, + -0.87, + -0.87, + -0.97, + -0.9, + -0.79, + -0.48, + -0.17, + -0.22, + -0.29, + -0.36, + -0.33, + -0.15, + -0.02, + -0.09, + -0.12, + 0.0, + 0.16, + 0.0, + -0.33, + -0.45, + -0.49, + -0.47000000000000003, + -0.37, + -0.28, + 0.31, + 0.99, + 1.81, + 2.64, + 3.16, + 3.6, + 3.74, + 3.87, + 3.8000000000000003, + 3.39, + 2.7, + 2.32, + 2.44, + 2.5500000000000003, + 2.5, + 1.9100000000000001, + 1.04, + 0.48, + 0.6900000000000001, + 1.29, + 1.51, + 1.94, + 1.94, + 2.07, + 2.18, + 1.86, + 1.51, + 1.2, + 1.09, + 1.01, + 0.77, + 0.32, + -0.05, + -0.09, + -0.02, + 0.13, + 0.4, + 0.79, + 1.25, + 1.55, + 1.59, + 1.22, + 0.5700000000000001, + -0.23, + -1.3, + -2.37, + -3.17, + -3.6, + -3.33, + -3.02, + -2.54, + -2.07, + -1.58, + -1.09, + -0.87, + -0.96, + -1.54, + -2.23, + -2.47, + -2.43, + -2.25, + -2.02, + -1.6400000000000001, + -1.07, + -0.62, + -0.17, + -0.05, + -0.12, + -0.26, + -0.8300000000000001, + -1.3800000000000001, + -1.72, + -1.77, + -1.27, + -0.8, + -0.68, + -0.92, + -1.45, + -1.94, + -2.11, + -2.13, + -2.07, + -2.02, + -2.12, + -2.25, + -2.32, + -2.21, + -2.0, + -1.8, + -1.68, + -1.6500000000000001, + -1.6600000000000001, + -1.6600000000000001, + -1.6600000000000001, + -1.57, + -1.42, + -1.16, + -0.87, + -0.66, + -0.46, + -0.35000000000000003, + -0.28, + -0.28, + -0.29, + -0.3, + -0.32, + -0.37, + -0.46, + -0.5700000000000001, + -0.68, + -0.73, + -0.77, + -0.78, + -0.79, + -0.8300000000000001, + -0.89, + -0.9400000000000001, + -0.96, + -0.96, + -0.91, + -0.87, + -0.8200000000000001, + -0.79, + -0.76, + -0.74, + -0.71, + -0.7000000000000001, + -0.68, + -0.66, + -0.59, + -0.49, + -0.35000000000000003, + -0.15, + -0.04, + 0.07, + -0.02, + -0.22, + -0.5, + -0.87, + -1.1400000000000001, + -1.26, + -1.23, + -1.05, + -0.9, + -0.9400000000000001, + -1.08, + -1.29, + -1.32, + -1.2, + -1.08, + -1.16, + -1.4000000000000001, + -1.43, + -1.27, + -0.97, + -0.65, + -0.63, + -0.66, + -0.73, + -0.9, + -1.07, + -1.31, + -1.48, + -1.56, + -1.6, + -1.61, + -1.62, + -1.44, + -1.1, + -0.61, + -0.26, + -0.21, + -0.39, + -0.75, + -1.1500000000000001, + -1.53, + -1.78, + -1.6600000000000001, + -1.46, + -1.21, + -0.9500000000000001, + -0.91, + -0.8200000000000001, + -0.86, + -1.1, + -1.34, + -1.6400000000000001, + -1.7, + -1.52, + -1.3800000000000001, + -1.22, + -1.12, + -0.98, + -0.87, + -0.88, + -1.0, + -1.28, + -1.54, + -1.68, + -1.75, + -1.74, + -1.68, + -1.58, + -1.54, + -1.46, + -1.33, + -1.28, + -1.29, + -1.47, + -1.77, + -2.1, + -2.41, + -2.68, + -2.84, + -2.88, + -2.79, + -2.64, + -2.5100000000000002, + -2.39, + -2.32, + -2.24, + -2.12, + -2.05, + -2.13, + -2.19, + -2.11, + -1.93, + -1.6600000000000001, + -1.36, + -1.02, + -0.64, + -0.3, + -0.17, + -0.2, + -0.55, + -0.84, + -0.9, + -0.79, + -0.78, + -0.93, + -1.12, + -1.22, + -1.07, + -0.96, + -0.87, + -0.68, + -0.54, + -0.31, + -0.05, + 0.11, + 0.29, + 0.38, + 0.42, + 0.41000000000000003, + 0.28, + 0.11, + -0.06, + -0.25, + -0.44, + -0.63, + -0.76, + -0.81, + -0.8300000000000001, + -0.89 + ], + [ + -2.52, + -2.97, + -3.0500000000000003, + -3.02, + -3.0100000000000002, + -3.02, + -3.02, + -2.99, + -2.97, + -2.85, + -2.7, + -2.69, + -2.71, + -2.7, + -2.65, + -2.5300000000000002, + -2.4, + -2.24, + -2.21, + -2.42, + -2.7, + -2.87, + -2.93, + -2.86, + -2.91, + -3.02, + -3.06, + -2.75, + -2.43, + -2.23, + -2.27, + -2.56, + -2.85, + -3.19, + -3.27, + -2.7800000000000002, + -2.22, + -1.68, + -1.59, + -1.9000000000000001, + -2.21, + -2.42, + -2.27, + -2.05, + -1.81, + -1.57, + -1.36, + -1.1500000000000001, + -0.88, + -0.71, + -0.54, + -0.34, + -0.41000000000000003, + -0.5700000000000001, + -0.64, + -0.63, + -0.42, + -0.35000000000000003, + -0.45, + -0.61, + -0.8300000000000001, + -0.98, + -1.18, + -1.1, + -0.88, + -0.59, + -0.32, + -0.31, + -0.21, + -0.09, + 0.04, + 0.05, + -0.03, + -0.12, + 0.0, + 0.06, + -0.02, + -0.23, + -0.35000000000000003, + -0.29, + -0.29, + -0.38, + -0.3, + -0.12, + 0.55, + 1.23, + 1.97, + 2.72, + 3.1, + 3.42, + 3.48, + 3.33, + 2.65, + 2.17, + 2.27, + 2.69, + 3.39, + 3.52, + 2.82, + 1.95, + 1.73, + 1.8800000000000001, + 2.0300000000000002, + 2.18, + 1.75, + 1.6300000000000001, + 1.58, + 1.6600000000000001, + 1.72, + 1.35, + 1.1, + 1.0, + 0.97, + 0.68, + 0.38, + 0.16, + 0.05, + 0.13, + 0.21, + 0.42, + 0.8200000000000001, + 1.27, + 1.6600000000000001, + 1.6500000000000001, + 1.34, + 0.66, + -0.12, + -0.98, + -2.06, + -2.86, + -3.23, + -3.42, + -3.16, + -2.88, + -2.45, + -1.94, + -1.3900000000000001, + -1.05, + -1.09, + -1.44, + -1.92, + -2.24, + -2.17, + -2.08, + -1.84, + -1.57, + -1.22, + -0.8, + -0.73, + -0.6, + -0.56, + -0.7000000000000001, + -0.88, + -1.41, + -1.83, + -1.8, + -1.55, + -1.1, + -0.85, + -1.07, + -1.44, + -1.76, + -1.92, + -1.8800000000000001, + -1.83, + -1.81, + -1.95, + -2.17, + -2.3000000000000003, + -2.25, + -2.04, + -1.82, + -1.69, + -1.6500000000000001, + -1.6500000000000001, + -1.68, + -1.68, + -1.68, + -1.54, + -1.33, + -1.03, + -0.72, + -0.49, + -0.3, + -0.23, + -0.21, + -0.22, + -0.24, + -0.26, + -0.3, + -0.38, + -0.49, + -0.55, + -0.61, + -0.63, + -0.64, + -0.65, + -0.6900000000000001, + -0.73, + -0.77, + -0.79, + -0.78, + -0.77, + -0.73, + -0.7000000000000001, + -0.67, + -0.64, + -0.61, + -0.58, + -0.55, + -0.53, + -0.5, + -0.44, + -0.36, + -0.24, + -0.15, + -0.06, + -0.09, + -0.18, + -0.37, + -0.63, + -0.85, + -1.06, + -1.19, + -1.12, + -1.05, + -0.9500000000000001, + -0.96, + -1.16, + -1.36, + -1.35, + -1.21, + -1.05, + -0.99, + -1.03, + -1.09, + -0.9500000000000001, + -0.66, + -0.55, + -0.53, + -0.6, + -0.67, + -0.73, + -0.88, + -1.0, + -1.1400000000000001, + -1.2, + -1.2, + -1.24, + -1.22, + -1.1300000000000001, + -0.76, + -0.33, + -0.08, + -0.04, + -0.3, + -0.72, + -1.16, + -1.57, + -1.69, + -1.58, + -1.31, + -1.07, + -1.09, + -1.08, + -1.12, + -1.17, + -1.25, + -1.47, + -1.55, + -1.51, + -1.43, + -1.31, + -1.22, + -1.1300000000000001, + -1.05, + -1.0, + -1.04, + -1.24, + -1.44, + -1.58, + -1.69, + -1.68, + -1.69, + -1.6, + -1.49, + -1.3900000000000001, + -1.31, + -1.24, + -1.19, + -1.29, + -1.49, + -1.76, + -2.08, + -2.45, + -2.73, + -2.92, + -2.94, + -2.88, + -2.7600000000000002, + -2.62, + -2.52, + -2.45, + -2.33, + -2.24, + -2.2600000000000002, + -2.37, + -2.42, + -2.37, + -2.19, + -1.9100000000000001, + -1.6300000000000001, + -1.3, + -1.01, + -0.72, + -0.55, + -0.66, + -0.89, + -1.17, + -1.23, + -1.08, + -0.91, + -0.97, + -1.08, + -0.98, + -0.88, + -0.88, + -0.87, + -0.97, + -0.8300000000000001, + -0.61, + -0.3, + 0.04, + 0.24, + 0.43, + 0.45, + 0.35000000000000003, + 0.17, + -0.05, + -0.25, + -0.45, + -0.64, + -0.8, + -0.89, + -0.9400000000000001, + -0.97, + -1.04 + ], + [ + -2.4, + -2.88, + -3.04, + -3.0100000000000002, + -2.97, + -2.96, + -2.98, + -3.0300000000000002, + -3.02, + -2.91, + -2.72, + -2.62, + -2.64, + -2.62, + -2.57, + -2.5, + -2.38, + -2.3000000000000003, + -2.33, + -2.48, + -2.73, + -2.92, + -2.9, + -2.92, + -3.0, + -3.18, + -3.06, + -2.7600000000000002, + -2.32, + -2.08, + -2.22, + -2.56, + -3.02, + -3.42, + -3.29, + -2.7, + -1.84, + -1.25, + -1.1500000000000001, + -1.54, + -2.08, + -2.25, + -2.2800000000000002, + -2.09, + -1.81, + -1.53, + -1.22, + -0.85, + -0.5700000000000001, + -0.43, + -0.35000000000000003, + -0.37, + -0.47000000000000003, + -0.59, + -0.67, + -0.41000000000000003, + -0.16, + -0.1, + -0.21, + -0.52, + -0.79, + -1.05, + -1.27, + -1.49, + -1.28, + -0.98, + -0.71, + -0.41000000000000003, + -0.15, + 0.05, + 0.17, + 0.15, + -0.05, + -0.21, + -0.15, + -0.03, + -0.13, + -0.32, + -0.32, + -0.22, + -0.21, + -0.35000000000000003, + -0.49, + -0.34, + -0.08, + 0.55, + 1.1, + 1.76, + 2.38, + 2.63, + 2.7800000000000002, + 2.33, + 1.84, + 1.6400000000000001, + 1.99, + 3.0700000000000003, + 4.07, + 4.09, + 3.5300000000000002, + 2.99, + 2.73, + 2.83, + 2.93, + 2.38, + 1.76, + 1.12, + 1.03, + 1.07, + 1.09, + 1.09, + 0.87, + 0.76, + 0.68, + 0.5700000000000001, + 0.33, + 0.26, + 0.32, + 0.34, + 0.38, + 0.47000000000000003, + 0.79, + 1.28, + 1.58, + 1.6600000000000001, + 1.25, + 0.59, + -0.19, + -1.02, + -1.77, + -2.54, + -2.99, + -3.17, + -3.33, + -3.09, + -2.66, + -2.02, + -1.49, + -1.1500000000000001, + -1.1, + -1.42, + -1.78, + -1.87, + -1.84, + -1.62, + -1.47, + -1.25, + -1.02, + -1.07, + -1.07, + -1.2, + -1.1300000000000001, + -1.04, + -1.19, + -1.43, + -1.81, + -1.98, + -1.71, + -1.36, + -1.2, + -1.19, + -1.48, + -1.72, + -1.74, + -1.6500000000000001, + -1.47, + -1.45, + -1.6400000000000001, + -1.95, + -2.16, + -2.17, + -2.0100000000000002, + -1.79, + -1.6500000000000001, + -1.61, + -1.6300000000000001, + -1.6600000000000001, + -1.7, + -1.7, + -1.67, + -1.44, + -1.18, + -0.86, + -0.56, + -0.36, + -0.22, + -0.18, + -0.17, + -0.17, + -0.19, + -0.23, + -0.3, + -0.36, + -0.43, + -0.47000000000000003, + -0.49, + -0.5, + -0.51, + -0.54, + -0.58, + -0.6, + -0.61, + -0.62, + -0.61, + -0.59, + -0.5700000000000001, + -0.54, + -0.5, + -0.47000000000000003, + -0.43, + -0.41000000000000003, + -0.39, + -0.36, + -0.32, + -0.24, + -0.19, + -0.11, + -0.11, + -0.15, + -0.27, + -0.45, + -0.61, + -0.79, + -0.92, + -1.0, + -1.04, + -0.98, + -0.97, + -1.03, + -1.17, + -1.29, + -1.36, + -1.19, + -0.99, + -0.89, + -0.8300000000000001, + -0.78, + -0.68, + -0.55, + -0.43, + -0.46, + -0.53, + -0.58, + -0.62, + -0.64, + -0.74, + -0.75, + -0.77, + -0.76, + -0.8, + -0.87, + -0.8, + -0.56, + -0.23, + 0.11, + 0.12, + -0.1, + -0.5, + -1.02, + -1.43, + -1.62, + -1.51, + -1.21, + -1.1500000000000001, + -1.21, + -1.31, + -1.37, + -1.3900000000000001, + -1.45, + -1.47, + -1.47, + -1.45, + -1.4000000000000001, + -1.34, + -1.32, + -1.22, + -1.19, + -1.16, + -1.31, + -1.48, + -1.6, + -1.68, + -1.6, + -1.6, + -1.52, + -1.44, + -1.36, + -1.26, + -1.16, + -1.09, + -1.1, + -1.24, + -1.48, + -1.75, + -2.0300000000000002, + -2.4, + -2.73, + -2.89, + -2.97, + -2.91, + -2.83, + -2.7, + -2.59, + -2.44, + -2.36, + -2.37, + -2.4, + -2.49, + -2.58, + -2.52, + -2.35, + -2.13, + -1.86, + -1.59, + -1.32, + -1.12, + -0.99, + -1.07, + -1.32, + -1.59, + -1.59, + -1.3800000000000001, + -1.1500000000000001, + -1.0, + -0.9, + -0.8, + -0.76, + -0.81, + -1.1300000000000001, + -1.29, + -1.29, + -1.06, + -0.68, + -0.28, + 0.13, + 0.33, + 0.4, + 0.26, + 0.03, + -0.22, + -0.45, + -0.66, + -0.8300000000000001, + -0.9500000000000001, + -1.03, + -1.06, + -1.1, + -1.19 + ], + [ + -2.58, + -3.0100000000000002, + -3.04, + -3.0100000000000002, + -2.97, + -2.94, + -2.95, + -3.04, + -3.02, + -2.93, + -2.77, + -2.64, + -2.58, + -2.56, + -2.52, + -2.45, + -2.41, + -2.36, + -2.35, + -2.49, + -2.68, + -2.74, + -2.7600000000000002, + -2.75, + -2.88, + -2.95, + -2.99, + -2.59, + -2.11, + -1.93, + -2.04, + -2.36, + -2.93, + -3.21, + -3.08, + -2.38, + -1.3800000000000001, + -0.73, + -0.73, + -1.1500000000000001, + -1.72, + -2.22, + -2.2600000000000002, + -2.1, + -1.75, + -1.41, + -0.9400000000000001, + -0.53, + -0.25, + -0.12, + -0.2, + -0.27, + -0.37, + -0.54, + -0.4, + -0.11, + 0.09, + 0.16, + -0.09, + -0.46, + -0.8, + -1.08, + -1.41, + -1.6400000000000001, + -1.73, + -1.42, + -1.01, + -0.55, + -0.1, + 0.2, + 0.33, + 0.18, + -0.07, + -0.21, + -0.22, + -0.13, + -0.21, + -0.29, + -0.3, + -0.21, + -0.18, + -0.33, + -0.54, + -0.66, + -0.43, + -0.14, + 0.36, + 0.78, + 1.34, + 1.71, + 1.68, + 1.36, + 0.93, + 0.86, + 1.84, + 3.17, + 4.1, + 4.5200000000000005, + 3.99, + 3.5300000000000002, + 3.5100000000000002, + 3.65, + 3.27, + 2.5500000000000003, + 1.7, + 0.93, + 0.47000000000000003, + 0.53, + 0.56, + 0.58, + 0.58, + 0.52, + 0.41000000000000003, + 0.25, + 0.18, + 0.28, + 0.49, + 0.58, + 0.56, + 0.61, + 0.8200000000000001, + 1.1300000000000001, + 1.51, + 1.46, + 1.09, + 0.45, + -0.34, + -1.09, + -1.78, + -2.25, + -2.64, + -2.96, + -3.15, + -3.23, + -2.65, + -1.95, + -1.3800000000000001, + -1.08, + -1.17, + -1.4000000000000001, + -1.59, + -1.6400000000000001, + -1.45, + -1.19, + -0.9400000000000001, + -0.79, + -0.86, + -1.04, + -1.43, + -1.6400000000000001, + -1.69, + -1.53, + -1.43, + -1.6600000000000001, + -1.92, + -2.05, + -1.99, + -1.69, + -1.47, + -1.51, + -1.59, + -1.68, + -1.6500000000000001, + -1.4000000000000001, + -1.1, + -1.08, + -1.24, + -1.59, + -1.9100000000000001, + -2.0, + -1.8900000000000001, + -1.74, + -1.6, + -1.54, + -1.57, + -1.62, + -1.6600000000000001, + -1.7, + -1.6400000000000001, + -1.54, + -1.26, + -0.97, + -0.67, + -0.4, + -0.23, + -0.14, + -0.1, + -0.1, + -0.1, + -0.14, + -0.18, + -0.24, + -0.29, + -0.33, + -0.34, + -0.35000000000000003, + -0.37, + -0.41000000000000003, + -0.44, + -0.46, + -0.46, + -0.47000000000000003, + -0.47000000000000003, + -0.46, + -0.43, + -0.4, + -0.36, + -0.33, + -0.3, + -0.28, + -0.26, + -0.25, + -0.21, + -0.18, + -0.13, + -0.11, + -0.12, + -0.19, + -0.31, + -0.44, + -0.58, + -0.68, + -0.78, + -0.84, + -0.88, + -0.91, + -0.93, + -0.99, + -1.09, + -1.2, + -1.19, + -1.12, + -0.98, + -0.8200000000000001, + -0.73, + -0.63, + -0.54, + -0.43, + -0.4, + -0.42, + -0.48, + -0.52, + -0.53, + -0.54, + -0.51, + -0.5, + -0.43, + -0.44, + -0.47000000000000003, + -0.63, + -0.6900000000000001, + -0.54, + -0.2, + 0.1, + 0.3, + 0.11, + -0.24, + -0.76, + -1.27, + -1.52, + -1.46, + -1.34, + -1.28, + -1.42, + -1.56, + -1.58, + -1.58, + -1.53, + -1.49, + -1.46, + -1.46, + -1.52, + -1.55, + -1.56, + -1.53, + -1.44, + -1.53, + -1.61, + -1.72, + -1.8, + -1.6400000000000001, + -1.53, + -1.37, + -1.3, + -1.26, + -1.2, + -1.1300000000000001, + -1.03, + -0.9400000000000001, + -0.98, + -1.25, + -1.55, + -1.8, + -2.1, + -2.35, + -2.65, + -2.86, + -2.9, + -2.89, + -2.77, + -2.67, + -2.48, + -2.35, + -2.37, + -2.42, + -2.54, + -2.62, + -2.64, + -2.6, + -2.46, + -2.2600000000000002, + -2.0100000000000002, + -1.75, + -1.53, + -1.33, + -1.26, + -1.35, + -1.6500000000000001, + -1.87, + -1.99, + -1.7, + -1.33, + -1.02, + -0.81, + -0.6900000000000001, + -0.64, + -0.98, + -1.37, + -1.6600000000000001, + -1.75, + -1.55, + -1.1500000000000001, + -0.65, + -0.17, + 0.18, + 0.24, + 0.14, + -0.13, + -0.39, + -0.63, + -0.84, + -0.99, + -1.09, + -1.1300000000000001, + -1.17, + -1.22, + -1.31 + ], + [ + -2.43, + -2.92, + -3.0300000000000002, + -3.0, + -2.97, + -2.94, + -2.93, + -2.94, + -2.96, + -2.87, + -2.72, + -2.61, + -2.5300000000000002, + -2.48, + -2.45, + -2.42, + -2.4, + -2.37, + -2.36, + -2.37, + -2.46, + -2.5300000000000002, + -2.46, + -2.42, + -2.48, + -2.65, + -2.58, + -2.33, + -1.95, + -1.67, + -1.68, + -1.99, + -2.38, + -2.75, + -2.6, + -1.81, + -0.98, + -0.36, + -0.26, + -0.8300000000000001, + -1.48, + -2.02, + -2.24, + -1.9100000000000001, + -1.53, + -0.97, + -0.58, + -0.19, + 0.12, + 0.04, + -0.05, + -0.12, + -0.21, + -0.19, + -0.07, + 0.12, + 0.34, + 0.24, + -0.08, + -0.51, + -0.88, + -1.19, + -1.58, + -1.92, + -1.99, + -1.8, + -1.24, + -0.62, + -0.03, + 0.4, + 0.4, + 0.27, + 0.0, + -0.22, + -0.16, + -0.08, + -0.11, + -0.2, + -0.18, + -0.09, + -0.14, + -0.32, + -0.59, + -0.78, + -0.8200000000000001, + -0.56, + -0.28, + 0.15, + 0.54, + 0.96, + 0.89, + 0.56, + 0.04, + 0.5700000000000001, + 1.47, + 2.86, + 4.16, + 4.14, + 3.88, + 3.69, + 3.8200000000000003, + 3.67, + 3.25, + 2.59, + 1.6400000000000001, + 0.92, + 0.45, + 0.15, + 0.23, + 0.23, + 0.3, + 0.3, + 0.17, + -0.05, + -0.03, + 0.16, + 0.43, + 0.73, + 0.6900000000000001, + 0.66, + 0.78, + 1.03, + 1.16, + 1.2, + 0.87, + 0.25, + -0.44, + -1.16, + -1.73, + -2.07, + -2.31, + -2.62, + -2.94, + -2.94, + -2.66, + -1.87, + -1.1500000000000001, + -1.02, + -1.11, + -1.32, + -1.51, + -1.48, + -1.21, + -0.91, + -0.55, + -0.42, + -0.55, + -0.98, + -1.56, + -2.0300000000000002, + -2.1, + -1.98, + -1.81, + -1.8, + -2.0300000000000002, + -2.21, + -2.09, + -1.98, + -1.8, + -1.75, + -1.73, + -1.73, + -1.54, + -1.24, + -0.97, + -0.75, + -0.97, + -1.3, + -1.59, + -1.77, + -1.75, + -1.62, + -1.52, + -1.46, + -1.43, + -1.46, + -1.53, + -1.55, + -1.57, + -1.43, + -1.3, + -0.99, + -0.7000000000000001, + -0.4, + -0.18, + -0.06, + 0.0, + 0.0, + 0.0, + -0.02, + -0.06, + -0.11, + -0.15, + -0.18, + -0.2, + -0.22, + -0.25, + -0.28, + -0.31, + -0.34, + -0.34, + -0.35000000000000003, + -0.35000000000000003, + -0.34, + -0.31, + -0.27, + -0.25, + -0.22, + -0.21, + -0.18, + -0.18, + -0.16, + -0.15, + -0.12, + -0.11, + -0.09, + -0.12, + -0.2, + -0.29, + -0.41000000000000003, + -0.51, + -0.59, + -0.65, + -0.71, + -0.77, + -0.81, + -0.85, + -0.91, + -0.98, + -1.04, + -1.06, + -1.01, + -0.93, + -0.81, + -0.68, + -0.58, + -0.48, + -0.43, + -0.39, + -0.42, + -0.47000000000000003, + -0.51, + -0.52, + -0.5, + -0.45, + -0.37, + -0.31, + -0.25, + -0.4, + -0.56, + -0.7000000000000001, + -0.66, + -0.3, + 0.1, + 0.27, + 0.3, + -0.09, + -0.55, + -1.07, + -1.45, + -1.5, + -1.41, + -1.53, + -1.7, + -1.81, + -1.8, + -1.7, + -1.6, + -1.49, + -1.46, + -1.51, + -1.62, + -1.81, + -1.86, + -1.9100000000000001, + -1.9000000000000001, + -1.92, + -1.95, + -2.0100000000000002, + -1.82, + -1.61, + -1.33, + -1.1300000000000001, + -1.08, + -1.07, + -1.04, + -0.98, + -0.86, + -0.75, + -0.9, + -1.28, + -1.72, + -1.99, + -2.18, + -2.42, + -2.61, + -2.75, + -2.81, + -2.73, + -2.64, + -2.43, + -2.27, + -2.21, + -2.27, + -2.5100000000000002, + -2.67, + -2.72, + -2.72, + -2.66, + -2.5300000000000002, + -2.31, + -2.06, + -1.79, + -1.56, + -1.41, + -1.35, + -1.46, + -1.76, + -2.14, + -2.16, + -2.0, + -1.51, + -1.02, + -0.74, + -0.58, + -0.79, + -1.1300000000000001, + -1.57, + -1.97, + -2.05, + -1.93, + -1.6, + -1.06, + -0.56, + -0.18, + 0.01, + -0.13, + -0.3, + -0.56, + -0.8, + -0.98, + -1.12, + -1.17, + -1.22, + -1.26, + -1.32, + -1.4000000000000001 + ], + [ + -2.68, + -3.14, + -3.09, + -3.02, + -3.0, + -2.96, + -2.93, + -2.89, + -2.85, + -2.77, + -2.66, + -2.56, + -2.49, + -2.43, + -2.39, + -2.38, + -2.36, + -2.32, + -2.2800000000000002, + -2.23, + -2.2, + -2.17, + -2.09, + -2.0, + -1.98, + -2.1, + -2.21, + -1.99, + -1.6500000000000001, + -1.3900000000000001, + -1.26, + -1.44, + -1.8, + -2.06, + -1.96, + -1.48, + -0.68, + -0.18, + -0.26, + -0.63, + -1.43, + -1.9000000000000001, + -1.8900000000000001, + -1.59, + -0.91, + -0.37, + -0.05, + 0.2, + 0.22, + 0.19, + 0.09, + 0.04, + 0.06, + 0.09, + 0.18, + 0.34, + 0.37, + 0.21, + -0.17, + -0.65, + -1.12, + -1.46, + -1.81, + -2.19, + -2.3000000000000003, + -1.9100000000000001, + -1.4000000000000001, + -0.6, + 0.12, + 0.42, + 0.53, + 0.29, + 0.03, + -0.09, + -0.08, + -0.02, + 0.0, + -0.02, + -0.01, + 0.01, + -0.05, + -0.24, + -0.5700000000000001, + -0.87, + -0.9400000000000001, + -0.9, + -0.59, + -0.27, + 0.31, + 0.7000000000000001, + 0.65, + 0.16, + 0.08, + 0.17, + 1.31, + 2.66, + 3.3000000000000003, + 3.59, + 3.36, + 3.33, + 3.35, + 3.27, + 2.95, + 2.38, + 1.8, + 1.1400000000000001, + 0.64, + 0.33, + 0.06, + 0.09, + 0.12, + 0.15, + 0.02, + -0.18, + -0.35000000000000003, + -0.11, + 0.28, + 0.46, + 0.63, + 0.61, + 0.67, + 0.8300000000000001, + 0.92, + 0.86, + 0.62, + 0.15, + -0.5, + -1.1, + -1.59, + -1.9100000000000001, + -2.04, + -2.25, + -2.59, + -2.81, + -2.43, + -1.81, + -1.25, + -0.8300000000000001, + -1.0, + -1.23, + -1.41, + -1.47, + -1.33, + -0.89, + -0.49, + -0.18, + -0.29, + -0.81, + -1.49, + -2.15, + -2.44, + -2.27, + -2.0300000000000002, + -1.94, + -2.02, + -2.11, + -2.18, + -2.05, + -1.98, + -1.87, + -1.82, + -1.69, + -1.53, + -1.19, + -0.85, + -0.77, + -0.8200000000000001, + -1.07, + -1.36, + -1.52, + -1.57, + -1.53, + -1.42, + -1.3, + -1.23, + -1.21, + -1.26, + -1.32, + -1.32, + -1.3, + -1.1300000000000001, + -0.9500000000000001, + -0.63, + -0.33, + -0.09, + 0.07, + 0.11, + 0.11, + 0.1, + 0.09, + 0.06, + 0.03, + -0.02, + -0.05, + -0.09, + -0.11, + -0.14, + -0.17, + -0.2, + -0.23, + -0.24, + -0.25, + -0.25, + -0.24, + -0.22, + -0.19, + -0.16, + -0.15, + -0.14, + -0.13, + -0.11, + -0.1, + -0.09, + -0.09, + -0.09, + -0.1, + -0.12, + -0.18, + -0.27, + -0.37, + -0.45, + -0.51, + -0.56, + -0.6, + -0.67, + -0.72, + -0.78, + -0.8300000000000001, + -0.88, + -0.92, + -0.9500000000000001, + -0.93, + -0.87, + -0.78, + -0.68, + -0.5700000000000001, + -0.5, + -0.44, + -0.43, + -0.45, + -0.48, + -0.53, + -0.54, + -0.52, + -0.48, + -0.4, + -0.32, + -0.34, + -0.42, + -0.66, + -0.84, + -0.7000000000000001, + -0.43, + -0.02, + 0.29, + 0.16, + -0.04, + -0.53, + -1.02, + -1.3, + -1.45, + -1.54, + -1.72, + -1.96, + -2.06, + -2.0, + -1.84, + -1.6500000000000001, + -1.51, + -1.42, + -1.5, + -1.67, + -1.8800000000000001, + -2.13, + -2.19, + -2.29, + -2.24, + -2.2600000000000002, + -2.06, + -1.85, + -1.5, + -1.1300000000000001, + -0.99, + -0.9, + -0.87, + -0.86, + -0.76, + -0.61, + -0.58, + -0.8200000000000001, + -1.31, + -1.83, + -2.2, + -2.33, + -2.47, + -2.6, + -2.67, + -2.61, + -2.52, + -2.29, + -2.12, + -1.96, + -1.9100000000000001, + -2.23, + -2.58, + -2.7600000000000002, + -2.81, + -2.77, + -2.71, + -2.56, + -2.32, + -2.02, + -1.72, + -1.5, + -1.3800000000000001, + -1.35, + -1.49, + -1.78, + -2.13, + -2.41, + -2.11, + -1.6600000000000001, + -1.1400000000000001, + -0.68, + -0.72, + -0.89, + -1.32, + -1.78, + -2.04, + -2.22, + -2.15, + -1.9000000000000001, + -1.53, + -1.03, + -0.66, + -0.47000000000000003, + -0.41000000000000003, + -0.58, + -0.74, + -0.9500000000000001, + -1.12, + -1.2, + -1.25, + -1.28, + -1.34, + -1.4000000000000001, + -1.47 + ], + [ + -2.49, + -3.04, + -3.13, + -3.08, + -3.04, + -3.0300000000000002, + -2.98, + -2.94, + -2.84, + -2.73, + -2.63, + -2.5300000000000002, + -2.46, + -2.41, + -2.37, + -2.32, + -2.2800000000000002, + -2.22, + -2.14, + -2.04, + -1.96, + -1.83, + -1.68, + -1.51, + -1.52, + -1.59, + -1.69, + -1.6600000000000001, + -1.3900000000000001, + -1.07, + -0.9500000000000001, + -0.96, + -1.26, + -1.54, + -1.56, + -1.21, + -0.77, + -0.46, + -0.48, + -1.02, + -1.44, + -1.67, + -1.57, + -0.89, + -0.16, + 0.26, + 0.52, + 0.5, + 0.41000000000000003, + 0.26, + 0.16, + 0.17, + 0.27, + 0.28, + 0.35000000000000003, + 0.37, + 0.35000000000000003, + 0.19, + -0.24, + -0.78, + -1.29, + -1.82, + -2.19, + -2.43, + -2.3000000000000003, + -1.99, + -1.3, + -0.54, + 0.07, + 0.55, + 0.46, + 0.3, + 0.08, + -0.07, + -0.04, + 0.04, + 0.04, + 0.07, + 0.11, + 0.13, + 0.08, + -0.12, + -0.4, + -0.72, + -0.92, + -0.85, + -0.71, + -0.23, + 0.32, + 0.77, + 0.89, + 0.51, + 0.06, + 0.46, + 1.16, + 1.99, + 2.7, + 2.69, + 2.5300000000000002, + 2.61, + 2.71, + 2.67, + 2.49, + 2.2, + 1.85, + 1.44, + 0.99, + 0.6, + 0.22, + 0.02, + 0.11, + 0.15, + -0.02, + -0.32, + -0.44, + -0.46, + -0.13, + 0.15, + 0.24, + 0.37, + 0.53, + 0.68, + 0.79, + 0.71, + 0.47000000000000003, + 0.09, + -0.41000000000000003, + -0.9500000000000001, + -1.3900000000000001, + -1.62, + -1.75, + -1.94, + -2.2600000000000002, + -2.48, + -2.46, + -1.9100000000000001, + -1.29, + -1.1300000000000001, + -0.93, + -1.22, + -1.42, + -1.6300000000000001, + -1.6500000000000001, + -1.25, + -0.62, + -0.24, + -0.15, + -0.59, + -1.3800000000000001, + -2.09, + -2.5100000000000002, + -2.46, + -2.11, + -1.86, + -1.85, + -1.96, + -2.0, + -2.04, + -1.96, + -1.9100000000000001, + -1.77, + -1.6500000000000001, + -1.3900000000000001, + -1.1300000000000001, + -0.88, + -0.73, + -0.77, + -0.92, + -1.1300000000000001, + -1.32, + -1.41, + -1.41, + -1.3, + -1.1300000000000001, + -0.99, + -0.9500000000000001, + -0.96, + -1.02, + -1.05, + -1.02, + -0.97, + -0.76, + -0.52, + -0.21, + 0.06, + 0.17, + 0.23, + 0.22, + 0.21, + 0.2, + 0.18, + 0.14, + 0.1, + 0.06, + 0.02, + -0.01, + -0.04, + -0.07, + -0.1, + -0.13, + -0.14, + -0.15, + -0.15, + -0.14, + -0.13, + -0.11, + -0.1, + -0.09, + -0.1, + -0.09, + -0.07, + -0.05, + -0.05, + -0.06, + -0.07, + -0.09, + -0.12, + -0.17, + -0.24, + -0.32, + -0.39, + -0.45, + -0.49, + -0.54, + -0.59, + -0.65, + -0.71, + -0.76, + -0.81, + -0.85, + -0.88, + -0.87, + -0.8300000000000001, + -0.76, + -0.67, + -0.59, + -0.53, + -0.5, + -0.48, + -0.49, + -0.52, + -0.54, + -0.56, + -0.55, + -0.52, + -0.48, + -0.44, + -0.46, + -0.6, + -0.78, + -0.86, + -0.8300000000000001, + -0.45, + -0.07, + 0.04, + 0.04, + -0.27, + -0.63, + -0.97, + -1.24, + -1.35, + -1.51, + -1.8, + -2.13, + -2.2600000000000002, + -2.15, + -1.95, + -1.71, + -1.52, + -1.42, + -1.43, + -1.6400000000000001, + -1.9100000000000001, + -2.18, + -2.41, + -2.42, + -2.45, + -2.2800000000000002, + -2.11, + -1.8, + -1.4000000000000001, + -1.18, + -0.9500000000000001, + -0.85, + -0.77, + -0.64, + -0.52, + -0.39, + -0.38, + -0.6900000000000001, + -1.34, + -1.92, + -2.24, + -2.44, + -2.5, + -2.5500000000000003, + -2.47, + -2.37, + -2.08, + -1.86, + -1.6600000000000001, + -1.52, + -1.8, + -2.18, + -2.58, + -2.85, + -2.87, + -2.81, + -2.72, + -2.57, + -2.31, + -1.95, + -1.6300000000000001, + -1.43, + -1.34, + -1.36, + -1.45, + -1.78, + -2.16, + -2.34, + -2.34, + -1.81, + -1.2, + -0.9400000000000001, + -0.8300000000000001, + -1.1500000000000001, + -1.56, + -1.8800000000000001, + -2.12, + -2.2, + -2.23, + -2.11, + -1.86, + -1.56, + -1.21, + -0.98, + -0.88, + -0.85, + -0.97, + -1.09, + -1.23, + -1.31, + -1.32, + -1.34, + -1.3900000000000001, + -1.46, + -1.53 + ], + [ + -2.83, + -3.38, + -3.23, + -3.13, + -3.14, + -3.14, + -3.13, + -3.08, + -2.97, + -2.7800000000000002, + -2.64, + -2.54, + -2.48, + -2.43, + -2.37, + -2.29, + -2.2, + -2.13, + -2.0100000000000002, + -1.8900000000000001, + -1.74, + -1.55, + -1.28, + -1.16, + -1.03, + -1.2, + -1.31, + -1.31, + -1.1400000000000001, + -0.92, + -0.7000000000000001, + -0.81, + -1.02, + -1.3, + -1.42, + -1.31, + -1.12, + -1.02, + -1.22, + -1.45, + -1.59, + -1.49, + -0.9500000000000001, + -0.26, + 0.45, + 1.02, + 1.04, + 0.89, + 0.64, + 0.32, + 0.21, + 0.24, + 0.26, + 0.32, + 0.31, + 0.29, + 0.28, + 0.18, + -0.11, + -0.6900000000000001, + -1.3800000000000001, + -2.0100000000000002, + -2.5, + -2.5100000000000002, + -2.32, + -1.86, + -1.29, + -0.59, + 0.11, + 0.37, + 0.43, + 0.27, + 0.06, + 0.0, + -0.01, + -0.02, + 0.0, + 0.03, + 0.14, + 0.22, + 0.2, + 0.06, + -0.18, + -0.41000000000000003, + -0.61, + -0.65, + -0.47000000000000003, + -0.12, + 0.5700000000000001, + 1.1300000000000001, + 1.1300000000000001, + 0.93, + 0.62, + 0.56, + 1.04, + 1.54, + 1.81, + 1.79, + 1.93, + 2.02, + 2.12, + 2.14, + 2.07, + 1.99, + 1.77, + 1.53, + 1.23, + 0.76, + 0.37, + 0.15, + 0.13, + 0.16, + 0.08, + -0.25, + -0.61, + -0.5, + -0.45, + -0.26, + -0.2, + -0.04, + 0.3, + 0.5700000000000001, + 0.76, + 0.71, + 0.47000000000000003, + 0.12, + -0.3, + -0.75, + -1.1400000000000001, + -1.34, + -1.4000000000000001, + -1.52, + -1.9000000000000001, + -2.29, + -2.31, + -2.15, + -1.85, + -1.5, + -1.52, + -1.3800000000000001, + -1.69, + -1.95, + -1.94, + -1.7, + -1.04, + -0.37, + -0.24, + -0.51, + -1.2, + -2.05, + -2.48, + -2.39, + -2.05, + -1.68, + -1.53, + -1.6300000000000001, + -1.79, + -1.85, + -1.9000000000000001, + -1.78, + -1.68, + -1.45, + -1.24, + -0.98, + -0.79, + -0.67, + -0.66, + -0.75, + -0.92, + -1.08, + -1.23, + -1.24, + -1.1300000000000001, + -0.97, + -0.78, + -0.68, + -0.6900000000000001, + -0.71, + -0.74, + -0.75, + -0.6900000000000001, + -0.58, + -0.33, + -0.07, + 0.15, + 0.32, + 0.34, + 0.32, + 0.31, + 0.3, + 0.27, + 0.24, + 0.19, + 0.15, + 0.11, + 0.08, + 0.05, + 0.02, + -0.01, + -0.04, + -0.06, + -0.07, + -0.07, + -0.07, + -0.06, + -0.05, + -0.03, + -0.04, + -0.06, + -0.06, + -0.04, + -0.03, + -0.02, + -0.03, + -0.05, + -0.08, + -0.12, + -0.16, + -0.21, + -0.27, + -0.34, + -0.39, + -0.44, + -0.49, + -0.55, + -0.59, + -0.65, + -0.7000000000000001, + -0.75, + -0.78, + -0.81, + -0.8200000000000001, + -0.79, + -0.73, + -0.67, + -0.62, + -0.58, + -0.55, + -0.53, + -0.53, + -0.54, + -0.56, + -0.58, + -0.58, + -0.5700000000000001, + -0.56, + -0.56, + -0.61, + -0.72, + -0.84, + -0.9400000000000001, + -0.75, + -0.47000000000000003, + -0.24, + -0.1, + -0.26, + -0.51, + -0.78, + -1.02, + -1.1400000000000001, + -1.2, + -1.41, + -1.8, + -2.12, + -2.3000000000000003, + -2.23, + -1.97, + -1.71, + -1.48, + -1.35, + -1.35, + -1.55, + -1.8800000000000001, + -2.23, + -2.42, + -2.5300000000000002, + -2.43, + -2.29, + -2.06, + -1.8, + -1.57, + -1.33, + -1.18, + -0.98, + -0.75, + -0.51, + -0.32, + -0.19, + -0.27, + -0.71, + -1.32, + -1.9000000000000001, + -2.2800000000000002, + -2.42, + -2.48, + -2.35, + -2.22, + -1.85, + -1.56, + -1.33, + -1.1400000000000001, + -1.35, + -1.6400000000000001, + -2.15, + -2.64, + -2.83, + -2.87, + -2.81, + -2.71, + -2.54, + -2.25, + -1.9000000000000001, + -1.55, + -1.36, + -1.36, + -1.41, + -1.53, + -1.75, + -2.12, + -2.43, + -2.32, + -2.04, + -1.53, + -1.08, + -1.17, + -1.42, + -1.77, + -2.05, + -2.16, + -2.18, + -2.19, + -2.2, + -2.08, + -1.93, + -1.72, + -1.49, + -1.34, + -1.23, + -1.21, + -1.29, + -1.36, + -1.3800000000000001, + -1.3800000000000001, + -1.4000000000000001, + -1.44, + -1.51, + -1.57 + ], + [ + -2.64, + -3.21, + -3.23, + -3.19, + -3.2600000000000002, + -3.3000000000000003, + -3.33, + -3.29, + -3.18, + -2.97, + -2.74, + -2.62, + -2.56, + -2.5, + -2.43, + -2.34, + -2.2600000000000002, + -2.11, + -1.96, + -1.77, + -1.59, + -1.34, + -1.12, + -0.81, + -0.91, + -0.92, + -1.1400000000000001, + -1.1500000000000001, + -1.07, + -0.86, + -0.8200000000000001, + -0.87, + -1.1300000000000001, + -1.42, + -1.59, + -1.67, + -1.69, + -1.84, + -1.99, + -1.97, + -1.78, + -1.16, + -0.46, + 0.37, + 1.16, + 1.59, + 1.75, + 1.45, + 0.96, + 0.5700000000000001, + 0.22, + 0.15, + 0.15, + 0.17, + 0.14, + 0.12, + 0.17, + 0.2, + 0.08, + -0.4, + -1.25, + -2.05, + -2.5100000000000002, + -2.65, + -2.2600000000000002, + -1.82, + -1.25, + -0.66, + 0.02, + 0.39, + 0.46, + 0.29, + 0.15, + 0.06, + -0.01, + -0.1, + -0.18, + -0.13, + 0.05, + 0.24, + 0.28, + 0.18, + 0.01, + -0.15, + -0.27, + -0.33, + -0.19, + 0.29, + 0.88, + 1.31, + 1.54, + 1.21, + 0.96, + 0.89, + 0.9400000000000001, + 1.11, + 1.1300000000000001, + 1.37, + 1.57, + 1.75, + 1.78, + 1.75, + 1.74, + 1.69, + 1.56, + 1.37, + 1.1500000000000001, + 0.8300000000000001, + 0.41000000000000003, + 0.16, + 0.17, + 0.24, + 0.11, + -0.13, + -0.32, + -0.5, + -0.4, + -0.52, + -0.56, + -0.54, + -0.18, + 0.38, + 0.59, + 0.67, + 0.43, + 0.1, + -0.27, + -0.67, + -0.97, + -1.07, + -1.05, + -1.17, + -1.47, + -1.97, + -2.33, + -2.44, + -2.45, + -2.41, + -2.2600000000000002, + -2.17, + -2.07, + -2.22, + -2.36, + -1.96, + -1.35, + -0.74, + -0.38, + -0.61, + -1.22, + -1.9100000000000001, + -2.35, + -2.2800000000000002, + -1.79, + -1.37, + -1.2, + -1.21, + -1.43, + -1.6300000000000001, + -1.6300000000000001, + -1.62, + -1.42, + -1.24, + -0.98, + -0.75, + -0.6, + -0.51, + -0.48, + -0.52, + -0.65, + -0.8200000000000001, + -0.9500000000000001, + -1.01, + -0.9400000000000001, + -0.77, + -0.61, + -0.49, + -0.44, + -0.44, + -0.44, + -0.46, + -0.44, + -0.34, + -0.17, + 0.06, + 0.29, + 0.4, + 0.46, + 0.44, + 0.41000000000000003, + 0.38, + 0.36, + 0.32, + 0.27, + 0.23, + 0.19, + 0.16, + 0.13, + 0.1, + 0.07, + 0.05, + 0.02, + 0.0, + 0.0, + 0.0, + 0.0, + 0.01, + 0.0, + 0.0, + -0.02, + -0.03, + -0.03, + -0.01, + -0.01, + -0.02, + -0.04, + -0.08, + -0.12, + -0.15, + -0.2, + -0.25, + -0.3, + -0.35000000000000003, + -0.4, + -0.46, + -0.52, + -0.5700000000000001, + -0.62, + -0.66, + -0.7000000000000001, + -0.73, + -0.76, + -0.76, + -0.75, + -0.72, + -0.68, + -0.64, + -0.61, + -0.59, + -0.58, + -0.5700000000000001, + -0.58, + -0.59, + -0.6, + -0.61, + -0.62, + -0.63, + -0.64, + -0.6900000000000001, + -0.78, + -0.9, + -0.87, + -0.77, + -0.55, + -0.33, + -0.38, + -0.52, + -0.74, + -0.9500000000000001, + -1.07, + -1.08, + -1.16, + -1.32, + -1.67, + -2.05, + -2.21, + -2.13, + -1.9000000000000001, + -1.58, + -1.3, + -1.09, + -1.11, + -1.37, + -1.8, + -2.18, + -2.5, + -2.5100000000000002, + -2.45, + -2.24, + -2.0300000000000002, + -1.86, + -1.75, + -1.6300000000000001, + -1.5, + -1.23, + -0.84, + -0.51, + -0.23, + -0.12, + -0.29, + -0.71, + -1.35, + -1.8900000000000001, + -2.2, + -2.37, + -2.25, + -2.1, + -1.6400000000000001, + -1.26, + -0.99, + -0.74, + -0.93, + -1.16, + -1.6500000000000001, + -2.18, + -2.5300000000000002, + -2.77, + -2.7800000000000002, + -2.73, + -2.62, + -2.46, + -2.19, + -1.81, + -1.5, + -1.3800000000000001, + -1.3900000000000001, + -1.49, + -1.61, + -1.82, + -2.12, + -2.36, + -2.47, + -2.18, + -1.81, + -1.54, + -1.43, + -1.73, + -2.05, + -2.22, + -2.24, + -2.23, + -2.2, + -2.2, + -2.21, + -2.13, + -2.0300000000000002, + -1.9000000000000001, + -1.71, + -1.59, + -1.51, + -1.5, + -1.49, + -1.47, + -1.45, + -1.44, + -1.49, + -1.56, + -1.62 + ], + [ + -3.0300000000000002, + -3.61, + -3.37, + -3.19, + -3.3000000000000003, + -3.45, + -3.5, + -3.5300000000000002, + -3.4, + -3.16, + -2.94, + -2.7800000000000002, + -2.71, + -2.66, + -2.6, + -2.54, + -2.43, + -2.22, + -1.99, + -1.76, + -1.52, + -1.33, + -1.04, + -0.99, + -0.9, + -1.12, + -1.22, + -1.29, + -1.19, + -1.1500000000000001, + -1.11, + -1.25, + -1.5, + -1.77, + -1.99, + -2.15, + -2.39, + -2.61, + -2.69, + -2.56, + -1.75, + -0.91, + 0.11, + 1.04, + 1.81, + 2.4, + 2.39, + 2.19, + 1.53, + 0.8, + 0.36, + 0.02, + 0.0, + 0.01, + -0.03, + -0.1, + 0.0, + 0.26, + 0.26, + -0.15, + -0.92, + -1.87, + -2.5, + -2.47, + -2.23, + -1.71, + -1.2, + -0.41000000000000003, + 0.24, + 0.67, + 0.75, + 0.51, + 0.22, + 0.1, + 0.0, + -0.25, + -0.5, + -0.4, + -0.07, + 0.2, + 0.34, + 0.3, + 0.17, + 0.03, + -0.06, + -0.06, + 0.17, + 0.61, + 1.1300000000000001, + 1.59, + 1.55, + 1.4000000000000001, + 1.19, + 1.09, + 0.97, + 0.77, + 0.91, + 1.17, + 1.52, + 1.75, + 1.6500000000000001, + 1.47, + 1.47, + 1.47, + 1.32, + 1.1400000000000001, + 0.9500000000000001, + 0.71, + 0.39, + 0.2, + 0.14, + 0.26, + 0.23, + 0.14, + -0.02, + -0.05, + -0.13, + -0.43, + -0.9500000000000001, + -0.9500000000000001, + -0.72, + -0.21, + 0.27, + 0.29, + 0.14, + -0.15, + -0.44, + -0.72, + -0.93, + -0.97, + -0.8200000000000001, + -0.79, + -1.17, + -1.6600000000000001, + -2.2800000000000002, + -2.77, + -3.14, + -3.43, + -3.27, + -2.97, + -2.69, + -2.48, + -2.42, + -2.21, + -1.6, + -0.96, + -0.67, + -0.74, + -1.23, + -1.83, + -2.16, + -1.97, + -1.56, + -1.08, + -0.8, + -0.84, + -1.01, + -1.22, + -1.36, + -1.27, + -1.16, + -0.93, + -0.7000000000000001, + -0.52, + -0.38, + -0.3, + -0.25, + -0.28, + -0.36, + -0.5, + -0.64, + -0.7000000000000001, + -0.6900000000000001, + -0.59, + -0.44, + -0.32, + -0.23, + -0.19, + -0.19, + -0.19, + -0.19, + -0.13, + 0.0, + 0.17, + 0.37, + 0.53, + 0.55, + 0.54, + 0.5, + 0.47000000000000003, + 0.43, + 0.39, + 0.34, + 0.3, + 0.26, + 0.23, + 0.2, + 0.17, + 0.14, + 0.11, + 0.08, + 0.06, + 0.05, + 0.04, + 0.04, + 0.03, + 0.03, + 0.02, + 0.01, + -0.01, + -0.01, + -0.01, + -0.01, + -0.03, + -0.04, + -0.08, + -0.12, + -0.16, + -0.19, + -0.23, + -0.28, + -0.33, + -0.39, + -0.45, + -0.51, + -0.56, + -0.61, + -0.65, + -0.67, + -0.6900000000000001, + -0.71, + -0.72, + -0.71, + -0.7000000000000001, + -0.67, + -0.65, + -0.64, + -0.63, + -0.62, + -0.61, + -0.61, + -0.62, + -0.63, + -0.64, + -0.65, + -0.66, + -0.68, + -0.73, + -0.81, + -0.86, + -0.88, + -0.78, + -0.63, + -0.5700000000000001, + -0.61, + -0.78, + -0.97, + -1.11, + -1.18, + -1.19, + -1.17, + -1.33, + -1.61, + -1.9000000000000001, + -2.04, + -1.96, + -1.6600000000000001, + -1.3, + -0.87, + -0.61, + -0.7000000000000001, + -1.01, + -1.6, + -2.16, + -2.41, + -2.54, + -2.39, + -2.19, + -2.0, + -1.9000000000000001, + -1.8800000000000001, + -1.94, + -1.78, + -1.51, + -1.09, + -0.6, + -0.3, + -0.19, + -0.35000000000000003, + -0.8300000000000001, + -1.3800000000000001, + -1.84, + -2.13, + -2.1, + -1.98, + -1.48, + -1.0, + -0.71, + -0.41000000000000003, + -0.59, + -0.77, + -1.21, + -1.71, + -2.11, + -2.43, + -2.56, + -2.6, + -2.5500000000000003, + -2.47, + -2.31, + -2.05, + -1.76, + -1.5, + -1.37, + -1.46, + -1.58, + -1.67, + -1.85, + -2.1, + -2.36, + -2.44, + -2.39, + -2.1, + -1.86, + -1.8800000000000001, + -2.07, + -2.3000000000000003, + -2.45, + -2.45, + -2.36, + -2.32, + -2.27, + -2.2600000000000002, + -2.25, + -2.19, + -2.13, + -2.0100000000000002, + -1.86, + -1.77, + -1.67, + -1.6300000000000001, + -1.54, + -1.49, + -1.5, + -1.54, + -1.59, + -1.6500000000000001 + ], + [ + -2.91, + -3.44, + -3.35, + -3.29, + -3.36, + -3.5100000000000002, + -3.65, + -3.67, + -3.62, + -3.4, + -3.15, + -3.0100000000000002, + -2.94, + -2.9, + -2.88, + -2.8000000000000003, + -2.64, + -2.43, + -2.1, + -1.81, + -1.6300000000000001, + -1.42, + -1.34, + -1.26, + -1.3800000000000001, + -1.52, + -1.6300000000000001, + -1.6500000000000001, + -1.6500000000000001, + -1.6300000000000001, + -1.6600000000000001, + -1.76, + -1.96, + -2.2, + -2.42, + -2.64, + -2.9, + -3.19, + -3.2600000000000002, + -2.58, + -1.76, + -0.44, + 0.71, + 1.69, + 2.58, + 2.95, + 3.19, + 2.71, + 2.12, + 1.22, + 0.39, + 0.05, + -0.14, + -0.18, + -0.23, + -0.28, + -0.15, + 0.16, + 0.42, + 0.13, + -0.68, + -1.54, + -2.11, + -2.3000000000000003, + -1.96, + -1.54, + -0.8, + -0.02, + 0.7000000000000001, + 1.29, + 1.11, + 0.76, + 0.39, + 0.12, + -0.12, + -0.52, + -0.74, + -0.7000000000000001, + -0.31, + 0.19, + 0.41000000000000003, + 0.43, + 0.33, + 0.17, + 0.06, + 0.12, + 0.38, + 0.86, + 1.4000000000000001, + 1.58, + 1.62, + 1.47, + 1.34, + 1.2, + 1.01, + 0.78, + 0.68, + 1.11, + 1.68, + 1.7, + 1.44, + 1.3, + 1.35, + 1.35, + 1.1300000000000001, + 0.91, + 0.8, + 0.63, + 0.44, + 0.24, + 0.34, + 0.36, + 0.5, + 0.48, + 0.49, + 0.5, + 0.23, + -0.2, + -0.87, + -1.51, + -1.23, + -0.78, + -0.38, + -0.26, + -0.39, + -0.59, + -0.78, + -0.89, + -1.02, + -0.93, + -0.76, + -0.67, + -0.8, + -1.43, + -2.12, + -2.98, + -3.83, + -4.24, + -4.44, + -3.83, + -3.14, + -2.79, + -2.5100000000000002, + -2.22, + -1.78, + -1.23, + -0.84, + -0.88, + -1.19, + -1.6400000000000001, + -1.83, + -1.69, + -1.26, + -0.8, + -0.52, + -0.41000000000000003, + -0.61, + -0.81, + -0.92, + -0.92, + -0.8, + -0.62, + -0.46, + -0.3, + -0.19, + -0.1, + -0.06, + -0.04, + -0.11, + -0.2, + -0.32, + -0.4, + -0.42, + -0.38, + -0.28, + -0.15, + -0.05, + 0.02, + 0.05, + 0.03, + 0.03, + 0.06, + 0.14, + 0.29, + 0.47000000000000003, + 0.59, + 0.66, + 0.63, + 0.59, + 0.54, + 0.49, + 0.45, + 0.4, + 0.36, + 0.33, + 0.29, + 0.26, + 0.23, + 0.2, + 0.17, + 0.13, + 0.11, + 0.09, + 0.07, + 0.06, + 0.06, + 0.04, + 0.03, + 0.02, + 0.01, + -0.01, + -0.02, + -0.03, + -0.04, + -0.07, + -0.09, + -0.13, + -0.17, + -0.21, + -0.24, + -0.28, + -0.33, + -0.38, + -0.45, + -0.5, + -0.56, + -0.61, + -0.63, + -0.65, + -0.67, + -0.68, + -0.68, + -0.68, + -0.67, + -0.67, + -0.66, + -0.65, + -0.65, + -0.65, + -0.64, + -0.64, + -0.65, + -0.66, + -0.67, + -0.68, + -0.6900000000000001, + -0.71, + -0.74, + -0.79, + -0.84, + -0.86, + -0.8200000000000001, + -0.77, + -0.77, + -0.85, + -1.02, + -1.16, + -1.3, + -1.34, + -1.36, + -1.35, + -1.3900000000000001, + -1.58, + -1.75, + -1.82, + -1.69, + -1.3800000000000001, + -0.8300000000000001, + -0.35000000000000003, + -0.1, + -0.1, + -0.7000000000000001, + -1.34, + -1.98, + -2.41, + -2.45, + -2.37, + -2.12, + -1.9000000000000001, + -1.87, + -1.98, + -2.0300000000000002, + -2.0300000000000002, + -1.75, + -1.32, + -0.87, + -0.48, + -0.37, + -0.55, + -0.9500000000000001, + -1.45, + -1.84, + -1.8900000000000001, + -1.83, + -1.35, + -0.8300000000000001, + -0.5, + -0.18, + -0.35000000000000003, + -0.52, + -0.88, + -1.32, + -1.69, + -2.02, + -2.2, + -2.3000000000000003, + -2.3000000000000003, + -2.2800000000000002, + -2.2, + -2.08, + -1.8900000000000001, + -1.69, + -1.48, + -1.3900000000000001, + -1.44, + -1.56, + -1.69, + -1.83, + -2.06, + -2.29, + -2.47, + -2.45, + -2.36, + -2.21, + -2.23, + -2.38, + -2.59, + -2.69, + -2.72, + -2.65, + -2.5300000000000002, + -2.46, + -2.38, + -2.34, + -2.32, + -2.2600000000000002, + -2.17, + -2.05, + -1.9000000000000001, + -1.8, + -1.68, + -1.6, + -1.55, + -1.54, + -1.57, + -1.62, + -1.68 + ], + [ + -3.2800000000000002, + -3.8200000000000003, + -3.58, + -3.35, + -3.46, + -3.6, + -3.72, + -3.8000000000000003, + -3.74, + -3.59, + -3.38, + -3.25, + -3.2, + -3.22, + -3.19, + -3.0300000000000002, + -2.86, + -2.58, + -2.2600000000000002, + -2.02, + -1.8, + -1.73, + -1.69, + -1.76, + -1.94, + -2.02, + -2.12, + -2.16, + -2.23, + -2.23, + -2.27, + -2.32, + -2.4, + -2.58, + -2.75, + -2.97, + -3.2600000000000002, + -3.48, + -3.18, + -2.56, + -1.27, + 0.06, + 1.24, + 2.36, + 2.96, + 3.5, + 3.43, + 3.21, + 2.36, + 1.45, + 0.63, + -0.02, + -0.23, + -0.38, + -0.5, + -0.59, + -0.4, + 0.11, + 0.4, + 0.23, + -0.41000000000000003, + -1.1400000000000001, + -1.7, + -1.81, + -1.6500000000000001, + -1.12, + -0.45, + 0.38, + 1.24, + 1.51, + 1.53, + 0.9400000000000001, + 0.38, + 0.09, + -0.24, + -0.65, + -1.09, + -0.9500000000000001, + -0.47000000000000003, + 0.03, + 0.45, + 0.56, + 0.46, + 0.29, + 0.08, + 0.09, + 0.47000000000000003, + 1.0, + 1.3900000000000001, + 1.6600000000000001, + 1.59, + 1.49, + 1.3800000000000001, + 1.35, + 1.02, + 0.66, + 0.71, + 1.09, + 1.44, + 1.47, + 1.21, + 1.08, + 1.19, + 1.28, + 1.08, + 0.78, + 0.65, + 0.68, + 0.59, + 0.64, + 0.7000000000000001, + 0.8200000000000001, + 0.9, + 0.97, + 1.04, + 0.88, + 0.67, + -0.06, + -0.9500000000000001, + -1.52, + -1.78, + -1.32, + -0.92, + -0.8, + -0.9, + -1.0, + -1.0, + -1.07, + -1.1, + -1.07, + -0.89, + -0.73, + -0.77, + -1.07, + -1.98, + -2.97, + -4.13, + -5.16, + -5.11, + -4.67, + -3.72, + -2.9, + -2.58, + -2.29, + -1.86, + -1.4000000000000001, + -1.05, + -0.91, + -1.1300000000000001, + -1.4000000000000001, + -1.55, + -1.3900000000000001, + -1.02, + -0.63, + -0.3, + -0.2, + -0.24, + -0.44, + -0.55, + -0.55, + -0.47000000000000003, + -0.37, + -0.24, + -0.13, + -0.03, + 0.04, + 0.1, + 0.11, + 0.11, + 0.03, + -0.04, + -0.11, + -0.17, + -0.15, + -0.08, + 0.02, + 0.13, + 0.21, + 0.23, + 0.23, + 0.21, + 0.22, + 0.29, + 0.39, + 0.54, + 0.68, + 0.71, + 0.71, + 0.66, + 0.6, + 0.55, + 0.5, + 0.45, + 0.42, + 0.38, + 0.34, + 0.31, + 0.28, + 0.25, + 0.21, + 0.18, + 0.14, + 0.12, + 0.1, + 0.08, + 0.06, + 0.05, + 0.03, + 0.02, + 0.01, + -0.01, + -0.03, + -0.05, + -0.07, + -0.1, + -0.13, + -0.16, + -0.2, + -0.23, + -0.26, + -0.3, + -0.35000000000000003, + -0.4, + -0.46, + -0.51, + -0.5700000000000001, + -0.6, + -0.63, + -0.65, + -0.66, + -0.66, + -0.65, + -0.65, + -0.65, + -0.65, + -0.66, + -0.66, + -0.67, + -0.67, + -0.67, + -0.67, + -0.67, + -0.68, + -0.6900000000000001, + -0.7000000000000001, + -0.72, + -0.73, + -0.76, + -0.8, + -0.84, + -0.86, + -0.88, + -0.88, + -0.92, + -1.03, + -1.16, + -1.32, + -1.41, + -1.5, + -1.5, + -1.51, + -1.52, + -1.54, + -1.6300000000000001, + -1.56, + -1.3800000000000001, + -0.97, + -0.44, + 0.09, + 0.45, + 0.14, + -0.32, + -1.22, + -1.94, + -2.3000000000000003, + -2.44, + -2.2600000000000002, + -2.0, + -1.79, + -1.75, + -1.87, + -2.1, + -2.09, + -1.97, + -1.59, + -1.17, + -0.8200000000000001, + -0.66, + -0.79, + -1.1300000000000001, + -1.53, + -1.68, + -1.7, + -1.27, + -0.76, + -0.38, + -0.02, + -0.19, + -0.4, + -0.67, + -1.01, + -1.31, + -1.6, + -1.76, + -1.86, + -1.9000000000000001, + -1.9100000000000001, + -1.8800000000000001, + -1.83, + -1.75, + -1.71, + -1.57, + -1.3900000000000001, + -1.3, + -1.35, + -1.47, + -1.59, + -1.75, + -1.97, + -2.22, + -2.43, + -2.5300000000000002, + -2.48, + -2.44, + -2.47, + -2.61, + -2.7800000000000002, + -2.93, + -2.95, + -2.95, + -2.83, + -2.69, + -2.59, + -2.5, + -2.45, + -2.38, + -2.29, + -2.15, + -2.0, + -1.84, + -1.72, + -1.6400000000000001, + -1.58, + -1.58, + -1.6, + -1.6500000000000001, + -1.7 + ], + [ + -3.2600000000000002, + -3.77, + -3.75, + -3.58, + -3.58, + -3.71, + -3.79, + -3.86, + -3.85, + -3.72, + -3.59, + -3.48, + -3.49, + -3.5100000000000002, + -3.42, + -3.27, + -3.0100000000000002, + -2.75, + -2.52, + -2.29, + -2.13, + -2.04, + -2.04, + -2.18, + -2.3000000000000003, + -2.47, + -2.52, + -2.64, + -2.71, + -2.84, + -2.82, + -2.77, + -2.81, + -2.85, + -3.0, + -3.18, + -3.41, + -3.36, + -3.06, + -2.05, + -0.8, + 0.45, + 1.71, + 2.5100000000000002, + 3.22, + 3.44, + 3.5100000000000002, + 3.09, + 2.45, + 1.53, + 0.71, + 0.1, + -0.37, + -0.58, + -0.88, + -0.92, + -0.64, + -0.14, + 0.34, + 0.27, + -0.22, + -0.86, + -1.17, + -1.29, + -1.18, + -0.77, + -0.17, + 0.65, + 1.27, + 1.71, + 1.46, + 0.9500000000000001, + 0.43, + 0.07, + -0.28, + -0.8, + -1.11, + -1.1300000000000001, + -0.67, + -0.13, + 0.3, + 0.62, + 0.59, + 0.27, + 0.03, + 0.06, + 0.37, + 0.9400000000000001, + 1.3800000000000001, + 1.54, + 1.52, + 1.36, + 1.29, + 1.16, + 0.97, + 0.66, + 0.6, + 0.89, + 1.12, + 1.03, + 0.74, + 0.72, + 1.1, + 1.19, + 0.9500000000000001, + 0.6900000000000001, + 0.64, + 0.71, + 0.91, + 1.08, + 1.21, + 1.3800000000000001, + 1.33, + 1.44, + 1.34, + 1.21, + 0.72, + 0.01, + -0.91, + -1.75, + -1.8800000000000001, + -1.72, + -1.33, + -1.1300000000000001, + -1.1400000000000001, + -1.12, + -1.09, + -1.05, + -1.1, + -1.25, + -1.2, + -1.04, + -0.96, + -1.1, + -1.6400000000000001, + -2.9, + -4.24, + -5.3500000000000005, + -5.96, + -5.16, + -4.05, + -3.17, + -2.54, + -2.24, + -1.93, + -1.5, + -1.12, + -0.98, + -1.01, + -1.23, + -1.33, + -1.2, + -0.91, + -0.54, + -0.26, + -0.07, + -0.08, + -0.16, + -0.25, + -0.25, + -0.22, + -0.15, + -0.07, + 0.0, + 0.08, + 0.15, + 0.2, + 0.24, + 0.24, + 0.24, + 0.18, + 0.13, + 0.09, + 0.08, + 0.13, + 0.21, + 0.31, + 0.37, + 0.4, + 0.38, + 0.38, + 0.38, + 0.42, + 0.5, + 0.62, + 0.72, + 0.78, + 0.76, + 0.72, + 0.66, + 0.59, + 0.54, + 0.49, + 0.45, + 0.42, + 0.38, + 0.35000000000000003, + 0.32, + 0.28, + 0.25, + 0.21, + 0.17, + 0.14, + 0.11, + 0.09, + 0.07, + 0.04, + 0.02, + 0.01, + 0.0, + -0.02, + -0.05, + -0.08, + -0.1, + -0.13, + -0.16, + -0.19, + -0.23, + -0.26, + -0.3, + -0.34, + -0.38, + -0.43, + -0.48, + -0.53, + -0.58, + -0.61, + -0.64, + -0.65, + -0.66, + -0.66, + -0.65, + -0.64, + -0.64, + -0.65, + -0.66, + -0.68, + -0.6900000000000001, + -0.7000000000000001, + -0.7000000000000001, + -0.7000000000000001, + -0.7000000000000001, + -0.71, + -0.72, + -0.73, + -0.74, + -0.76, + -0.79, + -0.8200000000000001, + -0.86, + -0.89, + -0.92, + -0.97, + -1.04, + -1.1300000000000001, + -1.25, + -1.36, + -1.45, + -1.52, + -1.58, + -1.57, + -1.55, + -1.54, + -1.47, + -1.37, + -1.06, + -0.64, + -0.11, + 0.43, + 0.52, + 0.37, + -0.37, + -1.18, + -1.8800000000000001, + -2.33, + -2.34, + -2.17, + -1.82, + -1.51, + -1.49, + -1.68, + -1.92, + -2.18, + -2.07, + -1.8900000000000001, + -1.51, + -1.17, + -1.01, + -1.06, + -1.31, + -1.48, + -1.59, + -1.26, + -0.81, + -0.4, + 0.03, + -0.08, + -0.29, + -0.54, + -0.8200000000000001, + -0.99, + -1.19, + -1.3, + -1.35, + -1.3800000000000001, + -1.3900000000000001, + -1.3900000000000001, + -1.4000000000000001, + -1.3800000000000001, + -1.41, + -1.3900000000000001, + -1.35, + -1.22, + -1.1300000000000001, + -1.16, + -1.31, + -1.44, + -1.6, + -1.81, + -2.12, + -2.41, + -2.5300000000000002, + -2.56, + -2.56, + -2.61, + -2.75, + -2.91, + -3.0300000000000002, + -3.15, + -3.12, + -3.06, + -2.92, + -2.77, + -2.66, + -2.56, + -2.48, + -2.36, + -2.23, + -2.05, + -1.8900000000000001, + -1.75, + -1.6600000000000001, + -1.61, + -1.6, + -1.62, + -1.6600000000000001, + -1.72 + ], + [ + -3.54, + -4.04, + -3.94, + -3.79, + -3.79, + -3.85, + -3.93, + -3.94, + -3.94, + -3.88, + -3.77, + -3.69, + -3.68, + -3.67, + -3.59, + -3.36, + -3.13, + -2.98, + -2.79, + -2.6, + -2.45, + -2.2800000000000002, + -2.24, + -2.34, + -2.5, + -2.64, + -2.79, + -2.92, + -3.14, + -3.21, + -3.2600000000000002, + -3.18, + -3.11, + -3.14, + -3.18, + -3.3200000000000003, + -3.34, + -3.27, + -2.64, + -1.69, + -0.5700000000000001, + 0.68, + 1.67, + 2.52, + 2.97, + 3.22, + 3.13, + 2.82, + 2.19, + 1.5, + 0.73, + 0.14, + -0.35000000000000003, + -0.84, + -1.1, + -1.24, + -0.9400000000000001, + -0.33, + 0.15, + 0.25, + -0.14, + -0.51, + -0.8, + -0.92, + -0.8200000000000001, + -0.61, + -0.09, + 0.53, + 1.18, + 1.45, + 1.35, + 0.86, + 0.41000000000000003, + 0.1, + -0.18, + -0.65, + -1.05, + -1.02, + -0.79, + -0.29, + 0.16, + 0.48, + 0.55, + 0.3, + -0.03, + -0.1, + 0.37, + 0.89, + 1.31, + 1.49, + 1.29, + 1.06, + 0.9, + 0.8300000000000001, + 0.66, + 0.51, + 0.47000000000000003, + 0.6, + 0.7000000000000001, + 0.47000000000000003, + 0.27, + 0.39, + 0.71, + 0.93, + 0.74, + 0.46, + 0.44, + 0.7000000000000001, + 0.99, + 1.31, + 1.6, + 1.52, + 1.53, + 1.5, + 1.51, + 1.17, + 0.65, + -0.1, + -0.98, + -1.69, + -2.06, + -1.84, + -1.54, + -1.3, + -1.1400000000000001, + -1.09, + -0.9500000000000001, + -0.9, + -1.06, + -1.24, + -1.54, + -1.56, + -1.34, + -1.34, + -1.72, + -2.63, + -4.13, + -5.51, + -5.99, + -5.63, + -4.38, + -3.2, + -2.59, + -2.15, + -1.8800000000000001, + -1.59, + -1.24, + -0.99, + -1.02, + -1.1500000000000001, + -1.23, + -1.1400000000000001, + -0.88, + -0.6, + -0.31, + -0.1, + -0.02, + -0.02, + -0.03, + -0.04, + -0.01, + 0.01, + 0.05, + 0.11, + 0.16, + 0.23, + 0.28, + 0.33, + 0.37, + 0.36, + 0.36, + 0.32, + 0.3, + 0.3, + 0.33, + 0.4, + 0.46, + 0.52, + 0.53, + 0.52, + 0.52, + 0.52, + 0.54, + 0.6, + 0.68, + 0.77, + 0.81, + 0.81, + 0.76, + 0.7000000000000001, + 0.64, + 0.58, + 0.53, + 0.48, + 0.44, + 0.42, + 0.38, + 0.34, + 0.31, + 0.27, + 0.23, + 0.19, + 0.15, + 0.12, + 0.09, + 0.06, + 0.03, + 0.01, + 0.0, + -0.02, + -0.05, + -0.08, + -0.11, + -0.14, + -0.17, + -0.2, + -0.24, + -0.27, + -0.31, + -0.34, + -0.38, + -0.42, + -0.46, + -0.51, + -0.55, + -0.59, + -0.63, + -0.65, + -0.66, + -0.67, + -0.67, + -0.67, + -0.66, + -0.66, + -0.67, + -0.68, + -0.7000000000000001, + -0.71, + -0.73, + -0.74, + -0.74, + -0.74, + -0.74, + -0.75, + -0.76, + -0.78, + -0.8, + -0.8300000000000001, + -0.86, + -0.9, + -0.9400000000000001, + -0.98, + -1.03, + -1.1, + -1.2, + -1.29, + -1.37, + -1.44, + -1.49, + -1.54, + -1.56, + -1.52, + -1.47, + -1.3800000000000001, + -1.17, + -0.87, + -0.44, + 0.07, + 0.38, + 0.54, + 0.17, + -0.45, + -1.25, + -1.97, + -2.2800000000000002, + -2.33, + -2.0, + -1.56, + -1.23, + -1.06, + -1.3, + -1.73, + -2.0, + -2.23, + -2.06, + -1.85, + -1.53, + -1.32, + -1.33, + -1.3900000000000001, + -1.52, + -1.31, + -0.97, + -0.56, + -0.12, + -0.09, + -0.22, + -0.43, + -0.67, + -0.74, + -0.81, + -0.85, + -0.8300000000000001, + -0.8300000000000001, + -0.8, + -0.8200000000000001, + -0.84, + -0.87, + -0.9500000000000001, + -1.0, + -1.08, + -1.04, + -0.9400000000000001, + -0.87, + -0.96, + -1.11, + -1.24, + -1.3900000000000001, + -1.6500000000000001, + -1.97, + -2.3000000000000003, + -2.54, + -2.6, + -2.63, + -2.72, + -2.86, + -2.99, + -3.1, + -3.18, + -3.21, + -3.14, + -3.04, + -2.89, + -2.7600000000000002, + -2.65, + -2.54, + -2.42, + -2.25, + -2.08, + -1.9000000000000001, + -1.76, + -1.68, + -1.6300000000000001, + -1.6300000000000001, + -1.6500000000000001, + -1.69, + -1.74 + ], + [ + -3.62, + -4.07, + -4.07, + -3.97, + -3.99, + -4.04, + -4.1, + -4.11, + -4.1, + -4.04, + -3.95, + -3.86, + -3.7600000000000002, + -3.73, + -3.5700000000000003, + -3.36, + -3.3000000000000003, + -3.18, + -3.04, + -2.9, + -2.65, + -2.44, + -2.34, + -2.35, + -2.5500000000000003, + -2.7, + -2.89, + -3.1, + -3.3000000000000003, + -3.46, + -3.49, + -3.5, + -3.41, + -3.33, + -3.34, + -3.2800000000000002, + -3.2800000000000002, + -2.95, + -2.36, + -1.55, + -0.48, + 0.54, + 1.52, + 2.19, + 2.63, + 2.74, + 2.64, + 2.33, + 1.85, + 1.24, + 0.6900000000000001, + 0.12, + -0.36, + -0.8300000000000001, + -1.28, + -1.37, + -1.16, + -0.56, + 0.07, + 0.21, + 0.06, + -0.26, + -0.58, + -0.73, + -0.8200000000000001, + -0.6900000000000001, + -0.32, + 0.19, + 0.78, + 1.1400000000000001, + 1.05, + 0.72, + 0.36, + 0.17, + -0.09, + -0.39, + -0.72, + -0.8300000000000001, + -0.61, + -0.44, + -0.02, + 0.34, + 0.44, + 0.25, + -0.06, + 0.02, + 0.4, + 0.97, + 1.4000000000000001, + 1.34, + 1.06, + 0.61, + 0.27, + 0.26, + 0.24, + 0.19, + 0.26, + 0.33, + 0.25, + 0.04, + -0.18, + -0.05, + 0.18, + 0.33, + 0.14, + -0.09, + 0.02, + 0.31, + 0.79, + 1.21, + 1.34, + 1.32, + 1.24, + 1.23, + 1.23, + 1.03, + 0.46, + -0.26, + -1.01, + -1.61, + -1.92, + -1.92, + -1.59, + -1.29, + -1.1400000000000001, + -1.04, + -0.91, + -0.77, + -0.88, + -1.23, + -1.56, + -1.85, + -1.83, + -1.6500000000000001, + -1.8900000000000001, + -2.62, + -3.87, + -5.3, + -6.15, + -5.69, + -4.59, + -3.42, + -2.57, + -2.19, + -1.93, + -1.68, + -1.3900000000000001, + -1.17, + -1.08, + -1.19, + -1.23, + -1.1400000000000001, + -0.9500000000000001, + -0.68, + -0.43, + -0.22, + -0.05, + 0.03, + 0.07, + 0.1, + 0.11, + 0.13, + 0.15, + 0.18, + 0.23, + 0.29, + 0.35000000000000003, + 0.41000000000000003, + 0.45, + 0.49, + 0.48, + 0.48, + 0.47000000000000003, + 0.48, + 0.51, + 0.55, + 0.61, + 0.63, + 0.65, + 0.64, + 0.64, + 0.63, + 0.65, + 0.68, + 0.75, + 0.8200000000000001, + 0.86, + 0.85, + 0.81, + 0.74, + 0.67, + 0.61, + 0.56, + 0.51, + 0.47000000000000003, + 0.44, + 0.4, + 0.37, + 0.32, + 0.28, + 0.24, + 0.2, + 0.15, + 0.12, + 0.08, + 0.05, + 0.02, + 0.0, + -0.03, + -0.05, + -0.08, + -0.11, + -0.15, + -0.18, + -0.21, + -0.24, + -0.28, + -0.32, + -0.35000000000000003, + -0.39, + -0.42, + -0.46, + -0.51, + -0.55, + -0.59, + -0.62, + -0.65, + -0.67, + -0.6900000000000001, + -0.6900000000000001, + -0.7000000000000001, + -0.6900000000000001, + -0.6900000000000001, + -0.6900000000000001, + -0.7000000000000001, + -0.72, + -0.73, + -0.75, + -0.77, + -0.78, + -0.79, + -0.78, + -0.78, + -0.79, + -0.81, + -0.8300000000000001, + -0.86, + -0.89, + -0.92, + -0.9500000000000001, + -1.0, + -1.04, + -1.09, + -1.1500000000000001, + -1.23, + -1.3, + -1.37, + -1.42, + -1.46, + -1.48, + -1.49, + -1.45, + -1.3900000000000001, + -1.28, + -1.07, + -0.78, + -0.37, + -0.04, + 0.27, + 0.23, + -0.07, + -0.66, + -1.3900000000000001, + -1.95, + -2.2800000000000002, + -2.19, + -1.86, + -1.35, + -0.86, + -0.72, + -0.84, + -1.33, + -1.9000000000000001, + -2.12, + -2.25, + -2.04, + -1.8, + -1.6, + -1.51, + -1.55, + -1.4000000000000001, + -1.18, + -0.8200000000000001, + -0.39, + -0.25, + -0.26, + -0.38, + -0.56, + -0.55, + -0.48, + -0.42, + -0.33, + -0.3, + -0.25, + -0.25, + -0.27, + -0.32, + -0.43, + -0.52, + -0.64, + -0.7000000000000001, + -0.67, + -0.58, + -0.61, + -0.71, + -0.86, + -1.0, + -1.18, + -1.42, + -1.78, + -2.16, + -2.45, + -2.62, + -2.7, + -2.83, + -2.97, + -3.08, + -3.15, + -3.17, + -3.19, + -3.15, + -3.0500000000000003, + -2.94, + -2.81, + -2.69, + -2.57, + -2.41, + -2.25, + -2.08, + -1.9000000000000001, + -1.76, + -1.67, + -1.6500000000000001, + -1.6500000000000001, + -1.68, + -1.72, + -1.77 + ], + [ + -3.7600000000000002, + -4.21, + -4.19, + -4.1, + -4.13, + -4.2, + -4.26, + -4.29, + -4.28, + -4.21, + -4.11, + -4.0, + -3.9, + -3.7, + -3.5300000000000002, + -3.48, + -3.42, + -3.31, + -3.17, + -3.0100000000000002, + -2.7800000000000002, + -2.57, + -2.43, + -2.47, + -2.61, + -2.81, + -2.99, + -3.19, + -3.36, + -3.5300000000000002, + -3.64, + -3.64, + -3.58, + -3.46, + -3.25, + -3.17, + -2.99, + -2.69, + -2.25, + -1.49, + -0.64, + 0.32, + 1.17, + 1.83, + 2.14, + 2.22, + 2.07, + 1.76, + 1.37, + 0.91, + 0.43, + 0.05, + -0.39, + -0.77, + -1.17, + -1.4000000000000001, + -1.16, + -0.66, + -0.05, + 0.37, + 0.28, + -0.08, + -0.4, + -0.75, + -0.92, + -0.87, + -0.63, + -0.17, + 0.32, + 0.71, + 0.74, + 0.51, + 0.29, + 0.14, + 0.02, + -0.21, + -0.34, + -0.43, + -0.44, + -0.28, + -0.14, + 0.2, + 0.34, + 0.18, + 0.09, + 0.16, + 0.6, + 1.16, + 1.4000000000000001, + 1.32, + 0.75, + 0.08, + -0.26, + -0.4, + -0.26, + -0.12, + -0.02, + 0.05, + -0.06, + -0.32, + -0.52, + -0.62, + -0.44, + -0.58, + -0.77, + -0.85, + -0.75, + -0.23, + 0.28, + 0.7000000000000001, + 0.87, + 0.79, + 0.66, + 0.76, + 0.8200000000000001, + 0.6900000000000001, + 0.26, + -0.36, + -0.97, + -1.49, + -1.75, + -1.74, + -1.54, + -1.25, + -1.1500000000000001, + -1.06, + -1.0, + -0.86, + -0.76, + -1.05, + -1.44, + -1.75, + -1.95, + -1.93, + -1.99, + -2.57, + -3.66, + -4.97, + -5.93, + -5.88, + -4.79, + -3.61, + -2.77, + -2.2800000000000002, + -2.07, + -1.93, + -1.6600000000000001, + -1.42, + -1.34, + -1.3, + -1.33, + -1.21, + -1.02, + -0.81, + -0.5700000000000001, + -0.33, + -0.14, + 0.01, + 0.09, + 0.14, + 0.18, + 0.2, + 0.22, + 0.25, + 0.29, + 0.35000000000000003, + 0.42, + 0.48, + 0.53, + 0.56, + 0.59, + 0.59, + 0.6, + 0.62, + 0.65, + 0.6900000000000001, + 0.71, + 0.73, + 0.74, + 0.74, + 0.74, + 0.74, + 0.74, + 0.76, + 0.81, + 0.86, + 0.89, + 0.88, + 0.84, + 0.78, + 0.7000000000000001, + 0.64, + 0.59, + 0.54, + 0.5, + 0.46, + 0.42, + 0.38, + 0.34, + 0.29, + 0.24, + 0.19, + 0.15, + 0.11, + 0.07, + 0.04, + 0.01, + -0.02, + -0.05, + -0.08, + -0.12, + -0.15, + -0.18, + -0.22, + -0.26, + -0.29, + -0.32, + -0.36, + -0.4, + -0.44, + -0.48, + -0.52, + -0.56, + -0.6, + -0.64, + -0.67, + -0.6900000000000001, + -0.71, + -0.73, + -0.74, + -0.74, + -0.73, + -0.73, + -0.74, + -0.75, + -0.76, + -0.77, + -0.79, + -0.81, + -0.8300000000000001, + -0.8300000000000001, + -0.84, + -0.84, + -0.85, + -0.86, + -0.89, + -0.91, + -0.9500000000000001, + -0.98, + -1.02, + -1.06, + -1.1, + -1.1400000000000001, + -1.19, + -1.25, + -1.31, + -1.36, + -1.4000000000000001, + -1.42, + -1.43, + -1.42, + -1.3800000000000001, + -1.31, + -1.2, + -1.03, + -0.75, + -0.49, + -0.17, + -0.05, + -0.09, + -0.37, + -0.9, + -1.43, + -1.92, + -2.12, + -2.0300000000000002, + -1.6600000000000001, + -1.1400000000000001, + -0.64, + -0.35000000000000003, + -0.51, + -0.96, + -1.57, + -2.07, + -2.19, + -2.18, + -1.94, + -1.75, + -1.6600000000000001, + -1.55, + -1.4000000000000001, + -1.09, + -0.72, + -0.52, + -0.42, + -0.42, + -0.53, + -0.45, + -0.29, + -0.1, + 0.09, + 0.15, + 0.22, + 0.22, + 0.2, + 0.16, + 0.09, + -0.02, + -0.16, + -0.27, + -0.29, + -0.26, + -0.25, + -0.28, + -0.42, + -0.58, + -0.75, + -0.9500000000000001, + -1.21, + -1.55, + -1.99, + -2.35, + -2.6, + -2.7800000000000002, + -2.93, + -3.09, + -3.18, + -3.19, + -3.2, + -3.18, + -3.15, + -3.0700000000000003, + -2.96, + -2.84, + -2.72, + -2.56, + -2.4, + -2.23, + -2.05, + -1.9000000000000001, + -1.76, + -1.7, + -1.6600000000000001, + -1.68, + -1.71, + -1.76, + -1.81 + ], + [ + -3.8200000000000003, + -4.25, + -4.26, + -4.17, + -4.22, + -4.3100000000000005, + -4.42, + -4.45, + -4.46, + -4.38, + -4.24, + -4.13, + -4.03, + -3.83, + -3.67, + -3.61, + -3.5300000000000002, + -3.41, + -3.22, + -3.02, + -2.89, + -2.72, + -2.66, + -2.73, + -2.85, + -3.0300000000000002, + -3.18, + -3.3000000000000003, + -3.45, + -3.5700000000000003, + -3.7, + -3.74, + -3.65, + -3.3200000000000003, + -3.09, + -2.81, + -2.63, + -2.49, + -2.08, + -1.61, + -0.85, + -0.03, + 0.76, + 1.33, + 1.62, + 1.6500000000000001, + 1.49, + 1.22, + 0.87, + 0.5, + 0.17, + -0.14, + -0.34, + -0.68, + -0.88, + -1.08, + -1.01, + -0.51, + 0.04, + 0.45, + 0.43, + 0.1, + -0.33, + -0.71, + -0.89, + -0.88, + -0.73, + -0.39, + 0.01, + 0.31, + 0.42, + 0.32, + 0.16, + 0.1, + 0.04, + 0.02, + -0.06, + 0.0, + -0.02, + -0.09, + 0.05, + 0.13, + 0.27, + 0.25, + 0.16, + 0.38, + 0.8200000000000001, + 1.22, + 1.42, + 1.18, + 0.55, + -0.18, + -0.66, + -0.76, + -0.64, + -0.43, + -0.26, + -0.2, + -0.32, + -0.58, + -0.84, + -0.97, + -1.27, + -1.42, + -1.69, + -1.78, + -1.44, + -0.92, + -0.31, + 0.12, + 0.31, + 0.23, + 0.18, + 0.26, + 0.41000000000000003, + 0.36, + 0.05, + -0.41000000000000003, + -0.92, + -1.28, + -1.53, + -1.55, + -1.36, + -1.1500000000000001, + -1.06, + -1.18, + -1.11, + -0.98, + -0.89, + -0.88, + -1.21, + -1.49, + -1.69, + -1.87, + -2.0100000000000002, + -2.44, + -3.37, + -4.67, + -5.68, + -5.82, + -5.08, + -3.88, + -2.96, + -2.48, + -2.29, + -2.16, + -2.02, + -1.79, + -1.6300000000000001, + -1.59, + -1.46, + -1.34, + -1.1300000000000001, + -0.92, + -0.6900000000000001, + -0.45, + -0.24, + -0.07, + 0.05, + 0.13, + 0.19, + 0.24, + 0.27, + 0.32, + 0.36, + 0.42, + 0.48, + 0.53, + 0.59, + 0.63, + 0.65, + 0.68, + 0.6900000000000001, + 0.72, + 0.74, + 0.77, + 0.8, + 0.81, + 0.81, + 0.8200000000000001, + 0.8200000000000001, + 0.8200000000000001, + 0.8200000000000001, + 0.8300000000000001, + 0.86, + 0.9, + 0.92, + 0.91, + 0.87, + 0.8, + 0.73, + 0.67, + 0.61, + 0.5700000000000001, + 0.52, + 0.48, + 0.44, + 0.39, + 0.34, + 0.29, + 0.24, + 0.19, + 0.14, + 0.09, + 0.05, + 0.02, + -0.01, + -0.05, + -0.08, + -0.12, + -0.16, + -0.19, + -0.23, + -0.27, + -0.31, + -0.34, + -0.37, + -0.4, + -0.44, + -0.49, + -0.54, + -0.58, + -0.62, + -0.65, + -0.68, + -0.71, + -0.74, + -0.76, + -0.78, + -0.79, + -0.79, + -0.78, + -0.79, + -0.8, + -0.81, + -0.8200000000000001, + -0.8300000000000001, + -0.85, + -0.86, + -0.87, + -0.88, + -0.89, + -0.9, + -0.91, + -0.93, + -0.9500000000000001, + -0.98, + -1.01, + -1.04, + -1.08, + -1.12, + -1.1500000000000001, + -1.19, + -1.23, + -1.27, + -1.31, + -1.35, + -1.3800000000000001, + -1.3900000000000001, + -1.3800000000000001, + -1.37, + -1.33, + -1.25, + -1.16, + -1.0, + -0.84, + -0.59, + -0.44, + -0.33, + -0.41000000000000003, + -0.6900000000000001, + -1.04, + -1.48, + -1.78, + -1.8900000000000001, + -1.78, + -1.42, + -0.9400000000000001, + -0.48, + -0.18, + -0.22, + -0.68, + -1.28, + -1.8, + -2.14, + -2.13, + -2.0, + -1.81, + -1.69, + -1.58, + -1.37, + -1.06, + -0.81, + -0.64, + -0.55, + -0.55, + -0.43, + -0.23, + 0.03, + 0.31, + 0.47000000000000003, + 0.55, + 0.5700000000000001, + 0.54, + 0.51, + 0.49, + 0.42, + 0.32, + 0.19, + 0.14, + 0.11, + 0.11, + 0.12, + 0.03, + -0.11, + -0.29, + -0.47000000000000003, + -0.73, + -1.02, + -1.3800000000000001, + -1.81, + -2.2600000000000002, + -2.61, + -2.83, + -3.04, + -3.19, + -3.27, + -3.27, + -3.2600000000000002, + -3.25, + -3.2, + -3.11, + -3.0, + -2.88, + -2.72, + -2.56, + -2.39, + -2.21, + -2.06, + -1.92, + -1.81, + -1.75, + -1.73, + -1.75, + -1.78, + -1.82, + -1.86 + ], + [ + -3.85, + -4.29, + -4.2700000000000005, + -4.17, + -4.24, + -4.42, + -4.5200000000000005, + -4.57, + -4.57, + -4.51, + -4.37, + -4.28, + -4.18, + -4.03, + -3.87, + -3.72, + -3.63, + -3.47, + -3.27, + -3.12, + -3.0100000000000002, + -2.96, + -2.98, + -3.0500000000000003, + -3.19, + -3.33, + -3.45, + -3.5300000000000002, + -3.6, + -3.71, + -3.81, + -3.84, + -3.61, + -3.27, + -2.75, + -2.47, + -2.29, + -2.15, + -2.02, + -1.59, + -1.1, + -0.37, + 0.28, + 0.78, + 1.06, + 1.09, + 0.97, + 0.74, + 0.44, + 0.14, + -0.15, + -0.34, + -0.46, + -0.47000000000000003, + -0.64, + -0.6, + -0.54, + -0.26, + 0.29, + 0.53, + 0.51, + 0.22, + -0.21, + -0.5, + -0.66, + -0.68, + -0.53, + -0.41000000000000003, + -0.16, + 0.07, + 0.15, + 0.11, + 0.07, + 0.03, + 0.06, + 0.11, + 0.28, + 0.35000000000000003, + 0.39, + 0.32, + 0.24, + 0.33, + 0.33, + 0.3, + 0.36, + 0.6, + 0.89, + 1.23, + 1.3, + 0.98, + 0.43, + -0.23, + -0.76, + -0.89, + -0.8200000000000001, + -0.66, + -0.47000000000000003, + -0.41000000000000003, + -0.52, + -0.71, + -1.0, + -1.3800000000000001, + -1.69, + -2.2, + -2.47, + -2.48, + -2.14, + -1.53, + -0.9, + -0.41000000000000003, + -0.21, + -0.14, + -0.12, + -0.07, + 0.05, + 0.09, + -0.1, + -0.44, + -0.76, + -1.09, + -1.28, + -1.33, + -1.22, + -1.02, + -0.99, + -1.1, + -1.19, + -1.06, + -0.96, + -0.9500000000000001, + -0.9400000000000001, + -1.16, + -1.37, + -1.54, + -1.83, + -2.29, + -3.1, + -4.29, + -5.42, + -5.75, + -5.14, + -4.12, + -3.17, + -2.66, + -2.47, + -2.39, + -2.2600000000000002, + -2.12, + -1.97, + -1.82, + -1.69, + -1.49, + -1.28, + -1.03, + -0.8, + -0.56, + -0.35000000000000003, + -0.16, + -0.02, + 0.09, + 0.18, + 0.25, + 0.31, + 0.37, + 0.42, + 0.47000000000000003, + 0.53, + 0.58, + 0.64, + 0.68, + 0.71, + 0.74, + 0.76, + 0.79, + 0.81, + 0.84, + 0.86, + 0.88, + 0.88, + 0.89, + 0.89, + 0.89, + 0.89, + 0.9, + 0.91, + 0.93, + 0.9400000000000001, + 0.92, + 0.88, + 0.8200000000000001, + 0.75, + 0.6900000000000001, + 0.64, + 0.59, + 0.54, + 0.49, + 0.45, + 0.4, + 0.35000000000000003, + 0.29, + 0.24, + 0.18, + 0.13, + 0.08, + 0.04, + 0.0, + -0.04, + -0.08, + -0.12, + -0.16, + -0.19, + -0.23, + -0.28, + -0.32, + -0.37, + -0.4, + -0.43, + -0.46, + -0.49, + -0.55, + -0.59, + -0.64, + -0.68, + -0.71, + -0.74, + -0.77, + -0.79, + -0.81, + -0.8300000000000001, + -0.84, + -0.84, + -0.85, + -0.85, + -0.86, + -0.87, + -0.88, + -0.89, + -0.9, + -0.92, + -0.93, + -0.9400000000000001, + -0.9500000000000001, + -0.97, + -0.98, + -0.99, + -1.01, + -1.04, + -1.07, + -1.1, + -1.1400000000000001, + -1.18, + -1.21, + -1.24, + -1.27, + -1.29, + -1.33, + -1.35, + -1.37, + -1.37, + -1.36, + -1.33, + -1.29, + -1.23, + -1.1400000000000001, + -1.04, + -0.88, + -0.76, + -0.62, + -0.59, + -0.68, + -0.86, + -1.16, + -1.41, + -1.6, + -1.6500000000000001, + -1.5, + -1.2, + -0.79, + -0.37, + -0.12, + -0.11, + -0.42, + -1.01, + -1.56, + -1.92, + -2.07, + -1.95, + -1.81, + -1.68, + -1.56, + -1.34, + -1.11, + -0.89, + -0.73, + -0.65, + -0.46, + -0.22, + 0.04, + 0.35000000000000003, + 0.5700000000000001, + 0.67, + 0.72, + 0.7000000000000001, + 0.7000000000000001, + 0.72, + 0.72, + 0.71, + 0.61, + 0.56, + 0.5, + 0.5, + 0.5, + 0.44, + 0.34, + 0.21, + 0.03, + -0.21, + -0.49, + -0.8300000000000001, + -1.21, + -1.71, + -2.22, + -2.62, + -2.91, + -3.12, + -3.2800000000000002, + -3.36, + -3.38, + -3.37, + -3.35, + -3.3000000000000003, + -3.19, + -3.0700000000000003, + -2.91, + -2.75, + -2.57, + -2.39, + -2.23, + -2.08, + -1.98, + -1.8900000000000001, + -1.84, + -1.83, + -1.84, + -1.87, + -1.9000000000000001, + -1.93 + ], + [ + -3.8200000000000003, + -4.28, + -4.21, + -4.11, + -4.21, + -4.41, + -4.53, + -4.58, + -4.5600000000000005, + -4.51, + -4.42, + -4.33, + -4.23, + -4.08, + -3.89, + -3.72, + -3.65, + -3.49, + -3.39, + -3.29, + -3.24, + -3.25, + -3.31, + -3.42, + -3.5500000000000003, + -3.69, + -3.7800000000000002, + -3.8200000000000003, + -3.87, + -3.93, + -4.01, + -3.92, + -3.68, + -3.13, + -2.6, + -2.14, + -1.97, + -1.9000000000000001, + -1.79, + -1.6600000000000001, + -1.21, + -0.74, + -0.17, + 0.26, + 0.5, + 0.6, + 0.54, + 0.35000000000000003, + 0.11, + -0.2, + -0.48, + -0.64, + -0.65, + -0.56, + -0.32, + -0.27, + -0.01, + 0.26, + 0.5, + 0.73, + 0.64, + 0.34, + 0.04, + -0.21, + -0.35000000000000003, + -0.34, + -0.34, + -0.29, + -0.23, + -0.13, + -0.07, + -0.1, + -0.11, + -0.11, + -0.01, + 0.22, + 0.43, + 0.64, + 0.7000000000000001, + 0.65, + 0.5700000000000001, + 0.51, + 0.51, + 0.52, + 0.59, + 0.72, + 0.99, + 1.1, + 1.06, + 0.8300000000000001, + 0.33, + -0.22, + -0.63, + -0.89, + -0.9, + -0.78, + -0.64, + -0.56, + -0.58, + -0.77, + -1.03, + -1.45, + -2.04, + -2.56, + -3.02, + -3.02, + -2.74, + -2.11, + -1.45, + -0.96, + -0.59, + -0.44, + -0.36, + -0.26, + -0.2, + -0.19, + -0.23, + -0.38, + -0.63, + -0.84, + -1.05, + -1.16, + -1.08, + -0.99, + -0.9500000000000001, + -1.01, + -1.1, + -1.07, + -0.97, + -0.92, + -0.9, + -0.87, + -1.03, + -1.25, + -1.55, + -2.05, + -2.89, + -3.94, + -4.96, + -5.53, + -5.1000000000000005, + -4.14, + -3.3000000000000003, + -2.77, + -2.59, + -2.5300000000000002, + -2.45, + -2.32, + -2.18, + -2.04, + -1.87, + -1.6600000000000001, + -1.42, + -1.17, + -0.92, + -0.68, + -0.45, + -0.26, + -0.09, + 0.04, + 0.16, + 0.25, + 0.33, + 0.4, + 0.46, + 0.52, + 0.58, + 0.63, + 0.68, + 0.73, + 0.76, + 0.8, + 0.8200000000000001, + 0.85, + 0.88, + 0.9, + 0.92, + 0.9400000000000001, + 0.9500000000000001, + 0.9500000000000001, + 0.9500000000000001, + 0.9500000000000001, + 0.9500000000000001, + 0.9500000000000001, + 0.96, + 0.96, + 0.96, + 0.9400000000000001, + 0.89, + 0.84, + 0.78, + 0.71, + 0.65, + 0.6, + 0.56, + 0.51, + 0.46, + 0.41000000000000003, + 0.35000000000000003, + 0.29, + 0.23, + 0.17, + 0.11, + 0.06, + 0.02, + -0.03, + -0.06, + -0.1, + -0.15, + -0.19, + -0.23, + -0.28, + -0.32, + -0.36, + -0.41000000000000003, + -0.45, + -0.48, + -0.51, + -0.55, + -0.59, + -0.64, + -0.6900000000000001, + -0.73, + -0.76, + -0.79, + -0.8200000000000001, + -0.85, + -0.87, + -0.88, + -0.89, + -0.9, + -0.91, + -0.92, + -0.93, + -0.9400000000000001, + -0.9500000000000001, + -0.96, + -0.97, + -0.98, + -0.99, + -1.01, + -1.02, + -1.03, + -1.04, + -1.06, + -1.09, + -1.11, + -1.1400000000000001, + -1.17, + -1.2, + -1.23, + -1.26, + -1.29, + -1.31, + -1.33, + -1.34, + -1.36, + -1.37, + -1.36, + -1.35, + -1.32, + -1.27, + -1.22, + -1.1500000000000001, + -1.06, + -0.98, + -0.86, + -0.79, + -0.77, + -0.8200000000000001, + -0.99, + -1.1500000000000001, + -1.32, + -1.42, + -1.4000000000000001, + -1.27, + -1.01, + -0.67, + -0.37, + -0.11, + -0.1, + -0.33, + -0.75, + -1.31, + -1.73, + -1.9100000000000001, + -1.93, + -1.78, + -1.6500000000000001, + -1.52, + -1.36, + -1.1400000000000001, + -0.9500000000000001, + -0.81, + -0.58, + -0.3, + 0.01, + 0.32, + 0.53, + 0.63, + 0.7000000000000001, + 0.68, + 0.71, + 0.78, + 0.84, + 0.91, + 0.91, + 0.9, + 0.85, + 0.86, + 0.86, + 0.8300000000000001, + 0.76, + 0.67, + 0.53, + 0.36, + 0.12, + -0.22, + -0.58, + -1.06, + -1.6300000000000001, + -2.19, + -2.63, + -2.95, + -3.17, + -3.33, + -3.43, + -3.46, + -3.48, + -3.47, + -3.41, + -3.3000000000000003, + -3.14, + -2.98, + -2.8000000000000003, + -2.61, + -2.44, + -2.2800000000000002, + -2.15, + -2.05, + -2.0, + -1.97, + -1.96, + -1.97, + -1.99, + -2.0100000000000002, + -2.0300000000000002 + ], + [ + -3.71, + -4.18, + -4.13, + -4.01, + -4.11, + -4.28, + -4.42, + -4.39, + -4.4, + -4.4, + -4.32, + -4.2, + -4.11, + -3.94, + -3.72, + -3.66, + -3.59, + -3.58, + -3.5300000000000002, + -3.52, + -3.52, + -3.5700000000000003, + -3.67, + -3.79, + -3.95, + -4.07, + -4.13, + -4.17, + -4.2, + -4.23, + -4.18, + -4.1, + -3.67, + -3.11, + -2.47, + -1.99, + -1.68, + -1.6300000000000001, + -1.7, + -1.58, + -1.3900000000000001, + -0.97, + -0.56, + -0.2, + 0.04, + 0.14, + 0.15, + 0.03, + -0.2, + -0.51, + -0.81, + -0.96, + -0.9400000000000001, + -0.64, + -0.32, + 0.11, + 0.38, + 0.64, + 0.87, + 0.9400000000000001, + 0.8200000000000001, + 0.5700000000000001, + 0.29, + 0.06, + -0.06, + -0.14, + -0.2, + -0.26, + -0.29, + -0.29, + -0.31, + -0.34, + -0.36, + -0.31, + -0.06, + 0.22, + 0.55, + 0.8, + 0.84, + 0.81, + 0.74, + 0.68, + 0.6900000000000001, + 0.7000000000000001, + 0.76, + 0.89, + 0.97, + 0.99, + 0.88, + 0.61, + 0.26, + -0.19, + -0.6, + -0.85, + -0.93, + -0.87, + -0.73, + -0.61, + -0.6, + -0.68, + -0.9400000000000001, + -1.37, + -2.0100000000000002, + -2.68, + -3.14, + -3.44, + -3.12, + -2.71, + -2.06, + -1.47, + -1.09, + -0.77, + -0.63, + -0.52, + -0.47000000000000003, + -0.41000000000000003, + -0.38, + -0.41000000000000003, + -0.5, + -0.68, + -0.86, + -1.01, + -1.06, + -0.97, + -0.97, + -1.02, + -1.01, + -0.98, + -0.92, + -0.87, + -0.8300000000000001, + -0.79, + -0.8, + -1.02, + -1.29, + -1.8, + -2.54, + -3.54, + -4.5200000000000005, + -4.94, + -4.82, + -4.08, + -3.25, + -2.84, + -2.65, + -2.59, + -2.54, + -2.44, + -2.31, + -2.16, + -1.99, + -1.81, + -1.57, + -1.33, + -1.07, + -0.81, + -0.58, + -0.35000000000000003, + -0.17, + -0.01, + 0.12, + 0.24, + 0.34, + 0.43, + 0.5, + 0.56, + 0.62, + 0.67, + 0.72, + 0.77, + 0.81, + 0.84, + 0.87, + 0.9, + 0.93, + 0.9500000000000001, + 0.97, + 0.99, + 0.99, + 0.99, + 0.99, + 0.99, + 0.99, + 0.99, + 0.99, + 0.99, + 0.98, + 0.9400000000000001, + 0.9, + 0.85, + 0.79, + 0.73, + 0.67, + 0.61, + 0.56, + 0.51, + 0.47000000000000003, + 0.42, + 0.36, + 0.3, + 0.23, + 0.16, + 0.1, + 0.05, + 0.0, + -0.05, + -0.09, + -0.13, + -0.17, + -0.22, + -0.27, + -0.32, + -0.36, + -0.4, + -0.44, + -0.49, + -0.54, + -0.5700000000000001, + -0.61, + -0.65, + -0.6900000000000001, + -0.74, + -0.78, + -0.8200000000000001, + -0.85, + -0.88, + -0.9, + -0.92, + -0.93, + -0.9500000000000001, + -0.96, + -0.97, + -0.98, + -1.0, + -1.0, + -1.01, + -1.02, + -1.03, + -1.04, + -1.06, + -1.07, + -1.09, + -1.1, + -1.11, + -1.1300000000000001, + -1.1500000000000001, + -1.18, + -1.2, + -1.22, + -1.25, + -1.28, + -1.31, + -1.33, + -1.35, + -1.36, + -1.37, + -1.3800000000000001, + -1.3800000000000001, + -1.37, + -1.35, + -1.32, + -1.27, + -1.22, + -1.16, + -1.09, + -1.02, + -0.96, + -0.89, + -0.87, + -0.92, + -0.99, + -1.11, + -1.19, + -1.23, + -1.21, + -1.07, + -0.87, + -0.62, + -0.36, + -0.21, + -0.14, + -0.31, + -0.67, + -1.11, + -1.56, + -1.83, + -1.86, + -1.79, + -1.6500000000000001, + -1.5, + -1.34, + -1.16, + -0.99, + -0.79, + -0.51, + -0.15, + 0.21, + 0.46, + 0.56, + 0.59, + 0.56, + 0.5700000000000001, + 0.67, + 0.78, + 0.93, + 1.03, + 1.08, + 1.08, + 1.12, + 1.1300000000000001, + 1.16, + 1.12, + 1.07, + 0.97, + 0.87, + 0.71, + 0.47000000000000003, + 0.11, + -0.37, + -0.93, + -1.56, + -2.16, + -2.62, + -2.92, + -3.16, + -3.33, + -3.45, + -3.52, + -3.5500000000000003, + -3.5500000000000003, + -3.49, + -3.37, + -3.22, + -3.06, + -2.88, + -2.71, + -2.54, + -2.38, + -2.2600000000000002, + -2.16, + -2.12, + -2.1, + -2.1, + -2.11, + -2.13, + -2.14, + -2.14 + ], + [ + -3.67, + -4.23, + -4.13, + -3.94, + -4.03, + -4.18, + -4.2, + -4.17, + -4.19, + -4.21, + -4.14, + -4.03, + -3.83, + -3.65, + -3.63, + -3.6, + -3.66, + -3.72, + -3.75, + -3.79, + -3.85, + -3.96, + -4.07, + -4.22, + -4.3500000000000005, + -4.45, + -4.51, + -4.54, + -4.55, + -4.48, + -4.42, + -4.11, + -3.69, + -3.06, + -2.39, + -1.83, + -1.52, + -1.46, + -1.56, + -1.62, + -1.44, + -1.17, + -0.81, + -0.56, + -0.38, + -0.27, + -0.26, + -0.31, + -0.51, + -0.79, + -1.04, + -1.23, + -1.05, + -0.75, + -0.22, + 0.27, + 0.65, + 0.91, + 1.07, + 1.11, + 1.02, + 0.75, + 0.48, + 0.25, + 0.08, + -0.05, + -0.16, + -0.28, + -0.38, + -0.44, + -0.51, + -0.58, + -0.59, + -0.4, + -0.14, + 0.26, + 0.63, + 0.78, + 0.86, + 0.77, + 0.7000000000000001, + 0.71, + 0.71, + 0.79, + 0.85, + 0.9400000000000001, + 0.97, + 0.91, + 0.75, + 0.48, + 0.14, + -0.24, + -0.61, + -0.88, + -0.99, + -0.9400000000000001, + -0.79, + -0.64, + -0.53, + -0.5700000000000001, + -0.76, + -1.17, + -1.73, + -2.44, + -3.06, + -3.34, + -3.5, + -3.0700000000000003, + -2.66, + -2.1, + -1.61, + -1.29, + -1.0, + -0.88, + -0.78, + -0.6900000000000001, + -0.59, + -0.56, + -0.55, + -0.66, + -0.8, + -0.9400000000000001, + -1.02, + -1.05, + -1.04, + -1.04, + -1.02, + -0.9500000000000001, + -0.9, + -0.8300000000000001, + -0.79, + -0.75, + -0.78, + -0.8300000000000001, + -1.1, + -1.49, + -2.24, + -3.11, + -3.91, + -4.46, + -4.32, + -3.79, + -3.23, + -2.8000000000000003, + -2.65, + -2.61, + -2.57, + -2.5, + -2.37, + -2.22, + -2.07, + -1.8900000000000001, + -1.7, + -1.46, + -1.22, + -0.96, + -0.6900000000000001, + -0.47000000000000003, + -0.25, + -0.07, + 0.09, + 0.22, + 0.34, + 0.45, + 0.54, + 0.61, + 0.67, + 0.73, + 0.77, + 0.81, + 0.85, + 0.88, + 0.92, + 0.9500000000000001, + 0.98, + 1.0, + 1.02, + 1.04, + 1.04, + 1.03, + 1.02, + 1.02, + 1.03, + 1.03, + 1.03, + 1.02, + 1.0, + 0.96, + 0.92, + 0.87, + 0.8, + 0.74, + 0.67, + 0.61, + 0.5700000000000001, + 0.52, + 0.47000000000000003, + 0.42, + 0.37, + 0.3, + 0.23, + 0.16, + 0.1, + 0.04, + -0.02, + -0.06, + -0.11, + -0.15, + -0.19, + -0.24, + -0.3, + -0.35000000000000003, + -0.4, + -0.44, + -0.48, + -0.53, + -0.58, + -0.63, + -0.66, + -0.7000000000000001, + -0.74, + -0.78, + -0.8300000000000001, + -0.86, + -0.9, + -0.93, + -0.9500000000000001, + -0.97, + -0.98, + -1.0, + -1.02, + -1.03, + -1.04, + -1.06, + -1.07, + -1.08, + -1.09, + -1.1, + -1.11, + -1.12, + -1.1400000000000001, + -1.1500000000000001, + -1.17, + -1.18, + -1.2, + -1.22, + -1.24, + -1.25, + -1.27, + -1.3, + -1.33, + -1.35, + -1.37, + -1.3900000000000001, + -1.4000000000000001, + -1.41, + -1.41, + -1.4000000000000001, + -1.3900000000000001, + -1.36, + -1.33, + -1.28, + -1.23, + -1.17, + -1.11, + -1.06, + -1.0, + -0.97, + -0.9400000000000001, + -0.9500000000000001, + -1.01, + -1.05, + -1.09, + -1.09, + -1.04, + -0.9400000000000001, + -0.79, + -0.6, + -0.44, + -0.3, + -0.29, + -0.36, + -0.63, + -1.04, + -1.42, + -1.73, + -1.85, + -1.78, + -1.6600000000000001, + -1.51, + -1.33, + -1.16, + -0.97, + -0.75, + -0.45, + -0.06, + 0.29, + 0.44, + 0.5, + 0.44, + 0.41000000000000003, + 0.47000000000000003, + 0.59, + 0.78, + 0.96, + 1.08, + 1.1500000000000001, + 1.23, + 1.28, + 1.34, + 1.37, + 1.3800000000000001, + 1.32, + 1.27, + 1.18, + 1.04, + 0.77, + 0.38, + -0.17, + -0.81, + -1.52, + -2.13, + -2.5500000000000003, + -2.87, + -3.08, + -3.2800000000000002, + -3.4, + -3.5100000000000002, + -3.56, + -3.5700000000000003, + -3.52, + -3.41, + -3.29, + -3.14, + -2.99, + -2.82, + -2.67, + -2.52, + -2.39, + -2.31, + -2.25, + -2.24, + -2.24, + -2.2600000000000002, + -2.27, + -2.27, + -2.2600000000000002 + ], + [ + -3.4, + -3.99, + -4.0600000000000005, + -3.99, + -4.0, + -4.0200000000000005, + -4.04, + -4.0, + -4.01, + -3.96, + -3.9, + -3.72, + -3.5100000000000002, + -3.44, + -3.49, + -3.66, + -3.7800000000000002, + -3.95, + -4.0200000000000005, + -4.12, + -4.25, + -4.37, + -4.51, + -4.64, + -4.74, + -4.83, + -4.86, + -4.89, + -4.78, + -4.71, + -4.44, + -4.15, + -3.65, + -3.0100000000000002, + -2.35, + -1.76, + -1.42, + -1.41, + -1.52, + -1.6, + -1.52, + -1.23, + -1.02, + -0.8300000000000001, + -0.75, + -0.71, + -0.67, + -0.7000000000000001, + -0.79, + -0.9400000000000001, + -1.21, + -1.26, + -1.1500000000000001, + -0.66, + -0.11, + 0.43, + 0.8300000000000001, + 1.05, + 1.19, + 1.24, + 1.12, + 0.89, + 0.6, + 0.31, + 0.11, + -0.02, + -0.16, + -0.33, + -0.47000000000000003, + -0.6, + -0.73, + -0.8, + -0.72, + -0.53, + -0.15, + 0.27, + 0.56, + 0.74, + 0.68, + 0.59, + 0.52, + 0.53, + 0.6, + 0.68, + 0.8300000000000001, + 0.9, + 0.96, + 0.87, + 0.7000000000000001, + 0.43, + 0.08, + -0.29, + -0.66, + -0.92, + -1.07, + -0.96, + -0.81, + -0.59, + -0.45, + -0.41000000000000003, + -0.54, + -0.85, + -1.3900000000000001, + -2.0, + -2.65, + -3.18, + -3.34, + -3.41, + -3.0100000000000002, + -2.66, + -2.17, + -1.78, + -1.49, + -1.27, + -1.1300000000000001, + -1.01, + -0.92, + -0.8200000000000001, + -0.8200000000000001, + -0.8200000000000001, + -0.9, + -1.0, + -1.07, + -1.12, + -1.1500000000000001, + -1.1400000000000001, + -1.11, + -1.03, + -0.9500000000000001, + -0.89, + -0.8200000000000001, + -0.81, + -0.8, + -0.87, + -0.9400000000000001, + -1.37, + -1.93, + -2.75, + -3.47, + -3.87, + -3.94, + -3.56, + -3.0500000000000003, + -2.7800000000000002, + -2.62, + -2.58, + -2.57, + -2.5100000000000002, + -2.39, + -2.25, + -2.1, + -1.94, + -1.76, + -1.58, + -1.34, + -1.09, + -0.8200000000000001, + -0.56, + -0.33, + -0.12, + 0.06, + 0.21, + 0.35000000000000003, + 0.47000000000000003, + 0.5700000000000001, + 0.66, + 0.73, + 0.78, + 0.8300000000000001, + 0.87, + 0.9, + 0.93, + 0.97, + 1.0, + 1.03, + 1.06, + 1.07, + 1.08, + 1.08, + 1.07, + 1.06, + 1.07, + 1.07, + 1.07, + 1.06, + 1.05, + 1.03, + 1.0, + 0.9500000000000001, + 0.89, + 0.8200000000000001, + 0.75, + 0.68, + 0.62, + 0.58, + 0.53, + 0.48, + 0.43, + 0.37, + 0.31, + 0.24, + 0.17, + 0.1, + 0.03, + -0.02, + -0.07, + -0.12, + -0.16, + -0.21, + -0.26, + -0.31, + -0.37, + -0.43, + -0.47000000000000003, + -0.52, + -0.5700000000000001, + -0.62, + -0.67, + -0.71, + -0.75, + -0.79, + -0.8300000000000001, + -0.87, + -0.91, + -0.9400000000000001, + -0.97, + -0.99, + -1.01, + -1.03, + -1.05, + -1.07, + -1.09, + -1.1, + -1.12, + -1.1300000000000001, + -1.1400000000000001, + -1.1500000000000001, + -1.16, + -1.17, + -1.18, + -1.2, + -1.21, + -1.23, + -1.24, + -1.25, + -1.27, + -1.29, + -1.31, + -1.33, + -1.34, + -1.37, + -1.3900000000000001, + -1.41, + -1.42, + -1.43, + -1.44, + -1.43, + -1.42, + -1.4000000000000001, + -1.37, + -1.34, + -1.3, + -1.25, + -1.19, + -1.1400000000000001, + -1.08, + -1.04, + -1.0, + -0.99, + -0.99, + -1.0, + -1.02, + -1.03, + -1.01, + -0.9500000000000001, + -0.87, + -0.76, + -0.64, + -0.51, + -0.45, + -0.41000000000000003, + -0.5, + -0.6900000000000001, + -0.98, + -1.36, + -1.6400000000000001, + -1.79, + -1.79, + -1.67, + -1.51, + -1.34, + -1.16, + -0.97, + -0.74, + -0.42, + -0.07, + 0.2, + 0.37, + 0.33, + 0.28, + 0.29, + 0.36, + 0.54, + 0.75, + 0.92, + 1.07, + 1.2, + 1.3, + 1.4000000000000001, + 1.48, + 1.53, + 1.53, + 1.53, + 1.48, + 1.42, + 1.25, + 1.0, + 0.53, + -0.02, + -0.75, + -1.46, + -2.02, + -2.47, + -2.74, + -2.98, + -3.14, + -3.3000000000000003, + -3.41, + -3.49, + -3.52, + -3.49, + -3.43, + -3.3200000000000003, + -3.21, + -3.08, + -2.95, + -2.8000000000000003, + -2.68, + -2.56, + -2.47, + -2.43, + -2.4, + -2.4, + -2.4, + -2.39, + -2.39, + -2.36 + ], + [ + -3.48, + -4.09, + -4.07, + -3.98, + -3.95, + -3.93, + -3.9, + -3.84, + -3.77, + -3.71, + -3.56, + -3.37, + -3.27, + -3.2600000000000002, + -3.38, + -3.61, + -3.89, + -4.07, + -4.33, + -4.48, + -4.65, + -4.7700000000000005, + -4.91, + -5.0, + -5.1000000000000005, + -5.14, + -5.18, + -5.05, + -4.96, + -4.67, + -4.43, + -4.0600000000000005, + -3.5700000000000003, + -2.98, + -2.31, + -1.79, + -1.47, + -1.4000000000000001, + -1.55, + -1.57, + -1.42, + -1.25, + -1.08, + -1.06, + -1.08, + -1.12, + -1.09, + -1.04, + -0.9500000000000001, + -1.02, + -1.17, + -1.32, + -1.09, + -0.61, + 0.05, + 0.62, + 1.01, + 1.21, + 1.3, + 1.34, + 1.26, + 1.01, + 0.64, + 0.31, + 0.07, + -0.05, + -0.15, + -0.34, + -0.58, + -0.8, + -0.96, + -1.01, + -0.93, + -0.64, + -0.25, + 0.15, + 0.48, + 0.5700000000000001, + 0.49, + 0.36, + 0.28, + 0.28, + 0.37, + 0.5, + 0.66, + 0.8300000000000001, + 0.88, + 0.88, + 0.68, + 0.44, + 0.1, + -0.3, + -0.66, + -0.96, + -1.0, + -0.9500000000000001, + -0.7000000000000001, + -0.48, + -0.28, + -0.2, + -0.29, + -0.55, + -0.98, + -1.57, + -2.19, + -2.7600000000000002, + -3.19, + -3.2800000000000002, + -3.2800000000000002, + -2.94, + -2.63, + -2.23, + -1.9100000000000001, + -1.67, + -1.49, + -1.3800000000000001, + -1.27, + -1.21, + -1.1500000000000001, + -1.12, + -1.12, + -1.1400000000000001, + -1.19, + -1.23, + -1.27, + -1.28, + -1.25, + -1.2, + -1.11, + -1.02, + -0.98, + -0.9400000000000001, + -0.96, + -0.99, + -1.11, + -1.28, + -1.9100000000000001, + -2.5300000000000002, + -3.13, + -3.54, + -3.5700000000000003, + -3.34, + -3.0300000000000002, + -2.71, + -2.61, + -2.57, + -2.54, + -2.5, + -2.4, + -2.2600000000000002, + -2.12, + -1.96, + -1.8, + -1.6300000000000001, + -1.44, + -1.18, + -0.92, + -0.64, + -0.38, + -0.15, + 0.05, + 0.23, + 0.38, + 0.51, + 0.63, + 0.72, + 0.8, + 0.86, + 0.91, + 0.9400000000000001, + 0.96, + 0.99, + 1.03, + 1.07, + 1.11, + 1.1300000000000001, + 1.1400000000000001, + 1.1500000000000001, + 1.1500000000000001, + 1.1300000000000001, + 1.1300000000000001, + 1.12, + 1.1300000000000001, + 1.12, + 1.12, + 1.1, + 1.08, + 1.04, + 0.98, + 0.92, + 0.84, + 0.76, + 0.7000000000000001, + 0.64, + 0.59, + 0.55, + 0.5, + 0.45, + 0.39, + 0.32, + 0.25, + 0.18, + 0.11, + 0.05, + -0.01, + -0.06, + -0.12, + -0.17, + -0.22, + -0.27, + -0.32, + -0.38, + -0.45, + -0.5, + -0.55, + -0.6, + -0.65, + -0.7000000000000001, + -0.75, + -0.79, + -0.8300000000000001, + -0.87, + -0.91, + -0.9500000000000001, + -0.97, + -1.0, + -1.03, + -1.05, + -1.08, + -1.1, + -1.12, + -1.1400000000000001, + -1.16, + -1.17, + -1.18, + -1.2, + -1.21, + -1.22, + -1.23, + -1.24, + -1.25, + -1.26, + -1.28, + -1.29, + -1.31, + -1.32, + -1.34, + -1.36, + -1.37, + -1.3900000000000001, + -1.4000000000000001, + -1.42, + -1.44, + -1.45, + -1.46, + -1.46, + -1.46, + -1.44, + -1.42, + -1.3900000000000001, + -1.36, + -1.31, + -1.27, + -1.21, + -1.16, + -1.11, + -1.06, + -1.03, + -1.01, + -1.0, + -1.0, + -1.01, + -1.0, + -0.97, + -0.92, + -0.85, + -0.77, + -0.68, + -0.62, + -0.5700000000000001, + -0.59, + -0.64, + -0.8, + -1.04, + -1.31, + -1.6, + -1.74, + -1.76, + -1.69, + -1.53, + -1.36, + -1.17, + -0.97, + -0.74, + -0.47000000000000003, + -0.16, + 0.09, + 0.17, + 0.18, + 0.16, + 0.17, + 0.31, + 0.49, + 0.6900000000000001, + 0.88, + 1.05, + 1.2, + 1.35, + 1.47, + 1.57, + 1.62, + 1.6400000000000001, + 1.6400000000000001, + 1.61, + 1.52, + 1.37, + 1.04, + 0.62, + -0.02, + -0.6900000000000001, + -1.36, + -1.94, + -2.31, + -2.6, + -2.8000000000000003, + -2.98, + -3.14, + -3.27, + -3.36, + -3.42, + -3.42, + -3.38, + -3.33, + -3.25, + -3.16, + -3.04, + -2.94, + -2.82, + -2.73, + -2.64, + -2.59, + -2.56, + -2.54, + -2.52, + -2.5, + -2.48, + -2.46 + ], + [ + -3.1, + -3.64, + -3.93, + -3.94, + -3.9, + -3.87, + -3.81, + -3.73, + -3.6, + -3.45, + -3.2800000000000002, + -3.16, + -3.09, + -3.13, + -3.31, + -3.5100000000000002, + -3.81, + -4.18, + -4.47, + -4.79, + -4.92, + -5.11, + -5.19, + -5.3100000000000005, + -5.3500000000000005, + -5.41, + -5.3100000000000005, + -5.18, + -4.89, + -4.58, + -4.2700000000000005, + -3.93, + -3.52, + -2.96, + -2.41, + -1.9000000000000001, + -1.58, + -1.54, + -1.55, + -1.51, + -1.34, + -1.18, + -1.09, + -1.17, + -1.36, + -1.4000000000000001, + -1.42, + -1.22, + -1.02, + -0.98, + -1.1400000000000001, + -1.21, + -1.09, + -0.62, + 0.12, + 0.75, + 1.17, + 1.4000000000000001, + 1.47, + 1.49, + 1.3900000000000001, + 1.1500000000000001, + 0.72, + 0.25, + 0.04, + -0.09, + -0.19, + -0.35000000000000003, + -0.64, + -0.98, + -1.1400000000000001, + -1.26, + -1.11, + -0.84, + -0.46, + -0.02, + 0.27, + 0.4, + 0.35000000000000003, + 0.19, + 0.08, + 0.08, + 0.13, + 0.29, + 0.48, + 0.67, + 0.81, + 0.78, + 0.72, + 0.48, + 0.19, + -0.2, + -0.64, + -0.86, + -0.96, + -0.81, + -0.55, + -0.31, + -0.08, + 0.0, + -0.03, + -0.25, + -0.64, + -1.1500000000000001, + -1.78, + -2.38, + -2.85, + -3.19, + -3.21, + -3.17, + -2.86, + -2.59, + -2.2800000000000002, + -2.0300000000000002, + -1.86, + -1.73, + -1.6300000000000001, + -1.57, + -1.47, + -1.41, + -1.32, + -1.3, + -1.29, + -1.34, + -1.3800000000000001, + -1.41, + -1.42, + -1.36, + -1.3, + -1.21, + -1.1500000000000001, + -1.1300000000000001, + -1.1400000000000001, + -1.2, + -1.32, + -1.56, + -1.9100000000000001, + -2.45, + -2.96, + -3.24, + -3.38, + -3.25, + -2.97, + -2.79, + -2.64, + -2.59, + -2.5500000000000003, + -2.49, + -2.4, + -2.2800000000000002, + -2.15, + -2.0, + -1.85, + -1.69, + -1.5, + -1.27, + -1.0, + -0.7000000000000001, + -0.43, + -0.16, + 0.05, + 0.25, + 0.41000000000000003, + 0.56, + 0.68, + 0.79, + 0.87, + 0.9400000000000001, + 0.99, + 1.02, + 1.05, + 1.08, + 1.11, + 1.16, + 1.19, + 1.21, + 1.23, + 1.23, + 1.23, + 1.21, + 1.2, + 1.2, + 1.2, + 1.2, + 1.18, + 1.16, + 1.1300000000000001, + 1.09, + 1.03, + 0.96, + 0.88, + 0.8, + 0.73, + 0.67, + 0.63, + 0.58, + 0.53, + 0.47000000000000003, + 0.41000000000000003, + 0.34, + 0.28, + 0.21, + 0.14, + 0.07, + 0.01, + -0.05, + -0.11, + -0.17, + -0.22, + -0.27, + -0.33, + -0.39, + -0.45, + -0.51, + -0.5700000000000001, + -0.62, + -0.67, + -0.72, + -0.77, + -0.8200000000000001, + -0.86, + -0.9, + -0.93, + -0.97, + -1.0, + -1.03, + -1.07, + -1.09, + -1.12, + -1.1400000000000001, + -1.17, + -1.19, + -1.21, + -1.22, + -1.23, + -1.24, + -1.25, + -1.26, + -1.27, + -1.28, + -1.29, + -1.31, + -1.33, + -1.34, + -1.35, + -1.37, + -1.3800000000000001, + -1.4000000000000001, + -1.41, + -1.43, + -1.43, + -1.45, + -1.46, + -1.47, + -1.48, + -1.48, + -1.48, + -1.47, + -1.44, + -1.41, + -1.3800000000000001, + -1.34, + -1.29, + -1.23, + -1.18, + -1.1300000000000001, + -1.09, + -1.06, + -1.03, + -1.01, + -1.0, + -1.0, + -0.99, + -0.96, + -0.91, + -0.86, + -0.8, + -0.76, + -0.72, + -0.72, + -0.74, + -0.8200000000000001, + -0.9400000000000001, + -1.12, + -1.35, + -1.55, + -1.7, + -1.75, + -1.69, + -1.57, + -1.3900000000000001, + -1.2, + -1.01, + -0.78, + -0.54, + -0.28, + -0.1, + 0.01, + 0.04, + 0.04, + 0.11, + 0.24, + 0.42, + 0.62, + 0.8, + 0.99, + 1.18, + 1.35, + 1.5, + 1.61, + 1.68, + 1.7, + 1.7, + 1.6500000000000001, + 1.56, + 1.36, + 1.07, + 0.59, + 0.02, + -0.61, + -1.25, + -1.72, + -2.15, + -2.42, + -2.64, + -2.81, + -2.98, + -3.11, + -3.22, + -3.3000000000000003, + -3.33, + -3.33, + -3.31, + -3.27, + -3.2, + -3.13, + -3.0300000000000002, + -2.94, + -2.85, + -2.77, + -2.72, + -2.69, + -2.65, + -2.63, + -2.6, + -2.56, + -2.52 + ], + [ + -3.2, + -3.52, + -3.75, + -3.87, + -3.87, + -3.84, + -3.79, + -3.69, + -3.52, + -3.31, + -3.16, + -3.06, + -3.02, + -3.09, + -3.2, + -3.39, + -3.68, + -4.11, + -4.53, + -4.83, + -5.11, + -5.23, + -5.39, + -5.43, + -5.5200000000000005, + -5.5, + -5.45, + -5.19, + -4.86, + -4.53, + -4.18, + -3.87, + -3.5100000000000002, + -3.04, + -2.54, + -2.08, + -1.76, + -1.62, + -1.6, + -1.49, + -1.28, + -1.09, + -1.09, + -1.19, + -1.41, + -1.61, + -1.53, + -1.3800000000000001, + -1.07, + -0.87, + -1.03, + -1.2, + -1.09, + -0.7000000000000001, + -0.01, + 0.73, + 1.22, + 1.48, + 1.61, + 1.62, + 1.55, + 1.27, + 0.86, + 0.35000000000000003, + -0.01, + -0.1, + -0.18, + -0.37, + -0.64, + -0.98, + -1.3, + -1.34, + -1.32, + -1.03, + -0.68, + -0.26, + 0.09, + 0.25, + 0.24, + 0.13, + -0.01, + -0.06, + -0.01, + 0.11, + 0.33, + 0.52, + 0.66, + 0.73, + 0.68, + 0.58, + 0.28, + -0.07, + -0.5, + -0.8200000000000001, + -0.86, + -0.74, + -0.51, + -0.21, + 0.0, + 0.15, + 0.12, + -0.03, + -0.36, + -0.8300000000000001, + -1.41, + -2.04, + -2.57, + -2.96, + -3.18, + -3.17, + -3.0700000000000003, + -2.81, + -2.59, + -2.32, + -2.16, + -2.0, + -1.93, + -1.8, + -1.74, + -1.59, + -1.48, + -1.4000000000000001, + -1.36, + -1.3800000000000001, + -1.43, + -1.48, + -1.51, + -1.49, + -1.43, + -1.37, + -1.29, + -1.26, + -1.27, + -1.36, + -1.49, + -1.69, + -1.99, + -2.38, + -2.7600000000000002, + -3.06, + -3.21, + -3.2, + -3.0300000000000002, + -2.84, + -2.72, + -2.64, + -2.58, + -2.5100000000000002, + -2.42, + -2.32, + -2.2, + -2.06, + -1.9100000000000001, + -1.75, + -1.58, + -1.36, + -1.11, + -0.8, + -0.5, + -0.22, + 0.04, + 0.23, + 0.42, + 0.5700000000000001, + 0.72, + 0.8200000000000001, + 0.92, + 0.99, + 1.05, + 1.08, + 1.12, + 1.1500000000000001, + 1.18, + 1.22, + 1.26, + 1.28, + 1.29, + 1.31, + 1.29, + 1.29, + 1.27, + 1.27, + 1.26, + 1.27, + 1.24, + 1.22, + 1.19, + 1.16, + 1.09, + 1.02, + 0.93, + 0.85, + 0.78, + 0.71, + 0.66, + 0.62, + 0.56, + 0.49, + 0.43, + 0.37, + 0.3, + 0.23, + 0.17, + 0.1, + 0.03, + -0.03, + -0.09, + -0.15, + -0.21, + -0.26, + -0.32, + -0.38, + -0.44, + -0.51, + -0.5700000000000001, + -0.62, + -0.68, + -0.73, + -0.78, + -0.8300000000000001, + -0.87, + -0.91, + -0.9500000000000001, + -0.98, + -1.01, + -1.05, + -1.08, + -1.11, + -1.1400000000000001, + -1.17, + -1.19, + -1.22, + -1.24, + -1.26, + -1.26, + -1.28, + -1.28, + -1.29, + -1.29, + -1.31, + -1.32, + -1.34, + -1.35, + -1.37, + -1.3800000000000001, + -1.3900000000000001, + -1.4000000000000001, + -1.42, + -1.43, + -1.44, + -1.46, + -1.47, + -1.48, + -1.48, + -1.49, + -1.49, + -1.49, + -1.48, + -1.46, + -1.43, + -1.4000000000000001, + -1.36, + -1.31, + -1.26, + -1.21, + -1.16, + -1.12, + -1.08, + -1.05, + -1.03, + -1.01, + -1.0, + -0.98, + -0.96, + -0.93, + -0.89, + -0.85, + -0.8300000000000001, + -0.8, + -0.8200000000000001, + -0.86, + -0.9500000000000001, + -1.05, + -1.2, + -1.37, + -1.54, + -1.67, + -1.73, + -1.71, + -1.61, + -1.45, + -1.26, + -1.07, + -0.85, + -0.64, + -0.41000000000000003, + -0.24, + -0.12, + -0.08, + -0.02, + 0.03, + 0.18, + 0.34, + 0.54, + 0.72, + 0.92, + 1.12, + 1.31, + 1.49, + 1.62, + 1.7, + 1.74, + 1.73, + 1.68, + 1.57, + 1.3900000000000001, + 1.08, + 0.67, + 0.12, + -0.46, + -1.03, + -1.54, + -1.95, + -2.2600000000000002, + -2.49, + -2.66, + -2.84, + -2.98, + -3.11, + -3.19, + -3.25, + -3.2800000000000002, + -3.2800000000000002, + -3.27, + -3.23, + -3.18, + -3.11, + -3.0100000000000002, + -2.93, + -2.85, + -2.81, + -2.7600000000000002, + -2.74, + -2.7, + -2.67, + -2.61, + -2.57 + ], + [ + -3.02, + -3.41, + -3.66, + -3.8200000000000003, + -3.86, + -3.83, + -3.81, + -3.66, + -3.47, + -3.2800000000000002, + -3.12, + -3.0500000000000003, + -3.0300000000000002, + -3.0700000000000003, + -3.15, + -3.33, + -3.69, + -4.0600000000000005, + -4.53, + -4.86, + -5.12, + -5.28, + -5.4, + -5.49, + -5.55, + -5.6000000000000005, + -5.41, + -5.21, + -4.83, + -4.49, + -4.14, + -3.85, + -3.47, + -3.0700000000000003, + -2.6, + -2.14, + -1.86, + -1.71, + -1.62, + -1.43, + -1.25, + -1.09, + -1.04, + -1.24, + -1.45, + -1.59, + -1.6500000000000001, + -1.32, + -1.01, + -0.9500000000000001, + -1.0, + -1.1300000000000001, + -1.18, + -0.67, + -0.03, + 0.67, + 1.24, + 1.52, + 1.6600000000000001, + 1.6600000000000001, + 1.6, + 1.35, + 0.8300000000000001, + 0.39, + 0.05, + -0.12, + -0.21, + -0.32, + -0.6900000000000001, + -1.0, + -1.28, + -1.44, + -1.31, + -1.16, + -0.73, + -0.36, + -0.02, + 0.19, + 0.18, + 0.09, + -0.03, + -0.11, + -0.07, + 0.07, + 0.25, + 0.46, + 0.59, + 0.68, + 0.68, + 0.55, + 0.4, + -0.08, + -0.45, + -0.74, + -0.87, + -0.6900000000000001, + -0.49, + -0.19, + 0.06, + 0.16, + 0.21, + 0.01, + -0.26, + -0.74, + -1.3, + -1.8800000000000001, + -2.48, + -2.85, + -3.12, + -3.18, + -3.08, + -2.95, + -2.66, + -2.49, + -2.2600000000000002, + -2.16, + -2.0100000000000002, + -1.95, + -1.79, + -1.68, + -1.53, + -1.43, + -1.4000000000000001, + -1.4000000000000001, + -1.45, + -1.51, + -1.53, + -1.53, + -1.48, + -1.41, + -1.35, + -1.31, + -1.33, + -1.43, + -1.57, + -1.78, + -1.99, + -2.37, + -2.65, + -2.99, + -3.18, + -3.15, + -3.0500000000000003, + -2.88, + -2.7600000000000002, + -2.66, + -2.59, + -2.52, + -2.44, + -2.33, + -2.22, + -2.09, + -1.93, + -1.78, + -1.6, + -1.41, + -1.11, + -0.87, + -0.51, + -0.27, + 0.02, + 0.22, + 0.43, + 0.58, + 0.73, + 0.84, + 0.9400000000000001, + 1.01, + 1.07, + 1.11, + 1.1500000000000001, + 1.18, + 1.21, + 1.25, + 1.29, + 1.31, + 1.33, + 1.33, + 1.33, + 1.31, + 1.31, + 1.3, + 1.3, + 1.28, + 1.28, + 1.24, + 1.22, + 1.16, + 1.12, + 1.03, + 0.96, + 0.87, + 0.8, + 0.73, + 0.68, + 0.63, + 0.5700000000000001, + 0.5, + 0.44, + 0.38, + 0.31, + 0.25, + 0.17, + 0.12, + 0.04, + -0.02, + -0.09, + -0.14, + -0.2, + -0.25, + -0.32, + -0.37, + -0.44, + -0.51, + -0.5700000000000001, + -0.63, + -0.68, + -0.74, + -0.79, + -0.84, + -0.88, + -0.92, + -0.9500000000000001, + -0.99, + -1.02, + -1.05, + -1.08, + -1.11, + -1.1400000000000001, + -1.18, + -1.2, + -1.23, + -1.25, + -1.26, + -1.28, + -1.29, + -1.3, + -1.3, + -1.31, + -1.32, + -1.33, + -1.35, + -1.36, + -1.3800000000000001, + -1.3900000000000001, + -1.4000000000000001, + -1.41, + -1.42, + -1.44, + -1.45, + -1.46, + -1.47, + -1.48, + -1.49, + -1.5, + -1.5, + -1.49, + -1.48, + -1.46, + -1.44, + -1.41, + -1.37, + -1.32, + -1.28, + -1.23, + -1.18, + -1.1300000000000001, + -1.09, + -1.06, + -1.04, + -1.02, + -1.0, + -0.99, + -0.96, + -0.9400000000000001, + -0.9, + -0.87, + -0.84, + -0.84, + -0.86, + -0.91, + -1.0, + -1.1, + -1.24, + -1.3800000000000001, + -1.54, + -1.6600000000000001, + -1.71, + -1.71, + -1.62, + -1.47, + -1.29, + -1.08, + -0.9, + -0.66, + -0.49, + -0.29, + -0.19, + -0.11, + -0.08, + 0.03, + 0.13, + 0.33, + 0.48, + 0.7000000000000001, + 0.88, + 1.1, + 1.29, + 1.47, + 1.62, + 1.7, + 1.75, + 1.74, + 1.68, + 1.58, + 1.3800000000000001, + 1.12, + 0.64, + 0.2, + -0.44, + -0.9, + -1.48, + -1.84, + -2.2, + -2.4, + -2.62, + -2.77, + -2.93, + -3.0500000000000003, + -3.15, + -3.21, + -3.25, + -3.27, + -3.2600000000000002, + -3.24, + -3.19, + -3.12, + -3.04, + -2.95, + -2.88, + -2.82, + -2.8000000000000003, + -2.7600000000000002, + -2.75, + -2.68, + -2.63, + -2.57 + ], + [ + -3.24, + -3.45, + -3.65, + -3.87, + -3.86, + -3.83, + -3.7600000000000002, + -3.58, + -3.44, + -3.21, + -3.11, + -3.04, + -3.0300000000000002, + -3.09, + -3.16, + -3.46, + -3.73, + -4.2, + -4.6000000000000005, + -4.92, + -5.2, + -5.3100000000000005, + -5.44, + -5.5, + -5.58, + -5.5200000000000005, + -5.34, + -5.12, + -4.68, + -4.43, + -4.0200000000000005, + -3.7800000000000002, + -3.3000000000000003, + -3.0, + -2.44, + -2.13, + -1.83, + -1.69, + -1.54, + -1.4000000000000001, + -1.2, + -1.06, + -1.1300000000000001, + -1.27, + -1.46, + -1.6400000000000001, + -1.51, + -1.23, + -1.06, + -0.9400000000000001, + -1.01, + -1.1400000000000001, + -1.01, + -0.44, + 0.03, + 0.89, + 1.26, + 1.58, + 1.69, + 1.6400000000000001, + 1.57, + 1.16, + 0.78, + 0.31, + -0.01, + -0.14, + -0.25, + -0.46, + -0.77, + -1.05, + -1.37, + -1.37, + -1.27, + -1.06, + -0.6, + -0.34, + 0.05, + 0.16, + 0.15, + 0.08, + -0.07, + -0.11, + -0.02, + 0.08, + 0.31, + 0.48, + 0.61, + 0.6900000000000001, + 0.62, + 0.52, + 0.23, + -0.19, + -0.48, + -0.81, + -0.78, + -0.63, + -0.43, + -0.08, + 0.06, + 0.19, + 0.17, + -0.08, + -0.32, + -0.9400000000000001, + -1.36, + -2.07, + -2.52, + -2.92, + -3.15, + -3.14, + -3.08, + -2.86, + -2.63, + -2.45, + -2.24, + -2.14, + -2.0100000000000002, + -1.9100000000000001, + -1.76, + -1.6600000000000001, + -1.49, + -1.43, + -1.4000000000000001, + -1.41, + -1.48, + -1.51, + -1.54, + -1.53, + -1.46, + -1.41, + -1.35, + -1.31, + -1.3800000000000001, + -1.46, + -1.6500000000000001, + -1.85, + -2.12, + -2.46, + -2.72, + -3.0700000000000003, + -3.13, + -3.13, + -3.02, + -2.83, + -2.75, + -2.64, + -2.58, + -2.49, + -2.43, + -2.29, + -2.2, + -2.0300000000000002, + -1.9100000000000001, + -1.72, + -1.57, + -1.31, + -1.07, + -0.76, + -0.44, + -0.19, + 0.1, + 0.27, + 0.49, + 0.61, + 0.77, + 0.85, + 0.97, + 1.02, + 1.09, + 1.12, + 1.17, + 1.19, + 1.23, + 1.26, + 1.3, + 1.32, + 1.33, + 1.34, + 1.33, + 1.32, + 1.31, + 1.31, + 1.3, + 1.29, + 1.27, + 1.24, + 1.21, + 1.1500000000000001, + 1.1, + 1.01, + 0.9500000000000001, + 0.84, + 0.79, + 0.71, + 0.67, + 0.61, + 0.56, + 0.48, + 0.43, + 0.35000000000000003, + 0.29, + 0.23, + 0.16, + 0.1, + 0.03, + -0.03, + -0.1, + -0.15, + -0.22, + -0.26, + -0.34, + -0.39, + -0.47000000000000003, + -0.51, + -0.59, + -0.63, + -0.71, + -0.75, + -0.81, + -0.84, + -0.89, + -0.93, + -0.97, + -0.99, + -1.03, + -1.06, + -1.09, + -1.12, + -1.1500000000000001, + -1.19, + -1.21, + -1.24, + -1.25, + -1.27, + -1.28, + -1.29, + -1.3, + -1.31, + -1.31, + -1.33, + -1.34, + -1.36, + -1.37, + -1.3800000000000001, + -1.3900000000000001, + -1.41, + -1.42, + -1.43, + -1.44, + -1.46, + -1.47, + -1.48, + -1.49, + -1.49, + -1.5, + -1.5, + -1.49, + -1.48, + -1.45, + -1.44, + -1.3900000000000001, + -1.36, + -1.31, + -1.27, + -1.21, + -1.17, + -1.12, + -1.09, + -1.06, + -1.04, + -1.02, + -1.0, + -0.98, + -0.96, + -0.93, + -0.89, + -0.87, + -0.84, + -0.85, + -0.89, + -0.9400000000000001, + -1.05, + -1.1300000000000001, + -1.3, + -1.41, + -1.58, + -1.6600000000000001, + -1.71, + -1.7, + -1.57, + -1.45, + -1.22, + -1.05, + -0.8200000000000001, + -0.62, + -0.44, + -0.26, + -0.17, + -0.09, + -0.04, + 0.06, + 0.18, + 0.38, + 0.52, + 0.77, + 0.91, + 1.17, + 1.31, + 1.53, + 1.6300000000000001, + 1.72, + 1.76, + 1.72, + 1.67, + 1.5, + 1.34, + 0.9500000000000001, + 0.55, + 0.0, + -0.58, + -1.04, + -1.62, + -1.9100000000000001, + -2.29, + -2.44, + -2.67, + -2.79, + -2.97, + -3.0500000000000003, + -3.17, + -3.21, + -3.25, + -3.2600000000000002, + -3.25, + -3.23, + -3.17, + -3.12, + -3.0100000000000002, + -2.93, + -2.87, + -2.82, + -2.79, + -2.7600000000000002, + -2.72, + -2.67, + -2.62, + -2.5500000000000003 + ] + ] +} diff --git a/ipyopenlayers/Map.py b/ipyopenlayers/Map.py index f73883d..050287f 100644 --- a/ipyopenlayers/Map.py +++ b/ipyopenlayers/Map.py @@ -8,8 +8,8 @@ TODO: Add module docstring """ -from ipywidgets import DOMWidget, Widget, widget_serialization, CallbackDispatcher -from traitlets import Unicode, List, Instance, CFloat, Bool, Dict, Int +from ipywidgets import DOMWidget, Widget, widget_serialization +from traitlets import Unicode, List, Instance, CFloat, Bool, Dict, Int, Tuple, Float from ._frontend import module_name, module_version def_loc = [0.0, 0.0] @@ -38,12 +38,6 @@ class GeoJSON(Layer): data = Dict({}).tag(sync=True) style = Dict({}).tag(sync=True) visible = Bool(True).tag(sync=True) - def __init__(self, **kwargs): - super().__init__(**kwargs) - - self.points = kwargs.get('points', []) - self.blur = kwargs.get('blur', 15) - self.radius = kwargs.get('radius', 8) class HeatmapLayer(Layer): @@ -52,13 +46,22 @@ class HeatmapLayer(Layer): points= List([]).tag(sync=True) blur =Int(15).tag(sync=True) radius = Int(8).tag(sync=True) - def __init__(self, **kwargs): - super().__init__(**kwargs) - - self.points = kwargs.get('points', []) - self.blur = kwargs.get('blur', 15) - self.radius = kwargs.get('radius', 8) +class ArrowLayer(Layer): + _view_name = Unicode('ArrowLayerView').tag(sync=True) + _model_name = Unicode('ArrowLayerModel').tag(sync=True) + opacity = Float(1.0).tag(sync=True) + data = List([]).tag(sync=True) + +class WindLayer(Layer): + _view_name = Unicode('WindLayerView').tag(sync=True) + _model_name = Unicode('WindLayerModel').tag(sync=True) + metadata = Dict().tag(sync=True) + opacity = Float(1.0).tag(sync=True) + updateWhileInteracting = Bool(True).tag(sync=True) + style = Unicode('barbs').tag(sync=True) + ufile =Dict().tag(sync=True) + vfile =Dict().tag(sync=True) diff --git a/package.json b/package.json index eb7e710..db444f3 100644 --- a/package.json +++ b/package.json @@ -50,7 +50,8 @@ }, "dependencies": { "@jupyter-widgets/base": "^1.1.10 || ^2 || ^3 || ^4 || ^5 || ^6", - "ol": "^9.1.0" + "ol": "^9.1.0", + "olwind": "github:gberaudo/olwind#master" }, "devDependencies": { "@babel/core": "^7.23.7", diff --git a/src/arrowlayer.ts b/src/arrowlayer.ts new file mode 100644 index 0000000..3eb5401 --- /dev/null +++ b/src/arrowlayer.ts @@ -0,0 +1,143 @@ +import { StyleFunction } from 'ol/style/Style'; +import { ISerializers, DOMWidgetModel } from '@jupyter-widgets/base'; +import VectorSource from 'ol/source/Vector'; +import VectorLayer from 'ol/layer/Vector'; +import Feature from 'ol/Feature'; +import Point from 'ol/geom/Point'; +import { RegularShape, Stroke, Fill, Style } from 'ol/style'; +import { LayerModel, LayerView } from './layer'; +import { MODULE_NAME, MODULE_VERSION } from './version'; + +export class ArrowLayerModel extends LayerModel { + defaults() { + return { + ...super.defaults(), + _model_name: ArrowLayerModel.model_name, + _model_module: ArrowLayerModel.model_module, + _model_module_version: ArrowLayerModel.model_module_version, + _view_name: ArrowLayerModel.view_name, + _view_module: ArrowLayerModel.view_module, + _view_module_version: ArrowLayerModel.view_module_version, + opacity: 1, + data: [], + }; + } + + static serializers: ISerializers = { + ...DOMWidgetModel.serializers, + // Ajoutez ici les sérialiseurs supplémentaires + }; + + static model_name = 'ArrowLayerModel'; + static model_module = MODULE_NAME; + static model_module_version = MODULE_VERSION; + static view_name = 'ArrowLayerView'; + static view_module = MODULE_NAME; + static view_module_version = MODULE_VERSION; +} + +export class ArrowLayerView extends LayerView { + obj: VectorLayer; + + render() { + this.initVectorLayer(); + this.create_obj(); + this.modelEvents(); + } + + create_obj() { + this.obj = this.vectorLayer; + } + + initVectorLayer() { + const source = new VectorSource({ + attributions: + 'Weather data by OpenWeather', + }); + this.vectorLayer = new VectorLayer({ + source: source, + style: this.createStyleFunction(), + }); + + this.updateData(); + } + + createStyleFunction(): StyleFunction { + const shaft = new RegularShape({ + points: 2, + radius: 4, + stroke: new Stroke({ + width: 4, + color: 'blue', + }), + rotateWithView: true, + }); + + const head = new RegularShape({ + points: 3, + radius: 6, + fill: new Fill({ + color: 'red', + }), + rotateWithView: true, + }); + + return (feature) => { + const wind = feature.get('wind'); + const angle = ((wind.deg - 180) * Math.PI) / 180; + const scale = wind.speed / 10; + shaft.setScale([1, scale]); + shaft.setRotation(angle); + head.setDisplacement([ + 0, + head.getRadius() / 2 + shaft.getRadius() * scale, + ]); + head.setRotation(angle); + return [new Style({ image: shaft }), new Style({ image: head })]; + }; + } + + updateStyle() { + this.vectorLayer.setStyle(this.createStyleFunction()); + } + + updateData() { + const data = this.model.get('data') as { + coord: { lon: number; lat: number }; + wind: { speed: number; deg: number }; + }[]; + const features: Feature[] = []; + + if (Array.isArray(data)) { + data.forEach((point) => { + const feature = new Feature( + new Point([point.coord.lon, point.coord.lat]), + ); + feature.setProperties({ + wind: { + speed: point.wind.speed, + deg: point.wind.deg, + }, + }); + features.push(feature); + }); + } + + const source = this.vectorLayer?.getSource(); + if (source) { + source.clear(); + source.addFeatures(features); + } + } + + modelEvents() { + this.listenTo(this.model, 'change:styleType', this.updateStyle); + this.listenTo(this.model, 'change:data', this.updateData); + this.listenTo(this.model, 'change:opacity', () => { + this.vectorLayer.setOpacity(this.model.get('opacity')); + }); + } + + vectorLayer: VectorLayer; + vectorSource: VectorSource; +} \ No newline at end of file diff --git a/src/geojson.ts b/src/geojson.ts index 05aaf83..2cb544b 100644 --- a/src/geojson.ts +++ b/src/geojson.ts @@ -10,6 +10,7 @@ import { Circle as CircleStyle, Fill, Stroke, Style } from 'ol/style.js'; import { Vector as VectorSource } from 'ol/source.js'; import { Vector as VectorLayer } from 'ol/layer.js'; import { LayerModel, LayerView } from './layer'; +import { Feature } from 'ol'; export class OpenLayersGeoJSONModel extends LayerModel { defaults() { @@ -39,7 +40,7 @@ export class OpenLayersGeoJSONModel extends LayerModel { } export class OpenLayersGeoJSONView extends LayerView { - obj: VectorLayer; + obj: VectorLayer; render() { this.initVectorLayer(); this.create_obj(); @@ -109,6 +110,6 @@ export class OpenLayersGeoJSONView extends LayerView { this.listenTo(this.model, 'change:data', this.updateData); this.listenTo(this.model, 'change:visible', this.updateVisibility); } - vectorLayer: VectorLayer; + vectorLayer: VectorLayer; vectorSource: VectorSource; } diff --git a/src/heatmap.ts b/src/heatmap.ts index a688107..81717e2 100644 --- a/src/heatmap.ts +++ b/src/heatmap.ts @@ -36,7 +36,7 @@ export class HeatmapLayerModel extends LayerModel { } export class HeatmapLayerView extends LayerView { - obj: Heatmap; + obj: Heatmap; render() { this.create_obj(); diff --git a/src/widget.ts b/src/widget.ts index 1d13e1d..3ce767d 100644 --- a/src/widget.ts +++ b/src/widget.ts @@ -7,11 +7,14 @@ import { unpack_models, ViewList, } from '@jupyter-widgets/base'; +import { MapBrowserEvent } from 'ol'; import { LayerModel, LayerView } from './layer'; import { BaseOverlayModel, BaseOverlayView } from './baseoverlay'; import { BaseControlModel, BaseControlView } from './basecontrol'; +//import { ArrowLayerModel, ArrowLayerView } from './arrowlayer'; import { ViewObjectEventTypes } from 'ol/View'; - +//import Point from 'ol/geom/Point'; +//import Feature from 'ol/Feature'; import { Map } from 'ol'; import TileLayer from 'ol/layer/Tile'; import View from 'ol/View'; @@ -30,6 +33,8 @@ export * from './scaleline'; export * from './mouseposition'; export * from './tilelayer'; export * from './heatmap'; +export * from './windlayer'; +export * from './arrowlayer'; const DEFAULT_LOCATION = [0.0, 0.0]; @@ -120,6 +125,7 @@ export class MapView extends DOMWidgetView { this.model.set('center', this.map.getView().getCenter()); this.model.save_changes(); }); + this.map.on('click', this.handleMapClick.bind(this)); this.map .getView() @@ -137,6 +143,10 @@ export class MapView extends DOMWidgetView { this.model.on('change:zoom', this.zoomChanged, this); this.model.on('change:center', this.centerChanged, this); } + handleMapClick(event: MapBrowserEvent) { + const coordinates = event.coordinate; + console.log('Clicked coordinates:', coordinates); + } layersChanged() { const layers = this.model.get('layers') as LayerModel[]; this.layerViews.update(layers); @@ -187,6 +197,10 @@ export class MapView extends DOMWidgetView { const view = await this.create_child_view(child_model, { map_view: this, }); + + /*if (child_model instanceof ArrowLayerModel) { + await this.animateArrowLayer(view as ArrowLayerView); + }*/ this.map.addLayer(view.obj); this.displayed.then(() => { view.trigger('displayed', this); @@ -194,6 +208,51 @@ export class MapView extends DOMWidgetView { return view; } + /* async animateArrowLayer(view: ArrowLayerView) { + const source = view.vectorLayer.getSource(); + if (source) { + const features = source.getFeatures(); + for (const feature of features) { + const windProperties = feature.getProperties().wind; + const windDirection = windProperties?.deg; + const windSpeed = windProperties?.speed; + if (windDirection !== undefined && windSpeed !== undefined) { + const distance = windSpeed * 1; + this.animateFeature(feature, windDirection, distance, 1000); + } + } + } + } + animateFeature( + feature: Feature, + windDirection: number, + distance: number, + duration: number, + ) { + const startCoords = (feature.getGeometry() as Point).getCoordinates(); + const dx = distance * Math.cos((windDirection - 180) * (Math.PI / 180)); + const dy = distance * Math.sin((windDirection - 180) * (Math.PI / 180)); + + const startTime = Date.now(); + + const translateStep = () => { + const elapsed = Date.now() - startTime; + const progress = Math.min(elapsed / duration, 1); + + const newX = startCoords[0] + dx * progress; + const newY = startCoords[1] + dy * progress; + (feature.getGeometry() as Point).setCoordinates([newX, newY]); + + if (progress < 1) { + requestAnimationFrame(translateStep); + } else { + this.animateFeature(feature, windDirection, distance, duration); + } + }; + + translateStep(); + } +*/ async addOverlayModel(child_model: BaseOverlayModel) { const view = await this.create_child_view(child_model, { map_view: this, @@ -226,4 +285,4 @@ export class MapView extends DOMWidgetView { layerViews: ViewList; overlayViews: ViewList; controlViews: ViewList; -} +} \ No newline at end of file diff --git a/src/windlayer.ts b/src/windlayer.ts new file mode 100644 index 0000000..871bb56 --- /dev/null +++ b/src/windlayer.ts @@ -0,0 +1,116 @@ +// Copyright (c) QuantStack +// Distributed under the terms of the Modified BSD License. +// Import des modules nécessaires +import 'ol/ol.css'; +import { ISerializers, DOMWidgetModel } from '@jupyter-widgets/base'; +import 'ol/ol.css'; +import { MODULE_NAME, MODULE_VERSION } from './version'; +import '../css/widget.css'; +import VectorSource from 'ol/source/Vector'; +import { LayerModel, LayerView } from './layer'; +import Feature from 'ol/Feature'; +// @ts-expect-error use of a java script style +import { createStupidStyle, createBarbsStyle } from 'olwind/src/styling'; +// @ts-expect-error use of a java script arrow +import { ArrowLayer } from 'olwind/src/ArrowLayer'; +// @ts-expect-error use of a java script uvbuffer +import UVBuffer from 'olwind/src/UVBuffer'; + +export class WindLayerModel extends LayerModel { + defaults() { + return { + ...super.defaults(), + _model_name: WindLayerModel.model_name, + _model_module: WindLayerModel.model_module, + _model_module_version: WindLayerModel.model_module_version, + _view_name: WindLayerModel.view_name, + _view_module: WindLayerModel.view_module, + _view_module_version: WindLayerModel.view_module_version, + }; + } + + static serializers: ISerializers = { + ...DOMWidgetModel.serializers, + // Add any extra serializers here + }; + + static model_name = 'WindLayerModel'; + static model_module = MODULE_NAME; + static model_module_version = MODULE_VERSION; + static view_name = 'WindLayerView'; + static view_module = MODULE_NAME; + static view_module_version = MODULE_VERSION; + } + +export class WindLayerView extends LayerView { + obj: ArrowLayer; + vectorSource: VectorSource; + uvBuffer: UVBuffer; + features: Feature[]; + updateWhileInteracting: boolean; + + render() { + this.create_obj(); + this.modelEvents(); + } + + create_obj() { + const metadata = this.model.get('metadata'); + const ufile = this.model.get('ufile'); + const vfile = this.model.get('vfile'); + try { + const { extent, width, height } = metadata; + + const uArray = [].concat(...ufile.array); + const vArray = [].concat(...vfile.array); + + const uBuffer = new Float32Array(uArray); + const vBuffer = new Float32Array(vArray); + + this.uvBuffer = new UVBuffer(uBuffer, vBuffer, width, height, extent); + + this.createFeaturesAndArrowLayer(); + } catch (err) { + console.error('Error processing files:', err); + } + } + createFeaturesAndArrowLayer() { + const style = + this.model.get('style') === 'barbs' + ? createBarbsStyle(this.uvBuffer) + : createStupidStyle(this.uvBuffer); + + const options = { + uvBuffer: this.uvBuffer, + opacity: this.model.get('opacity'), + updateWhileInteracting: this.model.get('updateWhileInteracting'), + style: style, + }; + + try { + this.obj = new ArrowLayer(options); + } catch (error) { + console.error('Error creating ArrowLayer:', error); + } + } + + modelEvents() { + this.listenTo(this.model, 'change:uvBuffer', this.updateUVBuffer); + this.listenTo( + this.model, + 'change:updateWhileInteracting', + this.updateUpdateWhileInteracting, + ); + } + // still needs implementation + + updateUVBuffer() { + this.uvBuffer = this.model.get('uvBuffer'); + //this.obj.create_obj(this.uvBuffer); + } + // still needs implementation + updateUpdateWhileInteracting() { + this.updateWhileInteracting = this.model.get('updateWhileInteracting'); + //this.obj.setUpdateWhileInteracting(this.updateWhileInteracting); + } +} diff --git a/yarn.lock b/yarn.lock index 6d1abd6..3d003da 100644 --- a/yarn.lock +++ b/yarn.lock @@ -9,124 +9,125 @@ __metadata: version: 2.3.0 resolution: "@ampproject/remapping@npm:2.3.0" dependencies: - "@jridgewell/gen-mapping": "npm:^0.3.5" - "@jridgewell/trace-mapping": "npm:^0.3.24" + "@jridgewell/gen-mapping": ^0.3.5 + "@jridgewell/trace-mapping": ^0.3.24 checksum: d3ad7b89d973df059c4e8e6d7c972cbeb1bb2f18f002a3bd04ae0707da214cb06cc06929b65aa2313b9347463df2914772298bae8b1d7973f246bb3f2ab3e8f0 languageName: node linkType: hard -"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.23.5, @babel/code-frame@npm:^7.24.2": - version: 7.24.2 - resolution: "@babel/code-frame@npm:7.24.2" +"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/code-frame@npm:7.24.7" dependencies: - "@babel/highlight": "npm:^7.24.2" - picocolors: "npm:^1.0.0" - checksum: 70e867340cfe09ca5488b2f36372c45cabf43c79a5b6426e6df5ef0611ff5dfa75a57dda841895693de6008f32c21a7c97027a8c7bcabd63a7d17416cbead6f8 + "@babel/highlight": ^7.24.7 + picocolors: ^1.0.0 + checksum: 830e62cd38775fdf84d612544251ce773d544a8e63df667728cc9e0126eeef14c6ebda79be0f0bc307e8318316b7f58c27ce86702e0a1f5c321d842eb38ffda4 languageName: node linkType: hard -"@babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.23.5, @babel/compat-data@npm:^7.24.4": - version: 7.24.4 - resolution: "@babel/compat-data@npm:7.24.4" - checksum: 52ce371658dc7796c9447c9cb3b9c0659370d141b76997f21c5e0028cca4d026ca546b84bc8d157ce7ca30bd353d89f9238504eb8b7aefa9b1f178b4c100c2d4 +"@babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/compat-data@npm:7.24.7" + checksum: 1fc276825dd434fe044877367dfac84171328e75a8483a6976aa28bf833b32367e90ee6df25bdd97c287d1aa8019757adcccac9153de70b1932c0d243a978ae9 languageName: node linkType: hard "@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.23.7, @babel/core@npm:^7.23.9": - version: 7.24.5 - resolution: "@babel/core@npm:7.24.5" + version: 7.24.7 + resolution: "@babel/core@npm:7.24.7" dependencies: - "@ampproject/remapping": "npm:^2.2.0" - "@babel/code-frame": "npm:^7.24.2" - "@babel/generator": "npm:^7.24.5" - "@babel/helper-compilation-targets": "npm:^7.23.6" - "@babel/helper-module-transforms": "npm:^7.24.5" - "@babel/helpers": "npm:^7.24.5" - "@babel/parser": "npm:^7.24.5" - "@babel/template": "npm:^7.24.0" - "@babel/traverse": "npm:^7.24.5" - "@babel/types": "npm:^7.24.5" - convert-source-map: "npm:^2.0.0" - debug: "npm:^4.1.0" - gensync: "npm:^1.0.0-beta.2" - json5: "npm:^2.2.3" - semver: "npm:^6.3.1" - checksum: f4f0eafde12b145f2cb9cc893085e5f1436e1ef265bb3b7d8aa6282515c9b4e740bbd5e2cbc32114adb9afed2dd62c2336758b9fabb7e46e8ba542f76d4f3f80 + "@ampproject/remapping": ^2.2.0 + "@babel/code-frame": ^7.24.7 + "@babel/generator": ^7.24.7 + "@babel/helper-compilation-targets": ^7.24.7 + "@babel/helper-module-transforms": ^7.24.7 + "@babel/helpers": ^7.24.7 + "@babel/parser": ^7.24.7 + "@babel/template": ^7.24.7 + "@babel/traverse": ^7.24.7 + "@babel/types": ^7.24.7 + convert-source-map: ^2.0.0 + debug: ^4.1.0 + gensync: ^1.0.0-beta.2 + json5: ^2.2.3 + semver: ^6.3.1 + checksum: 017497e2a1b4683a885219eef7d2aee83c1c0cf353506b2e180b73540ec28841d8ef1ea1837fa69f8c561574b24ddd72f04764b27b87afedfe0a07299ccef24d languageName: node linkType: hard -"@babel/generator@npm:^7.24.5, @babel/generator@npm:^7.7.2": - version: 7.24.5 - resolution: "@babel/generator@npm:7.24.5" +"@babel/generator@npm:^7.24.7, @babel/generator@npm:^7.7.2": + version: 7.24.7 + resolution: "@babel/generator@npm:7.24.7" dependencies: - "@babel/types": "npm:^7.24.5" - "@jridgewell/gen-mapping": "npm:^0.3.5" - "@jridgewell/trace-mapping": "npm:^0.3.25" - jsesc: "npm:^2.5.1" - checksum: a08c0ab900b36e1a17863e18e3216153322ea993246fd7a358ba38a31cfb15bab2af1dc178b2adafe4cb8a9f3ab0e0ceafd3fe6e8ca870dffb435b53b2b2a803 + "@babel/types": ^7.24.7 + "@jridgewell/gen-mapping": ^0.3.5 + "@jridgewell/trace-mapping": ^0.3.25 + jsesc: ^2.5.1 + checksum: 0ff31a73b15429f1287e4d57b439bba4a266f8c673bb445fe313b82f6d110f586776997eb723a777cd7adad9d340edd162aea4973a90112c5d0cfcaf6686844b languageName: node linkType: hard -"@babel/helper-annotate-as-pure@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/helper-annotate-as-pure@npm:7.22.5" +"@babel/helper-annotate-as-pure@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-annotate-as-pure@npm:7.24.7" dependencies: - "@babel/types": "npm:^7.22.5" - checksum: 53da330f1835c46f26b7bf4da31f7a496dee9fd8696cca12366b94ba19d97421ce519a74a837f687749318f94d1a37f8d1abcbf35e8ed22c32d16373b2f6198d + "@babel/types": ^7.24.7 + checksum: 6178566099a6a0657db7a7fa601a54fb4731ca0b8614fbdccfd8e523c210c13963649bc8fdfd53ce7dd14d05e3dda2fb22dea5b30113c488b9eb1a906d60212e languageName: node linkType: hard -"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.22.15": - version: 7.22.15 - resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.22.15" +"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.24.7" dependencies: - "@babel/types": "npm:^7.22.15" - checksum: 639c697a1c729f9fafa2dd4c9af2e18568190299b5907bd4c2d0bc818fcbd1e83ffeecc2af24327a7faa7ac4c34edd9d7940510a5e66296c19bad17001cf5c7a + "@babel/traverse": ^7.24.7 + "@babel/types": ^7.24.7 + checksum: 71a6158a9fdebffb82fdc400d5555ba8f2e370cea81a0d578155877bdc4db7d5252b75c43b2fdf3f72b3f68348891f99bd35ae315542daad1b7ace8322b1abcb languageName: node linkType: hard -"@babel/helper-compilation-targets@npm:^7.22.6, @babel/helper-compilation-targets@npm:^7.23.6": - version: 7.23.6 - resolution: "@babel/helper-compilation-targets@npm:7.23.6" +"@babel/helper-compilation-targets@npm:^7.22.6, @babel/helper-compilation-targets@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-compilation-targets@npm:7.24.7" dependencies: - "@babel/compat-data": "npm:^7.23.5" - "@babel/helper-validator-option": "npm:^7.23.5" - browserslist: "npm:^4.22.2" - lru-cache: "npm:^5.1.1" - semver: "npm:^6.3.1" - checksum: c630b98d4527ac8fe2c58d9a06e785dfb2b73ec71b7c4f2ddf90f814b5f75b547f3c015f110a010fd31f76e3864daaf09f3adcd2f6acdbfb18a8de3a48717590 + "@babel/compat-data": ^7.24.7 + "@babel/helper-validator-option": ^7.24.7 + browserslist: ^4.22.2 + lru-cache: ^5.1.1 + semver: ^6.3.1 + checksum: dfc88bc35e223ade796c7267901728217c665adc5bc2e158f7b0ae850de14f1b7941bec4fe5950ae46236023cfbdeddd9c747c276acf9b39ca31f8dd97dc6cc6 languageName: node linkType: hard -"@babel/helper-create-class-features-plugin@npm:^7.24.1, @babel/helper-create-class-features-plugin@npm:^7.24.4, @babel/helper-create-class-features-plugin@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/helper-create-class-features-plugin@npm:7.24.5" +"@babel/helper-create-class-features-plugin@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-create-class-features-plugin@npm:7.24.7" dependencies: - "@babel/helper-annotate-as-pure": "npm:^7.22.5" - "@babel/helper-environment-visitor": "npm:^7.22.20" - "@babel/helper-function-name": "npm:^7.23.0" - "@babel/helper-member-expression-to-functions": "npm:^7.24.5" - "@babel/helper-optimise-call-expression": "npm:^7.22.5" - "@babel/helper-replace-supers": "npm:^7.24.1" - "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5" - "@babel/helper-split-export-declaration": "npm:^7.24.5" - semver: "npm:^6.3.1" + "@babel/helper-annotate-as-pure": ^7.24.7 + "@babel/helper-environment-visitor": ^7.24.7 + "@babel/helper-function-name": ^7.24.7 + "@babel/helper-member-expression-to-functions": ^7.24.7 + "@babel/helper-optimise-call-expression": ^7.24.7 + "@babel/helper-replace-supers": ^7.24.7 + "@babel/helper-skip-transparent-expression-wrappers": ^7.24.7 + "@babel/helper-split-export-declaration": ^7.24.7 + semver: ^6.3.1 peerDependencies: "@babel/core": ^7.0.0 - checksum: ea761c1155442620ee02920ec7c3190f869ff4d4fcab48a021a11fd8a46c046ed1facb070e5c76539c2b7efc2c8338f50f08a5e49d0ebf12e48743570e92247b + checksum: 371a181a1717a9b0cebc97727c8ea9ca6afa34029476a684b6030f9d1ad94dcdafd7de175da10b63ae3ba79e4e82404db8ed968ebf264b768f097e5d64faab71 languageName: node linkType: hard -"@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.22.15, @babel/helper-create-regexp-features-plugin@npm:^7.22.5": - version: 7.22.15 - resolution: "@babel/helper-create-regexp-features-plugin@npm:7.22.15" +"@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-create-regexp-features-plugin@npm:7.24.7" dependencies: - "@babel/helper-annotate-as-pure": "npm:^7.22.5" - regexpu-core: "npm:^5.3.1" - semver: "npm:^6.3.1" + "@babel/helper-annotate-as-pure": ^7.24.7 + regexpu-core: ^5.3.1 + semver: ^6.3.1 peerDependencies: "@babel/core": ^7.0.0 - checksum: 0243b8d4854f1dc8861b1029a46d3f6393ad72f366a5a08e36a4648aa682044f06da4c6e87a456260e1e1b33c999f898ba591a0760842c1387bcc93fbf2151a6 + checksum: 17c59fa222af50f643946eca940ce1d474ff2da1f4afed2312687ab9d708ebbb8c9372754ddbdf44b6e21ead88b8fc144644f3a7b63ccb886de002458cef3974 languageName: node linkType: hard @@ -134,254 +135,260 @@ __metadata: version: 0.6.2 resolution: "@babel/helper-define-polyfill-provider@npm:0.6.2" dependencies: - "@babel/helper-compilation-targets": "npm:^7.22.6" - "@babel/helper-plugin-utils": "npm:^7.22.5" - debug: "npm:^4.1.1" - lodash.debounce: "npm:^4.0.8" - resolve: "npm:^1.14.2" + "@babel/helper-compilation-targets": ^7.22.6 + "@babel/helper-plugin-utils": ^7.22.5 + debug: ^4.1.1 + lodash.debounce: ^4.0.8 + resolve: ^1.14.2 peerDependencies: "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 checksum: 2bba965ea9a4887ddf9c11d51d740ab473bd7597b787d042c325f6a45912dfe908c2d6bb1d837bf82f7e9fa51e6ad5150563c58131d2bb85515e63d971414a9c languageName: node linkType: hard -"@babel/helper-environment-visitor@npm:^7.22.20": - version: 7.22.20 - resolution: "@babel/helper-environment-visitor@npm:7.22.20" - checksum: d80ee98ff66f41e233f36ca1921774c37e88a803b2f7dca3db7c057a5fea0473804db9fb6729e5dbfd07f4bed722d60f7852035c2c739382e84c335661590b69 +"@babel/helper-environment-visitor@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-environment-visitor@npm:7.24.7" + dependencies: + "@babel/types": ^7.24.7 + checksum: 079d86e65701b29ebc10baf6ed548d17c19b808a07aa6885cc141b690a78581b180ee92b580d755361dc3b16adf975b2d2058b8ce6c86675fcaf43cf22f2f7c6 languageName: node linkType: hard -"@babel/helper-function-name@npm:^7.23.0": - version: 7.23.0 - resolution: "@babel/helper-function-name@npm:7.23.0" +"@babel/helper-function-name@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-function-name@npm:7.24.7" dependencies: - "@babel/template": "npm:^7.22.15" - "@babel/types": "npm:^7.23.0" - checksum: e44542257b2d4634a1f979244eb2a4ad8e6d75eb6761b4cfceb56b562f7db150d134bc538c8e6adca3783e3bc31be949071527aa8e3aab7867d1ad2d84a26e10 + "@babel/template": ^7.24.7 + "@babel/types": ^7.24.7 + checksum: 142ee08922074dfdc0ff358e09ef9f07adf3671ab6eef4fca74dcf7a551f1a43717e7efa358c9e28d7eea84c28d7f177b7a58c70452fc312ae3b1893c5dab2a4 languageName: node linkType: hard -"@babel/helper-hoist-variables@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/helper-hoist-variables@npm:7.22.5" +"@babel/helper-hoist-variables@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-hoist-variables@npm:7.24.7" dependencies: - "@babel/types": "npm:^7.22.5" - checksum: 394ca191b4ac908a76e7c50ab52102669efe3a1c277033e49467913c7ed6f7c64d7eacbeabf3bed39ea1f41731e22993f763b1edce0f74ff8563fd1f380d92cc + "@babel/types": ^7.24.7 + checksum: 6cfdcf2289cd12185dcdbdf2435fa8d3447b797ac75851166de9fc8503e2fd0021db6baf8dfbecad3753e582c08e6a3f805c8d00cbed756060a877d705bd8d8d languageName: node linkType: hard -"@babel/helper-member-expression-to-functions@npm:^7.23.0, @babel/helper-member-expression-to-functions@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/helper-member-expression-to-functions@npm:7.24.5" +"@babel/helper-member-expression-to-functions@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-member-expression-to-functions@npm:7.24.7" dependencies: - "@babel/types": "npm:^7.24.5" - checksum: d3ad681655128463aa5c2a239345687345f044542563506ee53c9636d147e97f93a470be320950a8ba5f497ade6b27a8136a3a681794867ff94b90060a6e427c + "@babel/traverse": ^7.24.7 + "@babel/types": ^7.24.7 + checksum: 9fecf412f85fa23b7cf55d19eb69de39f8240426a028b141c9df2aed8cfedf20b3ec3318d40312eb7a3dec9eea792828ce0d590e0ff62da3da532482f537192c languageName: node linkType: hard -"@babel/helper-module-imports@npm:^7.24.1, @babel/helper-module-imports@npm:^7.24.3": - version: 7.24.3 - resolution: "@babel/helper-module-imports@npm:7.24.3" +"@babel/helper-module-imports@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-module-imports@npm:7.24.7" dependencies: - "@babel/types": "npm:^7.24.0" - checksum: c23492189ba97a1ec7d37012336a5661174e8b88194836b6bbf90d13c3b72c1db4626263c654454986f924c6da8be7ba7f9447876d709cd00bd6ffde6ec00796 + "@babel/traverse": ^7.24.7 + "@babel/types": ^7.24.7 + checksum: 8ac15d96d262b8940bc469052a048e06430bba1296369be695fabdf6799f201dd0b00151762b56012a218464e706bc033f27c07f6cec20c6f8f5fd6543c67054 languageName: node linkType: hard -"@babel/helper-module-transforms@npm:^7.23.3, @babel/helper-module-transforms@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/helper-module-transforms@npm:7.24.5" +"@babel/helper-module-transforms@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-module-transforms@npm:7.24.7" dependencies: - "@babel/helper-environment-visitor": "npm:^7.22.20" - "@babel/helper-module-imports": "npm:^7.24.3" - "@babel/helper-simple-access": "npm:^7.24.5" - "@babel/helper-split-export-declaration": "npm:^7.24.5" - "@babel/helper-validator-identifier": "npm:^7.24.5" + "@babel/helper-environment-visitor": ^7.24.7 + "@babel/helper-module-imports": ^7.24.7 + "@babel/helper-simple-access": ^7.24.7 + "@babel/helper-split-export-declaration": ^7.24.7 + "@babel/helper-validator-identifier": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0 - checksum: 208c2e3877536c367ae3f39345bb5c5954ad481fdb2204d4d1906063e53ae564e5b7b846951b1aa96ee716ec24ec3b6db01b41d128884c27315b415f62db9fd2 + checksum: ddff3b41c2667876b4e4e73d961168f48a5ec9560c95c8c2d109e6221f9ca36c6f90c6317eb7a47f2a3c99419c356e529a86b79174cad0d4f7a61960866b88ca languageName: node linkType: hard -"@babel/helper-optimise-call-expression@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/helper-optimise-call-expression@npm:7.22.5" +"@babel/helper-optimise-call-expression@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-optimise-call-expression@npm:7.24.7" dependencies: - "@babel/types": "npm:^7.22.5" - checksum: c70ef6cc6b6ed32eeeec4482127e8be5451d0e5282d5495d5d569d39eb04d7f1d66ec99b327f45d1d5842a9ad8c22d48567e93fc502003a47de78d122e355f7c + "@babel/types": ^7.24.7 + checksum: 280654eaf90e92bf383d7eed49019573fb35a98c9e992668f701ad099957246721044be2068cf6840cb2299e0ad393705a1981c88c23a1048096a8d59e5f79a3 languageName: node linkType: hard -"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.24.0, @babel/helper-plugin-utils@npm:^7.24.5, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3": - version: 7.24.5 - resolution: "@babel/helper-plugin-utils@npm:7.24.5" - checksum: fa1450c92541b32fe18a6ae85e5c989296a284838fa0a282a2138732cae6f173f36d39dc724890c1740ae72d6d6fbca0b009916b168d4bc874bacc7e5c2fdce0 +"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.24.7, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3": + version: 7.24.7 + resolution: "@babel/helper-plugin-utils@npm:7.24.7" + checksum: 81f2a15751d892e4a8fce25390f973363a5b27596167861d2d6eab0f61856eb2ba389b031a9f19f669c0bd4dd601185828d3cebafd25431be7a1696f2ce3ef68 languageName: node linkType: hard -"@babel/helper-remap-async-to-generator@npm:^7.22.20": - version: 7.22.20 - resolution: "@babel/helper-remap-async-to-generator@npm:7.22.20" +"@babel/helper-remap-async-to-generator@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-remap-async-to-generator@npm:7.24.7" dependencies: - "@babel/helper-annotate-as-pure": "npm:^7.22.5" - "@babel/helper-environment-visitor": "npm:^7.22.20" - "@babel/helper-wrap-function": "npm:^7.22.20" + "@babel/helper-annotate-as-pure": ^7.24.7 + "@babel/helper-environment-visitor": ^7.24.7 + "@babel/helper-wrap-function": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0 - checksum: 2fe6300a6f1b58211dffa0aed1b45d4958506d096543663dba83bd9251fe8d670fa909143a65b45e72acb49e7e20fbdb73eae315d9ddaced467948c3329986e7 + checksum: bab7be178f875350f22a2cb9248f67fe3a8a8128db77a25607096ca7599fd972bc7049fb11ed9e95b45a3f1dd1fac3846a3279f9cbac16f337ecb0e6ca76e1fc languageName: node linkType: hard -"@babel/helper-replace-supers@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/helper-replace-supers@npm:7.24.1" +"@babel/helper-replace-supers@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-replace-supers@npm:7.24.7" dependencies: - "@babel/helper-environment-visitor": "npm:^7.22.20" - "@babel/helper-member-expression-to-functions": "npm:^7.23.0" - "@babel/helper-optimise-call-expression": "npm:^7.22.5" + "@babel/helper-environment-visitor": ^7.24.7 + "@babel/helper-member-expression-to-functions": ^7.24.7 + "@babel/helper-optimise-call-expression": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0 - checksum: c04182c34a3195c6396de2f2945f86cb60daa94ca7392db09bd8b0d4e7a15b02fbe1947c70f6062c87eadaea6d7135207129efa35cf458ea0987bab8c0f02d5a + checksum: 2bf0d113355c60d86a04e930812d36f5691f26c82d4ec1739e5ec0a4c982c9113dad3167f7c74f888a96328bd5e696372232406d8200e5979e6e0dc2af5e7c76 languageName: node linkType: hard -"@babel/helper-simple-access@npm:^7.22.5, @babel/helper-simple-access@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/helper-simple-access@npm:7.24.5" +"@babel/helper-simple-access@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-simple-access@npm:7.24.7" dependencies: - "@babel/types": "npm:^7.24.5" - checksum: 5616044603c98434342f09b056c869394acdeba7cd9ec29e6a9abb0dae1922f779d364aaba74dc2ae4facf85945c6156295adbe0511a8aaecaa8a1559d14757a + "@babel/traverse": ^7.24.7 + "@babel/types": ^7.24.7 + checksum: ddbf55f9dea1900213f2a1a8500fabfd21c5a20f44dcfa957e4b0d8638c730f88751c77f678644f754f1a1dc73f4eb8b766c300deb45a9daad000e4247957819 languageName: node linkType: hard -"@babel/helper-skip-transparent-expression-wrappers@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.22.5" +"@babel/helper-skip-transparent-expression-wrappers@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.24.7" dependencies: - "@babel/types": "npm:^7.22.5" - checksum: 1012ef2295eb12dc073f2b9edf3425661e9b8432a3387e62a8bc27c42963f1f216ab3124228015c748770b2257b4f1fda882ca8fa34c0bf485e929ae5bc45244 + "@babel/traverse": ^7.24.7 + "@babel/types": ^7.24.7 + checksum: 11b28fe534ce2b1a67c4d8e51a7b5711a2a0a0cae802f74614eee54cca58c744d9a62f6f60103c41759e81c537d270bfd665bf368a6bea214c6052f2094f8407 languageName: node linkType: hard -"@babel/helper-split-export-declaration@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/helper-split-export-declaration@npm:7.24.5" +"@babel/helper-split-export-declaration@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-split-export-declaration@npm:7.24.7" dependencies: - "@babel/types": "npm:^7.24.5" - checksum: f23ab6942568084a57789462ce55dc9631aef1d2142ffa2ee28fc411ab55ed3ca65adf109e48655aa349bf8df7ca6dd81fd91c8c229fee1dc77e283189dc83c2 + "@babel/types": ^7.24.7 + checksum: e3ddc91273e5da67c6953f4aa34154d005a00791dc7afa6f41894e768748540f6ebcac5d16e72541aea0c89bee4b89b4da6a3d65972a0ea8bfd2352eda5b7e22 languageName: node linkType: hard -"@babel/helper-string-parser@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/helper-string-parser@npm:7.24.1" - checksum: 8404e865b06013979a12406aab4c0e8d2e377199deec09dfe9f57b833b0c9ce7b6e8c1c553f2da8d0bcd240c5005bd7a269f4fef0d628aeb7d5fe035c436fb67 +"@babel/helper-string-parser@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-string-parser@npm:7.24.7" + checksum: 09568193044a578743dd44bf7397940c27ea693f9812d24acb700890636b376847a611cdd0393a928544e79d7ad5b8b916bd8e6e772bc8a10c48a647a96e7b1a languageName: node linkType: hard -"@babel/helper-validator-identifier@npm:^7.22.20, @babel/helper-validator-identifier@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/helper-validator-identifier@npm:7.24.5" - checksum: 75d6f9f475c08f3be87bae4953e9b8d8c72983e16ed2860870b328d048cb20dccb4fcbf85eacbdd817ea1efbb38552a6db9046e2e37bfe13bdec44ac8939024c +"@babel/helper-validator-identifier@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-validator-identifier@npm:7.24.7" + checksum: 6799ab117cefc0ecd35cd0b40ead320c621a298ecac88686a14cffceaac89d80cdb3c178f969861bf5fa5e4f766648f9161ea0752ecfe080d8e89e3147270257 languageName: node linkType: hard -"@babel/helper-validator-option@npm:^7.23.5": - version: 7.23.5 - resolution: "@babel/helper-validator-option@npm:7.23.5" - checksum: 537cde2330a8aede223552510e8a13e9c1c8798afee3757995a7d4acae564124fe2bf7e7c3d90d62d3657434a74340a274b3b3b1c6f17e9a2be1f48af29cb09e +"@babel/helper-validator-option@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-validator-option@npm:7.24.7" + checksum: 9689166bf3f777dd424c026841c8cd651e41b21242dbfd4569a53086179a3e744c8eddd56e9d10b54142270141c91581b53af0d7c00c82d552d2540e2a919f7e languageName: node linkType: hard -"@babel/helper-wrap-function@npm:^7.22.20": - version: 7.24.5 - resolution: "@babel/helper-wrap-function@npm:7.24.5" +"@babel/helper-wrap-function@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-wrap-function@npm:7.24.7" dependencies: - "@babel/helper-function-name": "npm:^7.23.0" - "@babel/template": "npm:^7.24.0" - "@babel/types": "npm:^7.24.5" - checksum: c895b95f0fd5e070ced93f315f85e3b63a7236dc9c302bbdce87c699e599d3fd6ad6e44cc820ec7df2d60fadbc922b3b59a0318b708fe69e3d01e5ed15687876 + "@babel/helper-function-name": ^7.24.7 + "@babel/template": ^7.24.7 + "@babel/traverse": ^7.24.7 + "@babel/types": ^7.24.7 + checksum: 085bf130ed08670336e3976f5841ae44e3e10001131632e22ef234659341978d2fd37e65785f59b6cb1745481347fc3bce84b33a685cacb0a297afbe1d2b03af languageName: node linkType: hard -"@babel/helpers@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/helpers@npm:7.24.5" +"@babel/helpers@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helpers@npm:7.24.7" dependencies: - "@babel/template": "npm:^7.24.0" - "@babel/traverse": "npm:^7.24.5" - "@babel/types": "npm:^7.24.5" - checksum: 941937456ca50ef44dbc5cdcb9a74c6ce18ce38971663acd80b622e7ecf1cc4fa034597de3ccccc37939d324139f159709f493fd8e7c385adbc162cb0888cfee + "@babel/template": ^7.24.7 + "@babel/types": ^7.24.7 + checksum: 934da58098a3670ca7f9f42425b9c44d0ca4f8fad815c0f51d89fc7b64c5e0b4c7d5fec038599de691229ada737edeaf72fad3eba8e16dd5842e8ea447f76b66 languageName: node linkType: hard -"@babel/highlight@npm:^7.24.2": - version: 7.24.5 - resolution: "@babel/highlight@npm:7.24.5" +"@babel/highlight@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/highlight@npm:7.24.7" dependencies: - "@babel/helper-validator-identifier": "npm:^7.24.5" - chalk: "npm:^2.4.2" - js-tokens: "npm:^4.0.0" - picocolors: "npm:^1.0.0" - checksum: eece0e63e9210e902f1ee88f15cabfa31d2693bd2e56806eb849478b859d274c24477081c649cee6a241c4aed7da6f3e05c7afa5c3cd70094006ed095292b0d0 + "@babel/helper-validator-identifier": ^7.24.7 + chalk: ^2.4.2 + js-tokens: ^4.0.0 + picocolors: ^1.0.0 + checksum: 5cd3a89f143671c4ac129960024ba678b669e6fc673ce078030f5175002d1d3d52bc10b22c5b916a6faf644b5028e9a4bd2bb264d053d9b05b6a98690f1d46f1 languageName: node linkType: hard -"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.24.0, @babel/parser@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/parser@npm:7.24.5" +"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/parser@npm:7.24.7" bin: parser: ./bin/babel-parser.js - checksum: a251ea41bf8b5f61048beb320d43017aff68af5a3506bd2ef392180f5fa32c1061513171d582bb3d46ea48e3659dece8b3ba52511a2566066e58abee300ce2a0 + checksum: fc9d2c4c8712f89672edc55c0dc5cf640dcec715b56480f111f85c2bc1d507e251596e4110d65796690a96ac37a4b60432af90b3e97bb47e69d4ef83872dbbd6 languageName: node linkType: hard -"@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:7.24.5" +"@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:7.24.7" dependencies: - "@babel/helper-environment-visitor": "npm:^7.22.20" - "@babel/helper-plugin-utils": "npm:^7.24.5" + "@babel/helper-environment-visitor": ^7.24.7 + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0 - checksum: d9921b3561762b8c7227cfbf1591436d2a12b99472993a7ce382123e88d98cb359952fbc64d66b1a492187d283d02f51e707f524b708c91b9ab82fb2659eae13 + checksum: 68d315642b53af143aa17a71eb976cf431b51339aee584e29514a462b81c998636dd54219c2713b5f13e1df89eaf130dfab59683f9116825608708c81696b96c languageName: node linkType: hard -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.24.1" +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0 - checksum: ec5fddc8db6de0e0082a883f21141d6f4f9f9f0bc190d662a732b5e9a506aae5d7d2337049a1bf055d7cb7add6f128036db6d4f47de5e9ac1be29e043c8b7ca8 + checksum: 7eb4e7ce5e3d6db4b0fdbdfaaa301c2e58f38a7ee39d5a4259a1fda61a612e83d3e4bc90fc36fb0345baf57e1e1a071e0caffeb80218623ad163f2fdc2e53a54 languageName: node linkType: hard -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.24.1" +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5" - "@babel/plugin-transform-optional-chaining": "npm:^7.24.1" + "@babel/helper-plugin-utils": ^7.24.7 + "@babel/helper-skip-transparent-expression-wrappers": ^7.24.7 + "@babel/plugin-transform-optional-chaining": ^7.24.7 peerDependencies: "@babel/core": ^7.13.0 - checksum: e18235463e716ac2443938aaec3c18b40c417a1746fba0fa4c26cf4d71326b76ef26c002081ab1b445abfae98e063d561519aa55672dddc1ef80b3940211ffbb + checksum: 07b92878ac58a98ea1fdf6a8b4ec3413ba4fa66924e28b694d63ec5b84463123fbf4d7153b56cf3cedfef4a3482c082fe3243c04f8fb2c041b32b0e29b4a9e21 languageName: node linkType: hard -"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:7.24.1" +"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:7.24.7" dependencies: - "@babel/helper-environment-visitor": "npm:^7.22.20" - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-environment-visitor": ^7.24.7 + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0 - checksum: b5e5889ce5ef51e813e3063cd548f55eb3c88e925c3c08913f334e15d62496861e538ae52a3974e0c56a3044ed8fd5033faea67a64814324af56edc9865b7359 + checksum: 8324d458db57060590942c7c2e9603880d07718ccb6450ec935105b8bd3c4393c4b8ada88e178c232258d91f33ffdcf2b1043d54e07a86989e50667ee100a32e languageName: node linkType: hard @@ -398,7 +405,7 @@ __metadata: version: 7.8.4 resolution: "@babel/plugin-syntax-async-generators@npm:7.8.4" dependencies: - "@babel/helper-plugin-utils": "npm:^7.8.0" + "@babel/helper-plugin-utils": ^7.8.0 peerDependencies: "@babel/core": ^7.0.0-0 checksum: 7ed1c1d9b9e5b64ef028ea5e755c0be2d4e5e4e3d6cf7df757b9a8c4cfa4193d268176d0f1f7fbecdda6fe722885c7fda681f480f3741d8a2d26854736f05367 @@ -409,7 +416,7 @@ __metadata: version: 7.8.3 resolution: "@babel/plugin-syntax-bigint@npm:7.8.3" dependencies: - "@babel/helper-plugin-utils": "npm:^7.8.0" + "@babel/helper-plugin-utils": ^7.8.0 peerDependencies: "@babel/core": ^7.0.0-0 checksum: 3a10849d83e47aec50f367a9e56a6b22d662ddce643334b087f9828f4c3dd73bdc5909aaeabe123fed78515767f9ca43498a0e621c438d1cd2802d7fae3c9648 @@ -420,7 +427,7 @@ __metadata: version: 7.12.13 resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13" dependencies: - "@babel/helper-plugin-utils": "npm:^7.12.13" + "@babel/helper-plugin-utils": ^7.12.13 peerDependencies: "@babel/core": ^7.0.0-0 checksum: 24f34b196d6342f28d4bad303612d7ff566ab0a013ce89e775d98d6f832969462e7235f3e7eaf17678a533d4be0ba45d3ae34ab4e5a9dcbda5d98d49e5efa2fc @@ -431,7 +438,7 @@ __metadata: version: 7.14.5 resolution: "@babel/plugin-syntax-class-static-block@npm:7.14.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" + "@babel/helper-plugin-utils": ^7.14.5 peerDependencies: "@babel/core": ^7.0.0-0 checksum: 3e80814b5b6d4fe17826093918680a351c2d34398a914ce6e55d8083d72a9bdde4fbaf6a2dcea0e23a03de26dc2917ae3efd603d27099e2b98380345703bf948 @@ -442,7 +449,7 @@ __metadata: version: 7.8.3 resolution: "@babel/plugin-syntax-dynamic-import@npm:7.8.3" dependencies: - "@babel/helper-plugin-utils": "npm:^7.8.0" + "@babel/helper-plugin-utils": ^7.8.0 peerDependencies: "@babel/core": ^7.0.0-0 checksum: ce307af83cf433d4ec42932329fad25fa73138ab39c7436882ea28742e1c0066626d224e0ad2988724c82644e41601cef607b36194f695cb78a1fcdc959637bd @@ -453,32 +460,32 @@ __metadata: version: 7.8.3 resolution: "@babel/plugin-syntax-export-namespace-from@npm:7.8.3" dependencies: - "@babel/helper-plugin-utils": "npm:^7.8.3" + "@babel/helper-plugin-utils": ^7.8.3 peerDependencies: "@babel/core": ^7.0.0-0 checksum: 85740478be5b0de185228e7814451d74ab8ce0a26fcca7613955262a26e99e8e15e9da58f60c754b84515d4c679b590dbd3f2148f0f58025f4ae706f1c5a5d4a languageName: node linkType: hard -"@babel/plugin-syntax-import-assertions@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-syntax-import-assertions@npm:7.24.1" +"@babel/plugin-syntax-import-assertions@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-syntax-import-assertions@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 2a463928a63b62052e9fb8f8b0018aa11a926e94f32c168260ae012afe864875c6176c6eb361e13f300542c31316dad791b08a5b8ed92436a3095c7a0e4fce65 + checksum: c4d67be4eb1d4637e361477dbe01f5b392b037d17c1f861cfa0faa120030e137aab90a9237931b8040fd31d1e5d159e11866fa1165f78beef7a3be876a391a17 languageName: node linkType: hard -"@babel/plugin-syntax-import-attributes@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-syntax-import-attributes@npm:7.24.1" +"@babel/plugin-syntax-import-attributes@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-syntax-import-attributes@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 87c8aa4a5ef931313f956871b27f2c051556f627b97ed21e9a5890ca4906b222d89062a956cde459816f5e0dec185ff128d7243d3fdc389504522acb88f0464e + checksum: 590dbb5d1a15264f74670b427b8d18527672c3d6c91d7bae7e65f80fd810edbc83d90e68065088644cbad3f2457ed265a54a9956fb789fcb9a5b521822b3a275 languageName: node linkType: hard @@ -486,7 +493,7 @@ __metadata: version: 7.10.4 resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4" dependencies: - "@babel/helper-plugin-utils": "npm:^7.10.4" + "@babel/helper-plugin-utils": ^7.10.4 peerDependencies: "@babel/core": ^7.0.0-0 checksum: 166ac1125d10b9c0c430e4156249a13858c0366d38844883d75d27389621ebe651115cb2ceb6dc011534d5055719fa1727b59f39e1ab3ca97820eef3dcab5b9b @@ -497,7 +504,7 @@ __metadata: version: 7.8.3 resolution: "@babel/plugin-syntax-json-strings@npm:7.8.3" dependencies: - "@babel/helper-plugin-utils": "npm:^7.8.0" + "@babel/helper-plugin-utils": ^7.8.0 peerDependencies: "@babel/core": ^7.0.0-0 checksum: bf5aea1f3188c9a507e16efe030efb996853ca3cadd6512c51db7233cc58f3ac89ff8c6bdfb01d30843b161cfe7d321e1bf28da82f7ab8d7e6bc5464666f354a @@ -505,13 +512,13 @@ __metadata: linkType: hard "@babel/plugin-syntax-jsx@npm:^7.7.2": - version: 7.24.1 - resolution: "@babel/plugin-syntax-jsx@npm:7.24.1" + version: 7.24.7 + resolution: "@babel/plugin-syntax-jsx@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 712f7e7918cb679f106769f57cfab0bc99b311032665c428b98f4c3e2e6d567601d45386a4f246df6a80d741e1f94192b3f008800d66c4f1daae3ad825c243f0 + checksum: 7a5ca629d8ca1e1ee78705a78e58c12920d07ed8006d7e7232b31296a384ff5e41d7b649bde5561196041037bbb9f9715be1d1c20975df87ca204f34ad15b965 languageName: node linkType: hard @@ -519,7 +526,7 @@ __metadata: version: 7.10.4 resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4" dependencies: - "@babel/helper-plugin-utils": "npm:^7.10.4" + "@babel/helper-plugin-utils": ^7.10.4 peerDependencies: "@babel/core": ^7.0.0-0 checksum: aff33577037e34e515911255cdbb1fd39efee33658aa00b8a5fd3a4b903585112d037cce1cc9e4632f0487dc554486106b79ccd5ea63a2e00df4363f6d4ff886 @@ -530,7 +537,7 @@ __metadata: version: 7.8.3 resolution: "@babel/plugin-syntax-nullish-coalescing-operator@npm:7.8.3" dependencies: - "@babel/helper-plugin-utils": "npm:^7.8.0" + "@babel/helper-plugin-utils": ^7.8.0 peerDependencies: "@babel/core": ^7.0.0-0 checksum: 87aca4918916020d1fedba54c0e232de408df2644a425d153be368313fdde40d96088feed6c4e5ab72aac89be5d07fef2ddf329a15109c5eb65df006bf2580d1 @@ -541,7 +548,7 @@ __metadata: version: 7.10.4 resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4" dependencies: - "@babel/helper-plugin-utils": "npm:^7.10.4" + "@babel/helper-plugin-utils": ^7.10.4 peerDependencies: "@babel/core": ^7.0.0-0 checksum: 01ec5547bd0497f76cc903ff4d6b02abc8c05f301c88d2622b6d834e33a5651aa7c7a3d80d8d57656a4588f7276eba357f6b7e006482f5b564b7a6488de493a1 @@ -552,7 +559,7 @@ __metadata: version: 7.8.3 resolution: "@babel/plugin-syntax-object-rest-spread@npm:7.8.3" dependencies: - "@babel/helper-plugin-utils": "npm:^7.8.0" + "@babel/helper-plugin-utils": ^7.8.0 peerDependencies: "@babel/core": ^7.0.0-0 checksum: fddcf581a57f77e80eb6b981b10658421bc321ba5f0a5b754118c6a92a5448f12a0c336f77b8abf734841e102e5126d69110a306eadb03ca3e1547cab31f5cbf @@ -563,7 +570,7 @@ __metadata: version: 7.8.3 resolution: "@babel/plugin-syntax-optional-catch-binding@npm:7.8.3" dependencies: - "@babel/helper-plugin-utils": "npm:^7.8.0" + "@babel/helper-plugin-utils": ^7.8.0 peerDependencies: "@babel/core": ^7.0.0-0 checksum: 910d90e72bc90ea1ce698e89c1027fed8845212d5ab588e35ef91f13b93143845f94e2539d831dc8d8ededc14ec02f04f7bd6a8179edd43a326c784e7ed7f0b9 @@ -574,7 +581,7 @@ __metadata: version: 7.8.3 resolution: "@babel/plugin-syntax-optional-chaining@npm:7.8.3" dependencies: - "@babel/helper-plugin-utils": "npm:^7.8.0" + "@babel/helper-plugin-utils": ^7.8.0 peerDependencies: "@babel/core": ^7.0.0-0 checksum: eef94d53a1453361553c1f98b68d17782861a04a392840341bc91780838dd4e695209c783631cf0de14c635758beafb6a3a65399846ffa4386bff90639347f30 @@ -585,7 +592,7 @@ __metadata: version: 7.14.5 resolution: "@babel/plugin-syntax-private-property-in-object@npm:7.14.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" + "@babel/helper-plugin-utils": ^7.14.5 peerDependencies: "@babel/core": ^7.0.0-0 checksum: b317174783e6e96029b743ccff2a67d63d38756876e7e5d0ba53a322e38d9ca452c13354a57de1ad476b4c066dbae699e0ca157441da611117a47af88985ecda @@ -596,7 +603,7 @@ __metadata: version: 7.14.5 resolution: "@babel/plugin-syntax-top-level-await@npm:7.14.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" + "@babel/helper-plugin-utils": ^7.14.5 peerDependencies: "@babel/core": ^7.0.0-0 checksum: bbd1a56b095be7820029b209677b194db9b1d26691fe999856462e66b25b281f031f3dfd91b1619e9dcf95bebe336211833b854d0fb8780d618e35667c2d0d7e @@ -604,13 +611,13 @@ __metadata: linkType: hard "@babel/plugin-syntax-typescript@npm:^7.7.2": - version: 7.24.1 - resolution: "@babel/plugin-syntax-typescript@npm:7.24.1" + version: 7.24.7 + resolution: "@babel/plugin-syntax-typescript@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: bf4bd70788d5456b5f75572e47a2e31435c7c4e43609bd4dffd2cc0c7a6cf90aabcf6cd389e351854de9a64412a07d30effef5373251fe8f6a4c9db0c0163bda + checksum: 56fe84f3044ecbf038977281648db6b63bd1301f2fff6595820dc10ee276c1d1586919d48d52a8d497ecae32c958be38f42c1c8d174dc58aad856c516dc5b35a languageName: node linkType: hard @@ -618,681 +625,681 @@ __metadata: version: 7.18.6 resolution: "@babel/plugin-syntax-unicode-sets-regex@npm:7.18.6" dependencies: - "@babel/helper-create-regexp-features-plugin": "npm:^7.18.6" - "@babel/helper-plugin-utils": "npm:^7.18.6" + "@babel/helper-create-regexp-features-plugin": ^7.18.6 + "@babel/helper-plugin-utils": ^7.18.6 peerDependencies: "@babel/core": ^7.0.0 checksum: a651d700fe63ff0ddfd7186f4ebc24447ca734f114433139e3c027bc94a900d013cf1ef2e2db8430425ba542e39ae160c3b05f06b59fd4656273a3df97679e9c languageName: node linkType: hard -"@babel/plugin-transform-arrow-functions@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-arrow-functions@npm:7.24.1" +"@babel/plugin-transform-arrow-functions@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-arrow-functions@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 58f9aa9b0de8382f8cfa3f1f1d40b69d98cd2f52340e2391733d0af745fdddda650ba392e509bc056157c880a2f52834a38ab2c5aa5569af8c61bb6ecbf45f34 + checksum: 707c209b5331c7dc79bd326128c6a6640dbd62a78da1653c844db20c4f36bf7b68454f1bc4d2d051b3fde9136fa291f276ec03a071bb00ee653069ff82f91010 languageName: node linkType: hard -"@babel/plugin-transform-async-generator-functions@npm:^7.24.3": - version: 7.24.3 - resolution: "@babel/plugin-transform-async-generator-functions@npm:7.24.3" +"@babel/plugin-transform-async-generator-functions@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-async-generator-functions@npm:7.24.7" dependencies: - "@babel/helper-environment-visitor": "npm:^7.22.20" - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/helper-remap-async-to-generator": "npm:^7.22.20" - "@babel/plugin-syntax-async-generators": "npm:^7.8.4" + "@babel/helper-environment-visitor": ^7.24.7 + "@babel/helper-plugin-utils": ^7.24.7 + "@babel/helper-remap-async-to-generator": ^7.24.7 + "@babel/plugin-syntax-async-generators": ^7.8.4 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 309af02610be65d937664435adb432a32d9b6eb42bb3d3232c377d27fbc57014774d931665a5bfdaff3d1841b72659e0ad7adcef84b709f251cb0b8444f19214 + checksum: 112e3b18f9c496ebc01209fc27f0b41a3669c479c7bc44f7249383172b432ebaae1e523caa7c6ecbd2d0d7adcb7e5769fe2798f8cb01c08cd57232d1bb6d8ad4 languageName: node linkType: hard -"@babel/plugin-transform-async-to-generator@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-async-to-generator@npm:7.24.1" +"@babel/plugin-transform-async-to-generator@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-async-to-generator@npm:7.24.7" dependencies: - "@babel/helper-module-imports": "npm:^7.24.1" - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/helper-remap-async-to-generator": "npm:^7.22.20" + "@babel/helper-module-imports": ^7.24.7 + "@babel/helper-plugin-utils": ^7.24.7 + "@babel/helper-remap-async-to-generator": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 429004a6596aa5c9e707b604156f49a146f8d029e31a3152b1649c0b56425264fda5fd38e5db1ddaeb33c3fe45c97dc8078d7abfafe3542a979b49f229801135 + checksum: 13704fb3b83effc868db2b71bfb2c77b895c56cb891954fc362e95e200afd523313b0e7cf04ce02f45b05e76017c5b5fa8070c92613727a35131bb542c253a36 languageName: node linkType: hard -"@babel/plugin-transform-block-scoped-functions@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.24.1" +"@babel/plugin-transform-block-scoped-functions@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: d8e18bd57b156da1cd4d3c1780ab9ea03afed56c6824ca8e6e74f67959d7989a0e953ec370fe9b417759314f2eef30c8c437395ce63ada2e26c2f469e4704f82 + checksum: 249cdcbff4e778b177245f9652b014ea4f3cd245d83297f10a7bf6d97790074089aa62bcde8c08eb299c5e68f2faed346b587d3ebac44d625ba9a83a4ee27028 languageName: node linkType: hard -"@babel/plugin-transform-block-scoping@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/plugin-transform-block-scoping@npm:7.24.5" +"@babel/plugin-transform-block-scoping@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-block-scoping@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.5" + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 898c91efc0f8ac8e2a8d3ece36edf0001963bcf5bbeefe9bf798ac36318a33f366e88a24a90bf7c39a7aeb1593846b720ed9a9ba56709d27279f7ba61c5e43c4 + checksum: 039206155533600f079f3a455f85888dd7d4970ff7ffa85ef44760f4f5acb9f19c9d848cc1fec1b9bdbc0dfec9e8a080b90d0ab66ad2bdc7138b5ca4ba96e61c languageName: node linkType: hard -"@babel/plugin-transform-class-properties@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-class-properties@npm:7.24.1" +"@babel/plugin-transform-class-properties@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-class-properties@npm:7.24.7" dependencies: - "@babel/helper-create-class-features-plugin": "npm:^7.24.1" - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-create-class-features-plugin": ^7.24.7 + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 95779e9eef0c0638b9631c297d48aee53ffdbb2b1b5221bf40d7eccd566a8e34f859ff3571f8f20b9159b67f1bff7d7dc81da191c15d69fbae5a645197eae7e0 + checksum: 1348d7ce74da38ba52ea85b3b4289a6a86913748569ef92ef0cff30702a9eb849e5eaf59f1c6f3517059aa68115fb3067e389735dccacca39add4e2b0c67e291 languageName: node linkType: hard -"@babel/plugin-transform-class-static-block@npm:^7.24.4": - version: 7.24.4 - resolution: "@babel/plugin-transform-class-static-block@npm:7.24.4" +"@babel/plugin-transform-class-static-block@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-class-static-block@npm:7.24.7" dependencies: - "@babel/helper-create-class-features-plugin": "npm:^7.24.4" - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/plugin-syntax-class-static-block": "npm:^7.14.5" + "@babel/helper-create-class-features-plugin": ^7.24.7 + "@babel/helper-plugin-utils": ^7.24.7 + "@babel/plugin-syntax-class-static-block": ^7.14.5 peerDependencies: "@babel/core": ^7.12.0 - checksum: 3b1db3308b57ba21d47772a9f183804234c23fd64c9ca40915d2d65c5dc7a48b49a6de16b8b90b7a354eacbb51232a862f0fca3dbd23e27d34641f511decddab + checksum: 324049263504f18416f1c3e24033baebfafd05480fdd885c8ebe6f2b415b0fc8e0b98d719360f9e30743cc78ac387fabc0b3c6606d2b54135756ffb92963b382 languageName: node linkType: hard -"@babel/plugin-transform-classes@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/plugin-transform-classes@npm:7.24.5" +"@babel/plugin-transform-classes@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-classes@npm:7.24.7" dependencies: - "@babel/helper-annotate-as-pure": "npm:^7.22.5" - "@babel/helper-compilation-targets": "npm:^7.23.6" - "@babel/helper-environment-visitor": "npm:^7.22.20" - "@babel/helper-function-name": "npm:^7.23.0" - "@babel/helper-plugin-utils": "npm:^7.24.5" - "@babel/helper-replace-supers": "npm:^7.24.1" - "@babel/helper-split-export-declaration": "npm:^7.24.5" - globals: "npm:^11.1.0" + "@babel/helper-annotate-as-pure": ^7.24.7 + "@babel/helper-compilation-targets": ^7.24.7 + "@babel/helper-environment-visitor": ^7.24.7 + "@babel/helper-function-name": ^7.24.7 + "@babel/helper-plugin-utils": ^7.24.7 + "@babel/helper-replace-supers": ^7.24.7 + "@babel/helper-split-export-declaration": ^7.24.7 + globals: ^11.1.0 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 797bf2bda770148d3ee43e305e1aea26fa16ca78eb81eaaeb95b441428f52e0d12dd98e93f00bda3b65bbfde3001006995725ce911587efdef0465c41bd0a3f3 + checksum: f01cb31143730d425681e9816020cbb519c7ddb3b6ca308dfaf2821eda5699a746637fc6bf19811e2fb42cfdf8b00a21b31c754da83771a5c280077925677354 languageName: node linkType: hard -"@babel/plugin-transform-computed-properties@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-computed-properties@npm:7.24.1" +"@babel/plugin-transform-computed-properties@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-computed-properties@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/template": "npm:^7.24.0" + "@babel/helper-plugin-utils": ^7.24.7 + "@babel/template": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: f2832bcf100a70f348facbb395873318ef5b9ee4b0fb4104a420d9daaeb6003cc2ecc12fd8083dd2e4a7c2da873272ad73ff94de4497125a0cf473294ef9664e + checksum: 0cf8c1b1e4ea57dec8d4612460d84fd4cdbf71a7499bb61ee34632cf89018a59eee818ffca88a8d99ee7057c20a4257044d7d463fda6daef9bf1db9fa81563cb languageName: node linkType: hard -"@babel/plugin-transform-destructuring@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/plugin-transform-destructuring@npm:7.24.5" +"@babel/plugin-transform-destructuring@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-destructuring@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.5" + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: c5def67de09315cd38895c021ee7d02fd53fed596924512c33196ceed143b88f1ea76e4ac777a55bbb9db49be8b63aafb22b12e7d5c7f3051f14caa07e8d4023 + checksum: b9637b27faf9d24a8119bc5a1f98a2f47c69e6441bd8fc71163500be316253a72173308a93122bcf27d8d314ace43344c976f7291cf6376767f408350c8149d4 languageName: node linkType: hard -"@babel/plugin-transform-dotall-regex@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-dotall-regex@npm:7.24.1" +"@babel/plugin-transform-dotall-regex@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-dotall-regex@npm:7.24.7" dependencies: - "@babel/helper-create-regexp-features-plugin": "npm:^7.22.15" - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-create-regexp-features-plugin": ^7.24.7 + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 7f623d25b6f213b94ebc1754e9e31c1077c8e288626d8b7bfa76a97b067ce80ddcd0ede402a546706c65002c0ccf45cd5ec621511c2668eed31ebcabe8391d35 + checksum: 67b10fc6abb1f61f0e765288eb4c6d63d1d0f9fc0660e69f6f2170c56fa16bc74e49857afc644beda112b41771cd90cf52df0940d11e97e52617c77c7dcff171 languageName: node linkType: hard -"@babel/plugin-transform-duplicate-keys@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-duplicate-keys@npm:7.24.1" +"@babel/plugin-transform-duplicate-keys@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-duplicate-keys@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: a3b07c07cee441e185858a9bb9739bb72643173c18bf5f9f949dd2d4784ca124e56b01d0a270790fb1ff0cf75d436075db0a2b643fb4285ff9a21df9e8dc6284 + checksum: d1da2ff85ecb56a63f4ccfd9dc9ae69400d85f0dadf44ecddd9e71c6e5c7a9178e74e3a9637555f415a2bb14551e563f09f98534ab54f53d25e8439fdde6ba2d languageName: node linkType: hard -"@babel/plugin-transform-dynamic-import@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-dynamic-import@npm:7.24.1" +"@babel/plugin-transform-dynamic-import@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-dynamic-import@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/plugin-syntax-dynamic-import": "npm:^7.8.3" + "@babel/helper-plugin-utils": ^7.24.7 + "@babel/plugin-syntax-dynamic-import": ^7.8.3 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 59fc561ee40b1a69f969c12c6c5fac206226d6642213985a569dd0f99f8e41c0f4eaedebd36936c255444a8335079842274c42a975a433beadb436d4c5abb79b + checksum: 776509ff62ab40c12be814a342fc56a5cc09b91fb63032b2633414b635875fd7da03734657be0f6db2891fe6e3033b75d5ddb6f2baabd1a02e4443754a785002 languageName: node linkType: hard -"@babel/plugin-transform-exponentiation-operator@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.24.1" +"@babel/plugin-transform-exponentiation-operator@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.24.7" dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor": "npm:^7.22.15" - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-builder-binary-assignment-operator-visitor": ^7.24.7 + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: f90841fe1a1e9f680b4209121d3e2992f923e85efcd322b26e5901c180ef44ff727fb89790803a23fac49af34c1ce2e480018027c22b4573b615512ac5b6fc50 + checksum: 23c84a23eb56589fdd35a3540f9a1190615be069110a2270865223c03aee3ba4e0fc68fe14850800cf36f0712b26e4964d3026235261f58f0405a29fe8dac9b1 languageName: node linkType: hard -"@babel/plugin-transform-export-namespace-from@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-export-namespace-from@npm:7.24.1" +"@babel/plugin-transform-export-namespace-from@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-export-namespace-from@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/plugin-syntax-export-namespace-from": "npm:^7.8.3" + "@babel/helper-plugin-utils": ^7.24.7 + "@babel/plugin-syntax-export-namespace-from": ^7.8.3 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: bc710ac231919df9555331885748385c11c5e695d7271824fe56fba51dd637d48d3e5cd52e1c69f2b1a384fbbb41552572bc1ca3a2285ee29571f002e9bb2421 + checksum: 3bd3a10038f10ae0dea1ee42137f3edcf7036b5e9e570a0d1cbd0865f03658990c6c2d84fa2475f87a754e7dc5b46766c16f7ce5c9b32c3040150b6a21233a80 languageName: node linkType: hard -"@babel/plugin-transform-for-of@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-for-of@npm:7.24.1" +"@babel/plugin-transform-for-of@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-for-of@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5" + "@babel/helper-plugin-utils": ^7.24.7 + "@babel/helper-skip-transparent-expression-wrappers": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 990adde96ea1766ed6008c006c7040127bef59066533bb2977b246ea4a596fe450a528d1881a0db5f894deaf1b81654dfb494b19ad405b369be942738aa9c364 + checksum: a53b42dc93ab4b7d1ebd3c695b52be22b3d592f6a3dbdb3dc2fea2c8e0a7e1508fe919864c455cde552aec44ce7518625fccbb70c7063373ca228d884f4f49ea languageName: node linkType: hard -"@babel/plugin-transform-function-name@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-function-name@npm:7.24.1" +"@babel/plugin-transform-function-name@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-function-name@npm:7.24.7" dependencies: - "@babel/helper-compilation-targets": "npm:^7.23.6" - "@babel/helper-function-name": "npm:^7.23.0" - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-compilation-targets": ^7.24.7 + "@babel/helper-function-name": ^7.24.7 + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 31eb3c75297dda7265f78eba627c446f2324e30ec0124a645ccc3e9f341254aaa40d6787bd62b2280d77c0a5c9fbfce1da2c200ef7c7f8e0a1b16a8eb3644c6f + checksum: 8eb1a67894a124910b5a67630bed4307757504381f39f0fb5cf82afc7ae8647dbc03b256d13865b73a749b9071b68e9fb8a28cef2369917b4299ebb93fd66146 languageName: node linkType: hard -"@babel/plugin-transform-json-strings@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-json-strings@npm:7.24.1" +"@babel/plugin-transform-json-strings@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-json-strings@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/plugin-syntax-json-strings": "npm:^7.8.3" + "@babel/helper-plugin-utils": ^7.24.7 + "@babel/plugin-syntax-json-strings": ^7.8.3 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: f42302d42fc81ac00d14e9e5d80405eb80477d7f9039d7208e712d6bcd486a4e3b32fdfa07b5f027d6c773723d8168193ee880f93b0e430c828e45f104fb82a4 + checksum: 88874d0b7a1ddea66c097fc0abb68801ffae194468aa44b828dde9a0e20ac5d8647943793de86092eabaa2911c96f67a6b373793d4bb9c932ef81b2711c06c2e languageName: node linkType: hard -"@babel/plugin-transform-literals@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-literals@npm:7.24.1" +"@babel/plugin-transform-literals@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-literals@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 2df94e9478571852483aca7588419e574d76bde97583e78551c286f498e01321e7dbb1d0ef67bee16e8f950688f79688809cfde370c5c4b84c14d841a3ef217a + checksum: 3c075cc093a3dd9e294b8b7d6656e65f889e7ca2179ca27978dcd65b4dc4885ebbfb327408d7d8f483c55547deed00ba840956196f3ac8a3c3d2308a330a8c23 languageName: node linkType: hard -"@babel/plugin-transform-logical-assignment-operators@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-logical-assignment-operators@npm:7.24.1" +"@babel/plugin-transform-logical-assignment-operators@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-logical-assignment-operators@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/plugin-syntax-logical-assignment-operators": "npm:^7.10.4" + "@babel/helper-plugin-utils": ^7.24.7 + "@babel/plugin-syntax-logical-assignment-operators": ^7.10.4 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 895f2290adf457cbf327428bdb4fb90882a38a22f729bcf0629e8ad66b9b616d2721fbef488ac00411b647489d1dda1d20171bb3772d0796bb7ef5ecf057808a + checksum: 3367ce0be243704dc6fce23e86a592c4380f01998ee5dd9f94c54b1ef7b971ac6f8a002901eb51599ac6cbdc0d067af8d1a720224fca1c40fde8bb8aab804aac languageName: node linkType: hard -"@babel/plugin-transform-member-expression-literals@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-member-expression-literals@npm:7.24.1" +"@babel/plugin-transform-member-expression-literals@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-member-expression-literals@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 4ea641cc14a615f9084e45ad2319f95e2fee01c77ec9789685e7e11a6c286238a426a98f9c1ed91568a047d8ac834393e06e8c82d1ff01764b7aa61bee8e9023 + checksum: 2720c57aa3bf70576146ba7d6ea03227f4611852122d76d237924f7b008dafc952e6ae61a19e5024f26c665f44384bbd378466f01b6bd1305b3564a3b7fb1a5d languageName: node linkType: hard -"@babel/plugin-transform-modules-amd@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-modules-amd@npm:7.24.1" +"@babel/plugin-transform-modules-amd@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-modules-amd@npm:7.24.7" dependencies: - "@babel/helper-module-transforms": "npm:^7.23.3" - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-module-transforms": ^7.24.7 + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 3d777c262f257e93f0405b13e178f9c4a0f31855b409f0191a76bb562a28c541326a027bfe6467fcb74752f3488c0333b5ff2de64feec1b3c4c6ace1747afa03 + checksum: f1dd0fb2f46c0f8f21076b8c7ccd5b33a85ce6dcb31518ea4c648d9a5bb2474cd4bd87c9b1b752e68591e24b022e334ba0d07631fef2b6b4d8a4b85cf3d581f5 languageName: node linkType: hard -"@babel/plugin-transform-modules-commonjs@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-modules-commonjs@npm:7.24.1" +"@babel/plugin-transform-modules-commonjs@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-modules-commonjs@npm:7.24.7" dependencies: - "@babel/helper-module-transforms": "npm:^7.23.3" - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/helper-simple-access": "npm:^7.22.5" + "@babel/helper-module-transforms": ^7.24.7 + "@babel/helper-plugin-utils": ^7.24.7 + "@babel/helper-simple-access": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 11402b34c49f76aa921b43c2d76f3f129a32544a1dc4f0d1e48b310f9036ab75269a6d8684ed0198b7a0b07bd7898b12f0cacceb26fbb167999fd2a819aa0802 + checksum: bfda2a0297197ed342e2a02e5f9847a489a3ae40a4a7d7f00f4aeb8544a85e9006e0c5271c8f61f39bc97975ef2717b5594cf9486694377a53433162909d64c1 languageName: node linkType: hard -"@babel/plugin-transform-modules-systemjs@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-modules-systemjs@npm:7.24.1" +"@babel/plugin-transform-modules-systemjs@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-modules-systemjs@npm:7.24.7" dependencies: - "@babel/helper-hoist-variables": "npm:^7.22.5" - "@babel/helper-module-transforms": "npm:^7.23.3" - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/helper-validator-identifier": "npm:^7.22.20" + "@babel/helper-hoist-variables": ^7.24.7 + "@babel/helper-module-transforms": ^7.24.7 + "@babel/helper-plugin-utils": ^7.24.7 + "@babel/helper-validator-identifier": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 903766f6808f04278e887e4adec9b1efa741726279652dad255eaad0f5701df8f8ff0af25eb8541a00eb3c9eae2dccf337b085cfa011426ca33ed1f95d70bf75 + checksum: 8af7a9db2929991d82cfdf41fb175dee344274d39b39122f8c35f24b5d682f98368e3d8f5130401298bd21412df21d416a7d8b33b59c334fae3d3c762118b1d8 languageName: node linkType: hard -"@babel/plugin-transform-modules-umd@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-modules-umd@npm:7.24.1" +"@babel/plugin-transform-modules-umd@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-modules-umd@npm:7.24.7" dependencies: - "@babel/helper-module-transforms": "npm:^7.23.3" - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-module-transforms": ^7.24.7 + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 4922f5056d34de6fd59a1ab1c85bc3472afa706c776aceeb886289c9ac9117e6eb8e22d06c537eb5bc0ede6c30f6bd85210bdcc150dc0ae2d2373f8252df9364 + checksum: 9ff1c464892efe042952ba778468bda6131b196a2729615bdcc3f24cdc94014f016a4616ee5643c5845bade6ba698f386833e61056d7201314b13a7fd69fac88 languageName: node linkType: hard -"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.22.5" +"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.24.7" dependencies: - "@babel/helper-create-regexp-features-plugin": "npm:^7.22.5" - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-create-regexp-features-plugin": ^7.24.7 + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0 - checksum: 3ee564ddee620c035b928fdc942c5d17e9c4b98329b76f9cefac65c111135d925eb94ed324064cd7556d4f5123beec79abea1d4b97d1c8a2a5c748887a2eb623 + checksum: f1c6c7b5d60a86b6d7e4dd098798e1d393d55e993a0b57a73b53640c7a94985b601a96bdacee063f809a9a700bcea3a2ff18e98fa561554484ac56b761d774bd languageName: node linkType: hard -"@babel/plugin-transform-new-target@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-new-target@npm:7.24.1" +"@babel/plugin-transform-new-target@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-new-target@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: f56159ba56e8824840b8073f65073434e4bc4ef20e366bc03aa6cae9a4389365574fa72390e48aed76049edbc6eba1181eb810e58fae22c25946c62f9da13db4 + checksum: 3cb94cd1076b270f768f91fdcf9dd2f6d487f8dbfff3df7ca8d07b915900b86d02769a35ba1407d16fe49499012c8f055e1741299e2c880798b953d942a8fa1b languageName: node linkType: hard -"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:7.24.1" +"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.3" + "@babel/helper-plugin-utils": ^7.24.7 + "@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 74025e191ceb7cefc619c15d33753aab81300a03d81b96ae249d9b599bc65878f962d608f452462d3aad5d6e334b7ab2b09a6bdcfe8d101fe77ac7aacca4261e + checksum: 4a9221356401d87762afbc37a9e8e764afc2daf09c421117537820f8cfbed6876888372ad3a7bcfae2d45c95f026651f050ab4020b777be31d3ffb00908dbdd3 languageName: node linkType: hard -"@babel/plugin-transform-numeric-separator@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-numeric-separator@npm:7.24.1" +"@babel/plugin-transform-numeric-separator@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-numeric-separator@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/plugin-syntax-numeric-separator": "npm:^7.10.4" + "@babel/helper-plugin-utils": ^7.24.7 + "@babel/plugin-syntax-numeric-separator": ^7.10.4 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 3247bd7d409574fc06c59e0eb573ae7470d6d61ecf780df40b550102bb4406747d8f39dcbec57eb59406df6c565a86edd3b429e396ad02e4ce201ad92050832e + checksum: 561b5f1d08b2c3f92ce849f092751558b5e6cfeb7eb55c79e7375c34dd9c3066dce5e630bb439affef6adcf202b6cbcaaa23870070276fa5bb429c8f5b8c7514 languageName: node linkType: hard -"@babel/plugin-transform-object-rest-spread@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/plugin-transform-object-rest-spread@npm:7.24.5" +"@babel/plugin-transform-object-rest-spread@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-object-rest-spread@npm:7.24.7" dependencies: - "@babel/helper-compilation-targets": "npm:^7.23.6" - "@babel/helper-plugin-utils": "npm:^7.24.5" - "@babel/plugin-syntax-object-rest-spread": "npm:^7.8.3" - "@babel/plugin-transform-parameters": "npm:^7.24.5" + "@babel/helper-compilation-targets": ^7.24.7 + "@babel/helper-plugin-utils": ^7.24.7 + "@babel/plugin-syntax-object-rest-spread": ^7.8.3 + "@babel/plugin-transform-parameters": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 427705fe1358ca4862e6cfbfc174dc0fbfdd640b786cfe759dd4881cfb2fd51723e8432ecd89f07a60444e555a9c19e0e7bf4c657b91844994b39a53a602eb16 + checksum: 169d257b9800c13e1feb4c37fb05dae84f702e58b342bb76e19e82e6692b7b5337c9923ee89e3916a97c0dd04a3375bdeca14f5e126f110bbacbeb46d1886ca2 languageName: node linkType: hard -"@babel/plugin-transform-object-super@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-object-super@npm:7.24.1" +"@babel/plugin-transform-object-super@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-object-super@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/helper-replace-supers": "npm:^7.24.1" + "@babel/helper-plugin-utils": ^7.24.7 + "@babel/helper-replace-supers": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: d34d437456a54e2a5dcb26e9cf09ed4c55528f2a327c5edca92c93e9483c37176e228d00d6e0cf767f3d6fdbef45ae3a5d034a7c59337a009e20ae541c8220fa + checksum: f71e607a830ee50a22fa1a2686524d3339440cf9dea63032f6efbd865cfe4e35000e1e3f3492459e5c986f7c0c07dc36938bf3ce61fc9ba5f8ab732d0b64ab37 languageName: node linkType: hard -"@babel/plugin-transform-optional-catch-binding@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-optional-catch-binding@npm:7.24.1" +"@babel/plugin-transform-optional-catch-binding@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-optional-catch-binding@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/plugin-syntax-optional-catch-binding": "npm:^7.8.3" + "@babel/helper-plugin-utils": ^7.24.7 + "@babel/plugin-syntax-optional-catch-binding": ^7.8.3 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: ff7c02449d32a6de41e003abb38537b4a1ad90b1eaa4c0b578cb1b55548201a677588a8c47f3e161c72738400ae811a6673ea7b8a734344755016ca0ac445dac + checksum: 7229f3a5a4facaab40f4fdfc7faabc157dc38a67d66bed7936599f4bc509e0bff636f847ac2aa45294881fce9cf8a0a460b85d2a465b7b977de9739fce9b18f6 languageName: node linkType: hard -"@babel/plugin-transform-optional-chaining@npm:^7.24.1, @babel/plugin-transform-optional-chaining@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/plugin-transform-optional-chaining@npm:7.24.5" +"@babel/plugin-transform-optional-chaining@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-optional-chaining@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.5" - "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5" - "@babel/plugin-syntax-optional-chaining": "npm:^7.8.3" + "@babel/helper-plugin-utils": ^7.24.7 + "@babel/helper-skip-transparent-expression-wrappers": ^7.24.7 + "@babel/plugin-syntax-optional-chaining": ^7.8.3 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 233934463ef1f9a02a9fda96c722e9c162477fd94816a58413f0d4165cc536c7af0482b46fe066e754748a20bbabec255b4bbde194a7fd20b32280e526e1bfec + checksum: 877e7ce9097d475132c7f4d1244de50bb2fd37993dc4580c735f18f8cbc49282f6e77752821bcad5ca9d3528412d2c8a7ee0aa7ca71bb680ff82648e7a5fed25 languageName: node linkType: hard -"@babel/plugin-transform-parameters@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/plugin-transform-parameters@npm:7.24.5" +"@babel/plugin-transform-parameters@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-parameters@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.5" + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: b052e1cf43b1ea571fc0867baa01041ce32f46576b711c6331f03263ae479a582f81a6039287535cd90ee46d2977e2f3c66f5bdbf454a9f8cdc7c5c6c67b50be + checksum: ab534b03ac2eff94bc79342b8f39a4584666f5305a6c63c1964afda0b1b004e6b861e49d1683548030defe248e3590d3ff6338ee0552cb90c064f7e1479968c3 languageName: node linkType: hard -"@babel/plugin-transform-private-methods@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-private-methods@npm:7.24.1" +"@babel/plugin-transform-private-methods@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-private-methods@npm:7.24.7" dependencies: - "@babel/helper-create-class-features-plugin": "npm:^7.24.1" - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-create-class-features-plugin": ^7.24.7 + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 7208c30bb3f3fbc73fb3a88bdcb78cd5cddaf6d523eb9d67c0c04e78f6fc6319ece89f4a5abc41777ceab16df55b3a13a4120e0efc9275ca6d2d89beaba80aa0 + checksum: c151548e34909be2adcceb224d8fdd70bafa393bc1559a600906f3f647317575bf40db670470934a360e90ee8084ef36dffa34ec25d387d414afd841e74cf3fe languageName: node linkType: hard -"@babel/plugin-transform-private-property-in-object@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/plugin-transform-private-property-in-object@npm:7.24.5" +"@babel/plugin-transform-private-property-in-object@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-private-property-in-object@npm:7.24.7" dependencies: - "@babel/helper-annotate-as-pure": "npm:^7.22.5" - "@babel/helper-create-class-features-plugin": "npm:^7.24.5" - "@babel/helper-plugin-utils": "npm:^7.24.5" - "@babel/plugin-syntax-private-property-in-object": "npm:^7.14.5" + "@babel/helper-annotate-as-pure": ^7.24.7 + "@babel/helper-create-class-features-plugin": ^7.24.7 + "@babel/helper-plugin-utils": ^7.24.7 + "@babel/plugin-syntax-private-property-in-object": ^7.14.5 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 59f9007671f50ef8f9eff33bb2dc3de22a2849612d4b64fc9e4ba502466ddbaf3f94774011695dde5128c4ca2009e241babe928ac63f71a29f27c1cc7ce01e5f + checksum: 8cee9473095305cc787bb653fd681719b49363281feabf677db8a552e8e41c94441408055d7e5fd5c7d41b315e634fa70b145ad0c7c54456216049df4ed57350 languageName: node linkType: hard -"@babel/plugin-transform-property-literals@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-property-literals@npm:7.24.1" +"@babel/plugin-transform-property-literals@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-property-literals@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: a73646d7ecd95b3931a3ead82c7d5efeb46e68ba362de63eb437d33531f294ec18bd31b6d24238cd3b6a3b919a6310c4a0ba4a2629927721d4d10b0518eb7715 + checksum: 9aeefc3aab6c6bf9d1fae1cf3a2d38c7d886fd3c6c81b7c608c477f5758aee2e7abf52f32724310fe861da61af934ee2508b78a5b5f234b9740c9134e1c14437 languageName: node linkType: hard -"@babel/plugin-transform-regenerator@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-regenerator@npm:7.24.1" +"@babel/plugin-transform-regenerator@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-regenerator@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - regenerator-transform: "npm:^0.15.2" + "@babel/helper-plugin-utils": ^7.24.7 + regenerator-transform: ^0.15.2 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: a04319388a0a7931c3f8e15715d01444c32519692178b70deccc86d53304e74c0f589a4268f6c68578d86f75e934dd1fe6e6ed9071f54ee8379f356f88ef6e42 + checksum: 20c6c3fb6fc9f407829087316653388d311e8c1816b007609bb09aeef254092a7157adace8b3aaa8f34be752503717cb85c88a5fe482180a9b11bcbd676063be languageName: node linkType: hard -"@babel/plugin-transform-reserved-words@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-reserved-words@npm:7.24.1" +"@babel/plugin-transform-reserved-words@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-reserved-words@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 132c6040c65aabae2d98a39289efb5c51a8632546dc50d2ad032c8660aec307fbed74ef499856ea4f881fc8505905f49b48e0270585da2ea3d50b75e962afd89 + checksum: 3d5876954d5914d7270819479504f30c4bf5452a65c677f44e2dab2db50b3c9d4b47793c45dfad7abf4f377035dd79e4b3f554ae350df9f422201d370ce9f8dd languageName: node linkType: hard -"@babel/plugin-transform-shorthand-properties@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-shorthand-properties@npm:7.24.1" +"@babel/plugin-transform-shorthand-properties@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-shorthand-properties@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 006a2032d1c57dca76579ce6598c679c2f20525afef0a36e9d42affe3c8cf33c1427581ad696b519cc75dfee46c5e8ecdf0c6a29ffb14250caa3e16dd68cb424 + checksum: 7b524245814607188212b8eb86d8c850e5974203328455a30881b4a92c364b93353fae14bc2af5b614ef16300b75b8c1d3b8f3a08355985b4794a7feb240adc3 languageName: node linkType: hard -"@babel/plugin-transform-spread@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-spread@npm:7.24.1" +"@babel/plugin-transform-spread@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-spread@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5" + "@babel/helper-plugin-utils": ^7.24.7 + "@babel/helper-skip-transparent-expression-wrappers": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 622ef507e2b5120a9010b25d3df5186c06102ecad8751724a38ec924df8d3527688198fa490c47064eabba14ef2f961b3069855bd22a8c0a1e51a23eed348d02 + checksum: 4c4254c8b9cceb1a8f975fa9b92257ddb08380a35c0a3721b8f4b9e13a3d82e403af2e0fba577b9f2452dd8f06bc3dea71cc53b1e2c6af595af5db52a13429d6 languageName: node linkType: hard -"@babel/plugin-transform-sticky-regex@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-sticky-regex@npm:7.24.1" +"@babel/plugin-transform-sticky-regex@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-sticky-regex@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: e326e96a9eeb6bb01dbc4d3362f989411490671b97f62edf378b8fb102c463a018b777f28da65344d41b22aa6efcdfa01ed43d2b11fdcf202046d3174be137c5 + checksum: 118fc7a7ebf7c20411b670c8a030535fdfe4a88bc5643bb625a584dbc4c8a468da46430a20e6bf78914246962b0f18f1b9d6a62561a7762c4f34a038a5a77179 languageName: node linkType: hard -"@babel/plugin-transform-template-literals@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-template-literals@npm:7.24.1" +"@babel/plugin-transform-template-literals@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-template-literals@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 4c9009c72321caf20e3b6328bbe9d7057006c5ae57b794cf247a37ca34d87dfec5e27284169a16df5a6235a083bf0f3ab9e1bfcb005d1c8b75b04aed75652621 + checksum: ad44e5826f5a98c1575832dbdbd033adfe683cdff195e178528ead62507564bf02f479b282976cfd3caebad8b06d5fd7349c1cdb880dec3c56daea4f1f179619 languageName: node linkType: hard -"@babel/plugin-transform-typeof-symbol@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/plugin-transform-typeof-symbol@npm:7.24.5" +"@babel/plugin-transform-typeof-symbol@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-typeof-symbol@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.5" + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 35504219e4e8b361dbd285400c846f154754e591e931cd30dbe1426a619e41ed0c410b26dd173824ed3a2ff0371d64213ae2304b6f169b32e78b004114f5acd5 + checksum: 6bd16b9347614d44187d8f8ee23ebd7be30dabf3632eed5ff0415f35a482e827de220527089eae9cdfb75e85aa72db0e141ebc2247c4b1187c1abcdacdc34895 languageName: node linkType: hard -"@babel/plugin-transform-unicode-escapes@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-unicode-escapes@npm:7.24.1" +"@babel/plugin-transform-unicode-escapes@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-unicode-escapes@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: d4d7cfea91af7be2768fb6bed902e00d6e3190bda738b5149c3a788d570e6cf48b974ec9548442850308ecd8fc9a67681f4ea8403129e7867bcb85adaf6ec238 + checksum: 4af0a193e1ddea6ff82b2b15cc2501b872728050bd625740b813c8062fec917d32d530ff6b41de56c15e7296becdf3336a58db81f5ca8e7c445c1306c52f3e01 languageName: node linkType: hard -"@babel/plugin-transform-unicode-property-regex@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-unicode-property-regex@npm:7.24.1" +"@babel/plugin-transform-unicode-property-regex@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-unicode-property-regex@npm:7.24.7" dependencies: - "@babel/helper-create-regexp-features-plugin": "npm:^7.22.15" - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-create-regexp-features-plugin": ^7.24.7 + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 276099b4483e707f80b054e2d29bc519158bfe52461ef5ff76f70727d592df17e30b1597ef4d8a0f04d810f6cb5a8dd887bdc1d0540af3744751710ef280090f + checksum: aae13350c50973f5802ca7906d022a6a0cc0e3aebac9122d0450bbd51e78252d4c2032ad69385e2759fcbdd3aac5d571bd7e26258907f51f8e1a51b53be626c2 languageName: node linkType: hard -"@babel/plugin-transform-unicode-regex@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-unicode-regex@npm:7.24.1" +"@babel/plugin-transform-unicode-regex@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-unicode-regex@npm:7.24.7" dependencies: - "@babel/helper-create-regexp-features-plugin": "npm:^7.22.15" - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-create-regexp-features-plugin": ^7.24.7 + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 400a0927bdb1425b4c0dc68a61b5b2d7d17c7d9f0e07317a1a6a373c080ef94be1dd65fdc4ac9a78fcdb58f89fd128450c7bc0d5b8ca0ae7eca3fbd98e50acba + checksum: 1cb4e70678906e431da0a05ac3f8350025fee290304ad7482d9cfaa1ca67b2e898654de537c9268efbdad5b80d3ebadf42b4a88ea84609bd8a4cce7b11b48afd languageName: node linkType: hard -"@babel/plugin-transform-unicode-sets-regex@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-unicode-sets-regex@npm:7.24.1" +"@babel/plugin-transform-unicode-sets-regex@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-unicode-sets-regex@npm:7.24.7" dependencies: - "@babel/helper-create-regexp-features-plugin": "npm:^7.22.15" - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-create-regexp-features-plugin": ^7.24.7 + "@babel/helper-plugin-utils": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0 - checksum: 364342fb8e382dfaa23628b88e6484dc1097e53fb7199f4d338f1e2cd71d839bb0a35a9b1380074f6a10adb2e98b79d53ca3ec78c0b8c557ca895ffff42180df + checksum: 08a2844914f33dacd2ce1ab021ce8c1cc35dc6568521a746d8bf29c21571ee5be78787b454231c4bb3526cbbe280f1893223c82726cec5df2be5dae0a3b51837 languageName: node linkType: hard "@babel/preset-env@npm:^7.23.8": - version: 7.24.5 - resolution: "@babel/preset-env@npm:7.24.5" - dependencies: - "@babel/compat-data": "npm:^7.24.4" - "@babel/helper-compilation-targets": "npm:^7.23.6" - "@babel/helper-plugin-utils": "npm:^7.24.5" - "@babel/helper-validator-option": "npm:^7.23.5" - "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "npm:^7.24.5" - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "npm:^7.24.1" - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "npm:^7.24.1" - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "npm:^7.24.1" - "@babel/plugin-proposal-private-property-in-object": "npm:7.21.0-placeholder-for-preset-env.2" - "@babel/plugin-syntax-async-generators": "npm:^7.8.4" - "@babel/plugin-syntax-class-properties": "npm:^7.12.13" - "@babel/plugin-syntax-class-static-block": "npm:^7.14.5" - "@babel/plugin-syntax-dynamic-import": "npm:^7.8.3" - "@babel/plugin-syntax-export-namespace-from": "npm:^7.8.3" - "@babel/plugin-syntax-import-assertions": "npm:^7.24.1" - "@babel/plugin-syntax-import-attributes": "npm:^7.24.1" - "@babel/plugin-syntax-import-meta": "npm:^7.10.4" - "@babel/plugin-syntax-json-strings": "npm:^7.8.3" - "@babel/plugin-syntax-logical-assignment-operators": "npm:^7.10.4" - "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.3" - "@babel/plugin-syntax-numeric-separator": "npm:^7.10.4" - "@babel/plugin-syntax-object-rest-spread": "npm:^7.8.3" - "@babel/plugin-syntax-optional-catch-binding": "npm:^7.8.3" - "@babel/plugin-syntax-optional-chaining": "npm:^7.8.3" - "@babel/plugin-syntax-private-property-in-object": "npm:^7.14.5" - "@babel/plugin-syntax-top-level-await": "npm:^7.14.5" - "@babel/plugin-syntax-unicode-sets-regex": "npm:^7.18.6" - "@babel/plugin-transform-arrow-functions": "npm:^7.24.1" - "@babel/plugin-transform-async-generator-functions": "npm:^7.24.3" - "@babel/plugin-transform-async-to-generator": "npm:^7.24.1" - "@babel/plugin-transform-block-scoped-functions": "npm:^7.24.1" - "@babel/plugin-transform-block-scoping": "npm:^7.24.5" - "@babel/plugin-transform-class-properties": "npm:^7.24.1" - "@babel/plugin-transform-class-static-block": "npm:^7.24.4" - "@babel/plugin-transform-classes": "npm:^7.24.5" - "@babel/plugin-transform-computed-properties": "npm:^7.24.1" - "@babel/plugin-transform-destructuring": "npm:^7.24.5" - "@babel/plugin-transform-dotall-regex": "npm:^7.24.1" - "@babel/plugin-transform-duplicate-keys": "npm:^7.24.1" - "@babel/plugin-transform-dynamic-import": "npm:^7.24.1" - "@babel/plugin-transform-exponentiation-operator": "npm:^7.24.1" - "@babel/plugin-transform-export-namespace-from": "npm:^7.24.1" - "@babel/plugin-transform-for-of": "npm:^7.24.1" - "@babel/plugin-transform-function-name": "npm:^7.24.1" - "@babel/plugin-transform-json-strings": "npm:^7.24.1" - "@babel/plugin-transform-literals": "npm:^7.24.1" - "@babel/plugin-transform-logical-assignment-operators": "npm:^7.24.1" - "@babel/plugin-transform-member-expression-literals": "npm:^7.24.1" - "@babel/plugin-transform-modules-amd": "npm:^7.24.1" - "@babel/plugin-transform-modules-commonjs": "npm:^7.24.1" - "@babel/plugin-transform-modules-systemjs": "npm:^7.24.1" - "@babel/plugin-transform-modules-umd": "npm:^7.24.1" - "@babel/plugin-transform-named-capturing-groups-regex": "npm:^7.22.5" - "@babel/plugin-transform-new-target": "npm:^7.24.1" - "@babel/plugin-transform-nullish-coalescing-operator": "npm:^7.24.1" - "@babel/plugin-transform-numeric-separator": "npm:^7.24.1" - "@babel/plugin-transform-object-rest-spread": "npm:^7.24.5" - "@babel/plugin-transform-object-super": "npm:^7.24.1" - "@babel/plugin-transform-optional-catch-binding": "npm:^7.24.1" - "@babel/plugin-transform-optional-chaining": "npm:^7.24.5" - "@babel/plugin-transform-parameters": "npm:^7.24.5" - "@babel/plugin-transform-private-methods": "npm:^7.24.1" - "@babel/plugin-transform-private-property-in-object": "npm:^7.24.5" - "@babel/plugin-transform-property-literals": "npm:^7.24.1" - "@babel/plugin-transform-regenerator": "npm:^7.24.1" - "@babel/plugin-transform-reserved-words": "npm:^7.24.1" - "@babel/plugin-transform-shorthand-properties": "npm:^7.24.1" - "@babel/plugin-transform-spread": "npm:^7.24.1" - "@babel/plugin-transform-sticky-regex": "npm:^7.24.1" - "@babel/plugin-transform-template-literals": "npm:^7.24.1" - "@babel/plugin-transform-typeof-symbol": "npm:^7.24.5" - "@babel/plugin-transform-unicode-escapes": "npm:^7.24.1" - "@babel/plugin-transform-unicode-property-regex": "npm:^7.24.1" - "@babel/plugin-transform-unicode-regex": "npm:^7.24.1" - "@babel/plugin-transform-unicode-sets-regex": "npm:^7.24.1" - "@babel/preset-modules": "npm:0.1.6-no-external-plugins" - babel-plugin-polyfill-corejs2: "npm:^0.4.10" - babel-plugin-polyfill-corejs3: "npm:^0.10.4" - babel-plugin-polyfill-regenerator: "npm:^0.6.1" - core-js-compat: "npm:^3.31.0" - semver: "npm:^6.3.1" + version: 7.24.7 + resolution: "@babel/preset-env@npm:7.24.7" + dependencies: + "@babel/compat-data": ^7.24.7 + "@babel/helper-compilation-targets": ^7.24.7 + "@babel/helper-plugin-utils": ^7.24.7 + "@babel/helper-validator-option": ^7.24.7 + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": ^7.24.7 + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": ^7.24.7 + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": ^7.24.7 + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": ^7.24.7 + "@babel/plugin-proposal-private-property-in-object": 7.21.0-placeholder-for-preset-env.2 + "@babel/plugin-syntax-async-generators": ^7.8.4 + "@babel/plugin-syntax-class-properties": ^7.12.13 + "@babel/plugin-syntax-class-static-block": ^7.14.5 + "@babel/plugin-syntax-dynamic-import": ^7.8.3 + "@babel/plugin-syntax-export-namespace-from": ^7.8.3 + "@babel/plugin-syntax-import-assertions": ^7.24.7 + "@babel/plugin-syntax-import-attributes": ^7.24.7 + "@babel/plugin-syntax-import-meta": ^7.10.4 + "@babel/plugin-syntax-json-strings": ^7.8.3 + "@babel/plugin-syntax-logical-assignment-operators": ^7.10.4 + "@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3 + "@babel/plugin-syntax-numeric-separator": ^7.10.4 + "@babel/plugin-syntax-object-rest-spread": ^7.8.3 + "@babel/plugin-syntax-optional-catch-binding": ^7.8.3 + "@babel/plugin-syntax-optional-chaining": ^7.8.3 + "@babel/plugin-syntax-private-property-in-object": ^7.14.5 + "@babel/plugin-syntax-top-level-await": ^7.14.5 + "@babel/plugin-syntax-unicode-sets-regex": ^7.18.6 + "@babel/plugin-transform-arrow-functions": ^7.24.7 + "@babel/plugin-transform-async-generator-functions": ^7.24.7 + "@babel/plugin-transform-async-to-generator": ^7.24.7 + "@babel/plugin-transform-block-scoped-functions": ^7.24.7 + "@babel/plugin-transform-block-scoping": ^7.24.7 + "@babel/plugin-transform-class-properties": ^7.24.7 + "@babel/plugin-transform-class-static-block": ^7.24.7 + "@babel/plugin-transform-classes": ^7.24.7 + "@babel/plugin-transform-computed-properties": ^7.24.7 + "@babel/plugin-transform-destructuring": ^7.24.7 + "@babel/plugin-transform-dotall-regex": ^7.24.7 + "@babel/plugin-transform-duplicate-keys": ^7.24.7 + "@babel/plugin-transform-dynamic-import": ^7.24.7 + "@babel/plugin-transform-exponentiation-operator": ^7.24.7 + "@babel/plugin-transform-export-namespace-from": ^7.24.7 + "@babel/plugin-transform-for-of": ^7.24.7 + "@babel/plugin-transform-function-name": ^7.24.7 + "@babel/plugin-transform-json-strings": ^7.24.7 + "@babel/plugin-transform-literals": ^7.24.7 + "@babel/plugin-transform-logical-assignment-operators": ^7.24.7 + "@babel/plugin-transform-member-expression-literals": ^7.24.7 + "@babel/plugin-transform-modules-amd": ^7.24.7 + "@babel/plugin-transform-modules-commonjs": ^7.24.7 + "@babel/plugin-transform-modules-systemjs": ^7.24.7 + "@babel/plugin-transform-modules-umd": ^7.24.7 + "@babel/plugin-transform-named-capturing-groups-regex": ^7.24.7 + "@babel/plugin-transform-new-target": ^7.24.7 + "@babel/plugin-transform-nullish-coalescing-operator": ^7.24.7 + "@babel/plugin-transform-numeric-separator": ^7.24.7 + "@babel/plugin-transform-object-rest-spread": ^7.24.7 + "@babel/plugin-transform-object-super": ^7.24.7 + "@babel/plugin-transform-optional-catch-binding": ^7.24.7 + "@babel/plugin-transform-optional-chaining": ^7.24.7 + "@babel/plugin-transform-parameters": ^7.24.7 + "@babel/plugin-transform-private-methods": ^7.24.7 + "@babel/plugin-transform-private-property-in-object": ^7.24.7 + "@babel/plugin-transform-property-literals": ^7.24.7 + "@babel/plugin-transform-regenerator": ^7.24.7 + "@babel/plugin-transform-reserved-words": ^7.24.7 + "@babel/plugin-transform-shorthand-properties": ^7.24.7 + "@babel/plugin-transform-spread": ^7.24.7 + "@babel/plugin-transform-sticky-regex": ^7.24.7 + "@babel/plugin-transform-template-literals": ^7.24.7 + "@babel/plugin-transform-typeof-symbol": ^7.24.7 + "@babel/plugin-transform-unicode-escapes": ^7.24.7 + "@babel/plugin-transform-unicode-property-regex": ^7.24.7 + "@babel/plugin-transform-unicode-regex": ^7.24.7 + "@babel/plugin-transform-unicode-sets-regex": ^7.24.7 + "@babel/preset-modules": 0.1.6-no-external-plugins + babel-plugin-polyfill-corejs2: ^0.4.10 + babel-plugin-polyfill-corejs3: ^0.10.4 + babel-plugin-polyfill-regenerator: ^0.6.1 + core-js-compat: ^3.31.0 + semver: ^6.3.1 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: cced4e5331231158e02ba5903c4de12ef0aa2d2266ebb07fa80a85045b1fe2c63410d7558b702f1916d9d038531f3d79ab31007762188de5f712b16f7a66bb74 + checksum: 1a82c883c7404359b19b7436d0aab05f8dd4e89e8b1f7de127cc65d0ff6a9b1c345211d9c038f5b6e8f93d26f091fa9c73812d82851026ab4ec93f5ed0f0d675 languageName: node linkType: hard @@ -1300,9 +1307,9 @@ __metadata: version: 0.1.6-no-external-plugins resolution: "@babel/preset-modules@npm:0.1.6-no-external-plugins" dependencies: - "@babel/helper-plugin-utils": "npm:^7.0.0" - "@babel/types": "npm:^7.4.4" - esutils: "npm:^2.0.2" + "@babel/helper-plugin-utils": ^7.0.0 + "@babel/types": ^7.4.4 + esutils: ^2.0.2 peerDependencies: "@babel/core": ^7.0.0-0 || ^8.0.0-0 <8.0.0 checksum: 4855e799bc50f2449fb5210f78ea9e8fd46cf4f242243f1e2ed838e2bd702e25e73e822e7f8447722a5f4baa5e67a8f7a0e403f3e7ce04540ff743a9c411c375 @@ -1317,51 +1324,51 @@ __metadata: linkType: hard "@babel/runtime@npm:^7.8.4": - version: 7.24.5 - resolution: "@babel/runtime@npm:7.24.5" + version: 7.24.7 + resolution: "@babel/runtime@npm:7.24.7" dependencies: - regenerator-runtime: "npm:^0.14.0" - checksum: 755383192f3ac32ba4c62bd4f1ae92aed5b82d2c6665f39eb28fa94546777cf5c63493ea92dd03f1c2e621b17e860f190c056684b7f234270fdc91e29beda063 + regenerator-runtime: ^0.14.0 + checksum: d17f29eed6f848ac15cdf4202a910b741facfb0419a9d79e5c7fa37df6362fc3227f1cc2e248cc6db5e53ddffb4caa6686c488e6e80ce3d29c36a4e74c8734ea languageName: node linkType: hard -"@babel/template@npm:^7.22.15, @babel/template@npm:^7.24.0, @babel/template@npm:^7.3.3": - version: 7.24.0 - resolution: "@babel/template@npm:7.24.0" +"@babel/template@npm:^7.24.7, @babel/template@npm:^7.3.3": + version: 7.24.7 + resolution: "@babel/template@npm:7.24.7" dependencies: - "@babel/code-frame": "npm:^7.23.5" - "@babel/parser": "npm:^7.24.0" - "@babel/types": "npm:^7.24.0" - checksum: f257b003c071a0cecdbfceca74185f18fe62c055469ab5c1d481aab12abeebed328e67e0a19fd978a2a8de97b28953fa4bc3da6d038a7345fdf37923b9fcdec8 + "@babel/code-frame": ^7.24.7 + "@babel/parser": ^7.24.7 + "@babel/types": ^7.24.7 + checksum: ea90792fae708ddf1632e54c25fe1a86643d8c0132311f81265d2bdbdd42f9f4fac65457056c1b6ca87f7aa0d6a795b549566774bba064bdcea2034ab3960ee9 languageName: node linkType: hard -"@babel/traverse@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/traverse@npm:7.24.5" +"@babel/traverse@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/traverse@npm:7.24.7" dependencies: - "@babel/code-frame": "npm:^7.24.2" - "@babel/generator": "npm:^7.24.5" - "@babel/helper-environment-visitor": "npm:^7.22.20" - "@babel/helper-function-name": "npm:^7.23.0" - "@babel/helper-hoist-variables": "npm:^7.22.5" - "@babel/helper-split-export-declaration": "npm:^7.24.5" - "@babel/parser": "npm:^7.24.5" - "@babel/types": "npm:^7.24.5" - debug: "npm:^4.3.1" - globals: "npm:^11.1.0" - checksum: a313fbf4a06946cc4b74b06e9846d7393a9ca1e8b6df6da60c669cff0a9426d6198c21a478041c60807b62b48f980473d4afbd3768764b0d9741ac80f5dfa04f + "@babel/code-frame": ^7.24.7 + "@babel/generator": ^7.24.7 + "@babel/helper-environment-visitor": ^7.24.7 + "@babel/helper-function-name": ^7.24.7 + "@babel/helper-hoist-variables": ^7.24.7 + "@babel/helper-split-export-declaration": ^7.24.7 + "@babel/parser": ^7.24.7 + "@babel/types": ^7.24.7 + debug: ^4.3.1 + globals: ^11.1.0 + checksum: 7cd366afe9e7ee77e493779fdf24f67bf5595247289364f4689e29688572505eaeb886d7a8f20ebb9c29fc2de7d0895e4ff9e203e78e39ac67239724d45aa83b languageName: node linkType: hard -"@babel/types@npm:^7.0.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.22.15, @babel/types@npm:^7.22.5, @babel/types@npm:^7.23.0, @babel/types@npm:^7.24.0, @babel/types@npm:^7.24.5, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4, @babel/types@npm:^7.8.3": - version: 7.24.5 - resolution: "@babel/types@npm:7.24.5" +"@babel/types@npm:^7.0.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.24.7, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4, @babel/types@npm:^7.8.3": + version: 7.24.7 + resolution: "@babel/types@npm:7.24.7" dependencies: - "@babel/helper-string-parser": "npm:^7.24.1" - "@babel/helper-validator-identifier": "npm:^7.24.5" - to-fast-properties: "npm:^2.0.0" - checksum: 8eeeacd996593b176e649ee49d8dc3f26f9bb6aa1e3b592030e61a0e58ea010fb018dccc51e5314c8139409ea6cbab02e29b33e674e1f6962d8e24c52da6375b + "@babel/helper-string-parser": ^7.24.7 + "@babel/helper-validator-identifier": ^7.24.7 + to-fast-properties: ^2.0.0 + checksum: 3e4437fced97e02982972ce5bebd318c47d42c9be2152c0fd28c6f786cc74086cc0a8fb83b602b846e41df37f22c36254338eada1a47ef9d8a1ec92332ca3ea8 languageName: node linkType: hard @@ -1383,7 +1390,7 @@ __metadata: version: 4.4.0 resolution: "@eslint-community/eslint-utils@npm:4.4.0" dependencies: - eslint-visitor-keys: "npm:^3.3.0" + eslint-visitor-keys: ^3.3.0 peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 checksum: cdfe3ae42b4f572cbfb46d20edafe6f36fc5fb52bf2d90875c58aefe226892b9677fef60820e2832caf864a326fe4fc225714c46e8389ccca04d5f9288aabd22 @@ -1391,9 +1398,9 @@ __metadata: linkType: hard "@eslint-community/regexpp@npm:^4.5.1, @eslint-community/regexpp@npm:^4.6.1": - version: 4.10.0 - resolution: "@eslint-community/regexpp@npm:4.10.0" - checksum: 2a6e345429ea8382aaaf3a61f865cae16ed44d31ca917910033c02dc00d505d939f10b81e079fa14d43b51499c640138e153b7e40743c4c094d9df97d4e56f7b + version: 4.11.0 + resolution: "@eslint-community/regexpp@npm:4.11.0" + checksum: 97d2fe46690b69417a551bd19a3dc53b6d9590d2295c43cc4c4e44e64131af541e2f4a44d5c12e87de990403654d3dae9d33600081f3a2f0386b368abc9111ec languageName: node linkType: hard @@ -1401,15 +1408,15 @@ __metadata: version: 2.1.4 resolution: "@eslint/eslintrc@npm:2.1.4" dependencies: - ajv: "npm:^6.12.4" - debug: "npm:^4.3.2" - espree: "npm:^9.6.0" - globals: "npm:^13.19.0" - ignore: "npm:^5.2.0" - import-fresh: "npm:^3.2.1" - js-yaml: "npm:^4.1.0" - minimatch: "npm:^3.1.2" - strip-json-comments: "npm:^3.1.1" + ajv: ^6.12.4 + debug: ^4.3.2 + espree: ^9.6.0 + globals: ^13.19.0 + ignore: ^5.2.0 + import-fresh: ^3.2.1 + js-yaml: ^4.1.0 + minimatch: ^3.1.2 + strip-json-comments: ^3.1.1 checksum: 10957c7592b20ca0089262d8c2a8accbad14b4f6507e35416c32ee6b4dbf9cad67dfb77096bbd405405e9ada2b107f3797fe94362e1c55e0b09d6e90dd149127 languageName: node linkType: hard @@ -1425,9 +1432,9 @@ __metadata: version: 0.11.14 resolution: "@humanwhocodes/config-array@npm:0.11.14" dependencies: - "@humanwhocodes/object-schema": "npm:^2.0.2" - debug: "npm:^4.3.1" - minimatch: "npm:^3.0.5" + "@humanwhocodes/object-schema": ^2.0.2 + debug: ^4.3.1 + minimatch: ^3.0.5 checksum: 861ccce9eaea5de19546653bccf75bf09fe878bc39c3aab00aeee2d2a0e654516adad38dd1098aab5e3af0145bbcbf3f309bdf4d964f8dab9dcd5834ae4c02f2 languageName: node linkType: hard @@ -1450,11 +1457,11 @@ __metadata: version: 8.0.2 resolution: "@isaacs/cliui@npm:8.0.2" dependencies: - string-width: "npm:^5.1.2" + string-width: ^5.1.2 string-width-cjs: "npm:string-width@^4.2.0" - strip-ansi: "npm:^7.0.1" + strip-ansi: ^7.0.1 strip-ansi-cjs: "npm:strip-ansi@^6.0.1" - wrap-ansi: "npm:^8.1.0" + wrap-ansi: ^8.1.0 wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0" checksum: 4a473b9b32a7d4d3cfb7a614226e555091ff0c5a29a1734c28c72a182c2f6699b26fc6b5c2131dfd841e86b185aea714c72201d7c98c2fba5f17709333a67aeb languageName: node @@ -1464,11 +1471,11 @@ __metadata: version: 1.1.0 resolution: "@istanbuljs/load-nyc-config@npm:1.1.0" dependencies: - camelcase: "npm:^5.3.1" - find-up: "npm:^4.1.0" - get-package-type: "npm:^0.1.0" - js-yaml: "npm:^3.13.1" - resolve-from: "npm:^5.0.0" + camelcase: ^5.3.1 + find-up: ^4.1.0 + get-package-type: ^0.1.0 + js-yaml: ^3.13.1 + resolve-from: ^5.0.0 checksum: d578da5e2e804d5c93228450a1380e1a3c691de4953acc162f387b717258512a3e07b83510a936d9fab03eac90817473917e24f5d16297af3867f59328d58568 languageName: node linkType: hard @@ -1484,12 +1491,12 @@ __metadata: version: 29.7.0 resolution: "@jest/console@npm:29.7.0" dependencies: - "@jest/types": "npm:^29.6.3" - "@types/node": "npm:*" - chalk: "npm:^4.0.0" - jest-message-util: "npm:^29.7.0" - jest-util: "npm:^29.7.0" - slash: "npm:^3.0.0" + "@jest/types": ^29.6.3 + "@types/node": "*" + chalk: ^4.0.0 + jest-message-util: ^29.7.0 + jest-util: ^29.7.0 + slash: ^3.0.0 checksum: 0e3624e32c5a8e7361e889db70b170876401b7d70f509a2538c31d5cd50deb0c1ae4b92dc63fe18a0902e0a48c590c21d53787a0df41a52b34fa7cab96c384d6 languageName: node linkType: hard @@ -1498,34 +1505,34 @@ __metadata: version: 29.7.0 resolution: "@jest/core@npm:29.7.0" dependencies: - "@jest/console": "npm:^29.7.0" - "@jest/reporters": "npm:^29.7.0" - "@jest/test-result": "npm:^29.7.0" - "@jest/transform": "npm:^29.7.0" - "@jest/types": "npm:^29.6.3" - "@types/node": "npm:*" - ansi-escapes: "npm:^4.2.1" - chalk: "npm:^4.0.0" - ci-info: "npm:^3.2.0" - exit: "npm:^0.1.2" - graceful-fs: "npm:^4.2.9" - jest-changed-files: "npm:^29.7.0" - jest-config: "npm:^29.7.0" - jest-haste-map: "npm:^29.7.0" - jest-message-util: "npm:^29.7.0" - jest-regex-util: "npm:^29.6.3" - jest-resolve: "npm:^29.7.0" - jest-resolve-dependencies: "npm:^29.7.0" - jest-runner: "npm:^29.7.0" - jest-runtime: "npm:^29.7.0" - jest-snapshot: "npm:^29.7.0" - jest-util: "npm:^29.7.0" - jest-validate: "npm:^29.7.0" - jest-watcher: "npm:^29.7.0" - micromatch: "npm:^4.0.4" - pretty-format: "npm:^29.7.0" - slash: "npm:^3.0.0" - strip-ansi: "npm:^6.0.0" + "@jest/console": ^29.7.0 + "@jest/reporters": ^29.7.0 + "@jest/test-result": ^29.7.0 + "@jest/transform": ^29.7.0 + "@jest/types": ^29.6.3 + "@types/node": "*" + ansi-escapes: ^4.2.1 + chalk: ^4.0.0 + ci-info: ^3.2.0 + exit: ^0.1.2 + graceful-fs: ^4.2.9 + jest-changed-files: ^29.7.0 + jest-config: ^29.7.0 + jest-haste-map: ^29.7.0 + jest-message-util: ^29.7.0 + jest-regex-util: ^29.6.3 + jest-resolve: ^29.7.0 + jest-resolve-dependencies: ^29.7.0 + jest-runner: ^29.7.0 + jest-runtime: ^29.7.0 + jest-snapshot: ^29.7.0 + jest-util: ^29.7.0 + jest-validate: ^29.7.0 + jest-watcher: ^29.7.0 + micromatch: ^4.0.4 + pretty-format: ^29.7.0 + slash: ^3.0.0 + strip-ansi: ^6.0.0 peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: @@ -1539,10 +1546,10 @@ __metadata: version: 29.7.0 resolution: "@jest/environment@npm:29.7.0" dependencies: - "@jest/fake-timers": "npm:^29.7.0" - "@jest/types": "npm:^29.6.3" - "@types/node": "npm:*" - jest-mock: "npm:^29.7.0" + "@jest/fake-timers": ^29.7.0 + "@jest/types": ^29.6.3 + "@types/node": "*" + jest-mock: ^29.7.0 checksum: 6fb398143b2543d4b9b8d1c6dbce83fa5247f84f550330604be744e24c2bd2178bb893657d62d1b97cf2f24baf85c450223f8237cccb71192c36a38ea2272934 languageName: node linkType: hard @@ -1551,7 +1558,7 @@ __metadata: version: 29.7.0 resolution: "@jest/expect-utils@npm:29.7.0" dependencies: - jest-get-type: "npm:^29.6.3" + jest-get-type: ^29.6.3 checksum: 75eb177f3d00b6331bcaa057e07c0ccb0733a1d0a1943e1d8db346779039cb7f103789f16e502f888a3096fb58c2300c38d1f3748b36a7fa762eb6f6d1b160ed languageName: node linkType: hard @@ -1560,8 +1567,8 @@ __metadata: version: 29.7.0 resolution: "@jest/expect@npm:29.7.0" dependencies: - expect: "npm:^29.7.0" - jest-snapshot: "npm:^29.7.0" + expect: ^29.7.0 + jest-snapshot: ^29.7.0 checksum: a01cb85fd9401bab3370618f4b9013b90c93536562222d920e702a0b575d239d74cecfe98010aaec7ad464f67cf534a353d92d181646a4b792acaa7e912ae55e languageName: node linkType: hard @@ -1570,12 +1577,12 @@ __metadata: version: 29.7.0 resolution: "@jest/fake-timers@npm:29.7.0" dependencies: - "@jest/types": "npm:^29.6.3" - "@sinonjs/fake-timers": "npm:^10.0.2" - "@types/node": "npm:*" - jest-message-util: "npm:^29.7.0" - jest-mock: "npm:^29.7.0" - jest-util: "npm:^29.7.0" + "@jest/types": ^29.6.3 + "@sinonjs/fake-timers": ^10.0.2 + "@types/node": "*" + jest-message-util: ^29.7.0 + jest-mock: ^29.7.0 + jest-util: ^29.7.0 checksum: caf2bbd11f71c9241b458d1b5a66cbe95debc5a15d96442444b5d5c7ba774f523c76627c6931cca5e10e76f0d08761f6f1f01a608898f4751a0eee54fc3d8d00 languageName: node linkType: hard @@ -1584,10 +1591,10 @@ __metadata: version: 29.7.0 resolution: "@jest/globals@npm:29.7.0" dependencies: - "@jest/environment": "npm:^29.7.0" - "@jest/expect": "npm:^29.7.0" - "@jest/types": "npm:^29.6.3" - jest-mock: "npm:^29.7.0" + "@jest/environment": ^29.7.0 + "@jest/expect": ^29.7.0 + "@jest/types": ^29.6.3 + jest-mock: ^29.7.0 checksum: 97dbb9459135693ad3a422e65ca1c250f03d82b2a77f6207e7fa0edd2c9d2015fbe4346f3dc9ebff1678b9d8da74754d4d440b7837497f8927059c0642a22123 languageName: node linkType: hard @@ -1596,30 +1603,30 @@ __metadata: version: 29.7.0 resolution: "@jest/reporters@npm:29.7.0" dependencies: - "@bcoe/v8-coverage": "npm:^0.2.3" - "@jest/console": "npm:^29.7.0" - "@jest/test-result": "npm:^29.7.0" - "@jest/transform": "npm:^29.7.0" - "@jest/types": "npm:^29.6.3" - "@jridgewell/trace-mapping": "npm:^0.3.18" - "@types/node": "npm:*" - chalk: "npm:^4.0.0" - collect-v8-coverage: "npm:^1.0.0" - exit: "npm:^0.1.2" - glob: "npm:^7.1.3" - graceful-fs: "npm:^4.2.9" - istanbul-lib-coverage: "npm:^3.0.0" - istanbul-lib-instrument: "npm:^6.0.0" - istanbul-lib-report: "npm:^3.0.0" - istanbul-lib-source-maps: "npm:^4.0.0" - istanbul-reports: "npm:^3.1.3" - jest-message-util: "npm:^29.7.0" - jest-util: "npm:^29.7.0" - jest-worker: "npm:^29.7.0" - slash: "npm:^3.0.0" - string-length: "npm:^4.0.1" - strip-ansi: "npm:^6.0.0" - v8-to-istanbul: "npm:^9.0.1" + "@bcoe/v8-coverage": ^0.2.3 + "@jest/console": ^29.7.0 + "@jest/test-result": ^29.7.0 + "@jest/transform": ^29.7.0 + "@jest/types": ^29.6.3 + "@jridgewell/trace-mapping": ^0.3.18 + "@types/node": "*" + chalk: ^4.0.0 + collect-v8-coverage: ^1.0.0 + exit: ^0.1.2 + glob: ^7.1.3 + graceful-fs: ^4.2.9 + istanbul-lib-coverage: ^3.0.0 + istanbul-lib-instrument: ^6.0.0 + istanbul-lib-report: ^3.0.0 + istanbul-lib-source-maps: ^4.0.0 + istanbul-reports: ^3.1.3 + jest-message-util: ^29.7.0 + jest-util: ^29.7.0 + jest-worker: ^29.7.0 + slash: ^3.0.0 + string-length: ^4.0.1 + strip-ansi: ^6.0.0 + v8-to-istanbul: ^9.0.1 peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: @@ -1633,7 +1640,7 @@ __metadata: version: 29.6.3 resolution: "@jest/schemas@npm:29.6.3" dependencies: - "@sinclair/typebox": "npm:^0.27.8" + "@sinclair/typebox": ^0.27.8 checksum: 910040425f0fc93cd13e68c750b7885590b8839066dfa0cd78e7def07bbb708ad869381f725945d66f2284de5663bbecf63e8fdd856e2ae6e261ba30b1687e93 languageName: node linkType: hard @@ -1642,9 +1649,9 @@ __metadata: version: 29.6.3 resolution: "@jest/source-map@npm:29.6.3" dependencies: - "@jridgewell/trace-mapping": "npm:^0.3.18" - callsites: "npm:^3.0.0" - graceful-fs: "npm:^4.2.9" + "@jridgewell/trace-mapping": ^0.3.18 + callsites: ^3.0.0 + graceful-fs: ^4.2.9 checksum: bcc5a8697d471396c0003b0bfa09722c3cd879ad697eb9c431e6164e2ea7008238a01a07193dfe3cbb48b1d258eb7251f6efcea36f64e1ebc464ea3c03ae2deb languageName: node linkType: hard @@ -1653,10 +1660,10 @@ __metadata: version: 29.7.0 resolution: "@jest/test-result@npm:29.7.0" dependencies: - "@jest/console": "npm:^29.7.0" - "@jest/types": "npm:^29.6.3" - "@types/istanbul-lib-coverage": "npm:^2.0.0" - collect-v8-coverage: "npm:^1.0.0" + "@jest/console": ^29.7.0 + "@jest/types": ^29.6.3 + "@types/istanbul-lib-coverage": ^2.0.0 + collect-v8-coverage: ^1.0.0 checksum: 67b6317d526e335212e5da0e768e3b8ab8a53df110361b80761353ad23b6aea4432b7c5665bdeb87658ea373b90fb1afe02ed3611ef6c858c7fba377505057fa languageName: node linkType: hard @@ -1665,10 +1672,10 @@ __metadata: version: 29.7.0 resolution: "@jest/test-sequencer@npm:29.7.0" dependencies: - "@jest/test-result": "npm:^29.7.0" - graceful-fs: "npm:^4.2.9" - jest-haste-map: "npm:^29.7.0" - slash: "npm:^3.0.0" + "@jest/test-result": ^29.7.0 + graceful-fs: ^4.2.9 + jest-haste-map: ^29.7.0 + slash: ^3.0.0 checksum: 73f43599017946be85c0b6357993b038f875b796e2f0950487a82f4ebcb115fa12131932dd9904026b4ad8be131fe6e28bd8d0aa93b1563705185f9804bff8bd languageName: node linkType: hard @@ -1677,21 +1684,21 @@ __metadata: version: 29.7.0 resolution: "@jest/transform@npm:29.7.0" dependencies: - "@babel/core": "npm:^7.11.6" - "@jest/types": "npm:^29.6.3" - "@jridgewell/trace-mapping": "npm:^0.3.18" - babel-plugin-istanbul: "npm:^6.1.1" - chalk: "npm:^4.0.0" - convert-source-map: "npm:^2.0.0" - fast-json-stable-stringify: "npm:^2.1.0" - graceful-fs: "npm:^4.2.9" - jest-haste-map: "npm:^29.7.0" - jest-regex-util: "npm:^29.6.3" - jest-util: "npm:^29.7.0" - micromatch: "npm:^4.0.4" - pirates: "npm:^4.0.4" - slash: "npm:^3.0.0" - write-file-atomic: "npm:^4.0.2" + "@babel/core": ^7.11.6 + "@jest/types": ^29.6.3 + "@jridgewell/trace-mapping": ^0.3.18 + babel-plugin-istanbul: ^6.1.1 + chalk: ^4.0.0 + convert-source-map: ^2.0.0 + fast-json-stable-stringify: ^2.1.0 + graceful-fs: ^4.2.9 + jest-haste-map: ^29.7.0 + jest-regex-util: ^29.6.3 + jest-util: ^29.7.0 + micromatch: ^4.0.4 + pirates: ^4.0.4 + slash: ^3.0.0 + write-file-atomic: ^4.0.2 checksum: 0f8ac9f413903b3cb6d240102db848f2a354f63971ab885833799a9964999dd51c388162106a807f810071f864302cdd8e3f0c241c29ce02d85a36f18f3f40ab languageName: node linkType: hard @@ -1700,12 +1707,12 @@ __metadata: version: 29.6.3 resolution: "@jest/types@npm:29.6.3" dependencies: - "@jest/schemas": "npm:^29.6.3" - "@types/istanbul-lib-coverage": "npm:^2.0.0" - "@types/istanbul-reports": "npm:^3.0.0" - "@types/node": "npm:*" - "@types/yargs": "npm:^17.0.8" - chalk: "npm:^4.0.0" + "@jest/schemas": ^29.6.3 + "@types/istanbul-lib-coverage": ^2.0.0 + "@types/istanbul-reports": ^3.0.0 + "@types/node": "*" + "@types/yargs": ^17.0.8 + chalk: ^4.0.0 checksum: a0bcf15dbb0eca6bdd8ce61a3fb055349d40268622a7670a3b2eb3c3dbafe9eb26af59938366d520b86907b9505b0f9b29b85cec11579a9e580694b87cd90fcc languageName: node linkType: hard @@ -1714,9 +1721,9 @@ __metadata: version: 0.3.5 resolution: "@jridgewell/gen-mapping@npm:0.3.5" dependencies: - "@jridgewell/set-array": "npm:^1.2.1" - "@jridgewell/sourcemap-codec": "npm:^1.4.10" - "@jridgewell/trace-mapping": "npm:^0.3.24" + "@jridgewell/set-array": ^1.2.1 + "@jridgewell/sourcemap-codec": ^1.4.10 + "@jridgewell/trace-mapping": ^0.3.24 checksum: ff7a1764ebd76a5e129c8890aa3e2f46045109dabde62b0b6c6a250152227647178ff2069ea234753a690d8f3c4ac8b5e7b267bbee272bffb7f3b0a370ab6e52 languageName: node linkType: hard @@ -1739,16 +1746,16 @@ __metadata: version: 0.3.6 resolution: "@jridgewell/source-map@npm:0.3.6" dependencies: - "@jridgewell/gen-mapping": "npm:^0.3.5" - "@jridgewell/trace-mapping": "npm:^0.3.25" + "@jridgewell/gen-mapping": ^0.3.5 + "@jridgewell/trace-mapping": ^0.3.25 checksum: c9dc7d899397df95e3c9ec287b93c0b56f8e4453cd20743e2b9c8e779b1949bc3cccf6c01bb302779e46560eb45f62ea38d19fedd25370d814734268450a9f30 languageName: node linkType: hard "@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14": - version: 1.4.15 - resolution: "@jridgewell/sourcemap-codec@npm:1.4.15" - checksum: b881c7e503db3fc7f3c1f35a1dd2655a188cc51a3612d76efc8a6eb74728bef5606e6758ee77423e564092b4a518aba569bbb21c9bac5ab7a35b0c6ae7e344c8 + version: 1.5.0 + resolution: "@jridgewell/sourcemap-codec@npm:1.5.0" + checksum: 05df4f2538b3b0f998ea4c1cd34574d0feba216fa5d4ccaef0187d12abf82eafe6021cec8b49f9bb4d90f2ba4582ccc581e72986a5fcf4176ae0cfeb04cf52ec languageName: node linkType: hard @@ -1756,168 +1763,168 @@ __metadata: version: 0.3.25 resolution: "@jridgewell/trace-mapping@npm:0.3.25" dependencies: - "@jridgewell/resolve-uri": "npm:^3.1.0" - "@jridgewell/sourcemap-codec": "npm:^1.4.14" + "@jridgewell/resolve-uri": ^3.1.0 + "@jridgewell/sourcemap-codec": ^1.4.14 checksum: 9d3c40d225e139987b50c48988f8717a54a8c994d8a948ee42e1412e08988761d0754d7d10b803061cc3aebf35f92a5dbbab493bd0e1a9ef9e89a2130e83ba34 languageName: node linkType: hard "@jupyter-widgets/base-manager@npm:^1.0.7": - version: 1.0.8 - resolution: "@jupyter-widgets/base-manager@npm:1.0.8" + version: 1.0.9 + resolution: "@jupyter-widgets/base-manager@npm:1.0.9" dependencies: - "@jupyter-widgets/base": "npm:^6.0.7" - "@jupyterlab/services": "npm:^6.0.0 || ^7.0.0" - "@lumino/coreutils": "npm:^1.11.1 || ^2" - base64-js: "npm:^1.2.1" - sanitize-html: "npm:^2.3" - checksum: bb9f705a1a25ddd1314116888377424868b17a0a081d036fa875d3c0cbf8d3944a1a46ae9399d55455a769031c270a1bc6d93f3f262b235bf4c6898376f9e799 + "@jupyter-widgets/base": ^6.0.8 + "@jupyterlab/services": ^6.0.0 || ^7.0.0 + "@lumino/coreutils": ^1.11.1 || ^2 + base64-js: ^1.2.1 + sanitize-html: ^2.3 + checksum: 6ec1d7dd16020dfd2798d9e53dca00e60951c72ec3545838a5a331de6226e7a2a260dae14ae487485024cdfdef59db9959868d29e49a742f9b3ff58e79d98b5c languageName: node linkType: hard -"@jupyter-widgets/base@npm:^1.1.10 || ^2 || ^3 || ^4 || ^5 || ^6, @jupyter-widgets/base@npm:^6.0.7": - version: 6.0.7 - resolution: "@jupyter-widgets/base@npm:6.0.7" +"@jupyter-widgets/base@npm:^1.1.10 || ^2 || ^3 || ^4 || ^5 || ^6, @jupyter-widgets/base@npm:^6.0.8": + version: 6.0.8 + resolution: "@jupyter-widgets/base@npm:6.0.8" dependencies: - "@jupyterlab/services": "npm:^6.0.0 || ^7.0.0" - "@lumino/coreutils": "npm:^1.11.1 || ^2.1" - "@lumino/messaging": "npm:^1.10.1 || ^2.1" - "@lumino/widgets": "npm:^1.30.0 || ^2.1" - "@types/backbone": "npm:1.4.14" - "@types/lodash": "npm:^4.14.134" - backbone: "npm:1.4.0" - jquery: "npm:^3.1.1" - lodash: "npm:^4.17.4" - checksum: d4f385a8412b16d696db618eec771011000326f8a5645f6c3ca61ed6fa181aed6e16780189f792cb342fa80473092501299b418460a8be3a2eba5237c5a33f1d + "@jupyterlab/services": ^6.0.0 || ^7.0.0 + "@lumino/coreutils": ^1.11.1 || ^2.1 + "@lumino/messaging": ^1.10.1 || ^2.1 + "@lumino/widgets": ^1.30.0 || ^2.1 + "@types/backbone": 1.4.14 + "@types/lodash": ^4.14.134 + backbone: 1.4.0 + jquery: ^3.1.1 + lodash: ^4.17.4 + checksum: fcc7affd49a0b227725082813eac6d8e6ca29f6a0446bd7914394c041382d881263d69dacf3a9463cdb0e207458401c65aaf1f50c708ce7378c701b4a18d10b8 languageName: node linkType: hard "@jupyter/ydoc@npm:^2.0.1": - version: 2.0.1 - resolution: "@jupyter/ydoc@npm:2.0.1" + version: 2.1.1 + resolution: "@jupyter/ydoc@npm:2.1.1" dependencies: - "@jupyterlab/nbformat": "npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0" - "@lumino/coreutils": "npm:^1.11.0 || ^2.0.0" - "@lumino/disposable": "npm:^1.10.0 || ^2.0.0" - "@lumino/signaling": "npm:^1.10.0 || ^2.0.0" - y-protocols: "npm:^1.0.5" - yjs: "npm:^13.5.40" - checksum: f5f29e1ff3327ebc1cf326f53634e03c4c7bf7733d235087fe26975c16eebd404f23c2f3ba88b6e04b1927846be7162b09b8b8719a4b29e51d0299c745018cbb + "@jupyterlab/nbformat": ^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0 + "@lumino/coreutils": ^1.11.0 || ^2.0.0 + "@lumino/disposable": ^1.10.0 || ^2.0.0 + "@lumino/signaling": ^1.10.0 || ^2.0.0 + y-protocols: ^1.0.5 + yjs: ^13.5.40 + checksum: f10268d4d990f454279e3908a172755ed5885fa81bb70c31bdf66923598b283d26491741bece137d1c348619861e9b7f8354296773fe5352b1915e69101a9fb0 languageName: node linkType: hard "@jupyterlab/builder@npm:^4.0.11": - version: 4.2.0 - resolution: "@jupyterlab/builder@npm:4.2.0" - dependencies: - "@lumino/algorithm": "npm:^2.0.1" - "@lumino/application": "npm:^2.3.1" - "@lumino/commands": "npm:^2.3.0" - "@lumino/coreutils": "npm:^2.1.2" - "@lumino/disposable": "npm:^2.1.2" - "@lumino/domutils": "npm:^2.0.1" - "@lumino/dragdrop": "npm:^2.1.4" - "@lumino/messaging": "npm:^2.0.1" - "@lumino/properties": "npm:^2.0.1" - "@lumino/signaling": "npm:^2.1.2" - "@lumino/virtualdom": "npm:^2.0.1" - "@lumino/widgets": "npm:^2.3.2" - ajv: "npm:^8.12.0" - commander: "npm:^9.4.1" - css-loader: "npm:^6.7.1" - duplicate-package-checker-webpack-plugin: "npm:^3.0.0" - fs-extra: "npm:^10.1.0" - glob: "npm:~7.1.6" - license-webpack-plugin: "npm:^2.3.14" - mini-css-extract-plugin: "npm:^2.7.0" - mini-svg-data-uri: "npm:^1.4.4" - path-browserify: "npm:^1.0.0" - process: "npm:^0.11.10" - source-map-loader: "npm:~1.0.2" - style-loader: "npm:~3.3.1" - supports-color: "npm:^7.2.0" - terser-webpack-plugin: "npm:^5.3.7" - webpack: "npm:^5.76.1" - webpack-cli: "npm:^5.0.1" - webpack-merge: "npm:^5.8.0" - worker-loader: "npm:^3.0.2" + version: 4.2.3 + resolution: "@jupyterlab/builder@npm:4.2.3" + dependencies: + "@lumino/algorithm": ^2.0.1 + "@lumino/application": ^2.3.1 + "@lumino/commands": ^2.3.0 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/domutils": ^2.0.1 + "@lumino/dragdrop": ^2.1.4 + "@lumino/messaging": ^2.0.1 + "@lumino/properties": ^2.0.1 + "@lumino/signaling": ^2.1.2 + "@lumino/virtualdom": ^2.0.1 + "@lumino/widgets": ^2.3.2 + ajv: ^8.12.0 + commander: ^9.4.1 + css-loader: ^6.7.1 + duplicate-package-checker-webpack-plugin: ^3.0.0 + fs-extra: ^10.1.0 + glob: ~7.1.6 + license-webpack-plugin: ^2.3.14 + mini-css-extract-plugin: ^2.7.0 + mini-svg-data-uri: ^1.4.4 + path-browserify: ^1.0.0 + process: ^0.11.10 + source-map-loader: ~1.0.2 + style-loader: ~3.3.1 + supports-color: ^7.2.0 + terser-webpack-plugin: ^5.3.7 + webpack: ^5.76.1 + webpack-cli: ^5.0.1 + webpack-merge: ^5.8.0 + worker-loader: ^3.0.2 bin: build-labextension: lib/build-labextension.js - checksum: 9b8be036d7ad63981081f10c5aae5e33f3e4358e68774a3497ffb28dab199a2eb98994653420f46bf169af8200a57c6a9ab47529cd634c70a49d27504afbed91 + checksum: 6bc0d3a7404cecf53c4378a051e96e51b777e2017c2890ae9331f51e9433ad643c6627bf61d4a0710c1b2cb0d4839bef79a02656b9cef04bf0ec1e913bf3a890 languageName: node linkType: hard -"@jupyterlab/coreutils@npm:^6.2.0": - version: 6.2.0 - resolution: "@jupyterlab/coreutils@npm:6.2.0" +"@jupyterlab/coreutils@npm:^6.2.3": + version: 6.2.3 + resolution: "@jupyterlab/coreutils@npm:6.2.3" dependencies: - "@lumino/coreutils": "npm:^2.1.2" - "@lumino/disposable": "npm:^2.1.2" - "@lumino/signaling": "npm:^2.1.2" - minimist: "npm:~1.2.0" - path-browserify: "npm:^1.0.0" - url-parse: "npm:~1.5.4" - checksum: 1975f19f567b63484055b0d1d10757b2bf66274814083e50702bb6017af22341cc3f5924d0ec7da408feacd652120b476aaaf50286a5401f798f257e899aed91 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/signaling": ^2.1.2 + minimist: ~1.2.0 + path-browserify: ^1.0.0 + url-parse: ~1.5.4 + checksum: 3c3ac6297c92c811839f932c5ba7b71ad9507b16591e90827b8c8b7986cc597cecc0a3c5f80652b6ae2a2b75f194f8944a8b99f5f1108cac89daa201b2bfc881 languageName: node linkType: hard -"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@npm:^4.2.0": - version: 4.2.0 - resolution: "@jupyterlab/nbformat@npm:4.2.0" +"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@npm:^4.2.3": + version: 4.2.3 + resolution: "@jupyterlab/nbformat@npm:4.2.3" dependencies: - "@lumino/coreutils": "npm:^2.1.2" - checksum: adecadcb63de48f09aeb54eebfed8b77ab322c478fd903001e09780a01e7cf68f93716a2598631d4426d8ad9d3dc6349e8892db12575f74c8daea33f63b9c111 + "@lumino/coreutils": ^2.1.2 + checksum: 890844bfe8966023d8b32ba286be159712509005e7c88eb71ba87f9ab6454cc8cbb2e5922e14ba524a147bb2adff2c82563f9c5e7e2331c6dcdef0fbe18e4f97 languageName: node linkType: hard "@jupyterlab/services@npm:^6.0.0 || ^7.0.0": - version: 7.2.0 - resolution: "@jupyterlab/services@npm:7.2.0" + version: 7.2.3 + resolution: "@jupyterlab/services@npm:7.2.3" dependencies: - "@jupyter/ydoc": "npm:^2.0.1" - "@jupyterlab/coreutils": "npm:^6.2.0" - "@jupyterlab/nbformat": "npm:^4.2.0" - "@jupyterlab/settingregistry": "npm:^4.2.0" - "@jupyterlab/statedb": "npm:^4.2.0" - "@lumino/coreutils": "npm:^2.1.2" - "@lumino/disposable": "npm:^2.1.2" - "@lumino/polling": "npm:^2.1.2" - "@lumino/properties": "npm:^2.0.1" - "@lumino/signaling": "npm:^2.1.2" - ws: "npm:^8.11.0" - checksum: edc93389913d792841b615cd0a317e16c77621cd5cb35e67c40f7a58bcf0e31c77718ae7abcf643621ba86ce78c795d6008a9413d84ecad2b42e39bd52db1447 + "@jupyter/ydoc": ^2.0.1 + "@jupyterlab/coreutils": ^6.2.3 + "@jupyterlab/nbformat": ^4.2.3 + "@jupyterlab/settingregistry": ^4.2.3 + "@jupyterlab/statedb": ^4.2.3 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/polling": ^2.1.2 + "@lumino/properties": ^2.0.1 + "@lumino/signaling": ^2.1.2 + ws: ^8.11.0 + checksum: 61d7eb84807ddeeaa5105bd127fb69ebc3ff939436938c1c34fdae616c3dbb5254c09d0a3fa825c76348c43de5834d14de438d4548f122e97522c4bb5172ce8e languageName: node linkType: hard -"@jupyterlab/settingregistry@npm:^4.2.0": - version: 4.2.0 - resolution: "@jupyterlab/settingregistry@npm:4.2.0" - dependencies: - "@jupyterlab/nbformat": "npm:^4.2.0" - "@jupyterlab/statedb": "npm:^4.2.0" - "@lumino/commands": "npm:^2.3.0" - "@lumino/coreutils": "npm:^2.1.2" - "@lumino/disposable": "npm:^2.1.2" - "@lumino/signaling": "npm:^2.1.2" - "@rjsf/utils": "npm:^5.13.4" - ajv: "npm:^8.12.0" - json5: "npm:^2.2.3" +"@jupyterlab/settingregistry@npm:^4.2.3": + version: 4.2.3 + resolution: "@jupyterlab/settingregistry@npm:4.2.3" + dependencies: + "@jupyterlab/nbformat": ^4.2.3 + "@jupyterlab/statedb": ^4.2.3 + "@lumino/commands": ^2.3.0 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/signaling": ^2.1.2 + "@rjsf/utils": ^5.13.4 + ajv: ^8.12.0 + json5: ^2.2.3 peerDependencies: react: ">=16" - checksum: fc60490e9e977e38b14b27a9e3896b47a28930a76a84888dd86180105b9ab6d1e68544f1184bdba72b4c5aa003cb13f10c8e5ca60685827fe6f893302483a109 + checksum: 72eff0c5af9b6e9c3be36aea7e6b435f4bc52e770284f1c2d49061577d37bbec697afc7fe7673a22ab15e35ce4e88e3a4da485f432f42b1b4ec35bd8dfba4b3c languageName: node linkType: hard -"@jupyterlab/statedb@npm:^4.2.0": - version: 4.2.0 - resolution: "@jupyterlab/statedb@npm:4.2.0" +"@jupyterlab/statedb@npm:^4.2.3": + version: 4.2.3 + resolution: "@jupyterlab/statedb@npm:4.2.3" dependencies: - "@lumino/commands": "npm:^2.3.0" - "@lumino/coreutils": "npm:^2.1.2" - "@lumino/disposable": "npm:^2.1.2" - "@lumino/properties": "npm:^2.0.1" - "@lumino/signaling": "npm:^2.1.2" - checksum: 69620478aa7bf452d7440b9433b6411edef537cd7d9f72f87f70bd6fc0c8fc50003d02ab8d9d4b0746383f98cb7035b093ce5e596e6560e3c35c5a0fe434dce4 + "@lumino/commands": ^2.3.0 + "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 + "@lumino/properties": ^2.0.1 + "@lumino/signaling": ^2.1.2 + checksum: 6969e54fa8370a918a4d78391116b83bd3c5afb25e1f66d7369ac2d24659b89a32bbb23500d81b50744698c504a47bd8bc355b16e4ec6ea877b74ec512aab3f8 languageName: node linkType: hard @@ -1928,21 +1935,21 @@ __metadata: languageName: node linkType: hard -"@lumino/algorithm@npm:^2.0.1": - version: 2.0.1 - resolution: "@lumino/algorithm@npm:2.0.1" - checksum: cbf7fcf6ee6b785ea502cdfddc53d61f9d353dcb9659343511d5cd4b4030be2ff2ca4c08daec42f84417ab0318a3d9972a17319fa5231693e109ab112dcf8000 +"@lumino/algorithm@npm:^2.0.1, @lumino/algorithm@npm:^2.0.2": + version: 2.0.2 + resolution: "@lumino/algorithm@npm:2.0.2" + checksum: 34b25684b845f1bdbf78ca45ebd99a97b67b2992440c9643aafe5fc5a99fae1ddafa9e5890b246b233dc3a12d9f66aa84afe4a2aac44cf31071348ed217740db languageName: node linkType: hard "@lumino/application@npm:^2.3.0, @lumino/application@npm:^2.3.1": - version: 2.3.1 - resolution: "@lumino/application@npm:2.3.1" + version: 2.4.0 + resolution: "@lumino/application@npm:2.4.0" dependencies: - "@lumino/commands": "npm:^2.3.0" - "@lumino/coreutils": "npm:^2.1.2" - "@lumino/widgets": "npm:^2.3.2" - checksum: c112789d99baf62e5c2cee98834bc3efb5027bbca1aac81f10ea8855c0cd2538ec0a7c56c3f5dd42dce244e6892ef5bf8ef356f97e1cd4c161b99eb2068c195c + "@lumino/commands": ^2.3.1 + "@lumino/coreutils": ^2.2.0 + "@lumino/widgets": ^2.4.0 + checksum: cac5233f94a07412fd3f2fe8e6f9b446f96bf076c4a63c3c05098103d88da68ab55480d0c10cda0b3e9ea8f9cd1d6c8acc817eb3348f3dc275be7271450da976 languageName: node linkType: hard @@ -1950,72 +1957,74 @@ __metadata: version: 1.9.3 resolution: "@lumino/collections@npm:1.9.3" dependencies: - "@lumino/algorithm": "npm:^1.9.2" + "@lumino/algorithm": ^1.9.2 checksum: 1c87a12743eddd6f6b593e47945a5645e2f99ad61c5192499b0745e48ee9aff263c7145541e77dfeea4c9f50bdd017fddfa47bfc60e718de4f28533ce45bf8c3 languageName: node linkType: hard -"@lumino/collections@npm:^2.0.1": - version: 2.0.1 - resolution: "@lumino/collections@npm:2.0.1" +"@lumino/collections@npm:^2.0.2": + version: 2.0.2 + resolution: "@lumino/collections@npm:2.0.2" dependencies: - "@lumino/algorithm": "npm:^2.0.1" - checksum: 8a29b7973a388a33c5beda0819dcd2dc2aad51a8406dcfd4581b055a9f77a39dc5800f7a8b4ae3c0bb97ae7b56a7a869e2560ffb7a920a28e93b477ba05907d6 + "@lumino/algorithm": ^2.0.2 + checksum: e8bb2068a3741940e0dd396fa729c3c9d12458b41b7c2a9d171c5c034e69fb5834116a824094a8aa4182397e13abace06025ed5032a755ea85b976eae74ee9a9 languageName: node linkType: hard -"@lumino/commands@npm:^2.3.0": - version: 2.3.0 - resolution: "@lumino/commands@npm:2.3.0" +"@lumino/commands@npm:^2.3.0, @lumino/commands@npm:^2.3.1": + version: 2.3.1 + resolution: "@lumino/commands@npm:2.3.1" dependencies: - "@lumino/algorithm": "npm:^2.0.1" - "@lumino/coreutils": "npm:^2.1.2" - "@lumino/disposable": "npm:^2.1.2" - "@lumino/domutils": "npm:^2.0.1" - "@lumino/keyboard": "npm:^2.0.1" - "@lumino/signaling": "npm:^2.1.2" - "@lumino/virtualdom": "npm:^2.0.1" - checksum: a9b83bbfcc0421ff501e818dd234c65db438a8abb450628db0dea9ee05e8077d10b2275e7e2289f6df9c20dc26d2af458b1db88ccf43ec69f185eb207dbad419 + "@lumino/algorithm": ^2.0.2 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/domutils": ^2.0.2 + "@lumino/keyboard": ^2.0.2 + "@lumino/signaling": ^2.1.3 + "@lumino/virtualdom": ^2.0.2 + checksum: 83bc6d66de37e58582b00f70ce66e797c9fcf84e36041c6881631ed0d281305e2a49927f5b2fe6c5c965733f3cd6fb4a233c7b7967fc050497024a941659bd65 languageName: node linkType: hard -"@lumino/coreutils@npm:^1.11.0 || ^2.0.0, @lumino/coreutils@npm:^1.11.1 || ^2, @lumino/coreutils@npm:^1.11.1 || ^2.1, @lumino/coreutils@npm:^2.1.2": - version: 2.1.2 - resolution: "@lumino/coreutils@npm:2.1.2" - checksum: 7865317ac0676b448d108eb57ab5d8b2a17c101995c0f7a7106662d9fe6c859570104525f83ee3cda12ae2e326803372206d6f4c1f415a5b59e4158a7b81066f +"@lumino/coreutils@npm:^1.11.0 || ^2.0.0, @lumino/coreutils@npm:^1.11.1 || ^2, @lumino/coreutils@npm:^1.11.1 || ^2.1, @lumino/coreutils@npm:^2.1.2, @lumino/coreutils@npm:^2.2.0": + version: 2.2.0 + resolution: "@lumino/coreutils@npm:2.2.0" + dependencies: + "@lumino/algorithm": ^2.0.2 + checksum: 345fcd5d7493d745831dd944edfbd8eda06cc59a117e71023fc97ce53badd697be2bd51671f071f5ff0064f75f104575d9695f116a07517bafbedd38e5c7a785 languageName: node linkType: hard -"@lumino/disposable@npm:^1.10.0 || ^2.0.0, @lumino/disposable@npm:^2.1.2": - version: 2.1.2 - resolution: "@lumino/disposable@npm:2.1.2" +"@lumino/disposable@npm:^1.10.0 || ^2.0.0, @lumino/disposable@npm:^2.1.2, @lumino/disposable@npm:^2.1.3": + version: 2.1.3 + resolution: "@lumino/disposable@npm:2.1.3" dependencies: - "@lumino/signaling": "npm:^2.1.2" - checksum: ac2fb2bf18d0b2939fda454f3db248a0ff6e8a77b401e586d1caa9293b3318f808b93a117c9c3ac27cd17aab545aea83b49108d099b9b2f5503ae2a012fbc6e2 + "@lumino/signaling": ^2.1.3 + checksum: b9a346fa2752b3cd1b053cb637ee173501d33082a73423429070e8acc508b034ea0babdae0549b923cbdd287ee1fc7f6159f0539c9fff7574393a214eef07c57 languageName: node linkType: hard -"@lumino/domutils@npm:^2.0.1": - version: 2.0.1 - resolution: "@lumino/domutils@npm:2.0.1" - checksum: 61fa0ab226869dfbb763fc426790cf5a43b7d6f4cea1364c6dd56d61c44bff05eea188d33ff847449608ef58ed343161bee15c19b96f35410e4ee35815dc611a +"@lumino/domutils@npm:^2.0.1, @lumino/domutils@npm:^2.0.2": + version: 2.0.2 + resolution: "@lumino/domutils@npm:2.0.2" + checksum: 037b8d0b62af43887fd7edd506fa551e2af104a4b46d62e6fef256e16754dba40d351513beb5083834d468b2c7806aae0fe205fd6aac8ef24759451ee998bbd9 languageName: node linkType: hard -"@lumino/dragdrop@npm:^2.1.4": - version: 2.1.4 - resolution: "@lumino/dragdrop@npm:2.1.4" +"@lumino/dragdrop@npm:^2.1.4, @lumino/dragdrop@npm:^2.1.5": + version: 2.1.5 + resolution: "@lumino/dragdrop@npm:2.1.5" dependencies: - "@lumino/coreutils": "npm:^2.1.2" - "@lumino/disposable": "npm:^2.1.2" - checksum: 43d82484b13b38b612e7dfb424a840ed6a38d0db778af10655c4ba235c67b5b12db1683929b35a36ab2845f77466066dfd1ee25c1c273e8e175677eba9dc560d + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + checksum: 48e34bea73186dcde4565fa68cd25067b7f5fe910813d28da9ab3c5392bfaa0b26aab1290635dc953d85bbb139da7ac1ffc040a5d5777d58fd087975dd4b5ef7 languageName: node linkType: hard -"@lumino/keyboard@npm:^2.0.1": - version: 2.0.1 - resolution: "@lumino/keyboard@npm:2.0.1" - checksum: cf33f13427a418efd7cc91061233321e860d5404f3d86397781028309bef86c8ad2d88276ffe335c1db0fe619bd9d1e60641c81f881696957a58703ee4652c3e +"@lumino/keyboard@npm:^2.0.2": + version: 2.0.2 + resolution: "@lumino/keyboard@npm:2.0.2" + checksum: 198e8c17825c9a831fa0770f58a71574b936acb0f0bbbe7f8feb73d89686dda7ff41fcb02d12b401f5d462b45fe0bba24f7f38befb7cefe0826576559f0bee6d languageName: node linkType: hard @@ -2023,75 +2032,75 @@ __metadata: version: 1.10.3 resolution: "@lumino/messaging@npm:1.10.3" dependencies: - "@lumino/algorithm": "npm:^1.9.2" - "@lumino/collections": "npm:^1.9.3" + "@lumino/algorithm": ^1.9.2 + "@lumino/collections": ^1.9.3 checksum: 1131e80379fa9b8a9b5d3418c90e25d4be48e2c92ec711518190772f9e8845a695bef45daddd06a129168cf6f158c8ad80ae86cb245f566e9195bbd9a0843b7a languageName: node linkType: hard -"@lumino/messaging@npm:^2.0.1": - version: 2.0.1 - resolution: "@lumino/messaging@npm:2.0.1" +"@lumino/messaging@npm:^2.0.1, @lumino/messaging@npm:^2.0.2": + version: 2.0.2 + resolution: "@lumino/messaging@npm:2.0.2" dependencies: - "@lumino/algorithm": "npm:^2.0.1" - "@lumino/collections": "npm:^2.0.1" - checksum: 964c4651c374b17452b4252b7d71500b32d2ecd87c192fc5bcf5d3bd1070661d78d07edcac8eca7d1d6fd50aa25992505485e1296d6dd995691b8e349b652045 + "@lumino/algorithm": ^2.0.2 + "@lumino/collections": ^2.0.2 + checksum: 66abd8c473026123589dc22f2ce8f85da10e0b1a05c05ed9b2011035721da5f751cc7ef63b628877f446a78a4287e26ad1450efbeaf0c2e03b1d08be9abaca4d languageName: node linkType: hard "@lumino/polling@npm:^2.1.2": - version: 2.1.2 - resolution: "@lumino/polling@npm:2.1.2" + version: 2.1.3 + resolution: "@lumino/polling@npm:2.1.3" dependencies: - "@lumino/coreutils": "npm:^2.1.2" - "@lumino/disposable": "npm:^2.1.2" - "@lumino/signaling": "npm:^2.1.2" - checksum: fa9b401e6dbeb8f31d7e3ba485e8ef1e0c92b3f2da086239c0ed49931026f5d3528709193c93e031e35ac624fb4bbbfcdcbaa0e25eb797f36e2952e5cd91e9e3 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/signaling": ^2.1.3 + checksum: 2c94dbc2339dd06b3b89a3a690d23576ce095f92bf1f614557dcaeb1c1a8a707b2a18d78c03e5fd7376a43e3f393cc4fec42a65580ae4b67c6630ea86cecbac6 languageName: node linkType: hard -"@lumino/properties@npm:^2.0.1": - version: 2.0.1 - resolution: "@lumino/properties@npm:2.0.1" - checksum: c50173a935148cc4148fdaea119df1d323ee004ae16ab666800388d27e9730345629662d85f25591683329b39f0cdae60ee8c94e8943b4d0ef7d7370a38128d6 +"@lumino/properties@npm:^2.0.1, @lumino/properties@npm:^2.0.2": + version: 2.0.2 + resolution: "@lumino/properties@npm:2.0.2" + checksum: cbe802bd49ced7e13e50b1d89b82e0f03fb44a590c704e6b9343226498b21d8abfe119b024209e79876b4fc0938dbf85e964c6c4cd5bbdd4d7ba41ce0fb69f3f languageName: node linkType: hard -"@lumino/signaling@npm:^1.10.0 || ^2.0.0, @lumino/signaling@npm:^2.1.2": - version: 2.1.2 - resolution: "@lumino/signaling@npm:2.1.2" +"@lumino/signaling@npm:^1.10.0 || ^2.0.0, @lumino/signaling@npm:^2.1.2, @lumino/signaling@npm:^2.1.3": + version: 2.1.3 + resolution: "@lumino/signaling@npm:2.1.3" dependencies: - "@lumino/algorithm": "npm:^2.0.1" - "@lumino/coreutils": "npm:^2.1.2" - checksum: ad7d7153db57980da899c43e412e6130316ef30b231a70250e7af49058db16cadb018c1417a2ea8083d83c48623cfe6b705fa82bf10216b1a8949aed9f4aca4e + "@lumino/algorithm": ^2.0.2 + "@lumino/coreutils": ^2.2.0 + checksum: ce59383bd75fe30df5800e0442dbc4193cc6778e2530b9be0f484d159f1d8668be5c6ee92cee9df36d5a0c3dbd9126d0479a82581dee1df889d5c9f922d3328d languageName: node linkType: hard -"@lumino/virtualdom@npm:^2.0.1": - version: 2.0.1 - resolution: "@lumino/virtualdom@npm:2.0.1" +"@lumino/virtualdom@npm:^2.0.1, @lumino/virtualdom@npm:^2.0.2": + version: 2.0.2 + resolution: "@lumino/virtualdom@npm:2.0.2" dependencies: - "@lumino/algorithm": "npm:^2.0.1" - checksum: cf59b6f15b430e13e9e657b7a0619b9056cd9ea7b2a87f407391d071c501b77403c302b6a66dca510382045e75b2e3fe551630bb391f1c6b33678057d4bec164 + "@lumino/algorithm": ^2.0.2 + checksum: 0e1220d5b3b2441e7668f3542a6341e015bdbea0c8bd6d4be962009386c034336540732596d5dedcd54ca57fbde61c2942549129a3e1b0fccb1aa143685fcd15 languageName: node linkType: hard -"@lumino/widgets@npm:^1.30.0 || ^2.1, @lumino/widgets@npm:^2.3.1, @lumino/widgets@npm:^2.3.2": - version: 2.3.2 - resolution: "@lumino/widgets@npm:2.3.2" +"@lumino/widgets@npm:^1.30.0 || ^2.1, @lumino/widgets@npm:^2.3.1, @lumino/widgets@npm:^2.3.2, @lumino/widgets@npm:^2.4.0": + version: 2.4.0 + resolution: "@lumino/widgets@npm:2.4.0" dependencies: - "@lumino/algorithm": "npm:^2.0.1" - "@lumino/commands": "npm:^2.3.0" - "@lumino/coreutils": "npm:^2.1.2" - "@lumino/disposable": "npm:^2.1.2" - "@lumino/domutils": "npm:^2.0.1" - "@lumino/dragdrop": "npm:^2.1.4" - "@lumino/keyboard": "npm:^2.0.1" - "@lumino/messaging": "npm:^2.0.1" - "@lumino/properties": "npm:^2.0.1" - "@lumino/signaling": "npm:^2.1.2" - "@lumino/virtualdom": "npm:^2.0.1" - checksum: 954fe066b0826cf00c019731bb3f70e635c63be4a0ce27f7573dbe6bd59e2154f511594b50e8f58f44877cf514084128c1e894ecbbbfd6e20d937e5cfb69ca8b + "@lumino/algorithm": ^2.0.2 + "@lumino/commands": ^2.3.1 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/domutils": ^2.0.2 + "@lumino/dragdrop": ^2.1.5 + "@lumino/keyboard": ^2.0.2 + "@lumino/messaging": ^2.0.2 + "@lumino/properties": ^2.0.2 + "@lumino/signaling": ^2.1.3 + "@lumino/virtualdom": ^2.0.2 + checksum: 0a57ce4228b143c52ae97c7057ab66e1b4cbe902075c6356924fcc589d3f1aae7611bb028d476ce8d72ef7546fd303e9ec898ebb2c3d34fe1e94ca27a7ab7e00 languageName: node linkType: hard @@ -2099,8 +2108,8 @@ __metadata: version: 2.1.5 resolution: "@nodelib/fs.scandir@npm:2.1.5" dependencies: - "@nodelib/fs.stat": "npm:2.0.5" - run-parallel: "npm:^1.1.9" + "@nodelib/fs.stat": 2.0.5 + run-parallel: ^1.1.9 checksum: a970d595bd23c66c880e0ef1817791432dbb7acbb8d44b7e7d0e7a22f4521260d4a83f7f9fd61d44fda4610105577f8f58a60718105fb38352baed612fd79e59 languageName: node linkType: hard @@ -2116,8 +2125,8 @@ __metadata: version: 1.2.8 resolution: "@nodelib/fs.walk@npm:1.2.8" dependencies: - "@nodelib/fs.scandir": "npm:2.1.5" - fastq: "npm:^1.6.0" + "@nodelib/fs.scandir": 2.1.5 + fastq: ^1.6.0 checksum: 190c643f156d8f8f277bf2a6078af1ffde1fd43f498f187c2db24d35b4b4b5785c02c7dc52e356497b9a1b65b13edc996de08de0b961c32844364da02986dc53 languageName: node linkType: hard @@ -2126,11 +2135,11 @@ __metadata: version: 2.2.2 resolution: "@npmcli/agent@npm:2.2.2" dependencies: - agent-base: "npm:^7.1.0" - http-proxy-agent: "npm:^7.0.0" - https-proxy-agent: "npm:^7.0.1" - lru-cache: "npm:^10.0.1" - socks-proxy-agent: "npm:^8.0.3" + agent-base: ^7.1.0 + http-proxy-agent: ^7.0.0 + https-proxy-agent: ^7.0.1 + lru-cache: ^10.0.1 + socks-proxy-agent: ^8.0.3 checksum: 67de7b88cc627a79743c88bab35e023e23daf13831a8aa4e15f998b92f5507b644d8ffc3788afc8e64423c612e0785a6a92b74782ce368f49a6746084b50d874 languageName: node linkType: hard @@ -2139,7 +2148,7 @@ __metadata: version: 3.1.1 resolution: "@npmcli/fs@npm:3.1.1" dependencies: - semver: "npm:^7.3.5" + semver: ^7.3.5 checksum: d960cab4b93adcb31ce223bfb75c5714edbd55747342efb67dcc2f25e023d930a7af6ece3e75f2f459b6f38fc14d031c766f116cd124fdc937fd33112579e820 languageName: node linkType: hard @@ -2166,17 +2175,17 @@ __metadata: linkType: hard "@rjsf/utils@npm:^5.13.4": - version: 5.18.3 - resolution: "@rjsf/utils@npm:5.18.3" + version: 5.19.3 + resolution: "@rjsf/utils@npm:5.19.3" dependencies: - json-schema-merge-allof: "npm:^0.8.1" - jsonpointer: "npm:^5.0.1" - lodash: "npm:^4.17.21" - lodash-es: "npm:^4.17.21" - react-is: "npm:^18.2.0" + json-schema-merge-allof: ^0.8.1 + jsonpointer: ^5.0.1 + lodash: ^4.17.21 + lodash-es: ^4.17.21 + react-is: ^18.2.0 peerDependencies: react: ^16.14.0 || >=17 - checksum: 36f6574836e8ccad27b8215f940cb86b1a02939d325e0223a8d8e70b9ae65245e6649dd4835a40e628153f26d961a5cfbdd6c0bdd7b70a80f7cb1911357f78ff + checksum: 498fa72540f6bc12a65cda98a9dc4ebf22ef393b8f97069a82faee0c6317529145a40df713a43e40809560736c47b1e507c7e611d2985c7fe7f2c38fedb489fe languageName: node linkType: hard @@ -2191,7 +2200,7 @@ __metadata: version: 3.0.1 resolution: "@sinonjs/commons@npm:3.0.1" dependencies: - type-detect: "npm:4.0.8" + type-detect: 4.0.8 checksum: a7c3e7cc612352f4004873747d9d8b2d4d90b13a6d483f685598c945a70e734e255f1ca5dc49702515533c403b32725defff148177453b3f3915bcb60e9d4601 languageName: node linkType: hard @@ -2200,7 +2209,7 @@ __metadata: version: 10.3.0 resolution: "@sinonjs/fake-timers@npm:10.3.0" dependencies: - "@sinonjs/commons": "npm:^3.0.0" + "@sinonjs/commons": ^3.0.0 checksum: 614d30cb4d5201550c940945d44c9e0b6d64a888ff2cd5b357f95ad6721070d6b8839cd10e15b76bf5e14af0bcc1d8f9ec00d49a46318f1f669a4bec1d7f3148 languageName: node linkType: hard @@ -2209,11 +2218,11 @@ __metadata: version: 7.20.5 resolution: "@types/babel__core@npm:7.20.5" dependencies: - "@babel/parser": "npm:^7.20.7" - "@babel/types": "npm:^7.20.7" - "@types/babel__generator": "npm:*" - "@types/babel__template": "npm:*" - "@types/babel__traverse": "npm:*" + "@babel/parser": ^7.20.7 + "@babel/types": ^7.20.7 + "@types/babel__generator": "*" + "@types/babel__template": "*" + "@types/babel__traverse": "*" checksum: a3226f7930b635ee7a5e72c8d51a357e799d19cbf9d445710fa39ab13804f79ab1a54b72ea7d8e504659c7dfc50675db974b526142c754398d7413aa4bc30845 languageName: node linkType: hard @@ -2222,7 +2231,7 @@ __metadata: version: 7.6.8 resolution: "@types/babel__generator@npm:7.6.8" dependencies: - "@babel/types": "npm:^7.0.0" + "@babel/types": ^7.0.0 checksum: 5b332ea336a2efffbdeedb92b6781949b73498606ddd4205462f7d96dafd45ff3618770b41de04c4881e333dd84388bfb8afbdf6f2764cbd98be550d85c6bb48 languageName: node linkType: hard @@ -2231,18 +2240,18 @@ __metadata: version: 7.4.4 resolution: "@types/babel__template@npm:7.4.4" dependencies: - "@babel/parser": "npm:^7.1.0" - "@babel/types": "npm:^7.0.0" + "@babel/parser": ^7.1.0 + "@babel/types": ^7.0.0 checksum: d7a02d2a9b67e822694d8e6a7ddb8f2b71a1d6962dfd266554d2513eefbb205b33ca71a0d163b1caea3981ccf849211f9964d8bd0727124d18ace45aa6c9ae29 languageName: node linkType: hard "@types/babel__traverse@npm:*, @types/babel__traverse@npm:^7.0.6": - version: 7.20.5 - resolution: "@types/babel__traverse@npm:7.20.5" + version: 7.20.6 + resolution: "@types/babel__traverse@npm:7.20.6" dependencies: - "@babel/types": "npm:^7.20.7" - checksum: 608e0ab4fc31cd47011d98942e6241b34d461608c0c0e153377c5fd822c436c475f1ded76a56bfa76a1adf8d9266b727bbf9bfac90c4cb152c97f30dadc5b7e8 + "@babel/types": ^7.20.7 + checksum: 2bdc65eb62232c2d5c1086adeb0c31e7980e6fd7e50a3483b4a724a1a1029c84d9cb59749cf8de612f9afa2bc14c85b8f50e64e21f8a4398fa77eb9059a4283c languageName: node linkType: hard @@ -2250,8 +2259,8 @@ __metadata: version: 1.4.14 resolution: "@types/backbone@npm:1.4.14" dependencies: - "@types/jquery": "npm:*" - "@types/underscore": "npm:*" + "@types/jquery": "*" + "@types/underscore": "*" checksum: 4f44bfb71d75332b5de610be7687f4ae523ad4ef02da844a828403b534b6a94a6288b32cab64371d0ad526e35cfed511652ac53af22d0b9caaac3f4cfb4375dd languageName: node linkType: hard @@ -2260,8 +2269,8 @@ __metadata: version: 3.7.7 resolution: "@types/eslint-scope@npm:3.7.7" dependencies: - "@types/eslint": "npm:*" - "@types/estree": "npm:*" + "@types/eslint": "*" + "@types/estree": "*" checksum: e2889a124aaab0b89af1bab5959847c5bec09809209255de0e63b9f54c629a94781daa04adb66bffcdd742f5e25a17614fb933965093c0eea64aacda4309380e languageName: node linkType: hard @@ -2270,8 +2279,8 @@ __metadata: version: 8.56.10 resolution: "@types/eslint@npm:8.56.10" dependencies: - "@types/estree": "npm:*" - "@types/json-schema": "npm:*" + "@types/estree": "*" + "@types/json-schema": "*" checksum: fb7137dd263ce1130b42d14452bdd0266ef81f52cb55ba1a5e9750e65da1f0596dc598c88bffc7e415458b6cb611a876dcc132bcf40ea48701c6d05b40c57be5 languageName: node linkType: hard @@ -2287,7 +2296,7 @@ __metadata: version: 4.1.9 resolution: "@types/graceful-fs@npm:4.1.9" dependencies: - "@types/node": "npm:*" + "@types/node": "*" checksum: 79d746a8f053954bba36bd3d94a90c78de995d126289d656fb3271dd9f1229d33f678da04d10bce6be440494a5a73438e2e363e92802d16b8315b051036c5256 languageName: node linkType: hard @@ -2303,7 +2312,7 @@ __metadata: version: 3.0.3 resolution: "@types/istanbul-lib-report@npm:3.0.3" dependencies: - "@types/istanbul-lib-coverage": "npm:*" + "@types/istanbul-lib-coverage": "*" checksum: b91e9b60f865ff08cb35667a427b70f6c2c63e88105eadd29a112582942af47ed99c60610180aa8dcc22382fa405033f141c119c69b95db78c4c709fbadfeeb4 languageName: node linkType: hard @@ -2312,7 +2321,7 @@ __metadata: version: 3.0.4 resolution: "@types/istanbul-reports@npm:3.0.4" dependencies: - "@types/istanbul-lib-report": "npm:*" + "@types/istanbul-lib-report": "*" checksum: 93eb18835770b3431f68ae9ac1ca91741ab85f7606f310a34b3586b5a34450ec038c3eed7ab19266635499594de52ff73723a54a72a75b9f7d6a956f01edee95 languageName: node linkType: hard @@ -2321,8 +2330,8 @@ __metadata: version: 29.5.12 resolution: "@types/jest@npm:29.5.12" dependencies: - expect: "npm:^29.0.0" - pretty-format: "npm:^29.0.0" + expect: ^29.0.0 + pretty-format: ^29.0.0 checksum: 19b1efdeed9d9a60a81edc8226cdeae5af7479e493eaed273e01243891c9651f7b8b4c08fc633a7d0d1d379b091c4179bbaa0807af62542325fd72f2dd17ce1c languageName: node linkType: hard @@ -2331,7 +2340,7 @@ __metadata: version: 3.5.30 resolution: "@types/jquery@npm:3.5.30" dependencies: - "@types/sizzle": "npm:*" + "@types/sizzle": "*" checksum: 4594d10fa9b347062883d254a23c9259ae814ef5989ce1985f093dcc7ad4475e324ac3343aef10599c478ea4951726f0e7f79d8ed471ab04de394b7e724d6d13 languageName: node linkType: hard @@ -2344,18 +2353,18 @@ __metadata: linkType: hard "@types/lodash@npm:^4.14.134": - version: 4.17.1 - resolution: "@types/lodash@npm:4.17.1" - checksum: 01984d5b44c09ef45258f8ac6d0cf926900624064722d51a020ba179e5d4a293da0068fb278d87dc695586afe7ebd3362ec57f5c0e7c4f6c1fab9d04a80e77f5 + version: 4.17.6 + resolution: "@types/lodash@npm:4.17.6" + checksum: f748c672f49c54ee631a0fab6f26d56ab99bd68a4fb91604b5d7525a72102dd1917209c12d7078c988a375edb5dc70ca600db05ac01785306fd64470048cd16c languageName: node linkType: hard "@types/node@npm:*": - version: 20.12.12 - resolution: "@types/node@npm:20.12.12" + version: 20.14.10 + resolution: "@types/node@npm:20.14.10" dependencies: - undici-types: "npm:~5.26.4" - checksum: 5373983874b9af7c216e7ca5d26b32a8d9829c703a69f1e66f2113598b5be8582c0e009ca97369f1ec9a6282b3f92812208d06eb1e9fc3bd9b939b022303d042 + undici-types: ~5.26.4 + checksum: 2f397d393de8cddb126e0b7999402ea450215ac69d49666ddef4f730a73325054499ce7345f86095e7b935c55b2e02139f3b8b9afc72fb978ed29edf6bb956b0 languageName: node linkType: hard @@ -2405,9 +2414,9 @@ __metadata: version: 0.1.12 resolution: "@types/webpack-sources@npm:0.1.12" dependencies: - "@types/node": "npm:*" - "@types/source-list-map": "npm:*" - source-map: "npm:^0.6.1" + "@types/node": "*" + "@types/source-list-map": "*" + source-map: ^0.6.1 checksum: 75342659a9889478969f7bb7360b998aa084ba11ab523c172ded6a807dac43ab2a9e1212078ef8bbf0f33e4fadd2c8a91b75d38184d8030d96a32fe819c9bb57 languageName: node linkType: hard @@ -2423,7 +2432,7 @@ __metadata: version: 17.0.32 resolution: "@types/yargs@npm:17.0.32" dependencies: - "@types/yargs-parser": "npm:*" + "@types/yargs-parser": "*" checksum: 4505bdebe8716ff383640c6e928f855b5d337cb3c68c81f7249fc6b983d0aa48de3eee26062b84f37e0d75a5797bc745e0c6e76f42f81771252a758c638f36ba languageName: node linkType: hard @@ -2432,17 +2441,17 @@ __metadata: version: 6.21.0 resolution: "@typescript-eslint/eslint-plugin@npm:6.21.0" dependencies: - "@eslint-community/regexpp": "npm:^4.5.1" - "@typescript-eslint/scope-manager": "npm:6.21.0" - "@typescript-eslint/type-utils": "npm:6.21.0" - "@typescript-eslint/utils": "npm:6.21.0" - "@typescript-eslint/visitor-keys": "npm:6.21.0" - debug: "npm:^4.3.4" - graphemer: "npm:^1.4.0" - ignore: "npm:^5.2.4" - natural-compare: "npm:^1.4.0" - semver: "npm:^7.5.4" - ts-api-utils: "npm:^1.0.1" + "@eslint-community/regexpp": ^4.5.1 + "@typescript-eslint/scope-manager": 6.21.0 + "@typescript-eslint/type-utils": 6.21.0 + "@typescript-eslint/utils": 6.21.0 + "@typescript-eslint/visitor-keys": 6.21.0 + debug: ^4.3.4 + graphemer: ^1.4.0 + ignore: ^5.2.4 + natural-compare: ^1.4.0 + semver: ^7.5.4 + ts-api-utils: ^1.0.1 peerDependencies: "@typescript-eslint/parser": ^6.0.0 || ^6.0.0-alpha eslint: ^7.0.0 || ^8.0.0 @@ -2457,11 +2466,11 @@ __metadata: version: 6.21.0 resolution: "@typescript-eslint/parser@npm:6.21.0" dependencies: - "@typescript-eslint/scope-manager": "npm:6.21.0" - "@typescript-eslint/types": "npm:6.21.0" - "@typescript-eslint/typescript-estree": "npm:6.21.0" - "@typescript-eslint/visitor-keys": "npm:6.21.0" - debug: "npm:^4.3.4" + "@typescript-eslint/scope-manager": 6.21.0 + "@typescript-eslint/types": 6.21.0 + "@typescript-eslint/typescript-estree": 6.21.0 + "@typescript-eslint/visitor-keys": 6.21.0 + debug: ^4.3.4 peerDependencies: eslint: ^7.0.0 || ^8.0.0 peerDependenciesMeta: @@ -2475,8 +2484,8 @@ __metadata: version: 6.21.0 resolution: "@typescript-eslint/scope-manager@npm:6.21.0" dependencies: - "@typescript-eslint/types": "npm:6.21.0" - "@typescript-eslint/visitor-keys": "npm:6.21.0" + "@typescript-eslint/types": 6.21.0 + "@typescript-eslint/visitor-keys": 6.21.0 checksum: 71028b757da9694528c4c3294a96cc80bc7d396e383a405eab3bc224cda7341b88e0fc292120b35d3f31f47beac69f7083196c70616434072fbcd3d3e62d3376 languageName: node linkType: hard @@ -2485,10 +2494,10 @@ __metadata: version: 6.21.0 resolution: "@typescript-eslint/type-utils@npm:6.21.0" dependencies: - "@typescript-eslint/typescript-estree": "npm:6.21.0" - "@typescript-eslint/utils": "npm:6.21.0" - debug: "npm:^4.3.4" - ts-api-utils: "npm:^1.0.1" + "@typescript-eslint/typescript-estree": 6.21.0 + "@typescript-eslint/utils": 6.21.0 + debug: ^4.3.4 + ts-api-utils: ^1.0.1 peerDependencies: eslint: ^7.0.0 || ^8.0.0 peerDependenciesMeta: @@ -2509,14 +2518,14 @@ __metadata: version: 6.21.0 resolution: "@typescript-eslint/typescript-estree@npm:6.21.0" dependencies: - "@typescript-eslint/types": "npm:6.21.0" - "@typescript-eslint/visitor-keys": "npm:6.21.0" - debug: "npm:^4.3.4" - globby: "npm:^11.1.0" - is-glob: "npm:^4.0.3" - minimatch: "npm:9.0.3" - semver: "npm:^7.5.4" - ts-api-utils: "npm:^1.0.1" + "@typescript-eslint/types": 6.21.0 + "@typescript-eslint/visitor-keys": 6.21.0 + debug: ^4.3.4 + globby: ^11.1.0 + is-glob: ^4.0.3 + minimatch: 9.0.3 + semver: ^7.5.4 + ts-api-utils: ^1.0.1 peerDependenciesMeta: typescript: optional: true @@ -2528,13 +2537,13 @@ __metadata: version: 6.21.0 resolution: "@typescript-eslint/utils@npm:6.21.0" dependencies: - "@eslint-community/eslint-utils": "npm:^4.4.0" - "@types/json-schema": "npm:^7.0.12" - "@types/semver": "npm:^7.5.0" - "@typescript-eslint/scope-manager": "npm:6.21.0" - "@typescript-eslint/types": "npm:6.21.0" - "@typescript-eslint/typescript-estree": "npm:6.21.0" - semver: "npm:^7.5.4" + "@eslint-community/eslint-utils": ^4.4.0 + "@types/json-schema": ^7.0.12 + "@types/semver": ^7.5.0 + "@typescript-eslint/scope-manager": 6.21.0 + "@typescript-eslint/types": 6.21.0 + "@typescript-eslint/typescript-estree": 6.21.0 + semver: ^7.5.4 peerDependencies: eslint: ^7.0.0 || ^8.0.0 checksum: b129b3a4aebec8468259f4589985cb59ea808afbfdb9c54f02fad11e17d185e2bf72bb332f7c36ec3c09b31f18fc41368678b076323e6e019d06f74ee93f7bf2 @@ -2545,8 +2554,8 @@ __metadata: version: 6.21.0 resolution: "@typescript-eslint/visitor-keys@npm:6.21.0" dependencies: - "@typescript-eslint/types": "npm:6.21.0" - eslint-visitor-keys: "npm:^3.4.1" + "@typescript-eslint/types": 6.21.0 + eslint-visitor-keys: ^3.4.1 checksum: 67c7e6003d5af042d8703d11538fca9d76899f0119130b373402819ae43f0bc90d18656aa7add25a24427ccf1a0efd0804157ba83b0d4e145f06107d7d1b7433 languageName: node linkType: hard @@ -2562,8 +2571,8 @@ __metadata: version: 1.12.1 resolution: "@webassemblyjs/ast@npm:1.12.1" dependencies: - "@webassemblyjs/helper-numbers": "npm:1.11.6" - "@webassemblyjs/helper-wasm-bytecode": "npm:1.11.6" + "@webassemblyjs/helper-numbers": 1.11.6 + "@webassemblyjs/helper-wasm-bytecode": 1.11.6 checksum: 31bcc64147236bd7b1b6d29d1f419c1f5845c785e1e42dc9e3f8ca2e05a029e9393a271b84f3a5bff2a32d35f51ff59e2181a6e5f953fe88576acd6750506202 languageName: node linkType: hard @@ -2593,9 +2602,9 @@ __metadata: version: 1.11.6 resolution: "@webassemblyjs/helper-numbers@npm:1.11.6" dependencies: - "@webassemblyjs/floating-point-hex-parser": "npm:1.11.6" - "@webassemblyjs/helper-api-error": "npm:1.11.6" - "@xtuc/long": "npm:4.2.2" + "@webassemblyjs/floating-point-hex-parser": 1.11.6 + "@webassemblyjs/helper-api-error": 1.11.6 + "@xtuc/long": 4.2.2 checksum: f4b562fa219f84368528339e0f8d273ad44e047a07641ffcaaec6f93e5b76fd86490a009aa91a294584e1436d74b0a01fa9fde45e333a4c657b58168b04da424 languageName: node linkType: hard @@ -2611,10 +2620,10 @@ __metadata: version: 1.12.1 resolution: "@webassemblyjs/helper-wasm-section@npm:1.12.1" dependencies: - "@webassemblyjs/ast": "npm:1.12.1" - "@webassemblyjs/helper-buffer": "npm:1.12.1" - "@webassemblyjs/helper-wasm-bytecode": "npm:1.11.6" - "@webassemblyjs/wasm-gen": "npm:1.12.1" + "@webassemblyjs/ast": 1.12.1 + "@webassemblyjs/helper-buffer": 1.12.1 + "@webassemblyjs/helper-wasm-bytecode": 1.11.6 + "@webassemblyjs/wasm-gen": 1.12.1 checksum: c19810cdd2c90ff574139b6d8c0dda254d42d168a9e5b3d353d1bc085f1d7164ccd1b3c05592a45a939c47f7e403dc8d03572bb686642f06a3d02932f6f0bc8f languageName: node linkType: hard @@ -2623,7 +2632,7 @@ __metadata: version: 1.11.6 resolution: "@webassemblyjs/ieee754@npm:1.11.6" dependencies: - "@xtuc/ieee754": "npm:^1.2.0" + "@xtuc/ieee754": ^1.2.0 checksum: 13574b8e41f6ca39b700e292d7edf102577db5650fe8add7066a320aa4b7a7c09a5056feccac7a74eb68c10dea9546d4461412af351f13f6b24b5f32379b49de languageName: node linkType: hard @@ -2632,7 +2641,7 @@ __metadata: version: 1.11.6 resolution: "@webassemblyjs/leb128@npm:1.11.6" dependencies: - "@xtuc/long": "npm:4.2.2" + "@xtuc/long": 4.2.2 checksum: 7ea942dc9777d4b18a5ebfa3a937b30ae9e1d2ce1fee637583ed7f376334dd1d4274f813d2e250056cca803e0952def4b954913f1a3c9068bcd4ab4ee5143bf0 languageName: node linkType: hard @@ -2648,14 +2657,14 @@ __metadata: version: 1.12.1 resolution: "@webassemblyjs/wasm-edit@npm:1.12.1" dependencies: - "@webassemblyjs/ast": "npm:1.12.1" - "@webassemblyjs/helper-buffer": "npm:1.12.1" - "@webassemblyjs/helper-wasm-bytecode": "npm:1.11.6" - "@webassemblyjs/helper-wasm-section": "npm:1.12.1" - "@webassemblyjs/wasm-gen": "npm:1.12.1" - "@webassemblyjs/wasm-opt": "npm:1.12.1" - "@webassemblyjs/wasm-parser": "npm:1.12.1" - "@webassemblyjs/wast-printer": "npm:1.12.1" + "@webassemblyjs/ast": 1.12.1 + "@webassemblyjs/helper-buffer": 1.12.1 + "@webassemblyjs/helper-wasm-bytecode": 1.11.6 + "@webassemblyjs/helper-wasm-section": 1.12.1 + "@webassemblyjs/wasm-gen": 1.12.1 + "@webassemblyjs/wasm-opt": 1.12.1 + "@webassemblyjs/wasm-parser": 1.12.1 + "@webassemblyjs/wast-printer": 1.12.1 checksum: ae23642303f030af888d30c4ef37b08dfec7eab6851a9575a616e65d1219f880d9223913a39056dd654e49049d76e97555b285d1f7e56935047abf578cce0692 languageName: node linkType: hard @@ -2664,11 +2673,11 @@ __metadata: version: 1.12.1 resolution: "@webassemblyjs/wasm-gen@npm:1.12.1" dependencies: - "@webassemblyjs/ast": "npm:1.12.1" - "@webassemblyjs/helper-wasm-bytecode": "npm:1.11.6" - "@webassemblyjs/ieee754": "npm:1.11.6" - "@webassemblyjs/leb128": "npm:1.11.6" - "@webassemblyjs/utf8": "npm:1.11.6" + "@webassemblyjs/ast": 1.12.1 + "@webassemblyjs/helper-wasm-bytecode": 1.11.6 + "@webassemblyjs/ieee754": 1.11.6 + "@webassemblyjs/leb128": 1.11.6 + "@webassemblyjs/utf8": 1.11.6 checksum: 5787626bb7f0b033044471ddd00ce0c9fe1ee4584e8b73e232051e3a4c99ba1a102700d75337151c8b6055bae77eefa4548960c610a5e4a504e356bd872138ff languageName: node linkType: hard @@ -2677,10 +2686,10 @@ __metadata: version: 1.12.1 resolution: "@webassemblyjs/wasm-opt@npm:1.12.1" dependencies: - "@webassemblyjs/ast": "npm:1.12.1" - "@webassemblyjs/helper-buffer": "npm:1.12.1" - "@webassemblyjs/wasm-gen": "npm:1.12.1" - "@webassemblyjs/wasm-parser": "npm:1.12.1" + "@webassemblyjs/ast": 1.12.1 + "@webassemblyjs/helper-buffer": 1.12.1 + "@webassemblyjs/wasm-gen": 1.12.1 + "@webassemblyjs/wasm-parser": 1.12.1 checksum: 0e8fa8a0645304a1e18ff40d3db5a2e9233ebaa169b19fcc651d6fc9fe2cac0ce092ddee927318015ae735d9cd9c5d97c0cafb6a51dcd2932ac73587b62df991 languageName: node linkType: hard @@ -2689,12 +2698,12 @@ __metadata: version: 1.12.1 resolution: "@webassemblyjs/wasm-parser@npm:1.12.1" dependencies: - "@webassemblyjs/ast": "npm:1.12.1" - "@webassemblyjs/helper-api-error": "npm:1.11.6" - "@webassemblyjs/helper-wasm-bytecode": "npm:1.11.6" - "@webassemblyjs/ieee754": "npm:1.11.6" - "@webassemblyjs/leb128": "npm:1.11.6" - "@webassemblyjs/utf8": "npm:1.11.6" + "@webassemblyjs/ast": 1.12.1 + "@webassemblyjs/helper-api-error": 1.11.6 + "@webassemblyjs/helper-wasm-bytecode": 1.11.6 + "@webassemblyjs/ieee754": 1.11.6 + "@webassemblyjs/leb128": 1.11.6 + "@webassemblyjs/utf8": 1.11.6 checksum: 176015de3551ac068cd4505d837414f258d9ade7442bd71efb1232fa26c9f6d7d4e11a5c816caeed389943f409af7ebff6899289a992d7a70343cb47009d21a8 languageName: node linkType: hard @@ -2703,8 +2712,8 @@ __metadata: version: 1.12.1 resolution: "@webassemblyjs/wast-printer@npm:1.12.1" dependencies: - "@webassemblyjs/ast": "npm:1.12.1" - "@xtuc/long": "npm:4.2.2" + "@webassemblyjs/ast": 1.12.1 + "@xtuc/long": 4.2.2 checksum: 2974b5dda8d769145ba0efd886ea94a601e61fb37114c14f9a9a7606afc23456799af652ac3052f284909bd42edc3665a76bc9b50f95f0794c053a8a1757b713 languageName: node linkType: hard @@ -2770,12 +2779,12 @@ __metadata: languageName: node linkType: hard -"acorn-import-assertions@npm:^1.9.0": - version: 1.9.0 - resolution: "acorn-import-assertions@npm:1.9.0" +"acorn-import-attributes@npm:^1.9.5": + version: 1.9.5 + resolution: "acorn-import-attributes@npm:1.9.5" peerDependencies: acorn: ^8 - checksum: 944fb2659d0845c467066bdcda2e20c05abe3aaf11972116df457ce2627628a81764d800dd55031ba19de513ee0d43bb771bc679cc0eda66dc8b4fade143bc0c + checksum: 1c0c49b6a244503964ae46ae850baccf306e84caf99bc2010ed6103c69a423987b07b520a6c619f075d215388bd4923eccac995886a54309eda049ab78a4be95 languageName: node linkType: hard @@ -2789,11 +2798,11 @@ __metadata: linkType: hard "acorn@npm:^8.11.3, acorn@npm:^8.7.1, acorn@npm:^8.8.2, acorn@npm:^8.9.0": - version: 8.11.3 - resolution: "acorn@npm:8.11.3" + version: 8.12.1 + resolution: "acorn@npm:8.12.1" bin: acorn: bin/acorn - checksum: 76d8e7d559512566b43ab4aadc374f11f563f0a9e21626dd59cb2888444e9445923ae9f3699972767f18af61df89cd89f5eaaf772d1327b055b45cb829b4a88c + checksum: 677880034aee5bdf7434cc2d25b641d7bedb0b5ef47868a78dadabedccf58e1c5457526d9d8249cd253f2df087e081c3fe7d903b448d8e19e5131a3065b83c07 languageName: node linkType: hard @@ -2801,7 +2810,7 @@ __metadata: version: 7.1.1 resolution: "agent-base@npm:7.1.1" dependencies: - debug: "npm:^4.3.4" + debug: ^4.3.4 checksum: 51c158769c5c051482f9ca2e6e1ec085ac72b5a418a9b31b4e82fe6c0a6699adb94c1c42d246699a587b3335215037091c79e0de512c516f73b6ea844202f037 languageName: node linkType: hard @@ -2810,8 +2819,8 @@ __metadata: version: 3.1.0 resolution: "aggregate-error@npm:3.1.0" dependencies: - clean-stack: "npm:^2.0.0" - indent-string: "npm:^4.0.0" + clean-stack: ^2.0.0 + indent-string: ^4.0.0 checksum: 1101a33f21baa27a2fa8e04b698271e64616b886795fd43c31068c07533c7b3facfcaf4e9e0cab3624bd88f729a592f1c901a1a229c9e490eafce411a8644b79 languageName: node linkType: hard @@ -2820,7 +2829,7 @@ __metadata: version: 2.1.1 resolution: "ajv-formats@npm:2.1.1" dependencies: - ajv: "npm:^8.0.0" + ajv: ^8.0.0 peerDependencies: ajv: ^8.0.0 peerDependenciesMeta: @@ -2843,7 +2852,7 @@ __metadata: version: 5.1.0 resolution: "ajv-keywords@npm:5.1.0" dependencies: - fast-deep-equal: "npm:^3.1.3" + fast-deep-equal: ^3.1.3 peerDependencies: ajv: ^8.8.2 checksum: c35193940b853119242c6757787f09ecf89a2c19bcd36d03ed1a615e710d19d450cb448bfda407b939aba54b002368c8bff30529cc50a0536a8e10bcce300421 @@ -2854,23 +2863,23 @@ __metadata: version: 6.12.6 resolution: "ajv@npm:6.12.6" dependencies: - fast-deep-equal: "npm:^3.1.1" - fast-json-stable-stringify: "npm:^2.0.0" - json-schema-traverse: "npm:^0.4.1" - uri-js: "npm:^4.2.2" + fast-deep-equal: ^3.1.1 + fast-json-stable-stringify: ^2.0.0 + json-schema-traverse: ^0.4.1 + uri-js: ^4.2.2 checksum: 874972efe5c4202ab0a68379481fbd3d1b5d0a7bd6d3cc21d40d3536ebff3352a2a1fabb632d4fd2cc7fe4cbdcd5ed6782084c9bbf7f32a1536d18f9da5007d4 languageName: node linkType: hard "ajv@npm:^8.0.0, ajv@npm:^8.12.0, ajv@npm:^8.9.0": - version: 8.13.0 - resolution: "ajv@npm:8.13.0" + version: 8.16.0 + resolution: "ajv@npm:8.16.0" dependencies: - fast-deep-equal: "npm:^3.1.3" - json-schema-traverse: "npm:^1.0.0" - require-from-string: "npm:^2.0.2" - uri-js: "npm:^4.4.1" - checksum: 6de82d0b2073e645ca3300561356ddda0234f39b35d2125a8700b650509b296f41c00ab69f53178bbe25ad688bd6ac3747ab44101f2f4bd245952e8fd6ccc3c1 + fast-deep-equal: ^3.1.3 + json-schema-traverse: ^1.0.0 + require-from-string: ^2.0.2 + uri-js: ^4.4.1 + checksum: bdf3d4c9f1d11e220850051ef4cd89346e951cfb933d6d41be36d45053c1092af1523ee6c62525cce567355caf0a4f4c19a08a93851649c1fa32b4a39b7c4858 languageName: node linkType: hard @@ -2878,7 +2887,7 @@ __metadata: version: 4.3.2 resolution: "ansi-escapes@npm:4.3.2" dependencies: - type-fest: "npm:^0.21.3" + type-fest: ^0.21.3 checksum: 93111c42189c0a6bed9cdb4d7f2829548e943827ee8479c74d6e0b22ee127b2a21d3f8b5ca57723b8ef78ce011fbfc2784350eb2bde3ccfccf2f575fa8489815 languageName: node linkType: hard @@ -2901,7 +2910,7 @@ __metadata: version: 3.2.1 resolution: "ansi-styles@npm:3.2.1" dependencies: - color-convert: "npm:^1.9.0" + color-convert: ^1.9.0 checksum: d85ade01c10e5dd77b6c89f34ed7531da5830d2cb5882c645f330079975b716438cd7ebb81d0d6e6b4f9c577f19ae41ab55f07f19786b02f9dfd9e0377395665 languageName: node linkType: hard @@ -2910,7 +2919,7 @@ __metadata: version: 4.3.0 resolution: "ansi-styles@npm:4.3.0" dependencies: - color-convert: "npm:^2.0.1" + color-convert: ^2.0.1 checksum: 513b44c3b2105dd14cc42a19271e80f386466c4be574bccf60b627432f9198571ebf4ab1e4c3ba17347658f4ee1711c163d574248c0c1cdc2d5917a0ad582ec4 languageName: node linkType: hard @@ -2933,8 +2942,8 @@ __metadata: version: 3.1.3 resolution: "anymatch@npm:3.1.3" dependencies: - normalize-path: "npm:^3.0.0" - picomatch: "npm:^2.0.4" + normalize-path: ^3.0.0 + picomatch: ^2.0.4 checksum: 3e044fd6d1d26545f235a9fe4d7a534e2029d8e59fa7fd9f2a6eb21230f6b5380ea1eaf55136e60cbf8e613544b3b766e7a6fa2102e2a3a117505466e3025dc2 languageName: node linkType: hard @@ -2943,7 +2952,7 @@ __metadata: version: 1.0.10 resolution: "argparse@npm:1.0.10" dependencies: - sprintf-js: "npm:~1.0.2" + sprintf-js: ~1.0.2 checksum: 7ca6e45583a28de7258e39e13d81e925cfa25d7d4aacbf806a382d3c02fcb13403a07fb8aeef949f10a7cfe4a62da0e2e807b348a5980554cc28ee573ef95945 languageName: node linkType: hard @@ -2959,8 +2968,8 @@ __metadata: version: 1.0.1 resolution: "array-buffer-byte-length@npm:1.0.1" dependencies: - call-bind: "npm:^1.0.5" - is-array-buffer: "npm:^3.0.4" + call-bind: ^1.0.5 + is-array-buffer: ^3.0.4 checksum: 53524e08f40867f6a9f35318fafe467c32e45e9c682ba67b11943e167344d2febc0f6977a17e699b05699e805c3e8f073d876f8bbf1b559ed494ad2cd0fae09e languageName: node linkType: hard @@ -2976,23 +2985,30 @@ __metadata: version: 1.0.3 resolution: "arraybuffer.prototype.slice@npm:1.0.3" dependencies: - array-buffer-byte-length: "npm:^1.0.1" - call-bind: "npm:^1.0.5" - define-properties: "npm:^1.2.1" - es-abstract: "npm:^1.22.3" - es-errors: "npm:^1.2.1" - get-intrinsic: "npm:^1.2.3" - is-array-buffer: "npm:^3.0.4" - is-shared-array-buffer: "npm:^1.0.2" + array-buffer-byte-length: ^1.0.1 + call-bind: ^1.0.5 + define-properties: ^1.2.1 + es-abstract: ^1.22.3 + es-errors: ^1.2.1 + get-intrinsic: ^1.2.3 + is-array-buffer: ^3.0.4 + is-shared-array-buffer: ^1.0.2 checksum: 352259cba534dcdd969c92ab002efd2ba5025b2e3b9bead3973150edbdf0696c629d7f4b3f061c5931511e8207bdc2306da614703c820b45dabce39e3daf7e3e languageName: node linkType: hard +"async@npm:^3.2.3": + version: 3.2.5 + resolution: "async@npm:3.2.5" + checksum: 5ec77f1312301dee02d62140a6b1f7ee0edd2a0f983b6fd2b0849b969f245225b990b47b8243e7b9ad16451a53e7f68e753700385b706198ced888beedba3af4 + languageName: node + linkType: hard + "available-typed-arrays@npm:^1.0.7": version: 1.0.7 resolution: "available-typed-arrays@npm:1.0.7" dependencies: - possible-typed-array-names: "npm:^1.0.0" + possible-typed-array-names: ^1.0.0 checksum: 1aa3ffbfe6578276996de660848b6e95669d9a95ad149e3dd0c0cda77db6ee1dbd9d1dd723b65b6d277b882dd0c4b91a654ae9d3cf9e1254b7e93e4908d78fd3 languageName: node linkType: hard @@ -3001,13 +3017,13 @@ __metadata: version: 29.7.0 resolution: "babel-jest@npm:29.7.0" dependencies: - "@jest/transform": "npm:^29.7.0" - "@types/babel__core": "npm:^7.1.14" - babel-plugin-istanbul: "npm:^6.1.1" - babel-preset-jest: "npm:^29.6.3" - chalk: "npm:^4.0.0" - graceful-fs: "npm:^4.2.9" - slash: "npm:^3.0.0" + "@jest/transform": ^29.7.0 + "@types/babel__core": ^7.1.14 + babel-plugin-istanbul: ^6.1.1 + babel-preset-jest: ^29.6.3 + chalk: ^4.0.0 + graceful-fs: ^4.2.9 + slash: ^3.0.0 peerDependencies: "@babel/core": ^7.8.0 checksum: ee6f8e0495afee07cac5e4ee167be705c711a8cc8a737e05a587a131fdae2b3c8f9aa55dfd4d9c03009ac2d27f2de63d8ba96d3e8460da4d00e8af19ef9a83f7 @@ -3018,11 +3034,11 @@ __metadata: version: 6.1.1 resolution: "babel-plugin-istanbul@npm:6.1.1" dependencies: - "@babel/helper-plugin-utils": "npm:^7.0.0" - "@istanbuljs/load-nyc-config": "npm:^1.0.0" - "@istanbuljs/schema": "npm:^0.1.2" - istanbul-lib-instrument: "npm:^5.0.4" - test-exclude: "npm:^6.0.0" + "@babel/helper-plugin-utils": ^7.0.0 + "@istanbuljs/load-nyc-config": ^1.0.0 + "@istanbuljs/schema": ^0.1.2 + istanbul-lib-instrument: ^5.0.4 + test-exclude: ^6.0.0 checksum: cb4fd95738219f232f0aece1116628cccff16db891713c4ccb501cddbbf9272951a5df81f2f2658dfdf4b3e7b236a9d5cbcf04d5d8c07dd5077297339598061a languageName: node linkType: hard @@ -3031,10 +3047,10 @@ __metadata: version: 29.6.3 resolution: "babel-plugin-jest-hoist@npm:29.6.3" dependencies: - "@babel/template": "npm:^7.3.3" - "@babel/types": "npm:^7.3.3" - "@types/babel__core": "npm:^7.1.14" - "@types/babel__traverse": "npm:^7.0.6" + "@babel/template": ^7.3.3 + "@babel/types": ^7.3.3 + "@types/babel__core": ^7.1.14 + "@types/babel__traverse": ^7.0.6 checksum: 51250f22815a7318f17214a9d44650ba89551e6d4f47a2dc259128428324b52f5a73979d010cefd921fd5a720d8c1d55ad74ff601cd94c7bd44d5f6292fde2d1 languageName: node linkType: hard @@ -3043,9 +3059,9 @@ __metadata: version: 0.4.11 resolution: "babel-plugin-polyfill-corejs2@npm:0.4.11" dependencies: - "@babel/compat-data": "npm:^7.22.6" - "@babel/helper-define-polyfill-provider": "npm:^0.6.2" - semver: "npm:^6.3.1" + "@babel/compat-data": ^7.22.6 + "@babel/helper-define-polyfill-provider": ^0.6.2 + semver: ^6.3.1 peerDependencies: "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 checksum: f098353ce7c7dde1a1d2710858e01b471e85689110c9e37813e009072347eb8c55d5f84d20d3bf1cab31755f20078ba90f8855fdc4686a9daa826a95ff280bd7 @@ -3056,8 +3072,8 @@ __metadata: version: 0.10.4 resolution: "babel-plugin-polyfill-corejs3@npm:0.10.4" dependencies: - "@babel/helper-define-polyfill-provider": "npm:^0.6.1" - core-js-compat: "npm:^3.36.1" + "@babel/helper-define-polyfill-provider": ^0.6.1 + core-js-compat: ^3.36.1 peerDependencies: "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 checksum: b96a54495f7cc8b3797251c8c15f5ed015edddc3110fc122f6b32c94bec33af1e8bc56fa99091808f500bde0cccaaa266889cdc5935d9e6e9cf09898214f02dd @@ -3068,7 +3084,7 @@ __metadata: version: 0.6.2 resolution: "babel-plugin-polyfill-regenerator@npm:0.6.2" dependencies: - "@babel/helper-define-polyfill-provider": "npm:^0.6.2" + "@babel/helper-define-polyfill-provider": ^0.6.2 peerDependencies: "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 checksum: 150233571072b6b3dfe946242da39cba8587b7f908d1c006f7545fc88b0e3c3018d445739beb61e7a75835f0c2751dbe884a94ff9b245ec42369d9267e0e1b3f @@ -3079,18 +3095,18 @@ __metadata: version: 1.0.1 resolution: "babel-preset-current-node-syntax@npm:1.0.1" dependencies: - "@babel/plugin-syntax-async-generators": "npm:^7.8.4" - "@babel/plugin-syntax-bigint": "npm:^7.8.3" - "@babel/plugin-syntax-class-properties": "npm:^7.8.3" - "@babel/plugin-syntax-import-meta": "npm:^7.8.3" - "@babel/plugin-syntax-json-strings": "npm:^7.8.3" - "@babel/plugin-syntax-logical-assignment-operators": "npm:^7.8.3" - "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.3" - "@babel/plugin-syntax-numeric-separator": "npm:^7.8.3" - "@babel/plugin-syntax-object-rest-spread": "npm:^7.8.3" - "@babel/plugin-syntax-optional-catch-binding": "npm:^7.8.3" - "@babel/plugin-syntax-optional-chaining": "npm:^7.8.3" - "@babel/plugin-syntax-top-level-await": "npm:^7.8.3" + "@babel/plugin-syntax-async-generators": ^7.8.4 + "@babel/plugin-syntax-bigint": ^7.8.3 + "@babel/plugin-syntax-class-properties": ^7.8.3 + "@babel/plugin-syntax-import-meta": ^7.8.3 + "@babel/plugin-syntax-json-strings": ^7.8.3 + "@babel/plugin-syntax-logical-assignment-operators": ^7.8.3 + "@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3 + "@babel/plugin-syntax-numeric-separator": ^7.8.3 + "@babel/plugin-syntax-object-rest-spread": ^7.8.3 + "@babel/plugin-syntax-optional-catch-binding": ^7.8.3 + "@babel/plugin-syntax-optional-chaining": ^7.8.3 + "@babel/plugin-syntax-top-level-await": ^7.8.3 peerDependencies: "@babel/core": ^7.0.0 checksum: d118c2742498c5492c095bc8541f4076b253e705b5f1ad9a2e7d302d81a84866f0070346662355c8e25fc02caa28dc2da8d69bcd67794a0d60c4d6fab6913cc8 @@ -3101,8 +3117,8 @@ __metadata: version: 29.6.3 resolution: "babel-preset-jest@npm:29.6.3" dependencies: - babel-plugin-jest-hoist: "npm:^29.6.3" - babel-preset-current-node-syntax: "npm:^1.0.0" + babel-plugin-jest-hoist: ^29.6.3 + babel-preset-current-node-syntax: ^1.0.0 peerDependencies: "@babel/core": ^7.0.0 checksum: aa4ff2a8a728d9d698ed521e3461a109a1e66202b13d3494e41eea30729a5e7cc03b3a2d56c594423a135429c37bf63a9fa8b0b9ce275298be3095a88c69f6fb @@ -3113,7 +3129,7 @@ __metadata: version: 1.4.0 resolution: "backbone@npm:1.4.0" dependencies: - underscore: "npm:>=1.8.3" + underscore: ">=1.8.3" checksum: 09abdf184c485a4cd2c68218298cf772fbefeaa166ef8eb795cdb0159b4ad1d2f6823dde089352eaf0be929e5bbef67c57555722f4d1886f969d954f77814870 languageName: node linkType: hard @@ -3143,8 +3159,8 @@ __metadata: version: 1.1.11 resolution: "brace-expansion@npm:1.1.11" dependencies: - balanced-match: "npm:^1.0.0" - concat-map: "npm:0.0.1" + balanced-match: ^1.0.0 + concat-map: 0.0.1 checksum: faf34a7bb0c3fcf4b59c7808bc5d2a96a40988addf2e7e09dfbb67a2251800e0d14cd2bfc1aa79174f2f5095c54ff27f46fb1289fe2d77dac755b5eb3434cc07 languageName: node linkType: hard @@ -3153,31 +3169,31 @@ __metadata: version: 2.0.1 resolution: "brace-expansion@npm:2.0.1" dependencies: - balanced-match: "npm:^1.0.0" + balanced-match: ^1.0.0 checksum: a61e7cd2e8a8505e9f0036b3b6108ba5e926b4b55089eeb5550cd04a471fe216c96d4fe7e4c7f995c728c554ae20ddfc4244cad10aef255e72b62930afd233d1 languageName: node linkType: hard -"braces@npm:^3.0.2": - version: 3.0.2 - resolution: "braces@npm:3.0.2" +"braces@npm:^3.0.3": + version: 3.0.3 + resolution: "braces@npm:3.0.3" dependencies: - fill-range: "npm:^7.0.1" - checksum: e2a8e769a863f3d4ee887b5fe21f63193a891c68b612ddb4b68d82d1b5f3ff9073af066c343e9867a393fe4c2555dcb33e89b937195feb9c1613d259edfcd459 + fill-range: ^7.1.1 + checksum: b95aa0b3bd909f6cd1720ffcf031aeaf46154dd88b4da01f9a1d3f7ea866a79eba76a6d01cbc3c422b2ee5cdc39a4f02491058d5df0d7bf6e6a162a832df1f69 languageName: node linkType: hard "browserslist@npm:^4.21.10, browserslist@npm:^4.22.2, browserslist@npm:^4.23.0": - version: 4.23.0 - resolution: "browserslist@npm:4.23.0" + version: 4.23.2 + resolution: "browserslist@npm:4.23.2" dependencies: - caniuse-lite: "npm:^1.0.30001587" - electron-to-chromium: "npm:^1.4.668" - node-releases: "npm:^2.0.14" - update-browserslist-db: "npm:^1.0.13" + caniuse-lite: ^1.0.30001640 + electron-to-chromium: ^1.4.820 + node-releases: ^2.0.14 + update-browserslist-db: ^1.1.0 bin: browserslist: cli.js - checksum: 436f49e796782ca751ebab7edc010cfc9c29f68536f387666cd70ea22f7105563f04dd62c6ff89cb24cc3254d17cba385f979eeeb3484d43e012412ff7e75def + checksum: 8212af37f6ca6355da191cf2d4ad49bd0b82854888b9a7e103638fada70d38cbe36d28feeeaa98344cb15d9128f9f74bcc8ce1bfc9011b5fd14381c1c6fb542c languageName: node linkType: hard @@ -3185,7 +3201,7 @@ __metadata: version: 0.2.6 resolution: "bs-logger@npm:0.2.6" dependencies: - fast-json-stable-stringify: "npm:2.x" + fast-json-stable-stringify: 2.x checksum: d34bdaf68c64bd099ab97c3ea608c9ae7d3f5faa1178b3f3f345acd94e852e608b2d4f9103fb2e503f5e69780e98293df41691b84be909b41cf5045374d54606 languageName: node linkType: hard @@ -3194,7 +3210,7 @@ __metadata: version: 2.1.1 resolution: "bser@npm:2.1.1" dependencies: - node-int64: "npm:^0.4.0" + node-int64: ^0.4.0 checksum: 9ba4dc58ce86300c862bffc3ae91f00b2a03b01ee07f3564beeeaf82aa243b8b03ba53f123b0b842c190d4399b94697970c8e7cf7b1ea44b61aa28c3526a4449 languageName: node linkType: hard @@ -3210,18 +3226,18 @@ __metadata: version: 18.0.3 resolution: "cacache@npm:18.0.3" dependencies: - "@npmcli/fs": "npm:^3.1.0" - fs-minipass: "npm:^3.0.0" - glob: "npm:^10.2.2" - lru-cache: "npm:^10.0.1" - minipass: "npm:^7.0.3" - minipass-collect: "npm:^2.0.1" - minipass-flush: "npm:^1.0.5" - minipass-pipeline: "npm:^1.2.4" - p-map: "npm:^4.0.0" - ssri: "npm:^10.0.0" - tar: "npm:^6.1.11" - unique-filename: "npm:^3.0.0" + "@npmcli/fs": ^3.1.0 + fs-minipass: ^3.0.0 + glob: ^10.2.2 + lru-cache: ^10.0.1 + minipass: ^7.0.3 + minipass-collect: ^2.0.1 + minipass-flush: ^1.0.5 + minipass-pipeline: ^1.2.4 + p-map: ^4.0.0 + ssri: ^10.0.0 + tar: ^6.1.11 + unique-filename: ^3.0.0 checksum: b717fd9b36e9c3279bfde4545c3a8f6d5a539b084ee26a9504d48f83694beb724057d26e090b97540f9cc62bea18b9f6cf671c50e18fb7dac60eda9db691714f languageName: node linkType: hard @@ -3230,11 +3246,11 @@ __metadata: version: 1.0.7 resolution: "call-bind@npm:1.0.7" dependencies: - es-define-property: "npm:^1.0.0" - es-errors: "npm:^1.3.0" - function-bind: "npm:^1.1.2" - get-intrinsic: "npm:^1.2.4" - set-function-length: "npm:^1.2.1" + es-define-property: ^1.0.0 + es-errors: ^1.3.0 + function-bind: ^1.1.2 + get-intrinsic: ^1.2.4 + set-function-length: ^1.2.1 checksum: 295c0c62b90dd6522e6db3b0ab1ce26bdf9e7404215bda13cfee25b626b5ff1a7761324d58d38b1ef1607fc65aca2d06e44d2e18d0dfc6c14b465b00d8660029 languageName: node linkType: hard @@ -3260,10 +3276,10 @@ __metadata: languageName: node linkType: hard -"caniuse-lite@npm:^1.0.30001587": - version: 1.0.30001618 - resolution: "caniuse-lite@npm:1.0.30001618" - checksum: 7a87a49f5b2432b4bd428d3c1b629c49699aa75390e29915745f6e1753c8f91d990ec468a0306ea2b6efd5e76435a127a7c535cb28b9d1bd268732057a5d64c1 +"caniuse-lite@npm:^1.0.30001640": + version: 1.0.30001641 + resolution: "caniuse-lite@npm:1.0.30001641" + checksum: f131829f7746374ae4a19a8fb5aef9bbc5649682afb0ffd6a74f567389cb6efadbab600cc83384a3e694e1646772ff14ac3c791593aedb41fb2ce1942a1aa208 languageName: node linkType: hard @@ -3271,19 +3287,19 @@ __metadata: version: 2.4.2 resolution: "chalk@npm:2.4.2" dependencies: - ansi-styles: "npm:^3.2.1" - escape-string-regexp: "npm:^1.0.5" - supports-color: "npm:^5.3.0" + ansi-styles: ^3.2.1 + escape-string-regexp: ^1.0.5 + supports-color: ^5.3.0 checksum: ec3661d38fe77f681200f878edbd9448821924e0f93a9cefc0e26a33b145f1027a2084bf19967160d11e1f03bfe4eaffcabf5493b89098b2782c3fe0b03d80c2 languageName: node linkType: hard -"chalk@npm:^4.0.0, chalk@npm:^4.1.0": +"chalk@npm:^4.0.0, chalk@npm:^4.0.2, chalk@npm:^4.1.0": version: 4.1.2 resolution: "chalk@npm:4.1.2" dependencies: - ansi-styles: "npm:^4.1.0" - supports-color: "npm:^7.1.0" + ansi-styles: ^4.1.0 + supports-color: ^7.1.0 checksum: fe75c9d5c76a7a98d45495b91b2172fa3b7a09e0cc9370e5c8feb1c567b85c4288e2b3fded7cfdd7359ac28d6b3844feb8b82b8686842e93d23c827c417e83fc languageName: node linkType: hard @@ -3303,9 +3319,9 @@ __metadata: linkType: hard "chrome-trace-event@npm:^1.0.2": - version: 1.0.3 - resolution: "chrome-trace-event@npm:1.0.3" - checksum: cb8b1fc7e881aaef973bd0c4a43cd353c2ad8323fb471a041e64f7c2dd849cde4aad15f8b753331a32dda45c973f032c8a03b8177fc85d60eaa75e91e08bfb97 + version: 1.0.4 + resolution: "chrome-trace-event@npm:1.0.4" + checksum: fcbbd9dd0cd5b48444319007cc0c15870fd8612cc0df320908aa9d5e8a244084d48571eb28bf3c58c19327d2c5838f354c2d89fac3956d8e992273437401ac19 languageName: node linkType: hard @@ -3334,9 +3350,9 @@ __metadata: version: 8.0.1 resolution: "cliui@npm:8.0.1" dependencies: - string-width: "npm:^4.2.0" - strip-ansi: "npm:^6.0.1" - wrap-ansi: "npm:^7.0.0" + string-width: ^4.2.0 + strip-ansi: ^6.0.1 + wrap-ansi: ^7.0.0 checksum: 79648b3b0045f2e285b76fb2e24e207c6db44323581e421c3acbd0e86454cba1b37aea976ab50195a49e7384b871e6dfb2247ad7dec53c02454ac6497394cb56 languageName: node linkType: hard @@ -3345,9 +3361,9 @@ __metadata: version: 4.0.1 resolution: "clone-deep@npm:4.0.1" dependencies: - is-plain-object: "npm:^2.0.4" - kind-of: "npm:^6.0.2" - shallow-clone: "npm:^3.0.0" + is-plain-object: ^2.0.4 + kind-of: ^6.0.2 + shallow-clone: ^3.0.0 checksum: 770f912fe4e6f21873c8e8fbb1e99134db3b93da32df271d00589ea4a29dbe83a9808a322c93f3bcaf8584b8b4fa6fc269fc8032efbaa6728e0c9886c74467d2 languageName: node linkType: hard @@ -3370,7 +3386,7 @@ __metadata: version: 1.9.3 resolution: "color-convert@npm:1.9.3" dependencies: - color-name: "npm:1.1.3" + color-name: 1.1.3 checksum: fd7a64a17cde98fb923b1dd05c5f2e6f7aefda1b60d67e8d449f9328b4e53b228a428fd38bfeaeb2db2ff6b6503a776a996150b80cdf224062af08a5c8a3a203 languageName: node linkType: hard @@ -3379,7 +3395,7 @@ __metadata: version: 2.0.1 resolution: "color-convert@npm:2.0.1" dependencies: - color-name: "npm:~1.1.4" + color-name: ~1.1.4 checksum: 79e6bdb9fd479a205c71d89574fccfb22bd9053bd98c6c4d870d65c132e5e904e6034978e55b43d69fcaa7433af2016ee203ce76eeba9cfa554b373e7f7db336 languageName: node linkType: hard @@ -3409,7 +3425,7 @@ __metadata: version: 2.0.2 resolution: "color-parse@npm:2.0.2" dependencies: - color-name: "npm:^2.0.0" + color-name: ^2.0.0 checksum: 4e9446a9b1320da14e9b552b9be767b4fa78c18fbadf8a5c37e83f7fc9687723e2083cf2a17cecc818dcc9d64771f74db7815f218251e18535d1e8f52951c841 languageName: node linkType: hard @@ -3418,8 +3434,8 @@ __metadata: version: 3.0.0 resolution: "color-rgba@npm:3.0.0" dependencies: - color-parse: "npm:^2.0.0" - color-space: "npm:^2.0.0" + color-parse: ^2.0.0 + color-space: ^2.0.0 checksum: 003b5fa70a77f46df3753e4b941154986163ccabbd9a8a80b2ca6cc4a0c9e505f3d4909c46a0b085e095d19b80297cf1c02dfefa33666b9ea1661ff52b3597bc languageName: node linkType: hard @@ -3463,9 +3479,9 @@ __metadata: version: 1.2.1 resolution: "compute-gcd@npm:1.2.1" dependencies: - validate.io-array: "npm:^1.0.3" - validate.io-function: "npm:^1.0.2" - validate.io-integer-array: "npm:^1.0.0" + validate.io-array: ^1.0.3 + validate.io-function: ^1.0.2 + validate.io-integer-array: ^1.0.0 checksum: 51cf33b75f7c8db5142fcb99a9d84a40260993fed8e02a7ab443834186c3ab99b3fd20b30ad9075a6a9d959d69df6da74dd3be8a59c78d9f2fe780ebda8242e1 languageName: node linkType: hard @@ -3474,10 +3490,10 @@ __metadata: version: 1.1.2 resolution: "compute-lcm@npm:1.1.2" dependencies: - compute-gcd: "npm:^1.2.1" - validate.io-array: "npm:^1.0.3" - validate.io-function: "npm:^1.0.2" - validate.io-integer-array: "npm:^1.0.0" + compute-gcd: ^1.2.1 + validate.io-array: ^1.0.3 + validate.io-function: ^1.0.2 + validate.io-integer-array: ^1.0.0 checksum: d499ab57dcb48e8d0fd233b99844a06d1cc56115602c920c586e998ebba60293731f5b6976e8a1e83ae6cbfe86716f62d9432e8d94913fed8bd8352f447dc917 languageName: node linkType: hard @@ -3500,7 +3516,7 @@ __metadata: version: 3.37.1 resolution: "core-js-compat@npm:3.37.1" dependencies: - browserslist: "npm:^4.23.0" + browserslist: ^4.23.0 checksum: 5e7430329358bced08c30950512d2081aea0a5652b4c5892cbb3c4a6db05b0d3893a191a955162a07fdb5f4fe74e61b6429fdb503f54e062336d76e43c9555d9 languageName: node linkType: hard @@ -3509,13 +3525,13 @@ __metadata: version: 29.7.0 resolution: "create-jest@npm:29.7.0" dependencies: - "@jest/types": "npm:^29.6.3" - chalk: "npm:^4.0.0" - exit: "npm:^0.1.2" - graceful-fs: "npm:^4.2.9" - jest-config: "npm:^29.7.0" - jest-util: "npm:^29.7.0" - prompts: "npm:^2.0.1" + "@jest/types": ^29.6.3 + chalk: ^4.0.0 + exit: ^0.1.2 + graceful-fs: ^4.2.9 + jest-config: ^29.7.0 + jest-util: ^29.7.0 + prompts: ^2.0.1 bin: create-jest: bin/create-jest.js checksum: 1427d49458adcd88547ef6fa39041e1fe9033a661293aa8d2c3aa1b4967cb5bf4f0c00436c7a61816558f28ba2ba81a94d5c962e8022ea9a883978fc8e1f2945 @@ -3526,11 +3542,11 @@ __metadata: version: 6.0.5 resolution: "cross-spawn@npm:6.0.5" dependencies: - nice-try: "npm:^1.0.4" - path-key: "npm:^2.0.1" - semver: "npm:^5.5.0" - shebang-command: "npm:^1.2.0" - which: "npm:^1.2.9" + nice-try: ^1.0.4 + path-key: ^2.0.1 + semver: ^5.5.0 + shebang-command: ^1.2.0 + which: ^1.2.9 checksum: f893bb0d96cd3d5751d04e67145bdddf25f99449531a72e82dcbbd42796bbc8268c1076c6b3ea51d4d455839902804b94bc45dfb37ecbb32ea8e54a6741c3ab9 languageName: node linkType: hard @@ -3539,9 +3555,9 @@ __metadata: version: 7.0.3 resolution: "cross-spawn@npm:7.0.3" dependencies: - path-key: "npm:^3.1.0" - shebang-command: "npm:^2.0.0" - which: "npm:^2.0.1" + path-key: ^3.1.0 + shebang-command: ^2.0.0 + which: ^2.0.1 checksum: 671cc7c7288c3a8406f3c69a3ae2fc85555c04169e9d611def9a675635472614f1c0ed0ef80955d5b6d4e724f6ced67f0ad1bb006c2ea643488fcfef994d7f52 languageName: node linkType: hard @@ -3550,14 +3566,14 @@ __metadata: version: 6.11.0 resolution: "css-loader@npm:6.11.0" dependencies: - icss-utils: "npm:^5.1.0" - postcss: "npm:^8.4.33" - postcss-modules-extract-imports: "npm:^3.1.0" - postcss-modules-local-by-default: "npm:^4.0.5" - postcss-modules-scope: "npm:^3.2.0" - postcss-modules-values: "npm:^4.0.0" - postcss-value-parser: "npm:^4.2.0" - semver: "npm:^7.5.4" + icss-utils: ^5.1.0 + postcss: ^8.4.33 + postcss-modules-extract-imports: ^3.1.0 + postcss-modules-local-by-default: ^4.0.5 + postcss-modules-scope: ^3.2.0 + postcss-modules-values: ^4.0.0 + postcss-value-parser: ^4.2.0 + semver: ^7.5.4 peerDependencies: "@rspack/core": 0.x || 1.x webpack: ^5.0.0 @@ -3607,9 +3623,9 @@ __metadata: version: 2.0.0 resolution: "data-urls@npm:2.0.0" dependencies: - abab: "npm:^2.0.3" - whatwg-mimetype: "npm:^2.3.0" - whatwg-url: "npm:^8.0.0" + abab: ^2.0.3 + whatwg-mimetype: ^2.3.0 + whatwg-url: ^8.0.0 checksum: 97caf828aac25e25e04ba6869db0f99c75e6859bb5b424ada28d3e7841941ebf08ddff3c1b1bb4585986bd507a5d54c2a716853ea6cb98af877400e637393e71 languageName: node linkType: hard @@ -3618,9 +3634,9 @@ __metadata: version: 1.0.1 resolution: "data-view-buffer@npm:1.0.1" dependencies: - call-bind: "npm:^1.0.6" - es-errors: "npm:^1.3.0" - is-data-view: "npm:^1.0.1" + call-bind: ^1.0.6 + es-errors: ^1.3.0 + is-data-view: ^1.0.1 checksum: ce24348f3c6231223b216da92e7e6a57a12b4af81a23f27eff8feabdf06acfb16c00639c8b705ca4d167f761cfc756e27e5f065d0a1f840c10b907fdaf8b988c languageName: node linkType: hard @@ -3629,9 +3645,9 @@ __metadata: version: 1.0.1 resolution: "data-view-byte-length@npm:1.0.1" dependencies: - call-bind: "npm:^1.0.7" - es-errors: "npm:^1.3.0" - is-data-view: "npm:^1.0.1" + call-bind: ^1.0.7 + es-errors: ^1.3.0 + is-data-view: ^1.0.1 checksum: dbb3200edcb7c1ef0d68979834f81d64fd8cab2f7691b3a4c6b97e67f22182f3ec2c8602efd7b76997b55af6ff8bce485829c1feda4fa2165a6b71fb7baa4269 languageName: node linkType: hard @@ -3640,22 +3656,22 @@ __metadata: version: 1.0.0 resolution: "data-view-byte-offset@npm:1.0.0" dependencies: - call-bind: "npm:^1.0.6" - es-errors: "npm:^1.3.0" - is-data-view: "npm:^1.0.1" + call-bind: ^1.0.6 + es-errors: ^1.3.0 + is-data-view: ^1.0.1 checksum: 7f0bf8720b7414ca719eedf1846aeec392f2054d7af707c5dc9a753cc77eb8625f067fa901e0b5127e831f9da9056138d894b9c2be79c27a21f6db5824f009c2 languageName: node linkType: hard "debug@npm:4, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.4": - version: 4.3.4 - resolution: "debug@npm:4.3.4" + version: 4.3.5 + resolution: "debug@npm:4.3.5" dependencies: - ms: "npm:2.1.2" + ms: 2.1.2 peerDependenciesMeta: supports-color: optional: true - checksum: 3dbad3f94ea64f34431a9cbf0bafb61853eda57bff2880036153438f50fb5a84f27683ba0d8e5426bf41a8c6ff03879488120cf5b3a761e77953169c0600a708 + checksum: 7c002b51e256257f936dda09eb37167df952758c57badf6bf44bdc40b89a4bcb8e5a0a2e4c7b53f97c69e2970dd5272d33a757378a12c8f8e64ea7bf99e8e86e languageName: node linkType: hard @@ -3689,9 +3705,9 @@ __metadata: version: 1.1.4 resolution: "define-data-property@npm:1.1.4" dependencies: - es-define-property: "npm:^1.0.0" - es-errors: "npm:^1.3.0" - gopd: "npm:^1.0.1" + es-define-property: ^1.0.0 + es-errors: ^1.3.0 + gopd: ^1.0.1 checksum: 8068ee6cab694d409ac25936eb861eea704b7763f7f342adbdfe337fc27c78d7ae0eff2364b2917b58c508d723c7a074326d068eef2e45c4edcd85cf94d0313b languageName: node linkType: hard @@ -3700,9 +3716,9 @@ __metadata: version: 1.2.1 resolution: "define-properties@npm:1.2.1" dependencies: - define-data-property: "npm:^1.0.1" - has-property-descriptors: "npm:^1.0.0" - object-keys: "npm:^1.1.1" + define-data-property: ^1.0.1 + has-property-descriptors: ^1.0.0 + object-keys: ^1.1.1 checksum: b4ccd00597dd46cb2d4a379398f5b19fca84a16f3374e2249201992f36b30f6835949a9429669ee6b41b6e837205a163eadd745e472069e70dfc10f03e5fcc12 languageName: node linkType: hard @@ -3725,7 +3741,7 @@ __metadata: version: 3.0.1 resolution: "dir-glob@npm:3.0.1" dependencies: - path-type: "npm:^4.0.0" + path-type: ^4.0.0 checksum: fa05e18324510d7283f55862f3161c6759a3f2f8dbce491a2fc14c8324c498286c54282c1f0e933cb930da8419b30679389499b919122952a4f8592362ef4615 languageName: node linkType: hard @@ -3734,7 +3750,7 @@ __metadata: version: 3.0.0 resolution: "doctrine@npm:3.0.0" dependencies: - esutils: "npm:^2.0.2" + esutils: ^2.0.2 checksum: fd7673ca77fe26cd5cba38d816bc72d641f500f1f9b25b83e8ce28827fe2da7ad583a8da26ab6af85f834138cf8dae9f69b0cd6ab925f52ddab1754db44d99ce languageName: node linkType: hard @@ -3743,9 +3759,9 @@ __metadata: version: 2.0.0 resolution: "dom-serializer@npm:2.0.0" dependencies: - domelementtype: "npm:^2.3.0" - domhandler: "npm:^5.0.2" - entities: "npm:^4.2.0" + domelementtype: ^2.3.0 + domhandler: ^5.0.2 + entities: ^4.2.0 checksum: cd1810544fd8cdfbd51fa2c0c1128ec3a13ba92f14e61b7650b5de421b88205fd2e3f0cc6ace82f13334114addb90ed1c2f23074a51770a8e9c1273acbc7f3e6 languageName: node linkType: hard @@ -3761,7 +3777,7 @@ __metadata: version: 5.0.3 resolution: "domhandler@npm:5.0.3" dependencies: - domelementtype: "npm:^2.3.0" + domelementtype: ^2.3.0 checksum: 0f58f4a6af63e6f3a4320aa446d28b5790a009018707bce2859dcb1d21144c7876482b5188395a188dfa974238c019e0a1e610d2fc269a12b2c192ea2b0b131c languageName: node linkType: hard @@ -3770,9 +3786,9 @@ __metadata: version: 3.1.0 resolution: "domutils@npm:3.1.0" dependencies: - dom-serializer: "npm:^2.0.0" - domelementtype: "npm:^2.3.0" - domhandler: "npm:^5.0.3" + dom-serializer: ^2.0.0 + domelementtype: ^2.3.0 + domhandler: ^5.0.3 checksum: e5757456ddd173caa411cfc02c2bb64133c65546d2c4081381a3bafc8a57411a41eed70494551aa58030be9e58574fcc489828bebd673863d39924fb4878f416 languageName: node linkType: hard @@ -3781,10 +3797,10 @@ __metadata: version: 3.0.0 resolution: "duplicate-package-checker-webpack-plugin@npm:3.0.0" dependencies: - chalk: "npm:^2.3.0" - find-root: "npm:^1.0.0" - lodash: "npm:^4.17.4" - semver: "npm:^5.4.1" + chalk: ^2.3.0 + find-root: ^1.0.0 + lodash: ^4.17.4 + semver: ^5.4.1 checksum: d77be45cb72d79a429c64d8f8f7603fea681d182fb795459a3d4afa608faad9a923378a7e80c6855f465263e1983140b6fc3682bd0213228b8cd7906ab4b934d languageName: node linkType: hard @@ -3803,10 +3819,21 @@ __metadata: languageName: node linkType: hard -"electron-to-chromium@npm:^1.4.668": - version: 1.4.769 - resolution: "electron-to-chromium@npm:1.4.769" - checksum: 85da5e2f572ea8a7e8028b0a234679d1dbaf437fb5a6bff71d6a3ba49588edc151262e9ffd78219e453405bb586354619f60a31e6cbf27ce4bd87dd6b95fe200 +"ejs@npm:^3.0.0": + version: 3.1.10 + resolution: "ejs@npm:3.1.10" + dependencies: + jake: ^10.8.5 + bin: + ejs: bin/cli.js + checksum: ce90637e9c7538663ae023b8a7a380b2ef7cc4096de70be85abf5a3b9641912dde65353211d05e24d56b1f242d71185c6d00e02cb8860701d571786d92c71f05 + languageName: node + linkType: hard + +"electron-to-chromium@npm:^1.4.820": + version: 1.4.825 + resolution: "electron-to-chromium@npm:1.4.825" + checksum: e01e4cdca1ad3c912e03d9c8615f0d3869bc0f2d2621d8e1ba83f78f5e7cd1cffe801914f7c9d631aa3911752d83598a7d4f1827904b380db9b9d034d69d1ab5 languageName: node linkType: hard @@ -3842,18 +3869,18 @@ __metadata: version: 0.1.13 resolution: "encoding@npm:0.1.13" dependencies: - iconv-lite: "npm:^0.6.2" + iconv-lite: ^0.6.2 checksum: bb98632f8ffa823996e508ce6a58ffcf5856330fde839ae42c9e1f436cc3b5cc651d4aeae72222916545428e54fd0f6aa8862fd8d25bdbcc4589f1e3f3715e7f languageName: node linkType: hard -"enhanced-resolve@npm:^5.0.0, enhanced-resolve@npm:^5.16.0": - version: 5.16.1 - resolution: "enhanced-resolve@npm:5.16.1" +"enhanced-resolve@npm:^5.0.0, enhanced-resolve@npm:^5.17.0": + version: 5.17.0 + resolution: "enhanced-resolve@npm:5.17.0" dependencies: - graceful-fs: "npm:^4.2.4" - tapable: "npm:^2.2.0" - checksum: 6e4c166fef72ef231455f9119686d93ecccb11874f8256d73a42de5b293cb2536050849382468864b25973514ca4fa4cb13c37be2ff857a211e2aca3ff05bb6c + graceful-fs: ^4.2.4 + tapable: ^2.2.0 + checksum: 1066000454da6a7aeabdbe1f433d912d1e39e6892142a78a37b6577aab27e0436091fa1399d857ad87085b1c3b73a0f811c8874da3dbdc40fbd5ebe89a5568e6 languageName: node linkType: hard @@ -3891,7 +3918,7 @@ __metadata: version: 1.3.2 resolution: "error-ex@npm:1.3.2" dependencies: - is-arrayish: "npm:^0.2.1" + is-arrayish: ^0.2.1 checksum: c1c2b8b65f9c91b0f9d75f0debaa7ec5b35c266c2cac5de412c1a6de86d4cbae04ae44e510378cb14d032d0645a36925d0186f8bb7367bcc629db256b743a001 languageName: node linkType: hard @@ -3900,52 +3927,52 @@ __metadata: version: 1.23.3 resolution: "es-abstract@npm:1.23.3" dependencies: - array-buffer-byte-length: "npm:^1.0.1" - arraybuffer.prototype.slice: "npm:^1.0.3" - available-typed-arrays: "npm:^1.0.7" - call-bind: "npm:^1.0.7" - data-view-buffer: "npm:^1.0.1" - data-view-byte-length: "npm:^1.0.1" - data-view-byte-offset: "npm:^1.0.0" - es-define-property: "npm:^1.0.0" - es-errors: "npm:^1.3.0" - es-object-atoms: "npm:^1.0.0" - es-set-tostringtag: "npm:^2.0.3" - es-to-primitive: "npm:^1.2.1" - function.prototype.name: "npm:^1.1.6" - get-intrinsic: "npm:^1.2.4" - get-symbol-description: "npm:^1.0.2" - globalthis: "npm:^1.0.3" - gopd: "npm:^1.0.1" - has-property-descriptors: "npm:^1.0.2" - has-proto: "npm:^1.0.3" - has-symbols: "npm:^1.0.3" - hasown: "npm:^2.0.2" - internal-slot: "npm:^1.0.7" - is-array-buffer: "npm:^3.0.4" - is-callable: "npm:^1.2.7" - is-data-view: "npm:^1.0.1" - is-negative-zero: "npm:^2.0.3" - is-regex: "npm:^1.1.4" - is-shared-array-buffer: "npm:^1.0.3" - is-string: "npm:^1.0.7" - is-typed-array: "npm:^1.1.13" - is-weakref: "npm:^1.0.2" - object-inspect: "npm:^1.13.1" - object-keys: "npm:^1.1.1" - object.assign: "npm:^4.1.5" - regexp.prototype.flags: "npm:^1.5.2" - safe-array-concat: "npm:^1.1.2" - safe-regex-test: "npm:^1.0.3" - string.prototype.trim: "npm:^1.2.9" - string.prototype.trimend: "npm:^1.0.8" - string.prototype.trimstart: "npm:^1.0.8" - typed-array-buffer: "npm:^1.0.2" - typed-array-byte-length: "npm:^1.0.1" - typed-array-byte-offset: "npm:^1.0.2" - typed-array-length: "npm:^1.0.6" - unbox-primitive: "npm:^1.0.2" - which-typed-array: "npm:^1.1.15" + array-buffer-byte-length: ^1.0.1 + arraybuffer.prototype.slice: ^1.0.3 + available-typed-arrays: ^1.0.7 + call-bind: ^1.0.7 + data-view-buffer: ^1.0.1 + data-view-byte-length: ^1.0.1 + data-view-byte-offset: ^1.0.0 + es-define-property: ^1.0.0 + es-errors: ^1.3.0 + es-object-atoms: ^1.0.0 + es-set-tostringtag: ^2.0.3 + es-to-primitive: ^1.2.1 + function.prototype.name: ^1.1.6 + get-intrinsic: ^1.2.4 + get-symbol-description: ^1.0.2 + globalthis: ^1.0.3 + gopd: ^1.0.1 + has-property-descriptors: ^1.0.2 + has-proto: ^1.0.3 + has-symbols: ^1.0.3 + hasown: ^2.0.2 + internal-slot: ^1.0.7 + is-array-buffer: ^3.0.4 + is-callable: ^1.2.7 + is-data-view: ^1.0.1 + is-negative-zero: ^2.0.3 + is-regex: ^1.1.4 + is-shared-array-buffer: ^1.0.3 + is-string: ^1.0.7 + is-typed-array: ^1.1.13 + is-weakref: ^1.0.2 + object-inspect: ^1.13.1 + object-keys: ^1.1.1 + object.assign: ^4.1.5 + regexp.prototype.flags: ^1.5.2 + safe-array-concat: ^1.1.2 + safe-regex-test: ^1.0.3 + string.prototype.trim: ^1.2.9 + string.prototype.trimend: ^1.0.8 + string.prototype.trimstart: ^1.0.8 + typed-array-buffer: ^1.0.2 + typed-array-byte-length: ^1.0.1 + typed-array-byte-offset: ^1.0.2 + typed-array-length: ^1.0.6 + unbox-primitive: ^1.0.2 + which-typed-array: ^1.1.15 checksum: f840cf161224252512f9527306b57117192696571e07920f777cb893454e32999206198b4f075516112af6459daca282826d1735c450528470356d09eff3a9ae languageName: node linkType: hard @@ -3954,7 +3981,7 @@ __metadata: version: 1.0.0 resolution: "es-define-property@npm:1.0.0" dependencies: - get-intrinsic: "npm:^1.2.4" + get-intrinsic: ^1.2.4 checksum: f66ece0a887b6dca71848fa71f70461357c0e4e7249696f81bad0a1f347eed7b31262af4a29f5d726dc026426f085483b6b90301855e647aa8e21936f07293c6 languageName: node linkType: hard @@ -3967,9 +3994,9 @@ __metadata: linkType: hard "es-module-lexer@npm:^1.2.1": - version: 1.5.2 - resolution: "es-module-lexer@npm:1.5.2" - checksum: 59c47109eca80b93dda2418337b4308c194c578704dc57d5aa54973b196e378d31e92f258e5525655b99b3de8a84dda2debb9646cddf6fe8830f1bfca95ee060 + version: 1.5.4 + resolution: "es-module-lexer@npm:1.5.4" + checksum: a0cf04fb92d052647ac7d818d1913b98d3d3d0f5b9d88f0eafb993436e4c3e2c958599db68839d57f2dfa281fdf0f60e18d448eb78fc292c33c0f25635b6854f languageName: node linkType: hard @@ -3977,7 +4004,7 @@ __metadata: version: 1.0.0 resolution: "es-object-atoms@npm:1.0.0" dependencies: - es-errors: "npm:^1.3.0" + es-errors: ^1.3.0 checksum: 26f0ff78ab93b63394e8403c353842b2272836968de4eafe97656adfb8a7c84b9099bf0fe96ed58f4a4cddc860f6e34c77f91649a58a5daa4a9c40b902744e3c languageName: node linkType: hard @@ -3986,9 +4013,9 @@ __metadata: version: 2.0.3 resolution: "es-set-tostringtag@npm:2.0.3" dependencies: - get-intrinsic: "npm:^1.2.4" - has-tostringtag: "npm:^1.0.2" - hasown: "npm:^2.0.1" + get-intrinsic: ^1.2.4 + has-tostringtag: ^1.0.2 + hasown: ^2.0.1 checksum: 7227fa48a41c0ce83e0377b11130d324ac797390688135b8da5c28994c0165be8b252e15cd1de41e1325e5a5412511586960213e88f9ab4a5e7d028895db5129 languageName: node linkType: hard @@ -3997,9 +4024,9 @@ __metadata: version: 1.2.1 resolution: "es-to-primitive@npm:1.2.1" dependencies: - is-callable: "npm:^1.1.4" - is-date-object: "npm:^1.0.1" - is-symbol: "npm:^1.0.2" + is-callable: ^1.1.4 + is-date-object: ^1.0.1 + is-symbol: ^1.0.2 checksum: 4ead6671a2c1402619bdd77f3503991232ca15e17e46222b0a41a5d81aebc8740a77822f5b3c965008e631153e9ef0580540007744521e72de8e33599fca2eed languageName: node linkType: hard @@ -4047,8 +4074,8 @@ __metadata: version: 5.1.3 resolution: "eslint-plugin-prettier@npm:5.1.3" dependencies: - prettier-linter-helpers: "npm:^1.0.0" - synckit: "npm:^0.8.6" + prettier-linter-helpers: ^1.0.0 + synckit: ^0.8.6 peerDependencies: "@types/eslint": ">=8.0.0" eslint: ">=8.0.0" @@ -4067,8 +4094,8 @@ __metadata: version: 5.1.1 resolution: "eslint-scope@npm:5.1.1" dependencies: - esrecurse: "npm:^4.3.0" - estraverse: "npm:^4.1.1" + esrecurse: ^4.3.0 + estraverse: ^4.1.1 checksum: 47e4b6a3f0cc29c7feedee6c67b225a2da7e155802c6ea13bbef4ac6b9e10c66cd2dcb987867ef176292bf4e64eccc680a49e35e9e9c669f4a02bac17e86abdb languageName: node linkType: hard @@ -4077,8 +4104,8 @@ __metadata: version: 7.2.2 resolution: "eslint-scope@npm:7.2.2" dependencies: - esrecurse: "npm:^4.3.0" - estraverse: "npm:^5.2.0" + esrecurse: ^4.3.0 + estraverse: ^5.2.0 checksum: ec97dbf5fb04b94e8f4c5a91a7f0a6dd3c55e46bfc7bbcd0e3138c3a76977570e02ed89a1810c778dcd72072ff0e9621ba1379b4babe53921d71e2e4486fda3e languageName: node linkType: hard @@ -4094,44 +4121,44 @@ __metadata: version: 8.57.0 resolution: "eslint@npm:8.57.0" dependencies: - "@eslint-community/eslint-utils": "npm:^4.2.0" - "@eslint-community/regexpp": "npm:^4.6.1" - "@eslint/eslintrc": "npm:^2.1.4" - "@eslint/js": "npm:8.57.0" - "@humanwhocodes/config-array": "npm:^0.11.14" - "@humanwhocodes/module-importer": "npm:^1.0.1" - "@nodelib/fs.walk": "npm:^1.2.8" - "@ungap/structured-clone": "npm:^1.2.0" - ajv: "npm:^6.12.4" - chalk: "npm:^4.0.0" - cross-spawn: "npm:^7.0.2" - debug: "npm:^4.3.2" - doctrine: "npm:^3.0.0" - escape-string-regexp: "npm:^4.0.0" - eslint-scope: "npm:^7.2.2" - eslint-visitor-keys: "npm:^3.4.3" - espree: "npm:^9.6.1" - esquery: "npm:^1.4.2" - esutils: "npm:^2.0.2" - fast-deep-equal: "npm:^3.1.3" - file-entry-cache: "npm:^6.0.1" - find-up: "npm:^5.0.0" - glob-parent: "npm:^6.0.2" - globals: "npm:^13.19.0" - graphemer: "npm:^1.4.0" - ignore: "npm:^5.2.0" - imurmurhash: "npm:^0.1.4" - is-glob: "npm:^4.0.0" - is-path-inside: "npm:^3.0.3" - js-yaml: "npm:^4.1.0" - json-stable-stringify-without-jsonify: "npm:^1.0.1" - levn: "npm:^0.4.1" - lodash.merge: "npm:^4.6.2" - minimatch: "npm:^3.1.2" - natural-compare: "npm:^1.4.0" - optionator: "npm:^0.9.3" - strip-ansi: "npm:^6.0.1" - text-table: "npm:^0.2.0" + "@eslint-community/eslint-utils": ^4.2.0 + "@eslint-community/regexpp": ^4.6.1 + "@eslint/eslintrc": ^2.1.4 + "@eslint/js": 8.57.0 + "@humanwhocodes/config-array": ^0.11.14 + "@humanwhocodes/module-importer": ^1.0.1 + "@nodelib/fs.walk": ^1.2.8 + "@ungap/structured-clone": ^1.2.0 + ajv: ^6.12.4 + chalk: ^4.0.0 + cross-spawn: ^7.0.2 + debug: ^4.3.2 + doctrine: ^3.0.0 + escape-string-regexp: ^4.0.0 + eslint-scope: ^7.2.2 + eslint-visitor-keys: ^3.4.3 + espree: ^9.6.1 + esquery: ^1.4.2 + esutils: ^2.0.2 + fast-deep-equal: ^3.1.3 + file-entry-cache: ^6.0.1 + find-up: ^5.0.0 + glob-parent: ^6.0.2 + globals: ^13.19.0 + graphemer: ^1.4.0 + ignore: ^5.2.0 + imurmurhash: ^0.1.4 + is-glob: ^4.0.0 + is-path-inside: ^3.0.3 + js-yaml: ^4.1.0 + json-stable-stringify-without-jsonify: ^1.0.1 + levn: ^0.4.1 + lodash.merge: ^4.6.2 + minimatch: ^3.1.2 + natural-compare: ^1.4.0 + optionator: ^0.9.3 + strip-ansi: ^6.0.1 + text-table: ^0.2.0 bin: eslint: bin/eslint.js checksum: 3a48d7ff85ab420a8447e9810d8087aea5b1df9ef68c9151732b478de698389ee656fd895635b5f2871c89ee5a2652b3f343d11e9db6f8486880374ebc74a2d9 @@ -4142,9 +4169,9 @@ __metadata: version: 9.6.1 resolution: "espree@npm:9.6.1" dependencies: - acorn: "npm:^8.9.0" - acorn-jsx: "npm:^5.3.2" - eslint-visitor-keys: "npm:^3.4.1" + acorn: ^8.9.0 + acorn-jsx: ^5.3.2 + eslint-visitor-keys: ^3.4.1 checksum: eb8c149c7a2a77b3f33a5af80c10875c3abd65450f60b8af6db1bfcfa8f101e21c1e56a561c6dc13b848e18148d43469e7cd208506238554fb5395a9ea5a1ab9 languageName: node linkType: hard @@ -4160,11 +4187,11 @@ __metadata: linkType: hard "esquery@npm:^1.4.2": - version: 1.5.0 - resolution: "esquery@npm:1.5.0" + version: 1.6.0 + resolution: "esquery@npm:1.6.0" dependencies: - estraverse: "npm:^5.1.0" - checksum: aefb0d2596c230118656cd4ec7532d447333a410a48834d80ea648b1e7b5c9bc9ed8b5e33a89cb04e487b60d622f44cf5713bf4abed7c97343edefdc84a35900 + estraverse: ^5.1.0 + checksum: 08ec4fe446d9ab27186da274d979558557fbdbbd10968fa9758552482720c54152a5640e08b9009e5a30706b66aba510692054d4129d32d0e12e05bbc0b96fb2 languageName: node linkType: hard @@ -4172,7 +4199,7 @@ __metadata: version: 4.3.0 resolution: "esrecurse@npm:4.3.0" dependencies: - estraverse: "npm:^5.2.0" + estraverse: ^5.2.0 checksum: ebc17b1a33c51cef46fdc28b958994b1dc43cd2e86237515cbc3b4e5d2be6a811b2315d0a1a4d9d340b6d2308b15322f5c8291059521cc5f4802f65e7ec32837 languageName: node linkType: hard @@ -4209,15 +4236,15 @@ __metadata: version: 5.1.1 resolution: "execa@npm:5.1.1" dependencies: - cross-spawn: "npm:^7.0.3" - get-stream: "npm:^6.0.0" - human-signals: "npm:^2.1.0" - is-stream: "npm:^2.0.0" - merge-stream: "npm:^2.0.0" - npm-run-path: "npm:^4.0.1" - onetime: "npm:^5.1.2" - signal-exit: "npm:^3.0.3" - strip-final-newline: "npm:^2.0.0" + cross-spawn: ^7.0.3 + get-stream: ^6.0.0 + human-signals: ^2.1.0 + is-stream: ^2.0.0 + merge-stream: ^2.0.0 + npm-run-path: ^4.0.1 + onetime: ^5.1.2 + signal-exit: ^3.0.3 + strip-final-newline: ^2.0.0 checksum: fba9022c8c8c15ed862847e94c252b3d946036d7547af310e344a527e59021fd8b6bb0723883ea87044dc4f0201f949046993124a42ccb0855cae5bf8c786343 languageName: node linkType: hard @@ -4233,11 +4260,11 @@ __metadata: version: 29.7.0 resolution: "expect@npm:29.7.0" dependencies: - "@jest/expect-utils": "npm:^29.7.0" - jest-get-type: "npm:^29.6.3" - jest-matcher-utils: "npm:^29.7.0" - jest-message-util: "npm:^29.7.0" - jest-util: "npm:^29.7.0" + "@jest/expect-utils": ^29.7.0 + jest-get-type: ^29.6.3 + jest-matcher-utils: ^29.7.0 + jest-message-util: ^29.7.0 + jest-util: ^29.7.0 checksum: 9257f10288e149b81254a0fda8ffe8d54a7061cd61d7515779998b012579d2b8c22354b0eb901daf0145f347403da582f75f359f4810c007182ad3fb318b5c0c languageName: node linkType: hard @@ -4267,11 +4294,11 @@ __metadata: version: 3.3.2 resolution: "fast-glob@npm:3.3.2" dependencies: - "@nodelib/fs.stat": "npm:^2.0.2" - "@nodelib/fs.walk": "npm:^1.2.3" - glob-parent: "npm:^5.1.2" - merge2: "npm:^1.3.0" - micromatch: "npm:^4.0.4" + "@nodelib/fs.stat": ^2.0.2 + "@nodelib/fs.walk": ^1.2.3 + glob-parent: ^5.1.2 + merge2: ^1.3.0 + micromatch: ^4.0.4 checksum: 900e4979f4dbc3313840078419245621259f349950411ca2fa445a2f9a1a6d98c3b5e7e0660c5ccd563aa61abe133a21765c6c0dec8e57da1ba71d8000b05ec1 languageName: node linkType: hard @@ -4301,7 +4328,7 @@ __metadata: version: 1.17.1 resolution: "fastq@npm:1.17.1" dependencies: - reusify: "npm:^1.0.4" + reusify: ^1.0.4 checksum: a8c5b26788d5a1763f88bae56a8ddeee579f935a831c5fe7a8268cea5b0a91fbfe705f612209e02d639b881d7b48e461a50da4a10cfaa40da5ca7cc9da098d88 languageName: node linkType: hard @@ -4310,7 +4337,7 @@ __metadata: version: 2.0.2 resolution: "fb-watchman@npm:2.0.2" dependencies: - bser: "npm:2.1.1" + bser: 2.1.1 checksum: b15a124cef28916fe07b400eb87cbc73ca082c142abf7ca8e8de6af43eca79ca7bd13eb4d4d48240b3bd3136eaac40d16e42d6edf87a8e5d1dd8070626860c78 languageName: node linkType: hard @@ -4319,17 +4346,26 @@ __metadata: version: 6.0.1 resolution: "file-entry-cache@npm:6.0.1" dependencies: - flat-cache: "npm:^3.0.4" + flat-cache: ^3.0.4 checksum: f49701feaa6314c8127c3c2f6173cfefff17612f5ed2daaafc6da13b5c91fd43e3b2a58fd0d63f9f94478a501b167615931e7200e31485e320f74a33885a9c74 languageName: node linkType: hard -"fill-range@npm:^7.0.1": - version: 7.0.1 - resolution: "fill-range@npm:7.0.1" +"filelist@npm:^1.0.4": + version: 1.0.4 + resolution: "filelist@npm:1.0.4" + dependencies: + minimatch: ^5.0.1 + checksum: a303573b0821e17f2d5e9783688ab6fbfce5d52aaac842790ae85e704a6f5e4e3538660a63183d6453834dedf1e0f19a9dadcebfa3e926c72397694ea11f5160 + languageName: node + linkType: hard + +"fill-range@npm:^7.1.1": + version: 7.1.1 + resolution: "fill-range@npm:7.1.1" dependencies: - to-regex-range: "npm:^5.0.1" - checksum: cc283f4e65b504259e64fd969bcf4def4eb08d85565e906b7d36516e87819db52029a76b6363d0f02d0d532f0033c9603b9e2d943d56ee3b0d4f7ad3328ff917 + to-regex-range: ^5.0.1 + checksum: b4abfbca3839a3d55e4ae5ec62e131e2e356bf4859ce8480c64c4876100f4df292a63e5bb1618e1d7460282ca2b305653064f01654474aa35c68000980f17798 languageName: node linkType: hard @@ -4344,8 +4380,8 @@ __metadata: version: 4.1.0 resolution: "find-up@npm:4.1.0" dependencies: - locate-path: "npm:^5.0.0" - path-exists: "npm:^4.0.0" + locate-path: ^5.0.0 + path-exists: ^4.0.0 checksum: 4c172680e8f8c1f78839486e14a43ef82e9decd0e74145f40707cc42e7420506d5ec92d9a11c22bd2c48fb0c384ea05dd30e10dd152fefeec6f2f75282a8b844 languageName: node linkType: hard @@ -4354,8 +4390,8 @@ __metadata: version: 5.0.0 resolution: "find-up@npm:5.0.0" dependencies: - locate-path: "npm:^6.0.0" - path-exists: "npm:^4.0.0" + locate-path: ^6.0.0 + path-exists: ^4.0.0 checksum: 07955e357348f34660bde7920783204ff5a26ac2cafcaa28bace494027158a97b9f56faaf2d89a6106211a8174db650dd9f503f9c0d526b1202d5554a00b9095 languageName: node linkType: hard @@ -4364,9 +4400,9 @@ __metadata: version: 3.2.0 resolution: "flat-cache@npm:3.2.0" dependencies: - flatted: "npm:^3.2.9" - keyv: "npm:^4.5.3" - rimraf: "npm:^3.0.2" + flatted: ^3.2.9 + keyv: ^4.5.3 + rimraf: ^3.0.2 checksum: e7e0f59801e288b54bee5cb9681e9ee21ee28ef309f886b312c9d08415b79fc0f24ac842f84356ce80f47d6a53de62197ce0e6e148dc42d5db005992e2a756ec languageName: node linkType: hard @@ -4391,18 +4427,18 @@ __metadata: version: 0.3.3 resolution: "for-each@npm:0.3.3" dependencies: - is-callable: "npm:^1.1.3" + is-callable: ^1.1.3 checksum: 6c48ff2bc63362319c65e2edca4a8e1e3483a2fabc72fbe7feaf8c73db94fc7861bd53bc02c8a66a0c1dd709da6b04eec42e0abdd6b40ce47305ae92a25e5d28 languageName: node linkType: hard "foreground-child@npm:^3.1.0": - version: 3.1.1 - resolution: "foreground-child@npm:3.1.1" + version: 3.2.1 + resolution: "foreground-child@npm:3.2.1" dependencies: - cross-spawn: "npm:^7.0.0" - signal-exit: "npm:^4.0.1" - checksum: 139d270bc82dc9e6f8bc045fe2aae4001dc2472157044fdfad376d0a3457f77857fa883c1c8b21b491c6caade9a926a4bed3d3d2e8d3c9202b151a4cbbd0bcd5 + cross-spawn: ^7.0.0 + signal-exit: ^4.0.1 + checksum: 3e2e844d6003c96d70affe8ae98d7eaaba269a868c14d997620c088340a8775cd5d2d9043e6ceebae1928d8d9a874911c4d664b9a267e8995945df20337aebc0 languageName: node linkType: hard @@ -4410,9 +4446,9 @@ __metadata: version: 10.1.0 resolution: "fs-extra@npm:10.1.0" dependencies: - graceful-fs: "npm:^4.2.0" - jsonfile: "npm:^6.0.1" - universalify: "npm:^2.0.0" + graceful-fs: ^4.2.0 + jsonfile: ^6.0.1 + universalify: ^2.0.0 checksum: dc94ab37096f813cc3ca12f0f1b5ad6744dfed9ed21e953d72530d103cea193c2f81584a39e9dee1bea36de5ee66805678c0dddc048e8af1427ac19c00fffc50 languageName: node linkType: hard @@ -4421,9 +4457,9 @@ __metadata: version: 11.2.0 resolution: "fs-extra@npm:11.2.0" dependencies: - graceful-fs: "npm:^4.2.0" - jsonfile: "npm:^6.0.1" - universalify: "npm:^2.0.0" + graceful-fs: ^4.2.0 + jsonfile: ^6.0.1 + universalify: ^2.0.0 checksum: b12e42fa40ba47104202f57b8480dd098aa931c2724565e5e70779ab87605665594e76ee5fb00545f772ab9ace167fe06d2ab009c416dc8c842c5ae6df7aa7e8 languageName: node linkType: hard @@ -4432,7 +4468,7 @@ __metadata: version: 2.1.0 resolution: "fs-minipass@npm:2.1.0" dependencies: - minipass: "npm:^3.0.0" + minipass: ^3.0.0 checksum: 1b8d128dae2ac6cc94230cc5ead341ba3e0efaef82dab46a33d171c044caaa6ca001364178d42069b2809c35a1c3c35079a32107c770e9ffab3901b59af8c8b1 languageName: node linkType: hard @@ -4441,7 +4477,7 @@ __metadata: version: 3.0.3 resolution: "fs-minipass@npm:3.0.3" dependencies: - minipass: "npm:^7.0.3" + minipass: ^7.0.3 checksum: 8722a41109130851d979222d3ec88aabaceeaaf8f57b2a8f744ef8bd2d1ce95453b04a61daa0078822bc5cd21e008814f06fe6586f56fef511e71b8d2394d802 languageName: node linkType: hard @@ -4457,17 +4493,17 @@ __metadata: version: 2.3.3 resolution: "fsevents@npm:2.3.3" dependencies: - node-gyp: "npm:latest" + node-gyp: latest checksum: 11e6ea6fea15e42461fc55b4b0e4a0a3c654faa567f1877dbd353f39156f69def97a69936d1746619d656c4b93de2238bf731f6085a03a50cabf287c9d024317 conditions: os=darwin languageName: node linkType: hard -"fsevents@patch:fsevents@npm%3A^2.3.2#~builtin": +"fsevents@patch:fsevents@^2.3.2#~builtin": version: 2.3.3 resolution: "fsevents@patch:fsevents@npm%3A2.3.3#~builtin::version=2.3.3&hash=df0bf1" dependencies: - node-gyp: "npm:latest" + node-gyp: latest conditions: os=darwin languageName: node linkType: hard @@ -4483,10 +4519,10 @@ __metadata: version: 1.1.6 resolution: "function.prototype.name@npm:1.1.6" dependencies: - call-bind: "npm:^1.0.2" - define-properties: "npm:^1.2.0" - es-abstract: "npm:^1.22.1" - functions-have-names: "npm:^1.2.3" + call-bind: ^1.0.2 + define-properties: ^1.2.0 + es-abstract: ^1.22.1 + functions-have-names: ^1.2.3 checksum: 7a3f9bd98adab09a07f6e1f03da03d3f7c26abbdeaeee15223f6c04a9fb5674792bdf5e689dac19b97ac71de6aad2027ba3048a9b883aa1b3173eed6ab07f479 languageName: node linkType: hard @@ -4509,14 +4545,14 @@ __metadata: version: 2.1.3 resolution: "geotiff@npm:2.1.3" dependencies: - "@petamoriken/float16": "npm:^3.4.7" - lerc: "npm:^3.0.0" - pako: "npm:^2.0.4" - parse-headers: "npm:^2.0.2" - quick-lru: "npm:^6.1.1" - web-worker: "npm:^1.2.0" - xml-utils: "npm:^1.0.2" - zstddec: "npm:^0.1.0" + "@petamoriken/float16": ^3.4.7 + lerc: ^3.0.0 + pako: ^2.0.4 + parse-headers: ^2.0.2 + quick-lru: ^6.1.1 + web-worker: ^1.2.0 + xml-utils: ^1.0.2 + zstddec: ^0.1.0 checksum: e966c735339fe121d7cf22fad71c68dbe5f6c88c252baed40bc596c662829bdc6df1c2463855c2dfc5453d191425f6151945b2ad063837cb82a99fe3eb482b50 languageName: node linkType: hard @@ -4532,11 +4568,11 @@ __metadata: version: 1.2.4 resolution: "get-intrinsic@npm:1.2.4" dependencies: - es-errors: "npm:^1.3.0" - function-bind: "npm:^1.1.2" - has-proto: "npm:^1.0.1" - has-symbols: "npm:^1.0.3" - hasown: "npm:^2.0.0" + es-errors: ^1.3.0 + function-bind: ^1.1.2 + has-proto: ^1.0.1 + has-symbols: ^1.0.3 + hasown: ^2.0.0 checksum: 414e3cdf2c203d1b9d7d33111df746a4512a1aa622770b361dadddf8ed0b5aeb26c560f49ca077e24bfafb0acb55ca908d1f709216ccba33ffc548ec8a79a951 languageName: node linkType: hard @@ -4559,9 +4595,9 @@ __metadata: version: 1.0.2 resolution: "get-symbol-description@npm:1.0.2" dependencies: - call-bind: "npm:^1.0.5" - es-errors: "npm:^1.3.0" - get-intrinsic: "npm:^1.2.4" + call-bind: ^1.0.5 + es-errors: ^1.3.0 + get-intrinsic: ^1.2.4 checksum: e1cb53bc211f9dbe9691a4f97a46837a553c4e7caadd0488dc24ac694db8a390b93edd412b48dcdd0b4bbb4c595de1709effc75fc87c0839deedc6968f5bd973 languageName: node linkType: hard @@ -4570,7 +4606,7 @@ __metadata: version: 5.1.2 resolution: "glob-parent@npm:5.1.2" dependencies: - is-glob: "npm:^4.0.1" + is-glob: ^4.0.1 checksum: f4f2bfe2425296e8a47e36864e4f42be38a996db40420fe434565e4480e3322f18eb37589617a98640c5dc8fdec1a387007ee18dbb1f3f5553409c34d17f425e languageName: node linkType: hard @@ -4579,7 +4615,7 @@ __metadata: version: 6.0.2 resolution: "glob-parent@npm:6.0.2" dependencies: - is-glob: "npm:^4.0.3" + is-glob: ^4.0.3 checksum: c13ee97978bef4f55106b71e66428eb1512e71a7466ba49025fc2aec59a5bfb0954d5abd58fc5ee6c9b076eef4e1f6d3375c2e964b88466ca390da4419a786a8 languageName: node linkType: hard @@ -4592,17 +4628,18 @@ __metadata: linkType: hard "glob@npm:^10.2.2, glob@npm:^10.3.10, glob@npm:^10.3.7": - version: 10.3.15 - resolution: "glob@npm:10.3.15" - dependencies: - foreground-child: "npm:^3.1.0" - jackspeak: "npm:^2.3.6" - minimatch: "npm:^9.0.1" - minipass: "npm:^7.0.4" - path-scurry: "npm:^1.11.0" + version: 10.4.5 + resolution: "glob@npm:10.4.5" + dependencies: + foreground-child: ^3.1.0 + jackspeak: ^3.1.2 + minimatch: ^9.0.4 + minipass: ^7.1.2 + package-json-from-dist: ^1.0.0 + path-scurry: ^1.11.1 bin: glob: dist/esm/bin.mjs - checksum: c7aeae0b4eea0dfedc6682b71a8ad4d1ea9dfec0f2440571f916e1918c046824c8d441bbe1965c06fede025a0726c6daab5ae8019afe667364f43776eaaf9044 + checksum: 0bc725de5e4862f9f387fd0f2b274baf16850dcd2714502ccf471ee401803997983e2c05590cb65f9675a3c6f2a58e7a53f9e365704108c6ad3cbf1d60934c4a languageName: node linkType: hard @@ -4610,12 +4647,12 @@ __metadata: version: 7.2.3 resolution: "glob@npm:7.2.3" dependencies: - fs.realpath: "npm:^1.0.0" - inflight: "npm:^1.0.4" - inherits: "npm:2" - minimatch: "npm:^3.1.1" - once: "npm:^1.3.0" - path-is-absolute: "npm:^1.0.0" + fs.realpath: ^1.0.0 + inflight: ^1.0.4 + inherits: 2 + minimatch: ^3.1.1 + once: ^1.3.0 + path-is-absolute: ^1.0.0 checksum: 29452e97b38fa704dabb1d1045350fb2467cf0277e155aa9ff7077e90ad81d1ea9d53d3ee63bd37c05b09a065e90f16aec4a65f5b8de401d1dac40bc5605d133 languageName: node linkType: hard @@ -4624,12 +4661,12 @@ __metadata: version: 7.1.7 resolution: "glob@npm:7.1.7" dependencies: - fs.realpath: "npm:^1.0.0" - inflight: "npm:^1.0.4" - inherits: "npm:2" - minimatch: "npm:^3.0.4" - once: "npm:^1.3.0" - path-is-absolute: "npm:^1.0.0" + fs.realpath: ^1.0.0 + inflight: ^1.0.4 + inherits: 2 + minimatch: ^3.0.4 + once: ^1.3.0 + path-is-absolute: ^1.0.0 checksum: b61f48973bbdcf5159997b0874a2165db572b368b931135832599875919c237fc05c12984e38fe828e69aa8a921eb0e8a4997266211c517c9cfaae8a93988bb8 languageName: node linkType: hard @@ -4645,7 +4682,7 @@ __metadata: version: 13.24.0 resolution: "globals@npm:13.24.0" dependencies: - type-fest: "npm:^0.20.2" + type-fest: ^0.20.2 checksum: 56066ef058f6867c04ff203b8a44c15b038346a62efbc3060052a1016be9f56f4cf0b2cd45b74b22b81e521a889fc7786c73691b0549c2f3a6e825b3d394f43c languageName: node linkType: hard @@ -4654,8 +4691,8 @@ __metadata: version: 1.0.4 resolution: "globalthis@npm:1.0.4" dependencies: - define-properties: "npm:^1.2.1" - gopd: "npm:^1.0.1" + define-properties: ^1.2.1 + gopd: ^1.0.1 checksum: 39ad667ad9f01476474633a1834a70842041f70a55571e8dcef5fb957980a92da5022db5430fca8aecc5d47704ae30618c0bc877a579c70710c904e9ef06108a languageName: node linkType: hard @@ -4664,12 +4701,12 @@ __metadata: version: 11.1.0 resolution: "globby@npm:11.1.0" dependencies: - array-union: "npm:^2.1.0" - dir-glob: "npm:^3.0.1" - fast-glob: "npm:^3.2.9" - ignore: "npm:^5.2.0" - merge2: "npm:^1.4.1" - slash: "npm:^3.0.0" + array-union: ^2.1.0 + dir-glob: ^3.0.1 + fast-glob: ^3.2.9 + ignore: ^5.2.0 + merge2: ^1.4.1 + slash: ^3.0.0 checksum: b4be8885e0cfa018fc783792942d53926c35c50b3aefd3fdcfb9d22c627639dc26bd2327a40a0b74b074100ce95bb7187bfeae2f236856aa3de183af7a02aea6 languageName: node linkType: hard @@ -4678,7 +4715,7 @@ __metadata: version: 1.0.1 resolution: "gopd@npm:1.0.1" dependencies: - get-intrinsic: "npm:^1.1.3" + get-intrinsic: ^1.1.3 checksum: a5ccfb8806e0917a94e0b3de2af2ea4979c1da920bc381667c260e00e7cafdbe844e2cb9c5bcfef4e5412e8bf73bab837285bc35c7ba73aaaf0134d4583393a6 languageName: node linkType: hard @@ -4729,7 +4766,7 @@ __metadata: version: 1.0.2 resolution: "has-property-descriptors@npm:1.0.2" dependencies: - es-define-property: "npm:^1.0.0" + es-define-property: ^1.0.0 checksum: fcbb246ea2838058be39887935231c6d5788babed499d0e9d0cc5737494c48aba4fe17ba1449e0d0fbbb1e36175442faa37f9c427ae357d6ccb1d895fbcd3de3 languageName: node linkType: hard @@ -4752,7 +4789,7 @@ __metadata: version: 1.0.2 resolution: "has-tostringtag@npm:1.0.2" dependencies: - has-symbols: "npm:^1.0.3" + has-symbols: ^1.0.3 checksum: 999d60bb753ad714356b2c6c87b7fb74f32463b8426e159397da4bde5bca7e598ab1073f4d8d4deafac297f2eb311484cd177af242776bf05f0d11565680468d languageName: node linkType: hard @@ -4761,7 +4798,7 @@ __metadata: version: 2.0.2 resolution: "hasown@npm:2.0.2" dependencies: - function-bind: "npm:^1.1.2" + function-bind: ^1.1.2 checksum: e8516f776a15149ca6c6ed2ae3110c417a00b62260e222590e54aa367cbcd6ed99122020b37b7fbdf05748df57b265e70095d7bf35a47660587619b15ffb93db languageName: node linkType: hard @@ -4784,10 +4821,10 @@ __metadata: version: 8.0.2 resolution: "htmlparser2@npm:8.0.2" dependencies: - domelementtype: "npm:^2.3.0" - domhandler: "npm:^5.0.3" - domutils: "npm:^3.0.1" - entities: "npm:^4.4.0" + domelementtype: ^2.3.0 + domhandler: ^5.0.3 + domutils: ^3.0.1 + entities: ^4.4.0 checksum: 29167a0f9282f181da8a6d0311b76820c8a59bc9e3c87009e21968264c2987d2723d6fde5a964d4b7b6cba663fca96ffb373c06d8223a85f52a6089ced942700 languageName: node linkType: hard @@ -4803,19 +4840,19 @@ __metadata: version: 7.0.2 resolution: "http-proxy-agent@npm:7.0.2" dependencies: - agent-base: "npm:^7.1.0" - debug: "npm:^4.3.4" + agent-base: ^7.1.0 + debug: ^4.3.4 checksum: 670858c8f8f3146db5889e1fa117630910101db601fff7d5a8aa637da0abedf68c899f03d3451cac2f83bcc4c3d2dabf339b3aa00ff8080571cceb02c3ce02f3 languageName: node linkType: hard "https-proxy-agent@npm:^7.0.1": - version: 7.0.4 - resolution: "https-proxy-agent@npm:7.0.4" + version: 7.0.5 + resolution: "https-proxy-agent@npm:7.0.5" dependencies: - agent-base: "npm:^7.0.2" - debug: "npm:4" - checksum: daaab857a967a2519ddc724f91edbbd388d766ff141b9025b629f92b9408fc83cee8a27e11a907aede392938e9c398e240d643e178408a59e4073539cde8cfe9 + agent-base: ^7.0.2 + debug: 4 + checksum: 2e1a28960f13b041a50702ee74f240add8e75146a5c37fc98f1960f0496710f6918b3a9fe1e5aba41e50f58e6df48d107edd9c405c5f0d73ac260dabf2210857 languageName: node linkType: hard @@ -4830,7 +4867,7 @@ __metadata: version: 0.6.3 resolution: "iconv-lite@npm:0.6.3" dependencies: - safer-buffer: "npm:>= 2.1.2 < 3.0.0" + safer-buffer: ">= 2.1.2 < 3.0.0" checksum: 3f60d47a5c8fc3313317edfd29a00a692cc87a19cac0159e2ce711d0ebc9019064108323b5e493625e25594f11c6236647d8e256fbe7a58f4a3b33b89e6d30bf languageName: node linkType: hard @@ -4848,7 +4885,7 @@ __metadata: version: 3.0.0 resolution: "identity-obj-proxy@npm:3.0.0" dependencies: - harmony-reflect: "npm:^1.4.6" + harmony-reflect: ^1.4.6 checksum: 97559f8ea2aeaa1a880d279d8c49550dce01148321e00a2102cda5ddf9ce622fa1d7f3efc7bed63458af78889de888fdaebaf31c816312298bb3fdd0ef8aaf2c languageName: node linkType: hard @@ -4871,8 +4908,8 @@ __metadata: version: 3.3.0 resolution: "import-fresh@npm:3.3.0" dependencies: - parent-module: "npm:^1.0.0" - resolve-from: "npm:^4.0.0" + parent-module: ^1.0.0 + resolve-from: ^4.0.0 checksum: 2cacfad06e652b1edc50be650f7ec3be08c5e5a6f6d12d035c440a42a8cc028e60a5b99ca08a77ab4d6b1346da7d971915828f33cdab730d3d42f08242d09baa languageName: node linkType: hard @@ -4881,8 +4918,8 @@ __metadata: version: 3.1.0 resolution: "import-local@npm:3.1.0" dependencies: - pkg-dir: "npm:^4.2.0" - resolve-cwd: "npm:^3.0.0" + pkg-dir: ^4.2.0 + resolve-cwd: ^3.0.0 bin: import-local-fixture: fixtures/cli.js checksum: bfcdb63b5e3c0e245e347f3107564035b128a414c4da1172a20dc67db2504e05ede4ac2eee1252359f78b0bfd7b19ef180aec427c2fce6493ae782d73a04cddd @@ -4907,8 +4944,8 @@ __metadata: version: 1.0.6 resolution: "inflight@npm:1.0.6" dependencies: - once: "npm:^1.3.0" - wrappy: "npm:1" + once: ^1.3.0 + wrappy: 1 checksum: f4f76aa072ce19fae87ce1ef7d221e709afb59d445e05d47fba710e85470923a75de35bfae47da6de1b18afc3ce83d70facf44cfb0aff89f0a3f45c0a0244dfd languageName: node linkType: hard @@ -4924,9 +4961,9 @@ __metadata: version: 1.0.7 resolution: "internal-slot@npm:1.0.7" dependencies: - es-errors: "npm:^1.3.0" - hasown: "npm:^2.0.0" - side-channel: "npm:^1.0.4" + es-errors: ^1.3.0 + hasown: ^2.0.0 + side-channel: ^1.0.4 checksum: cadc5eea5d7d9bc2342e93aae9f31f04c196afebb11bde97448327049f492cd7081e18623ae71388aac9cd237b692ca3a105be9c68ac39c1dec679d7409e33eb languageName: node linkType: hard @@ -4942,8 +4979,8 @@ __metadata: version: 9.0.5 resolution: "ip-address@npm:9.0.5" dependencies: - jsbn: "npm:1.1.0" - sprintf-js: "npm:^1.1.3" + jsbn: 1.1.0 + sprintf-js: ^1.1.3 checksum: aa15f12cfd0ef5e38349744e3654bae649a34c3b10c77a674a167e99925d1549486c5b14730eebce9fea26f6db9d5e42097b00aa4f9f612e68c79121c71652dc languageName: node linkType: hard @@ -4974,6 +5011,7 @@ __metadata: mkdirp: ^3.0.1 npm-run-all: ^4.1.5 ol: ^9.1.0 + olwind: "github:gberaudo/olwind#master" prettier: ^3.2.4 rimraf: ^5.0.5 source-map-loader: ^5.0.0 @@ -4990,8 +5028,8 @@ __metadata: version: 3.0.4 resolution: "is-array-buffer@npm:3.0.4" dependencies: - call-bind: "npm:^1.0.2" - get-intrinsic: "npm:^1.2.1" + call-bind: ^1.0.2 + get-intrinsic: ^1.2.1 checksum: e4e3e6ef0ff2239e75371d221f74bc3c26a03564a22efb39f6bb02609b598917ddeecef4e8c877df2a25888f247a98198959842a5e73236bc7f22cabdf6351a7 languageName: node linkType: hard @@ -5007,7 +5045,7 @@ __metadata: version: 1.0.4 resolution: "is-bigint@npm:1.0.4" dependencies: - has-bigints: "npm:^1.0.1" + has-bigints: ^1.0.1 checksum: c56edfe09b1154f8668e53ebe8252b6f185ee852a50f9b41e8d921cb2bed425652049fbe438723f6cb48a63ca1aa051e948e7e401e093477c99c84eba244f666 languageName: node linkType: hard @@ -5016,8 +5054,8 @@ __metadata: version: 1.1.2 resolution: "is-boolean-object@npm:1.1.2" dependencies: - call-bind: "npm:^1.0.2" - has-tostringtag: "npm:^1.0.0" + call-bind: ^1.0.2 + has-tostringtag: ^1.0.0 checksum: c03b23dbaacadc18940defb12c1c0e3aaece7553ef58b162a0f6bba0c2a7e1551b59f365b91e00d2dbac0522392d576ef322628cb1d036a0fe51eb466db67222 languageName: node linkType: hard @@ -5030,11 +5068,11 @@ __metadata: linkType: hard "is-core-module@npm:^2.13.0": - version: 2.13.1 - resolution: "is-core-module@npm:2.13.1" + version: 2.14.0 + resolution: "is-core-module@npm:2.14.0" dependencies: - hasown: "npm:^2.0.0" - checksum: 256559ee8a9488af90e4bad16f5583c6d59e92f0742e9e8bb4331e758521ee86b810b93bae44f390766ffbc518a0488b18d9dab7da9a5ff997d499efc9403f7c + hasown: ^2.0.2 + checksum: 6bba6c8dc99d88d6f3b2746709d82caddcd9565cafd5870e28ab320720e27e6d9d2bb953ba0839ed4d2ee264bfdd14a9fa1bbc242a916f7dacc8aa95f0322256 languageName: node linkType: hard @@ -5042,7 +5080,7 @@ __metadata: version: 1.0.1 resolution: "is-data-view@npm:1.0.1" dependencies: - is-typed-array: "npm:^1.1.13" + is-typed-array: ^1.1.13 checksum: 4ba4562ac2b2ec005fefe48269d6bd0152785458cd253c746154ffb8a8ab506a29d0cfb3b74af87513843776a88e4981ae25c89457bf640a33748eab1a7216b5 languageName: node linkType: hard @@ -5051,7 +5089,7 @@ __metadata: version: 1.0.5 resolution: "is-date-object@npm:1.0.5" dependencies: - has-tostringtag: "npm:^1.0.0" + has-tostringtag: ^1.0.0 checksum: baa9077cdf15eb7b58c79398604ca57379b2fc4cf9aa7a9b9e295278648f628c9b201400c01c5e0f7afae56507d741185730307cbe7cad3b9f90a77e5ee342fc languageName: node linkType: hard @@ -5081,7 +5119,7 @@ __metadata: version: 4.0.3 resolution: "is-glob@npm:4.0.3" dependencies: - is-extglob: "npm:^2.1.1" + is-extglob: ^2.1.1 checksum: d381c1319fcb69d341cc6e6c7cd588e17cd94722d9a32dbd60660b993c4fb7d0f19438674e68dfec686d09b7c73139c9166b47597f846af387450224a8101ab4 languageName: node linkType: hard @@ -5104,7 +5142,7 @@ __metadata: version: 1.0.7 resolution: "is-number-object@npm:1.0.7" dependencies: - has-tostringtag: "npm:^1.0.0" + has-tostringtag: ^1.0.0 checksum: d1e8d01bb0a7134c74649c4e62da0c6118a0bfc6771ea3c560914d52a627873e6920dd0fd0ebc0e12ad2ff4687eac4c308f7e80320b973b2c8a2c8f97a7524f7 languageName: node linkType: hard @@ -5127,7 +5165,7 @@ __metadata: version: 2.0.4 resolution: "is-plain-object@npm:2.0.4" dependencies: - isobject: "npm:^3.0.1" + isobject: ^3.0.1 checksum: 2a401140cfd86cabe25214956ae2cfee6fbd8186809555cd0e84574f88de7b17abacb2e477a6a658fa54c6083ecbda1e6ae404c7720244cd198903848fca70ca languageName: node linkType: hard @@ -5143,8 +5181,8 @@ __metadata: version: 1.1.4 resolution: "is-regex@npm:1.1.4" dependencies: - call-bind: "npm:^1.0.2" - has-tostringtag: "npm:^1.0.0" + call-bind: ^1.0.2 + has-tostringtag: ^1.0.0 checksum: 362399b33535bc8f386d96c45c9feb04cf7f8b41c182f54174c1a45c9abbbe5e31290bbad09a458583ff6bf3b2048672cdb1881b13289569a7c548370856a652 languageName: node linkType: hard @@ -5153,7 +5191,7 @@ __metadata: version: 1.0.3 resolution: "is-shared-array-buffer@npm:1.0.3" dependencies: - call-bind: "npm:^1.0.7" + call-bind: ^1.0.7 checksum: a4fff602c309e64ccaa83b859255a43bb011145a42d3f56f67d9268b55bc7e6d98a5981a1d834186ad3105d6739d21547083fe7259c76c0468483fc538e716d8 languageName: node linkType: hard @@ -5169,7 +5207,7 @@ __metadata: version: 1.0.7 resolution: "is-string@npm:1.0.7" dependencies: - has-tostringtag: "npm:^1.0.0" + has-tostringtag: ^1.0.0 checksum: 323b3d04622f78d45077cf89aab783b2f49d24dc641aa89b5ad1a72114cfeff2585efc8c12ef42466dff32bde93d839ad321b26884cf75e5a7892a938b089989 languageName: node linkType: hard @@ -5178,7 +5216,7 @@ __metadata: version: 1.0.4 resolution: "is-symbol@npm:1.0.4" dependencies: - has-symbols: "npm:^1.0.2" + has-symbols: ^1.0.2 checksum: 92805812ef590738d9de49d677cd17dfd486794773fb6fa0032d16452af46e9b91bb43ffe82c983570f015b37136f4b53b28b8523bfb10b0ece7a66c31a54510 languageName: node linkType: hard @@ -5187,7 +5225,7 @@ __metadata: version: 1.1.13 resolution: "is-typed-array@npm:1.1.13" dependencies: - which-typed-array: "npm:^1.1.14" + which-typed-array: ^1.1.14 checksum: 150f9ada183a61554c91e1c4290086d2c100b0dff45f60b028519be72a8db964da403c48760723bf5253979b8dffe7b544246e0e5351dcd05c5fdb1dcc1dc0f0 languageName: node linkType: hard @@ -5196,7 +5234,7 @@ __metadata: version: 1.0.2 resolution: "is-weakref@npm:1.0.2" dependencies: - call-bind: "npm:^1.0.2" + call-bind: ^1.0.2 checksum: 95bd9a57cdcb58c63b1c401c60a474b0f45b94719c30f548c891860f051bc2231575c290a6b420c6bc6e7ed99459d424c652bd5bf9a1d5259505dc35b4bf83de languageName: node linkType: hard @@ -5247,25 +5285,25 @@ __metadata: version: 5.2.1 resolution: "istanbul-lib-instrument@npm:5.2.1" dependencies: - "@babel/core": "npm:^7.12.3" - "@babel/parser": "npm:^7.14.7" - "@istanbuljs/schema": "npm:^0.1.2" - istanbul-lib-coverage: "npm:^3.2.0" - semver: "npm:^6.3.0" + "@babel/core": ^7.12.3 + "@babel/parser": ^7.14.7 + "@istanbuljs/schema": ^0.1.2 + istanbul-lib-coverage: ^3.2.0 + semver: ^6.3.0 checksum: bf16f1803ba5e51b28bbd49ed955a736488381e09375d830e42ddeb403855b2006f850711d95ad726f2ba3f1ae8e7366de7e51d2b9ac67dc4d80191ef7ddf272 languageName: node linkType: hard "istanbul-lib-instrument@npm:^6.0.0": - version: 6.0.2 - resolution: "istanbul-lib-instrument@npm:6.0.2" + version: 6.0.3 + resolution: "istanbul-lib-instrument@npm:6.0.3" dependencies: - "@babel/core": "npm:^7.23.9" - "@babel/parser": "npm:^7.23.9" - "@istanbuljs/schema": "npm:^0.1.3" - istanbul-lib-coverage: "npm:^3.2.0" - semver: "npm:^7.5.4" - checksum: c10aa1e93a022f9767d7f41e6c07d244cc0a5c090fbb5522d70a5f21fcb98c52b7038850276c6fd1a7a17d1868c14a9d4eb8a24efe58a0ebb9a06f3da68131fe + "@babel/core": ^7.23.9 + "@babel/parser": ^7.23.9 + "@istanbuljs/schema": ^0.1.3 + istanbul-lib-coverage: ^3.2.0 + semver: ^7.5.4 + checksum: 74104c60c65c4fa0e97cc76f039226c356123893929f067bfad5f86fe839e08f5d680354a68fead3bc9c1e2f3fa6f3f53cded70778e821d911e851d349f3545a languageName: node linkType: hard @@ -5273,9 +5311,9 @@ __metadata: version: 3.0.1 resolution: "istanbul-lib-report@npm:3.0.1" dependencies: - istanbul-lib-coverage: "npm:^3.0.0" - make-dir: "npm:^4.0.0" - supports-color: "npm:^7.1.0" + istanbul-lib-coverage: ^3.0.0 + make-dir: ^4.0.0 + supports-color: ^7.1.0 checksum: fd17a1b879e7faf9bb1dc8f80b2a16e9f5b7b8498fe6ed580a618c34df0bfe53d2abd35bf8a0a00e628fb7405462576427c7df20bbe4148d19c14b431c974b21 languageName: node linkType: hard @@ -5284,9 +5322,9 @@ __metadata: version: 4.0.1 resolution: "istanbul-lib-source-maps@npm:4.0.1" dependencies: - debug: "npm:^4.1.1" - istanbul-lib-coverage: "npm:^3.0.0" - source-map: "npm:^0.6.1" + debug: ^4.1.1 + istanbul-lib-coverage: ^3.0.0 + source-map: ^0.6.1 checksum: 21ad3df45db4b81852b662b8d4161f6446cd250c1ddc70ef96a585e2e85c26ed7cd9c2a396a71533cfb981d1a645508bc9618cae431e55d01a0628e7dec62ef2 languageName: node linkType: hard @@ -5295,22 +5333,36 @@ __metadata: version: 3.1.7 resolution: "istanbul-reports@npm:3.1.7" dependencies: - html-escaper: "npm:^2.0.0" - istanbul-lib-report: "npm:^3.0.0" + html-escaper: ^2.0.0 + istanbul-lib-report: ^3.0.0 checksum: 2072db6e07bfbb4d0eb30e2700250636182398c1af811aea5032acb219d2080f7586923c09fa194029efd6b92361afb3dcbe1ebcc3ee6651d13340f7c6c4ed95 languageName: node linkType: hard -"jackspeak@npm:^2.3.6": - version: 2.3.6 - resolution: "jackspeak@npm:2.3.6" +"jackspeak@npm:^3.1.2": + version: 3.4.3 + resolution: "jackspeak@npm:3.4.3" dependencies: - "@isaacs/cliui": "npm:^8.0.2" - "@pkgjs/parseargs": "npm:^0.11.0" + "@isaacs/cliui": ^8.0.2 + "@pkgjs/parseargs": ^0.11.0 dependenciesMeta: "@pkgjs/parseargs": optional: true - checksum: 57d43ad11eadc98cdfe7496612f6bbb5255ea69fe51ea431162db302c2a11011642f50cfad57288bd0aea78384a0612b16e131944ad8ecd09d619041c8531b54 + checksum: be31027fc72e7cc726206b9f560395604b82e0fddb46c4cbf9f97d049bcef607491a5afc0699612eaa4213ca5be8fd3e1e7cd187b3040988b65c9489838a7c00 + languageName: node + linkType: hard + +"jake@npm:^10.8.5": + version: 10.9.1 + resolution: "jake@npm:10.9.1" + dependencies: + async: ^3.2.3 + chalk: ^4.0.2 + filelist: ^1.0.4 + minimatch: ^3.1.2 + bin: + jake: bin/cli.js + checksum: 49659c156b8ad921af377fb782505ae3cc7e7dd8793695b782070d99b4b66d2688b4e3efb32e09252400bfe6e49a7fb393a3a0959e8e1a51dbda95bcacbb9c36 languageName: node linkType: hard @@ -5318,9 +5370,9 @@ __metadata: version: 29.7.0 resolution: "jest-changed-files@npm:29.7.0" dependencies: - execa: "npm:^5.0.0" - jest-util: "npm:^29.7.0" - p-limit: "npm:^3.1.0" + execa: ^5.0.0 + jest-util: ^29.7.0 + p-limit: ^3.1.0 checksum: 963e203893c396c5dfc75e00a49426688efea7361b0f0e040035809cecd2d46b3c01c02be2d9e8d38b1138357d2de7719ea5b5be21f66c10f2e9685a5a73bb99 languageName: node linkType: hard @@ -5329,26 +5381,26 @@ __metadata: version: 29.7.0 resolution: "jest-circus@npm:29.7.0" dependencies: - "@jest/environment": "npm:^29.7.0" - "@jest/expect": "npm:^29.7.0" - "@jest/test-result": "npm:^29.7.0" - "@jest/types": "npm:^29.6.3" - "@types/node": "npm:*" - chalk: "npm:^4.0.0" - co: "npm:^4.6.0" - dedent: "npm:^1.0.0" - is-generator-fn: "npm:^2.0.0" - jest-each: "npm:^29.7.0" - jest-matcher-utils: "npm:^29.7.0" - jest-message-util: "npm:^29.7.0" - jest-runtime: "npm:^29.7.0" - jest-snapshot: "npm:^29.7.0" - jest-util: "npm:^29.7.0" - p-limit: "npm:^3.1.0" - pretty-format: "npm:^29.7.0" - pure-rand: "npm:^6.0.0" - slash: "npm:^3.0.0" - stack-utils: "npm:^2.0.3" + "@jest/environment": ^29.7.0 + "@jest/expect": ^29.7.0 + "@jest/test-result": ^29.7.0 + "@jest/types": ^29.6.3 + "@types/node": "*" + chalk: ^4.0.0 + co: ^4.6.0 + dedent: ^1.0.0 + is-generator-fn: ^2.0.0 + jest-each: ^29.7.0 + jest-matcher-utils: ^29.7.0 + jest-message-util: ^29.7.0 + jest-runtime: ^29.7.0 + jest-snapshot: ^29.7.0 + jest-util: ^29.7.0 + p-limit: ^3.1.0 + pretty-format: ^29.7.0 + pure-rand: ^6.0.0 + slash: ^3.0.0 + stack-utils: ^2.0.3 checksum: 349437148924a5a109c9b8aad6d393a9591b4dac1918fc97d81b7fc515bc905af9918495055071404af1fab4e48e4b04ac3593477b1d5dcf48c4e71b527c70a7 languageName: node linkType: hard @@ -5357,17 +5409,17 @@ __metadata: version: 29.7.0 resolution: "jest-cli@npm:29.7.0" dependencies: - "@jest/core": "npm:^29.7.0" - "@jest/test-result": "npm:^29.7.0" - "@jest/types": "npm:^29.6.3" - chalk: "npm:^4.0.0" - create-jest: "npm:^29.7.0" - exit: "npm:^0.1.2" - import-local: "npm:^3.0.2" - jest-config: "npm:^29.7.0" - jest-util: "npm:^29.7.0" - jest-validate: "npm:^29.7.0" - yargs: "npm:^17.3.1" + "@jest/core": ^29.7.0 + "@jest/test-result": ^29.7.0 + "@jest/types": ^29.6.3 + chalk: ^4.0.0 + create-jest: ^29.7.0 + exit: ^0.1.2 + import-local: ^3.0.2 + jest-config: ^29.7.0 + jest-util: ^29.7.0 + jest-validate: ^29.7.0 + yargs: ^17.3.1 peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: @@ -5383,28 +5435,28 @@ __metadata: version: 29.7.0 resolution: "jest-config@npm:29.7.0" dependencies: - "@babel/core": "npm:^7.11.6" - "@jest/test-sequencer": "npm:^29.7.0" - "@jest/types": "npm:^29.6.3" - babel-jest: "npm:^29.7.0" - chalk: "npm:^4.0.0" - ci-info: "npm:^3.2.0" - deepmerge: "npm:^4.2.2" - glob: "npm:^7.1.3" - graceful-fs: "npm:^4.2.9" - jest-circus: "npm:^29.7.0" - jest-environment-node: "npm:^29.7.0" - jest-get-type: "npm:^29.6.3" - jest-regex-util: "npm:^29.6.3" - jest-resolve: "npm:^29.7.0" - jest-runner: "npm:^29.7.0" - jest-util: "npm:^29.7.0" - jest-validate: "npm:^29.7.0" - micromatch: "npm:^4.0.4" - parse-json: "npm:^5.2.0" - pretty-format: "npm:^29.7.0" - slash: "npm:^3.0.0" - strip-json-comments: "npm:^3.1.1" + "@babel/core": ^7.11.6 + "@jest/test-sequencer": ^29.7.0 + "@jest/types": ^29.6.3 + babel-jest: ^29.7.0 + chalk: ^4.0.0 + ci-info: ^3.2.0 + deepmerge: ^4.2.2 + glob: ^7.1.3 + graceful-fs: ^4.2.9 + jest-circus: ^29.7.0 + jest-environment-node: ^29.7.0 + jest-get-type: ^29.6.3 + jest-regex-util: ^29.6.3 + jest-resolve: ^29.7.0 + jest-runner: ^29.7.0 + jest-util: ^29.7.0 + jest-validate: ^29.7.0 + micromatch: ^4.0.4 + parse-json: ^5.2.0 + pretty-format: ^29.7.0 + slash: ^3.0.0 + strip-json-comments: ^3.1.1 peerDependencies: "@types/node": "*" ts-node: ">=9.0.0" @@ -5421,10 +5473,10 @@ __metadata: version: 29.7.0 resolution: "jest-diff@npm:29.7.0" dependencies: - chalk: "npm:^4.0.0" - diff-sequences: "npm:^29.6.3" - jest-get-type: "npm:^29.6.3" - pretty-format: "npm:^29.7.0" + chalk: ^4.0.0 + diff-sequences: ^29.6.3 + jest-get-type: ^29.6.3 + pretty-format: ^29.7.0 checksum: 08e24a9dd43bfba1ef07a6374e5af138f53137b79ec3d5cc71a2303515335898888fa5409959172e1e05de966c9e714368d15e8994b0af7441f0721ee8e1bb77 languageName: node linkType: hard @@ -5433,7 +5485,7 @@ __metadata: version: 29.7.0 resolution: "jest-docblock@npm:29.7.0" dependencies: - detect-newline: "npm:^3.0.0" + detect-newline: ^3.0.0 checksum: 66390c3e9451f8d96c5da62f577a1dad701180cfa9b071c5025acab2f94d7a3efc2515cfa1654ebe707213241541ce9c5530232cdc8017c91ed64eea1bd3b192 languageName: node linkType: hard @@ -5442,11 +5494,11 @@ __metadata: version: 29.7.0 resolution: "jest-each@npm:29.7.0" dependencies: - "@jest/types": "npm:^29.6.3" - chalk: "npm:^4.0.0" - jest-get-type: "npm:^29.6.3" - jest-util: "npm:^29.7.0" - pretty-format: "npm:^29.7.0" + "@jest/types": ^29.6.3 + chalk: ^4.0.0 + jest-get-type: ^29.6.3 + jest-util: ^29.7.0 + pretty-format: ^29.7.0 checksum: e88f99f0184000fc8813f2a0aa79e29deeb63700a3b9b7928b8a418d7d93cd24933608591dbbdea732b473eb2021c72991b5cc51a17966842841c6e28e6f691c languageName: node linkType: hard @@ -5455,12 +5507,12 @@ __metadata: version: 29.7.0 resolution: "jest-environment-node@npm:29.7.0" dependencies: - "@jest/environment": "npm:^29.7.0" - "@jest/fake-timers": "npm:^29.7.0" - "@jest/types": "npm:^29.6.3" - "@types/node": "npm:*" - jest-mock: "npm:^29.7.0" - jest-util: "npm:^29.7.0" + "@jest/environment": ^29.7.0 + "@jest/fake-timers": ^29.7.0 + "@jest/types": ^29.6.3 + "@types/node": "*" + jest-mock: ^29.7.0 + jest-util: ^29.7.0 checksum: 501a9966292cbe0ca3f40057a37587cb6def25e1e0c5e39ac6c650fe78d3c70a2428304341d084ac0cced5041483acef41c477abac47e9a290d5545fd2f15646 languageName: node linkType: hard @@ -5476,18 +5528,18 @@ __metadata: version: 29.7.0 resolution: "jest-haste-map@npm:29.7.0" dependencies: - "@jest/types": "npm:^29.6.3" - "@types/graceful-fs": "npm:^4.1.3" - "@types/node": "npm:*" - anymatch: "npm:^3.0.3" - fb-watchman: "npm:^2.0.0" - fsevents: "npm:^2.3.2" - graceful-fs: "npm:^4.2.9" - jest-regex-util: "npm:^29.6.3" - jest-util: "npm:^29.7.0" - jest-worker: "npm:^29.7.0" - micromatch: "npm:^4.0.4" - walker: "npm:^1.0.8" + "@jest/types": ^29.6.3 + "@types/graceful-fs": ^4.1.3 + "@types/node": "*" + anymatch: ^3.0.3 + fb-watchman: ^2.0.0 + fsevents: ^2.3.2 + graceful-fs: ^4.2.9 + jest-regex-util: ^29.6.3 + jest-util: ^29.7.0 + jest-worker: ^29.7.0 + micromatch: ^4.0.4 + walker: ^1.0.8 dependenciesMeta: fsevents: optional: true @@ -5499,8 +5551,8 @@ __metadata: version: 29.7.0 resolution: "jest-leak-detector@npm:29.7.0" dependencies: - jest-get-type: "npm:^29.6.3" - pretty-format: "npm:^29.7.0" + jest-get-type: ^29.6.3 + pretty-format: ^29.7.0 checksum: e3950e3ddd71e1d0c22924c51a300a1c2db6cf69ec1e51f95ccf424bcc070f78664813bef7aed4b16b96dfbdeea53fe358f8aeaaea84346ae15c3735758f1605 languageName: node linkType: hard @@ -5509,10 +5561,10 @@ __metadata: version: 29.7.0 resolution: "jest-matcher-utils@npm:29.7.0" dependencies: - chalk: "npm:^4.0.0" - jest-diff: "npm:^29.7.0" - jest-get-type: "npm:^29.6.3" - pretty-format: "npm:^29.7.0" + chalk: ^4.0.0 + jest-diff: ^29.7.0 + jest-get-type: ^29.6.3 + pretty-format: ^29.7.0 checksum: d7259e5f995d915e8a37a8fd494cb7d6af24cd2a287b200f831717ba0d015190375f9f5dc35393b8ba2aae9b2ebd60984635269c7f8cff7d85b077543b7744cd languageName: node linkType: hard @@ -5521,15 +5573,15 @@ __metadata: version: 29.7.0 resolution: "jest-message-util@npm:29.7.0" dependencies: - "@babel/code-frame": "npm:^7.12.13" - "@jest/types": "npm:^29.6.3" - "@types/stack-utils": "npm:^2.0.0" - chalk: "npm:^4.0.0" - graceful-fs: "npm:^4.2.9" - micromatch: "npm:^4.0.4" - pretty-format: "npm:^29.7.0" - slash: "npm:^3.0.0" - stack-utils: "npm:^2.0.3" + "@babel/code-frame": ^7.12.13 + "@jest/types": ^29.6.3 + "@types/stack-utils": ^2.0.0 + chalk: ^4.0.0 + graceful-fs: ^4.2.9 + micromatch: ^4.0.4 + pretty-format: ^29.7.0 + slash: ^3.0.0 + stack-utils: ^2.0.3 checksum: a9d025b1c6726a2ff17d54cc694de088b0489456c69106be6b615db7a51b7beb66788bea7a59991a019d924fbf20f67d085a445aedb9a4d6760363f4d7d09930 languageName: node linkType: hard @@ -5538,9 +5590,9 @@ __metadata: version: 29.7.0 resolution: "jest-mock@npm:29.7.0" dependencies: - "@jest/types": "npm:^29.6.3" - "@types/node": "npm:*" - jest-util: "npm:^29.7.0" + "@jest/types": ^29.6.3 + "@types/node": "*" + jest-util: ^29.7.0 checksum: 81ba9b68689a60be1482212878973700347cb72833c5e5af09895882b9eb5c4e02843a1bbdf23f94c52d42708bab53a30c45a3482952c9eec173d1eaac5b86c5 languageName: node linkType: hard @@ -5568,8 +5620,8 @@ __metadata: version: 29.7.0 resolution: "jest-resolve-dependencies@npm:29.7.0" dependencies: - jest-regex-util: "npm:^29.6.3" - jest-snapshot: "npm:^29.7.0" + jest-regex-util: ^29.6.3 + jest-snapshot: ^29.7.0 checksum: aeb75d8150aaae60ca2bb345a0d198f23496494677cd6aefa26fc005faf354061f073982175daaf32b4b9d86b26ca928586344516e3e6969aa614cb13b883984 languageName: node linkType: hard @@ -5578,15 +5630,15 @@ __metadata: version: 29.7.0 resolution: "jest-resolve@npm:29.7.0" dependencies: - chalk: "npm:^4.0.0" - graceful-fs: "npm:^4.2.9" - jest-haste-map: "npm:^29.7.0" - jest-pnp-resolver: "npm:^1.2.2" - jest-util: "npm:^29.7.0" - jest-validate: "npm:^29.7.0" - resolve: "npm:^1.20.0" - resolve.exports: "npm:^2.0.0" - slash: "npm:^3.0.0" + chalk: ^4.0.0 + graceful-fs: ^4.2.9 + jest-haste-map: ^29.7.0 + jest-pnp-resolver: ^1.2.2 + jest-util: ^29.7.0 + jest-validate: ^29.7.0 + resolve: ^1.20.0 + resolve.exports: ^2.0.0 + slash: ^3.0.0 checksum: 0ca218e10731aa17920526ec39deaec59ab9b966237905ffc4545444481112cd422f01581230eceb7e82d86f44a543d520a71391ec66e1b4ef1a578bd5c73487 languageName: node linkType: hard @@ -5595,27 +5647,27 @@ __metadata: version: 29.7.0 resolution: "jest-runner@npm:29.7.0" dependencies: - "@jest/console": "npm:^29.7.0" - "@jest/environment": "npm:^29.7.0" - "@jest/test-result": "npm:^29.7.0" - "@jest/transform": "npm:^29.7.0" - "@jest/types": "npm:^29.6.3" - "@types/node": "npm:*" - chalk: "npm:^4.0.0" - emittery: "npm:^0.13.1" - graceful-fs: "npm:^4.2.9" - jest-docblock: "npm:^29.7.0" - jest-environment-node: "npm:^29.7.0" - jest-haste-map: "npm:^29.7.0" - jest-leak-detector: "npm:^29.7.0" - jest-message-util: "npm:^29.7.0" - jest-resolve: "npm:^29.7.0" - jest-runtime: "npm:^29.7.0" - jest-util: "npm:^29.7.0" - jest-watcher: "npm:^29.7.0" - jest-worker: "npm:^29.7.0" - p-limit: "npm:^3.1.0" - source-map-support: "npm:0.5.13" + "@jest/console": ^29.7.0 + "@jest/environment": ^29.7.0 + "@jest/test-result": ^29.7.0 + "@jest/transform": ^29.7.0 + "@jest/types": ^29.6.3 + "@types/node": "*" + chalk: ^4.0.0 + emittery: ^0.13.1 + graceful-fs: ^4.2.9 + jest-docblock: ^29.7.0 + jest-environment-node: ^29.7.0 + jest-haste-map: ^29.7.0 + jest-leak-detector: ^29.7.0 + jest-message-util: ^29.7.0 + jest-resolve: ^29.7.0 + jest-runtime: ^29.7.0 + jest-util: ^29.7.0 + jest-watcher: ^29.7.0 + jest-worker: ^29.7.0 + p-limit: ^3.1.0 + source-map-support: 0.5.13 checksum: f0405778ea64812bf9b5c50b598850d94ccf95d7ba21f090c64827b41decd680ee19fcbb494007cdd7f5d0d8906bfc9eceddd8fa583e753e736ecd462d4682fb languageName: node linkType: hard @@ -5624,28 +5676,28 @@ __metadata: version: 29.7.0 resolution: "jest-runtime@npm:29.7.0" dependencies: - "@jest/environment": "npm:^29.7.0" - "@jest/fake-timers": "npm:^29.7.0" - "@jest/globals": "npm:^29.7.0" - "@jest/source-map": "npm:^29.6.3" - "@jest/test-result": "npm:^29.7.0" - "@jest/transform": "npm:^29.7.0" - "@jest/types": "npm:^29.6.3" - "@types/node": "npm:*" - chalk: "npm:^4.0.0" - cjs-module-lexer: "npm:^1.0.0" - collect-v8-coverage: "npm:^1.0.0" - glob: "npm:^7.1.3" - graceful-fs: "npm:^4.2.9" - jest-haste-map: "npm:^29.7.0" - jest-message-util: "npm:^29.7.0" - jest-mock: "npm:^29.7.0" - jest-regex-util: "npm:^29.6.3" - jest-resolve: "npm:^29.7.0" - jest-snapshot: "npm:^29.7.0" - jest-util: "npm:^29.7.0" - slash: "npm:^3.0.0" - strip-bom: "npm:^4.0.0" + "@jest/environment": ^29.7.0 + "@jest/fake-timers": ^29.7.0 + "@jest/globals": ^29.7.0 + "@jest/source-map": ^29.6.3 + "@jest/test-result": ^29.7.0 + "@jest/transform": ^29.7.0 + "@jest/types": ^29.6.3 + "@types/node": "*" + chalk: ^4.0.0 + cjs-module-lexer: ^1.0.0 + collect-v8-coverage: ^1.0.0 + glob: ^7.1.3 + graceful-fs: ^4.2.9 + jest-haste-map: ^29.7.0 + jest-message-util: ^29.7.0 + jest-mock: ^29.7.0 + jest-regex-util: ^29.6.3 + jest-resolve: ^29.7.0 + jest-snapshot: ^29.7.0 + jest-util: ^29.7.0 + slash: ^3.0.0 + strip-bom: ^4.0.0 checksum: d19f113d013e80691e07047f68e1e3448ef024ff2c6b586ce4f90cd7d4c62a2cd1d460110491019719f3c59bfebe16f0e201ed005ef9f80e2cf798c374eed54e languageName: node linkType: hard @@ -5654,26 +5706,26 @@ __metadata: version: 29.7.0 resolution: "jest-snapshot@npm:29.7.0" dependencies: - "@babel/core": "npm:^7.11.6" - "@babel/generator": "npm:^7.7.2" - "@babel/plugin-syntax-jsx": "npm:^7.7.2" - "@babel/plugin-syntax-typescript": "npm:^7.7.2" - "@babel/types": "npm:^7.3.3" - "@jest/expect-utils": "npm:^29.7.0" - "@jest/transform": "npm:^29.7.0" - "@jest/types": "npm:^29.6.3" - babel-preset-current-node-syntax: "npm:^1.0.0" - chalk: "npm:^4.0.0" - expect: "npm:^29.7.0" - graceful-fs: "npm:^4.2.9" - jest-diff: "npm:^29.7.0" - jest-get-type: "npm:^29.6.3" - jest-matcher-utils: "npm:^29.7.0" - jest-message-util: "npm:^29.7.0" - jest-util: "npm:^29.7.0" - natural-compare: "npm:^1.4.0" - pretty-format: "npm:^29.7.0" - semver: "npm:^7.5.3" + "@babel/core": ^7.11.6 + "@babel/generator": ^7.7.2 + "@babel/plugin-syntax-jsx": ^7.7.2 + "@babel/plugin-syntax-typescript": ^7.7.2 + "@babel/types": ^7.3.3 + "@jest/expect-utils": ^29.7.0 + "@jest/transform": ^29.7.0 + "@jest/types": ^29.6.3 + babel-preset-current-node-syntax: ^1.0.0 + chalk: ^4.0.0 + expect: ^29.7.0 + graceful-fs: ^4.2.9 + jest-diff: ^29.7.0 + jest-get-type: ^29.6.3 + jest-matcher-utils: ^29.7.0 + jest-message-util: ^29.7.0 + jest-util: ^29.7.0 + natural-compare: ^1.4.0 + pretty-format: ^29.7.0 + semver: ^7.5.3 checksum: 86821c3ad0b6899521ce75ee1ae7b01b17e6dfeff9166f2cf17f012e0c5d8c798f30f9e4f8f7f5bed01ea7b55a6bc159f5eda778311162cbfa48785447c237ad languageName: node linkType: hard @@ -5682,12 +5734,12 @@ __metadata: version: 29.7.0 resolution: "jest-util@npm:29.7.0" dependencies: - "@jest/types": "npm:^29.6.3" - "@types/node": "npm:*" - chalk: "npm:^4.0.0" - ci-info: "npm:^3.2.0" - graceful-fs: "npm:^4.2.9" - picomatch: "npm:^2.2.3" + "@jest/types": ^29.6.3 + "@types/node": "*" + chalk: ^4.0.0 + ci-info: ^3.2.0 + graceful-fs: ^4.2.9 + picomatch: ^2.2.3 checksum: 042ab4980f4ccd4d50226e01e5c7376a8556b472442ca6091a8f102488c0f22e6e8b89ea874111d2328a2080083bf3225c86f3788c52af0bd0345a00eb57a3ca languageName: node linkType: hard @@ -5696,12 +5748,12 @@ __metadata: version: 29.7.0 resolution: "jest-validate@npm:29.7.0" dependencies: - "@jest/types": "npm:^29.6.3" - camelcase: "npm:^6.2.0" - chalk: "npm:^4.0.0" - jest-get-type: "npm:^29.6.3" - leven: "npm:^3.1.0" - pretty-format: "npm:^29.7.0" + "@jest/types": ^29.6.3 + camelcase: ^6.2.0 + chalk: ^4.0.0 + jest-get-type: ^29.6.3 + leven: ^3.1.0 + pretty-format: ^29.7.0 checksum: 191fcdc980f8a0de4dbdd879fa276435d00eb157a48683af7b3b1b98b0f7d9de7ffe12689b617779097ff1ed77601b9f7126b0871bba4f776e222c40f62e9dae languageName: node linkType: hard @@ -5710,14 +5762,14 @@ __metadata: version: 29.7.0 resolution: "jest-watcher@npm:29.7.0" dependencies: - "@jest/test-result": "npm:^29.7.0" - "@jest/types": "npm:^29.6.3" - "@types/node": "npm:*" - ansi-escapes: "npm:^4.2.1" - chalk: "npm:^4.0.0" - emittery: "npm:^0.13.1" - jest-util: "npm:^29.7.0" - string-length: "npm:^4.0.1" + "@jest/test-result": ^29.7.0 + "@jest/types": ^29.6.3 + "@types/node": "*" + ansi-escapes: ^4.2.1 + chalk: ^4.0.0 + emittery: ^0.13.1 + jest-util: ^29.7.0 + string-length: ^4.0.1 checksum: 67e6e7fe695416deff96b93a14a561a6db69389a0667e9489f24485bb85e5b54e12f3b2ba511ec0b777eca1e727235b073e3ebcdd473d68888650489f88df92f languageName: node linkType: hard @@ -5726,9 +5778,9 @@ __metadata: version: 27.5.1 resolution: "jest-worker@npm:27.5.1" dependencies: - "@types/node": "npm:*" - merge-stream: "npm:^2.0.0" - supports-color: "npm:^8.0.0" + "@types/node": "*" + merge-stream: ^2.0.0 + supports-color: ^8.0.0 checksum: 98cd68b696781caed61c983a3ee30bf880b5bd021c01d98f47b143d4362b85d0737f8523761e2713d45e18b4f9a2b98af1eaee77afade4111bb65c77d6f7c980 languageName: node linkType: hard @@ -5737,10 +5789,10 @@ __metadata: version: 29.7.0 resolution: "jest-worker@npm:29.7.0" dependencies: - "@types/node": "npm:*" - jest-util: "npm:^29.7.0" - merge-stream: "npm:^2.0.0" - supports-color: "npm:^8.0.0" + "@types/node": "*" + jest-util: ^29.7.0 + merge-stream: ^2.0.0 + supports-color: ^8.0.0 checksum: 30fff60af49675273644d408b650fc2eb4b5dcafc5a0a455f238322a8f9d8a98d847baca9d51ff197b6747f54c7901daa2287799230b856a0f48287d131f8c13 languageName: node linkType: hard @@ -5749,10 +5801,10 @@ __metadata: version: 29.7.0 resolution: "jest@npm:29.7.0" dependencies: - "@jest/core": "npm:^29.7.0" - "@jest/types": "npm:^29.6.3" - import-local: "npm:^3.0.2" - jest-cli: "npm:^29.7.0" + "@jest/core": ^29.7.0 + "@jest/types": ^29.6.3 + import-local: ^3.0.2 + jest-cli: ^29.7.0 peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: @@ -5782,8 +5834,8 @@ __metadata: version: 3.14.1 resolution: "js-yaml@npm:3.14.1" dependencies: - argparse: "npm:^1.0.7" - esprima: "npm:^4.0.0" + argparse: ^1.0.7 + esprima: ^4.0.0 bin: js-yaml: bin/js-yaml.js checksum: bef146085f472d44dee30ec34e5cf36bf89164f5d585435a3d3da89e52622dff0b188a580e4ad091c3341889e14cb88cac6e4deb16dc5b1e9623bb0601fc255c @@ -5794,7 +5846,7 @@ __metadata: version: 4.1.0 resolution: "js-yaml@npm:4.1.0" dependencies: - argparse: "npm:^2.0.1" + argparse: ^2.0.1 bin: js-yaml: bin/js-yaml.js checksum: c7830dfd456c3ef2c6e355cc5a92e6700ceafa1d14bba54497b34a99f0376cecbb3e9ac14d3e5849b426d5a5140709a66237a8c991c675431271c4ce5504151a @@ -5851,7 +5903,7 @@ __metadata: version: 0.2.2 resolution: "json-schema-compare@npm:0.2.2" dependencies: - lodash: "npm:^4.17.4" + lodash: ^4.17.4 checksum: dd6f2173857c8e3b77d6ebdfa05bd505bba5b08709ab46b532722f5d1c33b5fee1fc8f3c97d0c0d011db25f9f3b0baf7ab783bb5f55c32abd9f1201760e43c2c languageName: node linkType: hard @@ -5860,9 +5912,9 @@ __metadata: version: 0.8.1 resolution: "json-schema-merge-allof@npm:0.8.1" dependencies: - compute-lcm: "npm:^1.1.2" - json-schema-compare: "npm:^0.2.2" - lodash: "npm:^4.17.20" + compute-lcm: ^1.1.2 + json-schema-compare: ^0.2.2 + lodash: ^4.17.20 checksum: 82700f6ac77351959138d6b153d77375a8c29cf48d907241b85c8292dd77aabd8cb816400f2b0d17062c4ccc8893832ec4f664ab9c814927ef502e7a595ea873 languageName: node linkType: hard @@ -5901,8 +5953,8 @@ __metadata: version: 6.1.0 resolution: "jsonfile@npm:6.1.0" dependencies: - graceful-fs: "npm:^4.1.6" - universalify: "npm:^2.0.0" + graceful-fs: ^4.1.6 + universalify: ^2.0.0 dependenciesMeta: graceful-fs: optional: true @@ -5921,7 +5973,7 @@ __metadata: version: 4.5.4 resolution: "keyv@npm:4.5.4" dependencies: - json-buffer: "npm:3.0.1" + json-buffer: 3.0.1 checksum: 74a24395b1c34bd44ad5cb2b49140d087553e170625240b86755a6604cd65aa16efdbdeae5cdb17ba1284a0fbb25ad06263755dbc71b8d8b06f74232ce3cdd72 languageName: node linkType: hard @@ -5958,8 +6010,8 @@ __metadata: version: 0.4.1 resolution: "levn@npm:0.4.1" dependencies: - prelude-ls: "npm:^1.2.1" - type-check: "npm:~0.4.0" + prelude-ls: ^1.2.1 + type-check: ~0.4.0 checksum: 12c5021c859bd0f5248561bf139121f0358285ec545ebf48bb3d346820d5c61a4309535c7f387ed7d84361cf821e124ce346c6b7cef8ee09a67c1473b46d0fc4 languageName: node linkType: hard @@ -5968,7 +6020,7 @@ __metadata: version: 0.2.94 resolution: "lib0@npm:0.2.94" dependencies: - isomorphic.js: "npm:^0.2.4" + isomorphic.js: ^0.2.4 bin: 0ecdsa-generate-keypair: bin/0ecdsa-generate-keypair.js 0gentesthtml: bin/gentesthtml.js @@ -5981,8 +6033,8 @@ __metadata: version: 2.3.21 resolution: "license-webpack-plugin@npm:2.3.21" dependencies: - "@types/webpack-sources": "npm:^0.1.5" - webpack-sources: "npm:^1.2.0" + "@types/webpack-sources": ^0.1.5 + webpack-sources: ^1.2.0 peerDependenciesMeta: webpack: optional: true @@ -6001,10 +6053,10 @@ __metadata: version: 4.0.0 resolution: "load-json-file@npm:4.0.0" dependencies: - graceful-fs: "npm:^4.1.2" - parse-json: "npm:^4.0.0" - pify: "npm:^3.0.0" - strip-bom: "npm:^3.0.0" + graceful-fs: ^4.1.2 + parse-json: ^4.0.0 + pify: ^3.0.0 + strip-bom: ^3.0.0 checksum: 8f5d6d93ba64a9620445ee9bde4d98b1eac32cf6c8c2d20d44abfa41a6945e7969456ab5f1ca2fb06ee32e206c9769a20eec7002fe290de462e8c884b6b8b356 languageName: node linkType: hard @@ -6020,9 +6072,9 @@ __metadata: version: 2.0.4 resolution: "loader-utils@npm:2.0.4" dependencies: - big.js: "npm:^5.2.2" - emojis-list: "npm:^3.0.0" - json5: "npm:^2.1.2" + big.js: ^5.2.2 + emojis-list: ^3.0.0 + json5: ^2.1.2 checksum: a5281f5fff1eaa310ad5e1164095689443630f3411e927f95031ab4fb83b4a98f388185bb1fe949e8ab8d4247004336a625e9255c22122b815bb9a4c5d8fc3b7 languageName: node linkType: hard @@ -6031,7 +6083,7 @@ __metadata: version: 5.0.0 resolution: "locate-path@npm:5.0.0" dependencies: - p-locate: "npm:^4.1.0" + p-locate: ^4.1.0 checksum: 83e51725e67517287d73e1ded92b28602e3ae5580b301fe54bfb76c0c723e3f285b19252e375712316774cf52006cb236aed5704692c32db0d5d089b69696e30 languageName: node linkType: hard @@ -6040,7 +6092,7 @@ __metadata: version: 6.0.0 resolution: "locate-path@npm:6.0.0" dependencies: - p-locate: "npm:^5.0.0" + p-locate: ^5.0.0 checksum: 72eb661788a0368c099a184c59d2fee760b3831c9c1c33955e8a19ae4a21b4116e53fa736dc086cdeb9fce9f7cc508f2f92d2d3aae516f133e16a2bb59a39f5a languageName: node linkType: hard @@ -6081,9 +6133,9 @@ __metadata: linkType: hard "lru-cache@npm:^10.0.1, lru-cache@npm:^10.2.0": - version: 10.2.2 - resolution: "lru-cache@npm:10.2.2" - checksum: 98e8fc93691c546f719a76103ef2bee5a3ac823955c755a47641ec41f8c7fafa1baeaba466937cc1cbfa9cfd47e03536d10e2db3158a64ad91ff3a58a32c893e + version: 10.4.3 + resolution: "lru-cache@npm:10.4.3" + checksum: 6476138d2125387a6d20f100608c2583d415a4f64a0fecf30c9e2dda976614f09cad4baa0842447bd37dd459a7bd27f57d9d8f8ce558805abd487c583f3d774a languageName: node linkType: hard @@ -6091,7 +6143,7 @@ __metadata: version: 5.1.1 resolution: "lru-cache@npm:5.1.1" dependencies: - yallist: "npm:^3.0.2" + yallist: ^3.0.2 checksum: c154ae1cbb0c2206d1501a0e94df349653c92c8cbb25236d7e85190bcaf4567a03ac6eb43166fabfa36fd35623694da7233e88d9601fbf411a9a481d85dbd2cb languageName: node linkType: hard @@ -6100,7 +6152,7 @@ __metadata: version: 4.0.0 resolution: "make-dir@npm:4.0.0" dependencies: - semver: "npm:^7.5.3" + semver: ^7.5.3 checksum: bf0731a2dd3aab4db6f3de1585cea0b746bb73eb5a02e3d8d72757e376e64e6ada190b1eddcde5b2f24a81b688a9897efd5018737d05e02e2a671dda9cff8a8a languageName: node linkType: hard @@ -6116,18 +6168,18 @@ __metadata: version: 13.0.1 resolution: "make-fetch-happen@npm:13.0.1" dependencies: - "@npmcli/agent": "npm:^2.0.0" - cacache: "npm:^18.0.0" - http-cache-semantics: "npm:^4.1.1" - is-lambda: "npm:^1.0.1" - minipass: "npm:^7.0.2" - minipass-fetch: "npm:^3.0.0" - minipass-flush: "npm:^1.0.5" - minipass-pipeline: "npm:^1.2.4" - negotiator: "npm:^0.6.3" - proc-log: "npm:^4.2.0" - promise-retry: "npm:^2.0.1" - ssri: "npm:^10.0.0" + "@npmcli/agent": ^2.0.0 + cacache: ^18.0.0 + http-cache-semantics: ^4.1.1 + is-lambda: ^1.0.1 + minipass: ^7.0.2 + minipass-fetch: ^3.0.0 + minipass-flush: ^1.0.5 + minipass-pipeline: ^1.2.4 + negotiator: ^0.6.3 + proc-log: ^4.2.0 + promise-retry: ^2.0.1 + ssri: ^10.0.0 checksum: 5c9fad695579b79488fa100da05777213dd9365222f85e4757630f8dd2a21a79ddd3206c78cfd6f9b37346819681782b67900ac847a57cf04190f52dda5343fd languageName: node linkType: hard @@ -6136,7 +6188,7 @@ __metadata: version: 1.0.12 resolution: "makeerror@npm:1.0.12" dependencies: - tmpl: "npm:1.0.5" + tmpl: 1.0.5 checksum: b38a025a12c8146d6eeea5a7f2bf27d51d8ad6064da8ca9405fcf7bf9b54acd43e3b30ddd7abb9b1bfa4ddb266019133313482570ddb207de568f71ecfcf6060 languageName: node linkType: hard @@ -6163,12 +6215,12 @@ __metadata: linkType: hard "micromatch@npm:^4.0.0, micromatch@npm:^4.0.4": - version: 4.0.5 - resolution: "micromatch@npm:4.0.5" + version: 4.0.7 + resolution: "micromatch@npm:4.0.7" dependencies: - braces: "npm:^3.0.2" - picomatch: "npm:^2.3.1" - checksum: 02a17b671c06e8fefeeb6ef996119c1e597c942e632a21ef589154f23898c9c6a9858526246abb14f8bca6e77734aa9dcf65476fca47cedfb80d9577d52843fc + braces: ^3.0.3 + picomatch: ^2.3.1 + checksum: 3cde047d70ad80cf60c787b77198d680db3b8c25b23feb01de5e2652205d9c19f43bd81882f69a0fd1f0cde6a7a122d774998aad3271ddb1b8accf8a0f480cf7 languageName: node linkType: hard @@ -6183,7 +6235,7 @@ __metadata: version: 2.1.35 resolution: "mime-types@npm:2.1.35" dependencies: - mime-db: "npm:1.52.0" + mime-db: 1.52.0 checksum: 89a5b7f1def9f3af5dad6496c5ed50191ae4331cc5389d7c521c8ad28d5fdad2d06fd81baf38fed813dc4e46bb55c8145bb0ff406330818c9cf712fb2e9b3836 languageName: node linkType: hard @@ -6199,8 +6251,8 @@ __metadata: version: 2.9.0 resolution: "mini-css-extract-plugin@npm:2.9.0" dependencies: - schema-utils: "npm:^4.0.0" - tapable: "npm:^2.2.1" + schema-utils: ^4.0.0 + tapable: ^2.2.1 peerDependencies: webpack: ^5.0.0 checksum: ae192c67ba85ac8bffeab66774635bf90181f00d5dd6cf95412426192599ddf5506fb4b1550acbd7a5476476e39db53c770dd40f8378f7baf5de96e3fec4e6e9 @@ -6220,7 +6272,7 @@ __metadata: version: 9.0.3 resolution: "minimatch@npm:9.0.3" dependencies: - brace-expansion: "npm:^2.0.1" + brace-expansion: ^2.0.1 checksum: 253487976bf485b612f16bf57463520a14f512662e592e95c571afdab1442a6a6864b6c88f248ce6fc4ff0b6de04ac7aa6c8bb51e868e99d1d65eb0658a708b5 languageName: node linkType: hard @@ -6229,17 +6281,26 @@ __metadata: version: 3.1.2 resolution: "minimatch@npm:3.1.2" dependencies: - brace-expansion: "npm:^1.1.7" + brace-expansion: ^1.1.7 checksum: c154e566406683e7bcb746e000b84d74465b3a832c45d59912b9b55cd50dee66e5c4b1e5566dba26154040e51672f9aa450a9aef0c97cfc7336b78b7afb9540a languageName: node linkType: hard -"minimatch@npm:^9.0.1": - version: 9.0.4 - resolution: "minimatch@npm:9.0.4" +"minimatch@npm:^5.0.1": + version: 5.1.6 + resolution: "minimatch@npm:5.1.6" dependencies: - brace-expansion: "npm:^2.0.1" - checksum: cf717f597ec3eed7dabc33153482a2e8d49f4fd3c26e58fd9c71a94c5029a0838728841b93f46bf1263b65a8010e2ee800d0dc9b004ab8ba8b6d1ec07cc115b5 + brace-expansion: ^2.0.1 + checksum: 7564208ef81d7065a370f788d337cd80a689e981042cb9a1d0e6580b6c6a8c9279eba80010516e258835a988363f99f54a6f711a315089b8b42694f5da9d0d77 + languageName: node + linkType: hard + +"minimatch@npm:^9.0.4": + version: 9.0.5 + resolution: "minimatch@npm:9.0.5" + dependencies: + brace-expansion: ^2.0.1 + checksum: 2c035575eda1e50623c731ec6c14f65a85296268f749b9337005210bb2b34e2705f8ef1a358b188f69892286ab99dc42c8fb98a57bde55c8d81b3023c19cea28 languageName: node linkType: hard @@ -6254,7 +6315,7 @@ __metadata: version: 2.0.1 resolution: "minipass-collect@npm:2.0.1" dependencies: - minipass: "npm:^7.0.3" + minipass: ^7.0.3 checksum: b251bceea62090f67a6cced7a446a36f4cd61ee2d5cea9aee7fff79ba8030e416327a1c5aa2908dc22629d06214b46d88fdab8c51ac76bacbf5703851b5ad342 languageName: node linkType: hard @@ -6263,10 +6324,10 @@ __metadata: version: 3.0.5 resolution: "minipass-fetch@npm:3.0.5" dependencies: - encoding: "npm:^0.1.13" - minipass: "npm:^7.0.3" - minipass-sized: "npm:^1.0.3" - minizlib: "npm:^2.1.2" + encoding: ^0.1.13 + minipass: ^7.0.3 + minipass-sized: ^1.0.3 + minizlib: ^2.1.2 dependenciesMeta: encoding: optional: true @@ -6278,7 +6339,7 @@ __metadata: version: 1.0.5 resolution: "minipass-flush@npm:1.0.5" dependencies: - minipass: "npm:^3.0.0" + minipass: ^3.0.0 checksum: 56269a0b22bad756a08a94b1ffc36b7c9c5de0735a4dd1ab2b06c066d795cfd1f0ac44a0fcae13eece5589b908ecddc867f04c745c7009be0b566421ea0944cf languageName: node linkType: hard @@ -6287,7 +6348,7 @@ __metadata: version: 1.2.4 resolution: "minipass-pipeline@npm:1.2.4" dependencies: - minipass: "npm:^3.0.0" + minipass: ^3.0.0 checksum: b14240dac0d29823c3d5911c286069e36d0b81173d7bdf07a7e4a91ecdef92cdff4baaf31ea3746f1c61e0957f652e641223970870e2353593f382112257971b languageName: node linkType: hard @@ -6296,7 +6357,7 @@ __metadata: version: 1.0.3 resolution: "minipass-sized@npm:1.0.3" dependencies: - minipass: "npm:^3.0.0" + minipass: ^3.0.0 checksum: 79076749fcacf21b5d16dd596d32c3b6bf4d6e62abb43868fac21674078505c8b15eaca4e47ed844985a4514854f917d78f588fcd029693709417d8f98b2bd60 languageName: node linkType: hard @@ -6305,7 +6366,7 @@ __metadata: version: 3.3.6 resolution: "minipass@npm:3.3.6" dependencies: - yallist: "npm:^4.0.0" + yallist: ^4.0.0 checksum: a30d083c8054cee83cdcdc97f97e4641a3f58ae743970457b1489ce38ee1167b3aaf7d815cd39ec7a99b9c40397fd4f686e83750e73e652b21cb516f6d845e48 languageName: node linkType: hard @@ -6317,10 +6378,10 @@ __metadata: languageName: node linkType: hard -"minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0, minipass@npm:^7.0.2, minipass@npm:^7.0.3, minipass@npm:^7.0.4": - version: 7.1.1 - resolution: "minipass@npm:7.1.1" - checksum: d2c461947a7530f93de4162aa3ca0a1bed1f121626906f6ec63a5ba05fd7b1d9bee4fe89a37a43db7241c2416be98a799c1796abae583c7180be37be5c392ef6 +"minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0, minipass@npm:^7.0.2, minipass@npm:^7.0.3, minipass@npm:^7.1.2": + version: 7.1.2 + resolution: "minipass@npm:7.1.2" + checksum: 2bfd325b95c555f2b4d2814d49325691c7bee937d753814861b0b49d5edcda55cbbf22b6b6a60bb91eddac8668771f03c5ff647dcd9d0f798e9548b9cdc46ee3 languageName: node linkType: hard @@ -6328,8 +6389,8 @@ __metadata: version: 2.1.2 resolution: "minizlib@npm:2.1.2" dependencies: - minipass: "npm:^3.0.0" - yallist: "npm:^4.0.0" + minipass: ^3.0.0 + yallist: ^4.0.0 checksum: f1fdeac0b07cf8f30fcf12f4b586795b97be856edea22b5e9072707be51fc95d41487faec3f265b42973a304fe3a64acd91a44a3826a963e37b37bafde0212c3 languageName: node linkType: hard @@ -6397,22 +6458,22 @@ __metadata: linkType: hard "node-gyp@npm:latest": - version: 10.1.0 - resolution: "node-gyp@npm:10.1.0" - dependencies: - env-paths: "npm:^2.2.0" - exponential-backoff: "npm:^3.1.1" - glob: "npm:^10.3.10" - graceful-fs: "npm:^4.2.6" - make-fetch-happen: "npm:^13.0.0" - nopt: "npm:^7.0.0" - proc-log: "npm:^3.0.0" - semver: "npm:^7.3.5" - tar: "npm:^6.1.2" - which: "npm:^4.0.0" + version: 10.2.0 + resolution: "node-gyp@npm:10.2.0" + dependencies: + env-paths: ^2.2.0 + exponential-backoff: ^3.1.1 + glob: ^10.3.10 + graceful-fs: ^4.2.6 + make-fetch-happen: ^13.0.0 + nopt: ^7.0.0 + proc-log: ^4.1.0 + semver: ^7.3.5 + tar: ^6.2.1 + which: ^4.0.0 bin: node-gyp: bin/node-gyp.js - checksum: 72e2ab4b23fc32007a763da94018f58069fc0694bf36115d49a2b195c8831e12cf5dd1e7a3718fa85c06969aedf8fc126722d3b672ec1cb27e06ed33caee3c60 + checksum: 0233759d8c19765f7fdc259a35eb046ad86c3d09e22f7384613ae2b89647dd27fcf833fdf5293d9335041e91f9b1c539494225959cdb312a5c8080b7534b926f languageName: node linkType: hard @@ -6434,7 +6495,7 @@ __metadata: version: 7.2.1 resolution: "nopt@npm:7.2.1" dependencies: - abbrev: "npm:^2.0.0" + abbrev: ^2.0.0 bin: nopt: bin/nopt.js checksum: 6fa729cc77ce4162cfad8abbc9ba31d4a0ff6850c3af61d59b505653bef4781ec059f8890ecfe93ee8aa0c511093369cca88bfc998101616a2904e715bbbb7c9 @@ -6445,10 +6506,10 @@ __metadata: version: 2.5.0 resolution: "normalize-package-data@npm:2.5.0" dependencies: - hosted-git-info: "npm:^2.1.4" - resolve: "npm:^1.10.0" - semver: "npm:2 || 3 || 4 || 5" - validate-npm-package-license: "npm:^3.0.1" + hosted-git-info: ^2.1.4 + resolve: ^1.10.0 + semver: 2 || 3 || 4 || 5 + validate-npm-package-license: ^3.0.1 checksum: 7999112efc35a6259bc22db460540cae06564aa65d0271e3bdfa86876d08b0e578b7b5b0028ee61b23f1cae9fc0e7847e4edc0948d3068a39a2a82853efc8499 languageName: node linkType: hard @@ -6464,15 +6525,15 @@ __metadata: version: 4.1.5 resolution: "npm-run-all@npm:4.1.5" dependencies: - ansi-styles: "npm:^3.2.1" - chalk: "npm:^2.4.1" - cross-spawn: "npm:^6.0.5" - memorystream: "npm:^0.3.1" - minimatch: "npm:^3.0.4" - pidtree: "npm:^0.3.0" - read-pkg: "npm:^3.0.0" - shell-quote: "npm:^1.6.1" - string.prototype.padend: "npm:^3.0.0" + ansi-styles: ^3.2.1 + chalk: ^2.4.1 + cross-spawn: ^6.0.5 + memorystream: ^0.3.1 + minimatch: ^3.0.4 + pidtree: ^0.3.0 + read-pkg: ^3.0.0 + shell-quote: ^1.6.1 + string.prototype.padend: ^3.0.0 bin: npm-run-all: bin/npm-run-all/index.js run-p: bin/run-p/index.js @@ -6485,15 +6546,15 @@ __metadata: version: 4.0.1 resolution: "npm-run-path@npm:4.0.1" dependencies: - path-key: "npm:^3.0.0" + path-key: ^3.0.0 checksum: 5374c0cea4b0bbfdfae62da7bbdf1e1558d338335f4cacf2515c282ff358ff27b2ecb91ffa5330a8b14390ac66a1e146e10700440c1ab868208430f56b5f4d23 languageName: node linkType: hard "object-inspect@npm:^1.13.1": - version: 1.13.1 - resolution: "object-inspect@npm:1.13.1" - checksum: 7d9fa9221de3311dcb5c7c307ee5dc011cdd31dc43624b7c184b3840514e118e05ef0002be5388304c416c0eb592feb46e983db12577fc47e47d5752fbbfb61f + version: 1.13.2 + resolution: "object-inspect@npm:1.13.2" + checksum: 9f850b3c045db60e0e97746e809ee4090d6ce62195af17dd1e9438ac761394a7d8ec4f7906559aea5424eaf61e35d3e53feded2ccd5f62fcc7d9670d3c8eb353 languageName: node linkType: hard @@ -6508,25 +6569,32 @@ __metadata: version: 4.1.5 resolution: "object.assign@npm:4.1.5" dependencies: - call-bind: "npm:^1.0.5" - define-properties: "npm:^1.2.1" - has-symbols: "npm:^1.0.3" - object-keys: "npm:^1.1.1" + call-bind: ^1.0.5 + define-properties: ^1.2.1 + has-symbols: ^1.0.3 + object-keys: ^1.1.1 checksum: f9aeac0541661370a1fc86e6a8065eb1668d3e771f7dbb33ee54578201336c057b21ee61207a186dd42db0c62201d91aac703d20d12a79fc79c353eed44d4e25 languageName: node linkType: hard "ol@npm:^9.1.0": - version: 9.1.0 - resolution: "ol@npm:9.1.0" + version: 9.2.4 + resolution: "ol@npm:9.2.4" dependencies: - color-rgba: "npm:^3.0.0" - color-space: "npm:^2.0.1" - earcut: "npm:^2.2.3" - geotiff: "npm:^2.0.7" - pbf: "npm:3.2.1" - rbush: "npm:^3.0.1" - checksum: 09b4dc4daa780a0d613d52378b39afb0645ac67635a39524e1d2176b78c3a31cce31a268bd3eeb37cc45d3015dadea5ee0d5f76f12d311a6120e62eb4498152a + color-rgba: ^3.0.0 + color-space: ^2.0.1 + earcut: ^2.2.3 + geotiff: ^2.0.7 + pbf: 3.2.1 + rbush: ^3.0.1 + checksum: 71bf31f8b69ff06f94c800bf9621c996c14e579803aa40ac944d1bbbc04bf48b04f498a542fa4154a9902a2724c9d20af1c5852e901e611627f3ae4c428b5a1f + languageName: node + linkType: hard + +"olwind@github:gberaudo/olwind#master": + version: 1.0.0 + resolution: "olwind@git+ssh://git@github.com/gberaudo/olwind.git#commit=57cff78c3fcf450a8bc13b152d17f46f514f04a7" + checksum: 0655379873dab09aa6b10c8c6f2b40c2c8aa40427470cfa9b4406703cf134eca53d6172abb1875243bf7575f06a387a2f7b00f3994fab792898dab72eac39716 languageName: node linkType: hard @@ -6534,7 +6602,7 @@ __metadata: version: 1.4.0 resolution: "once@npm:1.4.0" dependencies: - wrappy: "npm:1" + wrappy: 1 checksum: cd0a88501333edd640d95f0d2700fbde6bff20b3d4d9bdc521bdd31af0656b5706570d6c6afe532045a20bb8dc0849f8332d6f2a416e0ba6d3d3b98806c7db68 languageName: node linkType: hard @@ -6543,7 +6611,7 @@ __metadata: version: 5.1.2 resolution: "onetime@npm:5.1.2" dependencies: - mimic-fn: "npm:^2.1.0" + mimic-fn: ^2.1.0 checksum: 2478859ef817fc5d4e9c2f9e5728512ddd1dbc9fb7829ad263765bb6d3b91ce699d6e2332eef6b7dff183c2f490bd3349f1666427eaba4469fba0ac38dfd0d34 languageName: node linkType: hard @@ -6552,12 +6620,12 @@ __metadata: version: 0.9.4 resolution: "optionator@npm:0.9.4" dependencies: - deep-is: "npm:^0.1.3" - fast-levenshtein: "npm:^2.0.6" - levn: "npm:^0.4.1" - prelude-ls: "npm:^1.2.1" - type-check: "npm:^0.4.0" - word-wrap: "npm:^1.2.5" + deep-is: ^0.1.3 + fast-levenshtein: ^2.0.6 + levn: ^0.4.1 + prelude-ls: ^1.2.1 + type-check: ^0.4.0 + word-wrap: ^1.2.5 checksum: ecbd010e3dc73e05d239976422d9ef54a82a13f37c11ca5911dff41c98a6c7f0f163b27f922c37e7f8340af9d36febd3b6e9cef508f3339d4c393d7276d716bb languageName: node linkType: hard @@ -6566,7 +6634,7 @@ __metadata: version: 2.3.0 resolution: "p-limit@npm:2.3.0" dependencies: - p-try: "npm:^2.0.0" + p-try: ^2.0.0 checksum: 84ff17f1a38126c3314e91ecfe56aecbf36430940e2873dadaa773ffe072dc23b7af8e46d4b6485d302a11673fe94c6b67ca2cfbb60c989848b02100d0594ac1 languageName: node linkType: hard @@ -6575,7 +6643,7 @@ __metadata: version: 3.1.0 resolution: "p-limit@npm:3.1.0" dependencies: - yocto-queue: "npm:^0.1.0" + yocto-queue: ^0.1.0 checksum: 7c3690c4dbf62ef625671e20b7bdf1cbc9534e83352a2780f165b0d3ceba21907e77ad63401708145ca4e25bfc51636588d89a8c0aeb715e6c37d1c066430360 languageName: node linkType: hard @@ -6584,7 +6652,7 @@ __metadata: version: 4.1.0 resolution: "p-locate@npm:4.1.0" dependencies: - p-limit: "npm:^2.2.0" + p-limit: ^2.2.0 checksum: 513bd14a455f5da4ebfcb819ef706c54adb09097703de6aeaa5d26fe5ea16df92b48d1ac45e01e3944ce1e6aa2a66f7f8894742b8c9d6e276e16cd2049a2b870 languageName: node linkType: hard @@ -6593,7 +6661,7 @@ __metadata: version: 5.0.0 resolution: "p-locate@npm:5.0.0" dependencies: - p-limit: "npm:^3.0.2" + p-limit: ^3.0.2 checksum: 1623088f36cf1cbca58e9b61c4e62bf0c60a07af5ae1ca99a720837356b5b6c5ba3eb1b2127e47a06865fee59dd0453cad7cc844cda9d5a62ac1a5a51b7c86d3 languageName: node linkType: hard @@ -6602,7 +6670,7 @@ __metadata: version: 4.0.0 resolution: "p-map@npm:4.0.0" dependencies: - aggregate-error: "npm:^3.0.0" + aggregate-error: ^3.0.0 checksum: cb0ab21ec0f32ddffd31dfc250e3afa61e103ef43d957cc45497afe37513634589316de4eb88abdfd969fe6410c22c0b93ab24328833b8eb1ccc087fc0442a1c languageName: node linkType: hard @@ -6614,6 +6682,13 @@ __metadata: languageName: node linkType: hard +"package-json-from-dist@npm:^1.0.0": + version: 1.0.0 + resolution: "package-json-from-dist@npm:1.0.0" + checksum: ac706ec856a5a03f5261e4e48fa974f24feb044d51f84f8332e2af0af04fbdbdd5bbbfb9cbbe354190409bc8307c83a9e38c6672c3c8855f709afb0006a009ea + languageName: node + linkType: hard + "pako@npm:^2.0.4": version: 2.1.0 resolution: "pako@npm:2.1.0" @@ -6625,7 +6700,7 @@ __metadata: version: 1.0.1 resolution: "parent-module@npm:1.0.1" dependencies: - callsites: "npm:^3.0.0" + callsites: ^3.0.0 checksum: 6ba8b255145cae9470cf5551eb74be2d22281587af787a2626683a6c20fbb464978784661478dd2a3f1dad74d1e802d403e1b03c1a31fab310259eec8ac560ff languageName: node linkType: hard @@ -6641,8 +6716,8 @@ __metadata: version: 4.0.0 resolution: "parse-json@npm:4.0.0" dependencies: - error-ex: "npm:^1.3.1" - json-parse-better-errors: "npm:^1.0.1" + error-ex: ^1.3.1 + json-parse-better-errors: ^1.0.1 checksum: 0fe227d410a61090c247e34fa210552b834613c006c2c64d9a05cfe9e89cf8b4246d1246b1a99524b53b313e9ac024438d0680f67e33eaed7e6f38db64cfe7b5 languageName: node linkType: hard @@ -6651,10 +6726,10 @@ __metadata: version: 5.2.0 resolution: "parse-json@npm:5.2.0" dependencies: - "@babel/code-frame": "npm:^7.0.0" - error-ex: "npm:^1.3.1" - json-parse-even-better-errors: "npm:^2.3.0" - lines-and-columns: "npm:^1.1.6" + "@babel/code-frame": ^7.0.0 + error-ex: ^1.3.1 + json-parse-even-better-errors: ^2.3.0 + lines-and-columns: ^1.1.6 checksum: 62085b17d64da57f40f6afc2ac1f4d95def18c4323577e1eced571db75d9ab59b297d1d10582920f84b15985cbfc6b6d450ccbf317644cfa176f3ed982ad87e2 languageName: node linkType: hard @@ -6708,12 +6783,12 @@ __metadata: languageName: node linkType: hard -"path-scurry@npm:^1.11.0": +"path-scurry@npm:^1.11.1": version: 1.11.1 resolution: "path-scurry@npm:1.11.1" dependencies: - lru-cache: "npm:^10.2.0" - minipass: "npm:^5.0.0 || ^6.0.2 || ^7.0.0" + lru-cache: ^10.2.0 + minipass: ^5.0.0 || ^6.0.2 || ^7.0.0 checksum: 890d5abcd593a7912dcce7cf7c6bf7a0b5648e3dee6caf0712c126ca0a65c7f3d7b9d769072a4d1baf370f61ce493ab5b038d59988688e0c5f3f646ee3c69023 languageName: node linkType: hard @@ -6722,7 +6797,7 @@ __metadata: version: 3.0.0 resolution: "path-type@npm:3.0.0" dependencies: - pify: "npm:^3.0.0" + pify: ^3.0.0 checksum: 735b35e256bad181f38fa021033b1c33cfbe62ead42bb2222b56c210e42938eecb272ae1949f3b6db4ac39597a61b44edd8384623ec4d79bfdc9a9c0f12537a6 languageName: node linkType: hard @@ -6738,8 +6813,8 @@ __metadata: version: 3.2.1 resolution: "pbf@npm:3.2.1" dependencies: - ieee754: "npm:^1.1.12" - resolve-protobuf-schema: "npm:^2.1.0" + ieee754: ^1.1.12 + resolve-protobuf-schema: ^2.1.0 bin: pbf: bin/pbf checksum: 8033f5e21fffdc485e85d50bbff07ab3313c6841c3630a4ba9bc9e82d2e9005ab92000a1a90cb911223caa44316293e367bab607dd8110d5c771e6c8aaad63e1 @@ -6787,7 +6862,7 @@ __metadata: version: 4.2.0 resolution: "pkg-dir@npm:4.2.0" dependencies: - find-up: "npm:^4.0.0" + find-up: ^4.0.0 checksum: 9863e3f35132bf99ae1636d31ff1e1e3501251d480336edb1c211133c8d58906bed80f154a1d723652df1fda91e01c7442c2eeaf9dc83157c7ae89087e43c8d6 languageName: node linkType: hard @@ -6812,9 +6887,9 @@ __metadata: version: 4.0.5 resolution: "postcss-modules-local-by-default@npm:4.0.5" dependencies: - icss-utils: "npm:^5.0.0" - postcss-selector-parser: "npm:^6.0.2" - postcss-value-parser: "npm:^4.1.0" + icss-utils: ^5.0.0 + postcss-selector-parser: ^6.0.2 + postcss-value-parser: ^4.1.0 peerDependencies: postcss: ^8.1.0 checksum: ca9b01f4a0a3dfb33e016299e2dfb7e85c3123292f7aec2efc0c6771b9955648598bfb4c1561f7ee9732fb27fb073681233661b32eef98baab43743f96735452 @@ -6825,7 +6900,7 @@ __metadata: version: 3.2.0 resolution: "postcss-modules-scope@npm:3.2.0" dependencies: - postcss-selector-parser: "npm:^6.0.4" + postcss-selector-parser: ^6.0.4 peerDependencies: postcss: ^8.1.0 checksum: 2ffe7e98c1fa993192a39c8dd8ade93fc4f59fbd1336ce34fcedaee0ee3bafb29e2e23fb49189256895b30e4f21af661c6a6a16ef7b17ae2c859301e4a4459ae @@ -6836,7 +6911,7 @@ __metadata: version: 4.0.0 resolution: "postcss-modules-values@npm:4.0.0" dependencies: - icss-utils: "npm:^5.0.0" + icss-utils: ^5.0.0 peerDependencies: postcss: ^8.1.0 checksum: f7f2cdf14a575b60e919ad5ea52fed48da46fe80db2733318d71d523fc87db66c835814940d7d05b5746b0426e44661c707f09bdb83592c16aea06e859409db6 @@ -6844,12 +6919,12 @@ __metadata: linkType: hard "postcss-selector-parser@npm:^6.0.2, postcss-selector-parser@npm:^6.0.4": - version: 6.0.16 - resolution: "postcss-selector-parser@npm:6.0.16" + version: 6.1.0 + resolution: "postcss-selector-parser@npm:6.1.0" dependencies: - cssesc: "npm:^3.0.0" - util-deprecate: "npm:^1.0.2" - checksum: e1cd68e33a39e3dc1e1e5bd8717be5bbe3cc23a4cecb466c3acb2f3a77daad7a47df4d6137a76f8db74cf160d2fb16b2cfdb4ccbebdfda844690f8d545fe281d + cssesc: ^3.0.0 + util-deprecate: ^1.0.2 + checksum: 449f614e6706421be307d8638183c61ba45bc3b460fe3815df8971dbb4d59c4087181940d879daee4a7a2daf3d86e915db1cce0c006dd68ca75b4087079273bd languageName: node linkType: hard @@ -6861,13 +6936,13 @@ __metadata: linkType: hard "postcss@npm:^8.3.11, postcss@npm:^8.4.33": - version: 8.4.38 - resolution: "postcss@npm:8.4.38" + version: 8.4.39 + resolution: "postcss@npm:8.4.39" dependencies: - nanoid: "npm:^3.3.7" - picocolors: "npm:^1.0.0" - source-map-js: "npm:^1.2.0" - checksum: 649f9e60a763ca4b5a7bbec446a069edf07f057f6d780a5a0070576b841538d1ecf7dd888f2fbfd1f76200e26c969e405aeeae66332e6927dbdc8bdcb90b9451 + nanoid: ^3.3.7 + picocolors: ^1.0.1 + source-map-js: ^1.2.0 + checksum: 14b130c90f165961772bdaf99c67f907f3d16494adf0868e57ef68baa67e0d1f6762db9d41ab0f4d09bab6fb7888588dba3596afd1a235fd5c2d43fba7006ac6 languageName: node linkType: hard @@ -6882,17 +6957,17 @@ __metadata: version: 1.0.0 resolution: "prettier-linter-helpers@npm:1.0.0" dependencies: - fast-diff: "npm:^1.1.2" + fast-diff: ^1.1.2 checksum: 00ce8011cf6430158d27f9c92cfea0a7699405633f7f1d4a45f07e21bf78e99895911cbcdc3853db3a824201a7c745bd49bfea8abd5fb9883e765a90f74f8392 languageName: node linkType: hard "prettier@npm:^3.2.4": - version: 3.2.5 - resolution: "prettier@npm:3.2.5" + version: 3.3.2 + resolution: "prettier@npm:3.3.2" bin: prettier: bin/prettier.cjs - checksum: 2ee4e1417572372afb7a13bb446b34f20f1bf1747db77cf6ccaf57a9be005f2f15c40f903d41a6b79eec3f57fff14d32a20fb6dee1f126da48908926fe43c311 + checksum: 5557d8caed0b182f68123c2e1e370ef105251d1dd75800fadaece3d061daf96b1389141634febf776050f9d732c7ae8fd444ff0b4a61b20535e7610552f32c69 languageName: node linkType: hard @@ -6900,21 +6975,14 @@ __metadata: version: 29.7.0 resolution: "pretty-format@npm:29.7.0" dependencies: - "@jest/schemas": "npm:^29.6.3" - ansi-styles: "npm:^5.0.0" - react-is: "npm:^18.0.0" + "@jest/schemas": ^29.6.3 + ansi-styles: ^5.0.0 + react-is: ^18.0.0 checksum: 032c1602383e71e9c0c02a01bbd25d6759d60e9c7cf21937dde8357aa753da348fcec5def5d1002c9678a8524d5fe099ad98861286550ef44de8808cc61e43b6 languageName: node linkType: hard -"proc-log@npm:^3.0.0": - version: 3.0.0 - resolution: "proc-log@npm:3.0.0" - checksum: 02b64e1b3919e63df06f836b98d3af002b5cd92655cab18b5746e37374bfb73e03b84fe305454614b34c25b485cc687a9eebdccf0242cda8fda2475dd2c97e02 - languageName: node - linkType: hard - -"proc-log@npm:^4.2.0": +"proc-log@npm:^4.1.0, proc-log@npm:^4.2.0": version: 4.2.0 resolution: "proc-log@npm:4.2.0" checksum: 98f6cd012d54b5334144c5255ecb941ee171744f45fca8b43b58ae5a0c1af07352475f481cadd9848e7f0250376ee584f6aa0951a856ff8f021bdfbff4eb33fc @@ -6932,8 +7000,8 @@ __metadata: version: 2.0.1 resolution: "promise-retry@npm:2.0.1" dependencies: - err-code: "npm:^2.0.2" - retry: "npm:^0.12.0" + err-code: ^2.0.2 + retry: ^0.12.0 checksum: f96a3f6d90b92b568a26f71e966cbbc0f63ab85ea6ff6c81284dc869b41510e6cdef99b6b65f9030f0db422bf7c96652a3fff9f2e8fb4a0f069d8f4430359429 languageName: node linkType: hard @@ -6942,8 +7010,8 @@ __metadata: version: 2.4.2 resolution: "prompts@npm:2.4.2" dependencies: - kleur: "npm:^3.0.3" - sisteransi: "npm:^1.0.5" + kleur: ^3.0.3 + sisteransi: ^1.0.5 checksum: d8fd1fe63820be2412c13bfc5d0a01909acc1f0367e32396962e737cb2fc52d004f3302475d5ce7d18a1e8a79985f93ff04ee03007d091029c3f9104bffc007d languageName: node linkType: hard @@ -7001,7 +7069,7 @@ __metadata: version: 2.1.0 resolution: "randombytes@npm:2.1.0" dependencies: - safe-buffer: "npm:^5.1.0" + safe-buffer: ^5.1.0 checksum: d779499376bd4cbb435ef3ab9a957006c8682f343f14089ed5f27764e4645114196e75b7f6abf1cbd84fd247c0cb0651698444df8c9bf30e62120fbbc52269d6 languageName: node linkType: hard @@ -7010,7 +7078,7 @@ __metadata: version: 3.0.1 resolution: "rbush@npm:3.0.1" dependencies: - quickselect: "npm:^2.0.0" + quickselect: ^2.0.0 checksum: b7def5ba762ca01b6c7c032098ef61b86bd4fef4afb82e4a1d70a07a929b39e779290446c2d4730f577e8a1c8fd0dfd349605b5ea0229258d5f013debdffa65a languageName: node linkType: hard @@ -7026,9 +7094,9 @@ __metadata: version: 3.0.0 resolution: "read-pkg@npm:3.0.0" dependencies: - load-json-file: "npm:^4.0.0" - normalize-package-data: "npm:^2.3.2" - path-type: "npm:^3.0.0" + load-json-file: ^4.0.0 + normalize-package-data: ^2.3.2 + path-type: ^3.0.0 checksum: 398903ebae6c7e9965419a1062924436cc0b6f516c42c4679a90290d2f87448ed8f977e7aa2dbba4aa1ac09248628c43e493ac25b2bc76640e946035200e34c6 languageName: node linkType: hard @@ -7037,7 +7105,7 @@ __metadata: version: 0.8.0 resolution: "rechoir@npm:0.8.0" dependencies: - resolve: "npm:^1.20.0" + resolve: ^1.20.0 checksum: ad3caed8afdefbc33fbc30e6d22b86c35b3d51c2005546f4e79bcc03c074df804b3640ad18945e6bef9ed12caedc035655ec1082f64a5e94c849ff939dc0a788 languageName: node linkType: hard @@ -7046,7 +7114,7 @@ __metadata: version: 10.1.1 resolution: "regenerate-unicode-properties@npm:10.1.1" dependencies: - regenerate: "npm:^1.4.2" + regenerate: ^1.4.2 checksum: b80958ef40f125275824c2c47d5081dfaefebd80bff26c76761e9236767c748a4a95a69c053fe29d2df881177f2ca85df4a71fe70a82360388b31159ef19adcf languageName: node linkType: hard @@ -7069,7 +7137,7 @@ __metadata: version: 0.15.2 resolution: "regenerator-transform@npm:0.15.2" dependencies: - "@babel/runtime": "npm:^7.8.4" + "@babel/runtime": ^7.8.4 checksum: 20b6f9377d65954980fe044cfdd160de98df415b4bff38fbade67b3337efaf078308c4fed943067cd759827cc8cfeca9cb28ccda1f08333b85d6a2acbd022c27 languageName: node linkType: hard @@ -7078,10 +7146,10 @@ __metadata: version: 1.5.2 resolution: "regexp.prototype.flags@npm:1.5.2" dependencies: - call-bind: "npm:^1.0.6" - define-properties: "npm:^1.2.1" - es-errors: "npm:^1.3.0" - set-function-name: "npm:^2.0.1" + call-bind: ^1.0.6 + define-properties: ^1.2.1 + es-errors: ^1.3.0 + set-function-name: ^2.0.1 checksum: d7f333667d5c564e2d7a97c56c3075d64c722c9bb51b2b4df6822b2e8096d623a5e63088fb4c83df919b6951ef8113841de8b47de7224872fa6838bc5d8a7d64 languageName: node linkType: hard @@ -7090,12 +7158,12 @@ __metadata: version: 5.3.2 resolution: "regexpu-core@npm:5.3.2" dependencies: - "@babel/regjsgen": "npm:^0.8.0" - regenerate: "npm:^1.4.2" - regenerate-unicode-properties: "npm:^10.1.0" - regjsparser: "npm:^0.9.1" - unicode-match-property-ecmascript: "npm:^2.0.0" - unicode-match-property-value-ecmascript: "npm:^2.1.0" + "@babel/regjsgen": ^0.8.0 + regenerate: ^1.4.2 + regenerate-unicode-properties: ^10.1.0 + regjsparser: ^0.9.1 + unicode-match-property-ecmascript: ^2.0.0 + unicode-match-property-value-ecmascript: ^2.1.0 checksum: 95bb97088419f5396e07769b7de96f995f58137ad75fac5811fb5fe53737766dfff35d66a0ee66babb1eb55386ef981feaef392f9df6d671f3c124812ba24da2 languageName: node linkType: hard @@ -7104,7 +7172,7 @@ __metadata: version: 0.9.1 resolution: "regjsparser@npm:0.9.1" dependencies: - jsesc: "npm:~0.5.0" + jsesc: ~0.5.0 bin: regjsparser: bin/parser checksum: 5e1b76afe8f1d03c3beaf9e0d935dd467589c3625f6d65fb8ffa14f224d783a0fed4bf49c2c1b8211043ef92b6117313419edf055a098ed8342e340586741afc @@ -7136,7 +7204,7 @@ __metadata: version: 3.0.0 resolution: "resolve-cwd@npm:3.0.0" dependencies: - resolve-from: "npm:^5.0.0" + resolve-from: ^5.0.0 checksum: 546e0816012d65778e580ad62b29e975a642989108d9a3c5beabfb2304192fa3c9f9146fbdfe213563c6ff51975ae41bac1d3c6e047dd9572c94863a057b4d81 languageName: node linkType: hard @@ -7159,7 +7227,7 @@ __metadata: version: 2.1.0 resolution: "resolve-protobuf-schema@npm:2.1.0" dependencies: - protocol-buffers-schema: "npm:^3.3.1" + protocol-buffers-schema: ^3.3.1 checksum: 88fffab2a3757888884a36f9aa4e24be5186b01820a8c26297dc1ce406b9daf776594926bdf524c2c8e8e5b0aba8ac48362b6584cdecc9a7083215ebca01c599 languageName: node linkType: hard @@ -7175,22 +7243,22 @@ __metadata: version: 1.22.8 resolution: "resolve@npm:1.22.8" dependencies: - is-core-module: "npm:^2.13.0" - path-parse: "npm:^1.0.7" - supports-preserve-symlinks-flag: "npm:^1.0.0" + is-core-module: ^2.13.0 + path-parse: ^1.0.7 + supports-preserve-symlinks-flag: ^1.0.0 bin: resolve: bin/resolve checksum: f8a26958aa572c9b064562750b52131a37c29d072478ea32e129063e2da7f83e31f7f11e7087a18225a8561cfe8d2f0df9dbea7c9d331a897571c0a2527dbb4c languageName: node linkType: hard -"resolve@patch:resolve@npm%3A^1.10.0#~builtin, resolve@patch:resolve@npm%3A^1.14.2#~builtin, resolve@patch:resolve@npm%3A^1.20.0#~builtin": +"resolve@patch:resolve@^1.10.0#~builtin, resolve@patch:resolve@^1.14.2#~builtin, resolve@patch:resolve@^1.20.0#~builtin": version: 1.22.8 resolution: "resolve@patch:resolve@npm%3A1.22.8#~builtin::version=1.22.8&hash=c3c19d" dependencies: - is-core-module: "npm:^2.13.0" - path-parse: "npm:^1.0.7" - supports-preserve-symlinks-flag: "npm:^1.0.0" + is-core-module: ^2.13.0 + path-parse: ^1.0.7 + supports-preserve-symlinks-flag: ^1.0.0 bin: resolve: bin/resolve checksum: 5479b7d431cacd5185f8db64bfcb7286ae5e31eb299f4c4f404ad8aa6098b77599563ac4257cb2c37a42f59dfc06a1bec2bcf283bb448f319e37f0feb9a09847 @@ -7215,7 +7283,7 @@ __metadata: version: 3.0.2 resolution: "rimraf@npm:3.0.2" dependencies: - glob: "npm:^7.1.3" + glob: ^7.1.3 bin: rimraf: bin.js checksum: 87f4164e396f0171b0a3386cc1877a817f572148ee13a7e113b238e48e8a9f2f31d009a92ec38a591ff1567d9662c6b67fd8818a2dbbaed74bc26a87a2a4a9a0 @@ -7223,13 +7291,13 @@ __metadata: linkType: hard "rimraf@npm:^5.0.5": - version: 5.0.7 - resolution: "rimraf@npm:5.0.7" + version: 5.0.9 + resolution: "rimraf@npm:5.0.9" dependencies: - glob: "npm:^10.3.7" + glob: ^10.3.7 bin: rimraf: dist/esm/bin.mjs - checksum: 884852abf8aefd4667448d87bdab04120a8641266c828cf382ac811713547eda18f81799d2146ffec3178f357d83d44ec01c10095949c82e23551660732bf14f + checksum: e6dd5007e34181e1fa732437499d798035b2f3313887435cb855c5c9055bf9646795fc1c63ef843de830df8577cd9862df2dabf913fe08dcc1758c96de4a4fdb languageName: node linkType: hard @@ -7237,7 +7305,7 @@ __metadata: version: 1.2.0 resolution: "run-parallel@npm:1.2.0" dependencies: - queue-microtask: "npm:^1.2.2" + queue-microtask: ^1.2.2 checksum: cb4f97ad25a75ebc11a8ef4e33bb962f8af8516bb2001082ceabd8902e15b98f4b84b4f8a9b222e5d57fc3bd1379c483886ed4619367a7680dad65316993021d languageName: node linkType: hard @@ -7246,10 +7314,10 @@ __metadata: version: 1.1.2 resolution: "safe-array-concat@npm:1.1.2" dependencies: - call-bind: "npm:^1.0.7" - get-intrinsic: "npm:^1.2.4" - has-symbols: "npm:^1.0.3" - isarray: "npm:^2.0.5" + call-bind: ^1.0.7 + get-intrinsic: ^1.2.4 + has-symbols: ^1.0.3 + isarray: ^2.0.5 checksum: a3b259694754ddfb73ae0663829e396977b99ff21cbe8607f35a469655656da8e271753497e59da8a7575baa94d2e684bea3e10ddd74ba046c0c9b4418ffa0c4 languageName: node linkType: hard @@ -7265,9 +7333,9 @@ __metadata: version: 1.0.3 resolution: "safe-regex-test@npm:1.0.3" dependencies: - call-bind: "npm:^1.0.6" - es-errors: "npm:^1.3.0" - is-regex: "npm:^1.1.4" + call-bind: ^1.0.6 + es-errors: ^1.3.0 + is-regex: ^1.1.4 checksum: 6c7d392ff1ae7a3ae85273450ed02d1d131f1d2c76e177d6b03eb88e6df8fa062639070e7d311802c1615f351f18dc58f9454501c58e28d5ffd9b8f502ba6489 languageName: node linkType: hard @@ -7283,12 +7351,12 @@ __metadata: version: 2.13.0 resolution: "sanitize-html@npm:2.13.0" dependencies: - deepmerge: "npm:^4.2.2" - escape-string-regexp: "npm:^4.0.0" - htmlparser2: "npm:^8.0.0" - is-plain-object: "npm:^5.0.0" - parse-srcset: "npm:^1.0.2" - postcss: "npm:^8.3.11" + deepmerge: ^4.2.2 + escape-string-regexp: ^4.0.0 + htmlparser2: ^8.0.0 + is-plain-object: ^5.0.0 + parse-srcset: ^1.0.2 + postcss: ^8.3.11 checksum: d88602328306dbbddb9c5e2a5798783a3b38977a7ef40bf81dae31220d7fb583149c1046a33ec6817e9d96d172b1aaa9ea159776eb1ee08f6a0571150114c9bf languageName: node linkType: hard @@ -7297,9 +7365,9 @@ __metadata: version: 2.7.1 resolution: "schema-utils@npm:2.7.1" dependencies: - "@types/json-schema": "npm:^7.0.5" - ajv: "npm:^6.12.4" - ajv-keywords: "npm:^3.5.2" + "@types/json-schema": ^7.0.5 + ajv: ^6.12.4 + ajv-keywords: ^3.5.2 checksum: 32c62fc9e28edd101e1bd83453a4216eb9bd875cc4d3775e4452b541908fa8f61a7bbac8ffde57484f01d7096279d3ba0337078e85a918ecbeb72872fb09fb2b languageName: node linkType: hard @@ -7308,9 +7376,9 @@ __metadata: version: 3.3.0 resolution: "schema-utils@npm:3.3.0" dependencies: - "@types/json-schema": "npm:^7.0.8" - ajv: "npm:^6.12.5" - ajv-keywords: "npm:^3.5.2" + "@types/json-schema": ^7.0.8 + ajv: ^6.12.5 + ajv-keywords: ^3.5.2 checksum: ea56971926fac2487f0757da939a871388891bc87c6a82220d125d587b388f1704788f3706e7f63a7b70e49fc2db974c41343528caea60444afd5ce0fe4b85c0 languageName: node linkType: hard @@ -7319,10 +7387,10 @@ __metadata: version: 4.2.0 resolution: "schema-utils@npm:4.2.0" dependencies: - "@types/json-schema": "npm:^7.0.9" - ajv: "npm:^8.9.0" - ajv-formats: "npm:^2.1.1" - ajv-keywords: "npm:^5.1.0" + "@types/json-schema": ^7.0.9 + ajv: ^8.9.0 + ajv-formats: ^2.1.1 + ajv-keywords: ^5.1.0 checksum: 26a0463d47683258106e6652e9aeb0823bf0b85843039e068b57da1892f7ae6b6b1094d48e9ed5ba5cbe9f7166469d880858b9d91abe8bd249421eb813850cde languageName: node linkType: hard @@ -7358,7 +7426,7 @@ __metadata: version: 6.0.2 resolution: "serialize-javascript@npm:6.0.2" dependencies: - randombytes: "npm:^2.1.0" + randombytes: ^2.1.0 checksum: c4839c6206c1d143c0f80763997a361310305751171dd95e4b57efee69b8f6edd8960a0b7fbfc45042aadff98b206d55428aee0dc276efe54f100899c7fa8ab7 languageName: node linkType: hard @@ -7367,12 +7435,12 @@ __metadata: version: 1.2.2 resolution: "set-function-length@npm:1.2.2" dependencies: - define-data-property: "npm:^1.1.4" - es-errors: "npm:^1.3.0" - function-bind: "npm:^1.1.2" - get-intrinsic: "npm:^1.2.4" - gopd: "npm:^1.0.1" - has-property-descriptors: "npm:^1.0.2" + define-data-property: ^1.1.4 + es-errors: ^1.3.0 + function-bind: ^1.1.2 + get-intrinsic: ^1.2.4 + gopd: ^1.0.1 + has-property-descriptors: ^1.0.2 checksum: a8248bdacdf84cb0fab4637774d9fb3c7a8e6089866d04c817583ff48e14149c87044ce683d7f50759a8c50fb87c7a7e173535b06169c87ef76f5fb276dfff72 languageName: node linkType: hard @@ -7381,10 +7449,10 @@ __metadata: version: 2.0.2 resolution: "set-function-name@npm:2.0.2" dependencies: - define-data-property: "npm:^1.1.4" - es-errors: "npm:^1.3.0" - functions-have-names: "npm:^1.2.3" - has-property-descriptors: "npm:^1.0.2" + define-data-property: ^1.1.4 + es-errors: ^1.3.0 + functions-have-names: ^1.2.3 + has-property-descriptors: ^1.0.2 checksum: d6229a71527fd0404399fc6227e0ff0652800362510822a291925c9d7b48a1ca1a468b11b281471c34cd5a2da0db4f5d7ff315a61d26655e77f6e971e6d0c80f languageName: node linkType: hard @@ -7393,7 +7461,7 @@ __metadata: version: 3.0.1 resolution: "shallow-clone@npm:3.0.1" dependencies: - kind-of: "npm:^6.0.2" + kind-of: ^6.0.2 checksum: 39b3dd9630a774aba288a680e7d2901f5c0eae7b8387fc5c8ea559918b29b3da144b7bdb990d7ccd9e11be05508ac9e459ce51d01fd65e583282f6ffafcba2e7 languageName: node linkType: hard @@ -7402,7 +7470,7 @@ __metadata: version: 1.2.0 resolution: "shebang-command@npm:1.2.0" dependencies: - shebang-regex: "npm:^1.0.0" + shebang-regex: ^1.0.0 checksum: 9eed1750301e622961ba5d588af2212505e96770ec376a37ab678f965795e995ade7ed44910f5d3d3cb5e10165a1847f52d3348c64e146b8be922f7707958908 languageName: node linkType: hard @@ -7411,7 +7479,7 @@ __metadata: version: 2.0.0 resolution: "shebang-command@npm:2.0.0" dependencies: - shebang-regex: "npm:^3.0.0" + shebang-regex: ^3.0.0 checksum: 6b52fe87271c12968f6a054e60f6bde5f0f3d2db483a1e5c3e12d657c488a15474121a1d55cd958f6df026a54374ec38a4a963988c213b7570e1d51575cea7fa languageName: node linkType: hard @@ -7441,10 +7509,10 @@ __metadata: version: 1.0.6 resolution: "side-channel@npm:1.0.6" dependencies: - call-bind: "npm:^1.0.7" - es-errors: "npm:^1.3.0" - get-intrinsic: "npm:^1.2.4" - object-inspect: "npm:^1.13.1" + call-bind: ^1.0.7 + es-errors: ^1.3.0 + get-intrinsic: ^1.2.4 + object-inspect: ^1.13.1 checksum: bfc1afc1827d712271453e91b7cd3878ac0efd767495fd4e594c4c2afaa7963b7b510e249572bfd54b0527e66e4a12b61b80c061389e129755f34c493aad9b97 languageName: node linkType: hard @@ -7485,22 +7553,22 @@ __metadata: linkType: hard "socks-proxy-agent@npm:^8.0.3": - version: 8.0.3 - resolution: "socks-proxy-agent@npm:8.0.3" + version: 8.0.4 + resolution: "socks-proxy-agent@npm:8.0.4" dependencies: - agent-base: "npm:^7.1.1" - debug: "npm:^4.3.4" - socks: "npm:^2.7.1" - checksum: 8fab38821c327c190c28f1658087bc520eb065d55bc07b4a0fdf8d1e0e7ad5d115abbb22a95f94f944723ea969dd771ad6416b1e3cde9060c4c71f705c8b85c5 + agent-base: ^7.1.1 + debug: ^4.3.4 + socks: ^2.8.3 + checksum: b2ec5051d85fe49072f9a250c427e0e9571fd09d5db133819192d078fd291276e1f0f50f6dbc04329b207738b1071314cee8bdbb4b12e27de42dbcf1d4233c67 languageName: node linkType: hard -"socks@npm:^2.7.1": +"socks@npm:^2.8.3": version: 2.8.3 resolution: "socks@npm:2.8.3" dependencies: - ip-address: "npm:^9.0.5" - smart-buffer: "npm:^4.2.0" + ip-address: ^9.0.5 + smart-buffer: ^4.2.0 checksum: 7a6b7f6eedf7482b9e4597d9a20e09505824208006ea8f2c49b71657427f3c137ca2ae662089baa73e1971c62322d535d9d0cf1c9235cf6f55e315c18203eadd languageName: node linkType: hard @@ -7523,8 +7591,8 @@ __metadata: version: 5.0.0 resolution: "source-map-loader@npm:5.0.0" dependencies: - iconv-lite: "npm:^0.6.3" - source-map-js: "npm:^1.0.2" + iconv-lite: ^0.6.3 + source-map-js: ^1.0.2 peerDependencies: webpack: ^5.72.1 checksum: 66d6fbaa87a14197647515f274b9a685a84d0ddb95c3d9801bfb1ce28fc24000954c73548fe09c52c0bad660eb10d963b0c60d5c5943ccf2c8292a8d957f2acb @@ -7535,11 +7603,11 @@ __metadata: version: 1.0.2 resolution: "source-map-loader@npm:1.0.2" dependencies: - data-urls: "npm:^2.0.0" - iconv-lite: "npm:^0.6.2" - loader-utils: "npm:^2.0.0" - schema-utils: "npm:^2.7.0" - source-map: "npm:^0.6.1" + data-urls: ^2.0.0 + iconv-lite: ^0.6.2 + loader-utils: ^2.0.0 + schema-utils: ^2.7.0 + source-map: ^0.6.1 peerDependencies: webpack: ^4.0.0 || ^5.0.0 checksum: 0360b536e904f8fea452d0e122b9199661765229dc62a4b8093cc9d14e985f2ddd146355ede6d11acdd0b9bf4639b364e2526afcf9d3218ed45af63aa5eb053f @@ -7550,8 +7618,8 @@ __metadata: version: 0.5.13 resolution: "source-map-support@npm:0.5.13" dependencies: - buffer-from: "npm:^1.0.0" - source-map: "npm:^0.6.0" + buffer-from: ^1.0.0 + source-map: ^0.6.0 checksum: 933550047b6c1a2328599a21d8b7666507427c0f5ef5eaadd56b5da0fd9505e239053c66fe181bf1df469a3b7af9d775778eee283cbb7ae16b902ddc09e93a97 languageName: node linkType: hard @@ -7560,8 +7628,8 @@ __metadata: version: 0.5.21 resolution: "source-map-support@npm:0.5.21" dependencies: - buffer-from: "npm:^1.0.0" - source-map: "npm:^0.6.0" + buffer-from: ^1.0.0 + source-map: ^0.6.0 checksum: 43e98d700d79af1d36f859bdb7318e601dfc918c7ba2e98456118ebc4c4872b327773e5a1df09b0524e9e5063bb18f0934538eace60cca2710d1fa687645d137 languageName: node linkType: hard @@ -7584,8 +7652,8 @@ __metadata: version: 3.2.0 resolution: "spdx-correct@npm:3.2.0" dependencies: - spdx-expression-parse: "npm:^3.0.0" - spdx-license-ids: "npm:^3.0.0" + spdx-expression-parse: ^3.0.0 + spdx-license-ids: ^3.0.0 checksum: e9ae98d22f69c88e7aff5b8778dc01c361ef635580e82d29e5c60a6533cc8f4d820803e67d7432581af0cc4fb49973125076ee3b90df191d153e223c004193b2 languageName: node linkType: hard @@ -7601,16 +7669,16 @@ __metadata: version: 3.0.1 resolution: "spdx-expression-parse@npm:3.0.1" dependencies: - spdx-exceptions: "npm:^2.1.0" - spdx-license-ids: "npm:^3.0.0" + spdx-exceptions: ^2.1.0 + spdx-license-ids: ^3.0.0 checksum: a1c6e104a2cbada7a593eaa9f430bd5e148ef5290d4c0409899855ce8b1c39652bcc88a725259491a82601159d6dc790bedefc9016c7472f7de8de7361f8ccde languageName: node linkType: hard "spdx-license-ids@npm:^3.0.0": - version: 3.0.17 - resolution: "spdx-license-ids@npm:3.0.17" - checksum: 0aba5d16292ff604dd20982200e23b4d425f6ba364765039bdbde2f6c956b9909fce1ad040a897916a5f87388e85e001f90cb64bf706b6e319f3908cfc445a59 + version: 3.0.18 + resolution: "spdx-license-ids@npm:3.0.18" + checksum: 457825df5dd1fc0135b0bb848c896143f70945cc2da148afc71c73ed0837d1d651f809006e406d82109c9dd71a8cb39785a3604815fe46bc0548e9d3976f6b69 languageName: node linkType: hard @@ -7632,7 +7700,7 @@ __metadata: version: 10.0.6 resolution: "ssri@npm:10.0.6" dependencies: - minipass: "npm:^7.0.3" + minipass: ^7.0.3 checksum: 4603d53a05bcd44188747d38f1cc43833b9951b5a1ee43ba50535bdfc5fe4a0897472dbe69837570a5417c3c073377ef4f8c1a272683b401857f72738ee57299 languageName: node linkType: hard @@ -7641,7 +7709,7 @@ __metadata: version: 2.0.6 resolution: "stack-utils@npm:2.0.6" dependencies: - escape-string-regexp: "npm:^2.0.0" + escape-string-regexp: ^2.0.0 checksum: 052bf4d25bbf5f78e06c1d5e67de2e088b06871fa04107ca8d3f0e9d9263326e2942c8bedee3545795fc77d787d443a538345eef74db2f8e35db3558c6f91ff7 languageName: node linkType: hard @@ -7650,8 +7718,8 @@ __metadata: version: 4.0.2 resolution: "string-length@npm:4.0.2" dependencies: - char-regex: "npm:^1.0.2" - strip-ansi: "npm:^6.0.0" + char-regex: ^1.0.2 + strip-ansi: ^6.0.0 checksum: ce85533ef5113fcb7e522bcf9e62cb33871aa99b3729cec5595f4447f660b0cefd542ca6df4150c97a677d58b0cb727a3fe09ac1de94071d05526c73579bf505 languageName: node linkType: hard @@ -7660,9 +7728,9 @@ __metadata: version: 4.2.3 resolution: "string-width@npm:4.2.3" dependencies: - emoji-regex: "npm:^8.0.0" - is-fullwidth-code-point: "npm:^3.0.0" - strip-ansi: "npm:^6.0.1" + emoji-regex: ^8.0.0 + is-fullwidth-code-point: ^3.0.0 + strip-ansi: ^6.0.1 checksum: e52c10dc3fbfcd6c3a15f159f54a90024241d0f149cf8aed2982a2d801d2e64df0bf1dc351cf8e95c3319323f9f220c16e740b06faecd53e2462df1d2b5443fb languageName: node linkType: hard @@ -7671,9 +7739,9 @@ __metadata: version: 5.1.2 resolution: "string-width@npm:5.1.2" dependencies: - eastasianwidth: "npm:^0.2.0" - emoji-regex: "npm:^9.2.2" - strip-ansi: "npm:^7.0.1" + eastasianwidth: ^0.2.0 + emoji-regex: ^9.2.2 + strip-ansi: ^7.0.1 checksum: 7369deaa29f21dda9a438686154b62c2c5f661f8dda60449088f9f980196f7908fc39fdd1803e3e01541970287cf5deae336798337e9319a7055af89dafa7193 languageName: node linkType: hard @@ -7682,10 +7750,10 @@ __metadata: version: 3.1.6 resolution: "string.prototype.padend@npm:3.1.6" dependencies: - call-bind: "npm:^1.0.7" - define-properties: "npm:^1.2.1" - es-abstract: "npm:^1.23.2" - es-object-atoms: "npm:^1.0.0" + call-bind: ^1.0.7 + define-properties: ^1.2.1 + es-abstract: ^1.23.2 + es-object-atoms: ^1.0.0 checksum: d9fc23c21bdfb6850756002ef09cebc420882003f29eafbd8322df77a90726bc2a64892d01f94f1fc9fc6f809414fbcbd8615610bb3cddd33512c12b6b3643a2 languageName: node linkType: hard @@ -7694,10 +7762,10 @@ __metadata: version: 1.2.9 resolution: "string.prototype.trim@npm:1.2.9" dependencies: - call-bind: "npm:^1.0.7" - define-properties: "npm:^1.2.1" - es-abstract: "npm:^1.23.0" - es-object-atoms: "npm:^1.0.0" + call-bind: ^1.0.7 + define-properties: ^1.2.1 + es-abstract: ^1.23.0 + es-object-atoms: ^1.0.0 checksum: ea2df6ec1e914c9d4e2dc856fa08228e8b1be59b59e50b17578c94a66a176888f417264bb763d4aac638ad3b3dad56e7a03d9317086a178078d131aa293ba193 languageName: node linkType: hard @@ -7706,9 +7774,9 @@ __metadata: version: 1.0.8 resolution: "string.prototype.trimend@npm:1.0.8" dependencies: - call-bind: "npm:^1.0.7" - define-properties: "npm:^1.2.1" - es-object-atoms: "npm:^1.0.0" + call-bind: ^1.0.7 + define-properties: ^1.2.1 + es-object-atoms: ^1.0.0 checksum: cc3bd2de08d8968a28787deba9a3cb3f17ca5f9f770c91e7e8fa3e7d47f079bad70fadce16f05dda9f261788be2c6e84a942f618c3bed31e42abc5c1084f8dfd languageName: node linkType: hard @@ -7717,9 +7785,9 @@ __metadata: version: 1.0.8 resolution: "string.prototype.trimstart@npm:1.0.8" dependencies: - call-bind: "npm:^1.0.7" - define-properties: "npm:^1.2.1" - es-object-atoms: "npm:^1.0.0" + call-bind: ^1.0.7 + define-properties: ^1.2.1 + es-object-atoms: ^1.0.0 checksum: df1007a7f580a49d692375d996521dc14fd103acda7f3034b3c558a60b82beeed3a64fa91e494e164581793a8ab0ae2f59578a49896a7af6583c1f20472bce96 languageName: node linkType: hard @@ -7728,7 +7796,7 @@ __metadata: version: 6.0.1 resolution: "strip-ansi@npm:6.0.1" dependencies: - ansi-regex: "npm:^5.0.1" + ansi-regex: ^5.0.1 checksum: f3cd25890aef3ba6e1a74e20896c21a46f482e93df4a06567cebf2b57edabb15133f1f94e57434e0a958d61186087b1008e89c94875d019910a213181a14fc8c languageName: node linkType: hard @@ -7737,7 +7805,7 @@ __metadata: version: 7.1.0 resolution: "strip-ansi@npm:7.1.0" dependencies: - ansi-regex: "npm:^6.0.1" + ansi-regex: ^6.0.1 checksum: 859c73fcf27869c22a4e4d8c6acfe690064659e84bef9458aa6d13719d09ca88dcfd40cbf31fd0be63518ea1a643fe070b4827d353e09533a5b0b9fd4553d64d languageName: node linkType: hard @@ -7792,7 +7860,7 @@ __metadata: version: 5.5.0 resolution: "supports-color@npm:5.5.0" dependencies: - has-flag: "npm:^3.0.0" + has-flag: ^3.0.0 checksum: 95f6f4ba5afdf92f495b5a912d4abee8dcba766ae719b975c56c084f5004845f6f5a5f7769f52d53f40e21952a6d87411bafe34af4a01e65f9926002e38e1dac languageName: node linkType: hard @@ -7801,7 +7869,7 @@ __metadata: version: 7.2.0 resolution: "supports-color@npm:7.2.0" dependencies: - has-flag: "npm:^4.0.0" + has-flag: ^4.0.0 checksum: 3dda818de06ebbe5b9653e07842d9479f3555ebc77e9a0280caf5a14fb877ffee9ed57007c3b78f5a6324b8dbeec648d9e97a24e2ed9fdb81ddc69ea07100f4a languageName: node linkType: hard @@ -7810,7 +7878,7 @@ __metadata: version: 8.1.1 resolution: "supports-color@npm:8.1.1" dependencies: - has-flag: "npm:^4.0.0" + has-flag: ^4.0.0 checksum: c052193a7e43c6cdc741eb7f378df605636e01ad434badf7324f17fb60c69a880d8d8fcdcb562cf94c2350e57b937d7425ab5b8326c67c2adc48f7c87c1db406 languageName: node linkType: hard @@ -7826,8 +7894,8 @@ __metadata: version: 0.8.8 resolution: "synckit@npm:0.8.8" dependencies: - "@pkgr/core": "npm:^0.1.0" - tslib: "npm:^2.6.2" + "@pkgr/core": ^0.1.0 + tslib: ^2.6.2 checksum: 9ed5d33abb785f5f24e2531efd53b2782ca77abf7912f734d170134552b99001915531be5a50297aa45c5701b5c9041e8762e6cd7a38e41e2461c1e7fccdedf8 languageName: node linkType: hard @@ -7839,16 +7907,16 @@ __metadata: languageName: node linkType: hard -"tar@npm:^6.1.11, tar@npm:^6.1.2": +"tar@npm:^6.1.11, tar@npm:^6.2.1": version: 6.2.1 resolution: "tar@npm:6.2.1" dependencies: - chownr: "npm:^2.0.0" - fs-minipass: "npm:^2.0.0" - minipass: "npm:^5.0.0" - minizlib: "npm:^2.1.1" - mkdirp: "npm:^1.0.3" - yallist: "npm:^4.0.0" + chownr: ^2.0.0 + fs-minipass: ^2.0.0 + minipass: ^5.0.0 + minizlib: ^2.1.1 + mkdirp: ^1.0.3 + yallist: ^4.0.0 checksum: f1322768c9741a25356c11373bce918483f40fa9a25c69c59410c8a1247632487edef5fe76c5f12ac51a6356d2f1829e96d2bc34098668a2fc34d76050ac2b6c languageName: node linkType: hard @@ -7857,11 +7925,11 @@ __metadata: version: 5.3.10 resolution: "terser-webpack-plugin@npm:5.3.10" dependencies: - "@jridgewell/trace-mapping": "npm:^0.3.20" - jest-worker: "npm:^27.4.5" - schema-utils: "npm:^3.1.1" - serialize-javascript: "npm:^6.0.1" - terser: "npm:^5.26.0" + "@jridgewell/trace-mapping": ^0.3.20 + jest-worker: ^27.4.5 + schema-utils: ^3.1.1 + serialize-javascript: ^6.0.1 + terser: ^5.26.0 peerDependencies: webpack: ^5.1.0 peerDependenciesMeta: @@ -7876,16 +7944,16 @@ __metadata: linkType: hard "terser@npm:^5.26.0": - version: 5.31.0 - resolution: "terser@npm:5.31.0" + version: 5.31.2 + resolution: "terser@npm:5.31.2" dependencies: - "@jridgewell/source-map": "npm:^0.3.3" - acorn: "npm:^8.8.2" - commander: "npm:^2.20.0" - source-map-support: "npm:~0.5.20" + "@jridgewell/source-map": ^0.3.3 + acorn: ^8.8.2 + commander: ^2.20.0 + source-map-support: ~0.5.20 bin: terser: bin/terser - checksum: 48f14229618866bba8a9464e9d0e7fdcb6b6488b3a6c4690fcf4d48df65bf45959d5ae8c02f1a0b3f3dd035a9ae340b715e1e547645b112dc3963daa3564699a + checksum: f788c885f75f0a26daf153ad9374d1c5f18519dba1f8b9c04eeab81ed8f2cd5c6e6b02667fdd2754a0b304fcee8916f4391bdfa0c115a5c0c56e00086d263614 languageName: node linkType: hard @@ -7893,9 +7961,9 @@ __metadata: version: 6.0.0 resolution: "test-exclude@npm:6.0.0" dependencies: - "@istanbuljs/schema": "npm:^0.1.2" - glob: "npm:^7.1.4" - minimatch: "npm:^3.0.4" + "@istanbuljs/schema": ^0.1.2 + glob: ^7.1.4 + minimatch: ^3.0.4 checksum: 3b34a3d77165a2cb82b34014b3aba93b1c4637a5011807557dc2f3da826c59975a5ccad765721c4648b39817e3472789f9b0fa98fc854c5c1c7a1e632aacdc28 languageName: node linkType: hard @@ -7925,7 +7993,7 @@ __metadata: version: 5.0.1 resolution: "to-regex-range@npm:5.0.1" dependencies: - is-number: "npm:^7.0.0" + is-number: ^7.0.0 checksum: f76fa01b3d5be85db6a2a143e24df9f60dd047d151062d0ba3df62953f2f697b16fe5dad9b0ac6191c7efc7b1d9dcaa4b768174b7b29da89d4428e64bc0a20ed languageName: node linkType: hard @@ -7934,7 +8002,7 @@ __metadata: version: 2.1.0 resolution: "tr46@npm:2.1.0" dependencies: - punycode: "npm:^2.1.1" + punycode: ^2.1.1 checksum: ffe6049b9dca3ae329b059aada7f515b0f0064c611b39b51ff6b53897e954650f6f63d9319c6c008d36ead477c7b55e5f64c9dc60588ddc91ff720d64eb710b3 languageName: node linkType: hard @@ -7949,19 +8017,21 @@ __metadata: linkType: hard "ts-jest@npm:^29.1.2": - version: 29.1.2 - resolution: "ts-jest@npm:29.1.2" - dependencies: - bs-logger: "npm:0.x" - fast-json-stable-stringify: "npm:2.x" - jest-util: "npm:^29.0.0" - json5: "npm:^2.2.3" - lodash.memoize: "npm:4.x" - make-error: "npm:1.x" - semver: "npm:^7.5.3" - yargs-parser: "npm:^21.0.1" + version: 29.2.2 + resolution: "ts-jest@npm:29.2.2" + dependencies: + bs-logger: 0.x + ejs: ^3.0.0 + fast-json-stable-stringify: 2.x + jest-util: ^29.0.0 + json5: ^2.2.3 + lodash.memoize: 4.x + make-error: 1.x + semver: ^7.5.3 + yargs-parser: ^21.0.1 peerDependencies: "@babel/core": ">=7.0.0-beta.0 <8" + "@jest/transform": ^29.0.0 "@jest/types": ^29.0.0 babel-jest: ^29.0.0 jest: ^29.0.0 @@ -7969,6 +8039,8 @@ __metadata: peerDependenciesMeta: "@babel/core": optional: true + "@jest/transform": + optional: true "@jest/types": optional: true babel-jest: @@ -7977,7 +8049,7 @@ __metadata: optional: true bin: ts-jest: cli.js - checksum: a0ce0affc1b716c78c9ab55837829c42cb04b753d174a5c796bb1ddf9f0379fc20647b76fbe30edb30d9b23181908138d6b4c51ef2ae5e187b66635c295cefd5 + checksum: e8e20167ecab9d164215691ea60e946774519fd602809599d1f2abf8321a767310e9ee2cf377a346a3d6de7b8a8ac619180bb0ab06f3813e51f82973f5a94b82 languageName: node linkType: hard @@ -7985,11 +8057,11 @@ __metadata: version: 9.5.1 resolution: "ts-loader@npm:9.5.1" dependencies: - chalk: "npm:^4.1.0" - enhanced-resolve: "npm:^5.0.0" - micromatch: "npm:^4.0.0" - semver: "npm:^7.3.4" - source-map: "npm:^0.7.4" + chalk: ^4.1.0 + enhanced-resolve: ^5.0.0 + micromatch: ^4.0.0 + semver: ^7.3.4 + source-map: ^0.7.4 peerDependencies: typescript: "*" webpack: ^5.0.0 @@ -7998,9 +8070,9 @@ __metadata: linkType: hard "tslib@npm:^2.6.2": - version: 2.6.2 - resolution: "tslib@npm:2.6.2" - checksum: 329ea56123005922f39642318e3d1f0f8265d1e7fcb92c633e0809521da75eeaca28d2cf96d7248229deb40e5c19adf408259f4b9640afd20d13aecc1430f3ad + version: 2.6.3 + resolution: "tslib@npm:2.6.3" + checksum: 74fce0e100f1ebd95b8995fbbd0e6c91bdd8f4c35c00d4da62e285a3363aaa534de40a80db30ecfd388ed7c313c42d930ee0eaf108e8114214b180eec3dbe6f5 languageName: node linkType: hard @@ -8008,7 +8080,7 @@ __metadata: version: 0.4.0 resolution: "type-check@npm:0.4.0" dependencies: - prelude-ls: "npm:^1.2.1" + prelude-ls: ^1.2.1 checksum: ec688ebfc9c45d0c30412e41ca9c0cdbd704580eb3a9ccf07b9b576094d7b86a012baebc95681999dd38f4f444afd28504cb3a89f2ef16b31d4ab61a0739025a languageName: node linkType: hard @@ -8038,9 +8110,9 @@ __metadata: version: 1.0.2 resolution: "typed-array-buffer@npm:1.0.2" dependencies: - call-bind: "npm:^1.0.7" - es-errors: "npm:^1.3.0" - is-typed-array: "npm:^1.1.13" + call-bind: ^1.0.7 + es-errors: ^1.3.0 + is-typed-array: ^1.1.13 checksum: 02ffc185d29c6df07968272b15d5319a1610817916ec8d4cd670ded5d1efe72901541ff2202fcc622730d8a549c76e198a2f74e312eabbfb712ed907d45cbb0b languageName: node linkType: hard @@ -8049,11 +8121,11 @@ __metadata: version: 1.0.1 resolution: "typed-array-byte-length@npm:1.0.1" dependencies: - call-bind: "npm:^1.0.7" - for-each: "npm:^0.3.3" - gopd: "npm:^1.0.1" - has-proto: "npm:^1.0.3" - is-typed-array: "npm:^1.1.13" + call-bind: ^1.0.7 + for-each: ^0.3.3 + gopd: ^1.0.1 + has-proto: ^1.0.3 + is-typed-array: ^1.1.13 checksum: f65e5ecd1cf76b1a2d0d6f631f3ea3cdb5e08da106c6703ffe687d583e49954d570cc80434816d3746e18be889ffe53c58bf3e538081ea4077c26a41055b216d languageName: node linkType: hard @@ -8062,12 +8134,12 @@ __metadata: version: 1.0.2 resolution: "typed-array-byte-offset@npm:1.0.2" dependencies: - available-typed-arrays: "npm:^1.0.7" - call-bind: "npm:^1.0.7" - for-each: "npm:^0.3.3" - gopd: "npm:^1.0.1" - has-proto: "npm:^1.0.3" - is-typed-array: "npm:^1.1.13" + available-typed-arrays: ^1.0.7 + call-bind: ^1.0.7 + for-each: ^0.3.3 + gopd: ^1.0.1 + has-proto: ^1.0.3 + is-typed-array: ^1.1.13 checksum: c8645c8794a621a0adcc142e0e2c57b1823bbfa4d590ad2c76b266aa3823895cf7afb9a893bf6685e18454ab1b0241e1a8d885a2d1340948efa4b56add4b5f67 languageName: node linkType: hard @@ -8076,12 +8148,12 @@ __metadata: version: 1.0.6 resolution: "typed-array-length@npm:1.0.6" dependencies: - call-bind: "npm:^1.0.7" - for-each: "npm:^0.3.3" - gopd: "npm:^1.0.1" - has-proto: "npm:^1.0.3" - is-typed-array: "npm:^1.1.13" - possible-typed-array-names: "npm:^1.0.0" + call-bind: ^1.0.7 + for-each: ^0.3.3 + gopd: ^1.0.1 + has-proto: ^1.0.3 + is-typed-array: ^1.1.13 + possible-typed-array-names: ^1.0.0 checksum: f0315e5b8f0168c29d390ff410ad13e4d511c78e6006df4a104576844812ee447fcc32daab1f3a76c9ef4f64eff808e134528b5b2439de335586b392e9750e5c languageName: node linkType: hard @@ -8110,10 +8182,10 @@ __metadata: version: 1.0.2 resolution: "unbox-primitive@npm:1.0.2" dependencies: - call-bind: "npm:^1.0.2" - has-bigints: "npm:^1.0.2" - has-symbols: "npm:^1.0.3" - which-boxed-primitive: "npm:^1.0.2" + call-bind: ^1.0.2 + has-bigints: ^1.0.2 + has-symbols: ^1.0.3 + which-boxed-primitive: ^1.0.2 checksum: b7a1cf5862b5e4b5deb091672ffa579aa274f648410009c81cca63fed3b62b610c4f3b773f912ce545bb4e31edc3138975b5bc777fc6e4817dca51affb6380e9 languageName: node linkType: hard @@ -8143,8 +8215,8 @@ __metadata: version: 2.0.0 resolution: "unicode-match-property-ecmascript@npm:2.0.0" dependencies: - unicode-canonical-property-names-ecmascript: "npm:^2.0.0" - unicode-property-aliases-ecmascript: "npm:^2.0.0" + unicode-canonical-property-names-ecmascript: ^2.0.0 + unicode-property-aliases-ecmascript: ^2.0.0 checksum: 1f34a7434a23df4885b5890ac36c5b2161a809887000be560f56ad4b11126d433c0c1c39baf1016bdabed4ec54829a6190ee37aa24919aa116dc1a5a8a62965a languageName: node linkType: hard @@ -8167,7 +8239,7 @@ __metadata: version: 3.0.0 resolution: "unique-filename@npm:3.0.0" dependencies: - unique-slug: "npm:^4.0.0" + unique-slug: ^4.0.0 checksum: 8e2f59b356cb2e54aab14ff98a51ac6c45781d15ceaab6d4f1c2228b780193dc70fae4463ce9e1df4479cb9d3304d7c2043a3fb905bdeca71cc7e8ce27e063df languageName: node linkType: hard @@ -8176,7 +8248,7 @@ __metadata: version: 4.0.0 resolution: "unique-slug@npm:4.0.0" dependencies: - imurmurhash: "npm:^0.1.4" + imurmurhash: ^0.1.4 checksum: 0884b58365af59f89739e6f71e3feacb5b1b41f2df2d842d0757933620e6de08eff347d27e9d499b43c40476cbaf7988638d3acb2ffbcb9d35fd035591adfd15 languageName: node linkType: hard @@ -8188,17 +8260,17 @@ __metadata: languageName: node linkType: hard -"update-browserslist-db@npm:^1.0.13": - version: 1.0.16 - resolution: "update-browserslist-db@npm:1.0.16" +"update-browserslist-db@npm:^1.1.0": + version: 1.1.0 + resolution: "update-browserslist-db@npm:1.1.0" dependencies: - escalade: "npm:^3.1.2" - picocolors: "npm:^1.0.1" + escalade: ^3.1.2 + picocolors: ^1.0.1 peerDependencies: browserslist: ">= 4.21.0" bin: update-browserslist-db: cli.js - checksum: 51b1f7189c9ea5925c80154b0a6fd3ec36106d07858d8f69826427d8edb4735d1801512c69eade38ba0814d7407d11f400d74440bbf3da0309f3d788017f35b2 + checksum: 7b74694d96f0c360f01b702e72353dc5a49df4fe6663d3ee4e5c628f061576cddf56af35a3a886238c01dd3d8f231b7a86a8ceaa31e7a9220ae31c1c1238e562 languageName: node linkType: hard @@ -8206,7 +8278,7 @@ __metadata: version: 4.4.1 resolution: "uri-js@npm:4.4.1" dependencies: - punycode: "npm:^2.1.0" + punycode: ^2.1.0 checksum: 7167432de6817fe8e9e0c9684f1d2de2bb688c94388f7569f7dbdb1587c9f4ca2a77962f134ec90be0cc4d004c939ff0d05acc9f34a0db39a3c797dada262633 languageName: node linkType: hard @@ -8215,8 +8287,8 @@ __metadata: version: 1.5.10 resolution: "url-parse@npm:1.5.10" dependencies: - querystringify: "npm:^2.1.1" - requires-port: "npm:^1.0.0" + querystringify: ^2.1.1 + requires-port: ^1.0.0 checksum: fbdba6b1d83336aca2216bbdc38ba658d9cfb8fc7f665eb8b17852de638ff7d1a162c198a8e4ed66001ddbf6c9888d41e4798912c62b4fd777a31657989f7bdf languageName: node linkType: hard @@ -8229,13 +8301,13 @@ __metadata: linkType: hard "v8-to-istanbul@npm:^9.0.1": - version: 9.2.0 - resolution: "v8-to-istanbul@npm:9.2.0" + version: 9.3.0 + resolution: "v8-to-istanbul@npm:9.3.0" dependencies: - "@jridgewell/trace-mapping": "npm:^0.3.12" - "@types/istanbul-lib-coverage": "npm:^2.0.1" - convert-source-map: "npm:^2.0.0" - checksum: 31ef98c6a31b1dab6be024cf914f235408cd4c0dc56a5c744a5eea1a9e019ba279e1b6f90d695b78c3186feed391ed492380ccf095009e2eb91f3d058f0b4491 + "@jridgewell/trace-mapping": ^0.3.12 + "@types/istanbul-lib-coverage": ^2.0.1 + convert-source-map: ^2.0.0 + checksum: ded42cd535d92b7fd09a71c4c67fb067487ef5551cc227bfbf2a1f159a842e4e4acddaef20b955789b8d3b455b9779d036853f4a27ce15007f6364a4d30317ae languageName: node linkType: hard @@ -8243,8 +8315,8 @@ __metadata: version: 3.0.4 resolution: "validate-npm-package-license@npm:3.0.4" dependencies: - spdx-correct: "npm:^3.0.0" - spdx-expression-parse: "npm:^3.0.0" + spdx-correct: ^3.0.0 + spdx-expression-parse: ^3.0.0 checksum: 35703ac889d419cf2aceef63daeadbe4e77227c39ab6287eeb6c1b36a746b364f50ba22e88591f5d017bc54685d8137bc2d328d0a896e4d3fd22093c0f32a9ad languageName: node linkType: hard @@ -8267,8 +8339,8 @@ __metadata: version: 1.0.0 resolution: "validate.io-integer-array@npm:1.0.0" dependencies: - validate.io-array: "npm:^1.0.3" - validate.io-integer: "npm:^1.0.4" + validate.io-array: ^1.0.3 + validate.io-integer: ^1.0.4 checksum: 5f6d7fab8df7d2bf546a05e830201768464605539c75a2c2417b632b4411a00df84b462f81eac75e1be95303e7e0ac92f244c137424739f4e15cd21c2eb52c7f languageName: node linkType: hard @@ -8277,7 +8349,7 @@ __metadata: version: 1.0.5 resolution: "validate.io-integer@npm:1.0.5" dependencies: - validate.io-number: "npm:^1.0.3" + validate.io-number: ^1.0.3 checksum: 88b3f8bb5a5277a95305d64abbfc437079220ce4f57a148cc6113e7ccec03dd86b10a69d413982602aa90a62b8d516148a78716f550dcd3aff863ac1c2a7a5e6 languageName: node linkType: hard @@ -8293,7 +8365,7 @@ __metadata: version: 1.0.8 resolution: "walker@npm:1.0.8" dependencies: - makeerror: "npm:1.0.12" + makeerror: 1.0.12 checksum: ad7a257ea1e662e57ef2e018f97b3c02a7240ad5093c392186ce0bcf1f1a60bbadd520d073b9beb921ed99f64f065efb63dfc8eec689a80e569f93c1c5d5e16c languageName: node linkType: hard @@ -8302,8 +8374,8 @@ __metadata: version: 2.4.1 resolution: "watchpack@npm:2.4.1" dependencies: - glob-to-regexp: "npm:^0.4.1" - graceful-fs: "npm:^4.1.2" + glob-to-regexp: ^0.4.1 + graceful-fs: ^4.1.2 checksum: 5b0179348655dcdf19cac7cb4ff923fdc024d630650c0bf6bec8899cf47c60e19d4f810a88dba692ed0e7f684cf0fcffea86efdbf6c35d81f031e328043b7fab languageName: node linkType: hard @@ -8326,19 +8398,19 @@ __metadata: version: 5.1.4 resolution: "webpack-cli@npm:5.1.4" dependencies: - "@discoveryjs/json-ext": "npm:^0.5.0" - "@webpack-cli/configtest": "npm:^2.1.1" - "@webpack-cli/info": "npm:^2.0.2" - "@webpack-cli/serve": "npm:^2.0.5" - colorette: "npm:^2.0.14" - commander: "npm:^10.0.1" - cross-spawn: "npm:^7.0.3" - envinfo: "npm:^7.7.3" - fastest-levenshtein: "npm:^1.0.12" - import-local: "npm:^3.0.2" - interpret: "npm:^3.1.1" - rechoir: "npm:^0.8.0" - webpack-merge: "npm:^5.7.3" + "@discoveryjs/json-ext": ^0.5.0 + "@webpack-cli/configtest": ^2.1.1 + "@webpack-cli/info": ^2.0.2 + "@webpack-cli/serve": ^2.0.5 + colorette: ^2.0.14 + commander: ^10.0.1 + cross-spawn: ^7.0.3 + envinfo: ^7.7.3 + fastest-levenshtein: ^1.0.12 + import-local: ^3.0.2 + interpret: ^3.1.1 + rechoir: ^0.8.0 + webpack-merge: ^5.7.3 peerDependencies: webpack: 5.x.x peerDependenciesMeta: @@ -8358,9 +8430,9 @@ __metadata: version: 5.10.0 resolution: "webpack-merge@npm:5.10.0" dependencies: - clone-deep: "npm:^4.0.1" - flat: "npm:^5.0.2" - wildcard: "npm:^2.0.0" + clone-deep: ^4.0.1 + flat: ^5.0.2 + wildcard: ^2.0.0 checksum: 1fe8bf5309add7298e1ac72fb3f2090e1dfa80c48c7e79fa48aa60b5961332c7d0d61efa8851acb805e6b91a4584537a347bc106e05e9aec87fa4f7088c62f2f languageName: node linkType: hard @@ -8369,8 +8441,8 @@ __metadata: version: 1.4.3 resolution: "webpack-sources@npm:1.4.3" dependencies: - source-list-map: "npm:^2.0.0" - source-map: "npm:~0.6.1" + source-list-map: ^2.0.0 + source-map: ~0.6.1 checksum: 37463dad8d08114930f4bc4882a9602941f07c9f0efa9b6bc78738cd936275b990a596d801ef450d022bb005b109b9f451dd087db2f3c9baf53e8e22cf388f79 languageName: node linkType: hard @@ -8383,39 +8455,39 @@ __metadata: linkType: hard "webpack@npm:^5.76.1, webpack@npm:^5.90.0": - version: 5.91.0 - resolution: "webpack@npm:5.91.0" - dependencies: - "@types/eslint-scope": "npm:^3.7.3" - "@types/estree": "npm:^1.0.5" - "@webassemblyjs/ast": "npm:^1.12.1" - "@webassemblyjs/wasm-edit": "npm:^1.12.1" - "@webassemblyjs/wasm-parser": "npm:^1.12.1" - acorn: "npm:^8.7.1" - acorn-import-assertions: "npm:^1.9.0" - browserslist: "npm:^4.21.10" - chrome-trace-event: "npm:^1.0.2" - enhanced-resolve: "npm:^5.16.0" - es-module-lexer: "npm:^1.2.1" - eslint-scope: "npm:5.1.1" - events: "npm:^3.2.0" - glob-to-regexp: "npm:^0.4.1" - graceful-fs: "npm:^4.2.11" - json-parse-even-better-errors: "npm:^2.3.1" - loader-runner: "npm:^4.2.0" - mime-types: "npm:^2.1.27" - neo-async: "npm:^2.6.2" - schema-utils: "npm:^3.2.0" - tapable: "npm:^2.1.1" - terser-webpack-plugin: "npm:^5.3.10" - watchpack: "npm:^2.4.1" - webpack-sources: "npm:^3.2.3" + version: 5.92.1 + resolution: "webpack@npm:5.92.1" + dependencies: + "@types/eslint-scope": ^3.7.3 + "@types/estree": ^1.0.5 + "@webassemblyjs/ast": ^1.12.1 + "@webassemblyjs/wasm-edit": ^1.12.1 + "@webassemblyjs/wasm-parser": ^1.12.1 + acorn: ^8.7.1 + acorn-import-attributes: ^1.9.5 + browserslist: ^4.21.10 + chrome-trace-event: ^1.0.2 + enhanced-resolve: ^5.17.0 + es-module-lexer: ^1.2.1 + eslint-scope: 5.1.1 + events: ^3.2.0 + glob-to-regexp: ^0.4.1 + graceful-fs: ^4.2.11 + json-parse-even-better-errors: ^2.3.1 + loader-runner: ^4.2.0 + mime-types: ^2.1.27 + neo-async: ^2.6.2 + schema-utils: ^3.2.0 + tapable: ^2.1.1 + terser-webpack-plugin: ^5.3.10 + watchpack: ^2.4.1 + webpack-sources: ^3.2.3 peerDependenciesMeta: webpack-cli: optional: true bin: webpack: bin/webpack.js - checksum: f1073715dbb1ed5c070affef293d800a867708bcbc5aba4d8baee87660e0cf53c55966a6f36fab078d1d6c9567cdcd0a9086bdfb607cab87ea68c6449791b9a3 + checksum: 11bec781260c4180883e98a4a15a08df297aca654ded45e70598f688881dd722f992d680addafe6f6342debede345cddcce2b781c50f5cde29d6c0bc33a82452 languageName: node linkType: hard @@ -8430,9 +8502,9 @@ __metadata: version: 8.7.0 resolution: "whatwg-url@npm:8.7.0" dependencies: - lodash: "npm:^4.7.0" - tr46: "npm:^2.1.0" - webidl-conversions: "npm:^6.1.0" + lodash: ^4.7.0 + tr46: ^2.1.0 + webidl-conversions: ^6.1.0 checksum: a87abcc6cefcece5311eb642858c8fdb234e51ec74196bfacf8def2edae1bfbffdf6acb251646ed6301f8cee44262642d8769c707256125a91387e33f405dd1e languageName: node linkType: hard @@ -8441,11 +8513,11 @@ __metadata: version: 1.0.2 resolution: "which-boxed-primitive@npm:1.0.2" dependencies: - is-bigint: "npm:^1.0.1" - is-boolean-object: "npm:^1.1.0" - is-number-object: "npm:^1.0.4" - is-string: "npm:^1.0.5" - is-symbol: "npm:^1.0.3" + is-bigint: ^1.0.1 + is-boolean-object: ^1.1.0 + is-number-object: ^1.0.4 + is-string: ^1.0.5 + is-symbol: ^1.0.3 checksum: 53ce774c7379071729533922adcca47220228405e1895f26673bbd71bdf7fb09bee38c1d6399395927c6289476b5ae0629863427fd151491b71c4b6cb04f3a5e languageName: node linkType: hard @@ -8454,11 +8526,11 @@ __metadata: version: 1.1.15 resolution: "which-typed-array@npm:1.1.15" dependencies: - available-typed-arrays: "npm:^1.0.7" - call-bind: "npm:^1.0.7" - for-each: "npm:^0.3.3" - gopd: "npm:^1.0.1" - has-tostringtag: "npm:^1.0.2" + available-typed-arrays: ^1.0.7 + call-bind: ^1.0.7 + for-each: ^0.3.3 + gopd: ^1.0.1 + has-tostringtag: ^1.0.2 checksum: 65227dcbfadf5677aacc43ec84356d17b5500cb8b8753059bb4397de5cd0c2de681d24e1a7bd575633f976a95f88233abfd6549c2105ef4ebd58af8aa1807c75 languageName: node linkType: hard @@ -8467,7 +8539,7 @@ __metadata: version: 1.3.1 resolution: "which@npm:1.3.1" dependencies: - isexe: "npm:^2.0.0" + isexe: ^2.0.0 bin: which: ./bin/which checksum: f2e185c6242244b8426c9df1510e86629192d93c1a986a7d2a591f2c24869e7ffd03d6dac07ca863b2e4c06f59a4cc9916c585b72ee9fa1aa609d0124df15e04 @@ -8478,7 +8550,7 @@ __metadata: version: 2.0.2 resolution: "which@npm:2.0.2" dependencies: - isexe: "npm:^2.0.0" + isexe: ^2.0.0 bin: node-which: ./bin/node-which checksum: 1a5c563d3c1b52d5f893c8b61afe11abc3bab4afac492e8da5bde69d550de701cf9806235f20a47b5c8fa8a1d6a9135841de2596535e998027a54589000e66d1 @@ -8489,7 +8561,7 @@ __metadata: version: 4.0.0 resolution: "which@npm:4.0.0" dependencies: - isexe: "npm:^3.1.1" + isexe: ^3.1.1 bin: node-which: bin/which.js checksum: f17e84c042592c21e23c8195108cff18c64050b9efb8459589116999ea9da6dd1509e6a1bac3aeebefd137be00fabbb61b5c2bc0aa0f8526f32b58ee2f545651 @@ -8514,8 +8586,8 @@ __metadata: version: 3.0.8 resolution: "worker-loader@npm:3.0.8" dependencies: - loader-utils: "npm:^2.0.0" - schema-utils: "npm:^3.0.0" + loader-utils: ^2.0.0 + schema-utils: ^3.0.0 peerDependencies: webpack: ^4.0.0 || ^5.0.0 checksum: 84f4a7eeb2a1d8b9704425837e017c91eedfae67ac89e0b866a2dcf283323c1dcabe0258196278b7d5fd0041392da895c8a0c59ddf3a94f1b2e003df68ddfec3 @@ -8526,9 +8598,9 @@ __metadata: version: 7.0.0 resolution: "wrap-ansi@npm:7.0.0" dependencies: - ansi-styles: "npm:^4.0.0" - string-width: "npm:^4.1.0" - strip-ansi: "npm:^6.0.0" + ansi-styles: ^4.0.0 + string-width: ^4.1.0 + strip-ansi: ^6.0.0 checksum: a790b846fd4505de962ba728a21aaeda189b8ee1c7568ca5e817d85930e06ef8d1689d49dbf0e881e8ef84436af3a88bc49115c2e2788d841ff1b8b5b51a608b languageName: node linkType: hard @@ -8537,9 +8609,9 @@ __metadata: version: 8.1.0 resolution: "wrap-ansi@npm:8.1.0" dependencies: - ansi-styles: "npm:^6.1.0" - string-width: "npm:^5.0.1" - strip-ansi: "npm:^7.0.1" + ansi-styles: ^6.1.0 + string-width: ^5.0.1 + strip-ansi: ^7.0.1 checksum: 371733296dc2d616900ce15a0049dca0ef67597d6394c57347ba334393599e800bab03c41d4d45221b6bc967b8c453ec3ae4749eff3894202d16800fdfe0e238 languageName: node linkType: hard @@ -8555,15 +8627,15 @@ __metadata: version: 4.0.2 resolution: "write-file-atomic@npm:4.0.2" dependencies: - imurmurhash: "npm:^0.1.4" - signal-exit: "npm:^3.0.7" + imurmurhash: ^0.1.4 + signal-exit: ^3.0.7 checksum: 5da60bd4eeeb935eec97ead3df6e28e5917a6bd317478e4a85a5285e8480b8ed96032bbcc6ecd07b236142a24f3ca871c924ec4a6575e623ec1b11bf8c1c253c languageName: node linkType: hard "ws@npm:^8.11.0": - version: 8.17.0 - resolution: "ws@npm:8.17.0" + version: 8.18.0 + resolution: "ws@npm:8.18.0" peerDependencies: bufferutil: ^4.0.1 utf-8-validate: ">=5.0.2" @@ -8572,14 +8644,14 @@ __metadata: optional: true utf-8-validate: optional: true - checksum: 147ef9eab0251364e1d2c55338ad0efb15e6913923ccbfdf20f7a8a6cb8f88432bcd7f4d8f66977135bfad35575644f9983201c1a361019594a4e53977bf6d4e + checksum: 91d4d35bc99ff6df483bdf029b9ea4bfd7af1f16fc91231a96777a63d263e1eabf486e13a2353970efc534f9faa43bdbf9ee76525af22f4752cbc5ebda333975 languageName: node linkType: hard "xml-utils@npm:^1.0.2": - version: 1.8.0 - resolution: "xml-utils@npm:1.8.0" - checksum: 3cd28540dbb76cb61125ab0fa959deded9d22eaf5c7d88824557c1008a14eab299d50fa917a8fdb1e5e8a70cd468161d3400c17e7ddd53c23bd6ba9a4c3ff305 + version: 1.10.1 + resolution: "xml-utils@npm:1.10.1" + checksum: 60a312734f93a98b9c6cc97a9f7d2a14b315ad1528e8c55f44c2d7d0af6eee61255d0aafd6589b41b72fe6e9f6e9727a51c4ab42cfa24f8616724c741cc151ef languageName: node linkType: hard @@ -8587,7 +8659,7 @@ __metadata: version: 1.0.6 resolution: "y-protocols@npm:1.0.6" dependencies: - lib0: "npm:^0.2.85" + lib0: ^0.2.85 peerDependencies: yjs: ^13.0.0 checksum: 4b57c8811befcf2e45c3d47830005f8a33e626c734f78a42fe8a4fa3caad2233ba85a7c8bceefbd52ffc40130d3f3faee664fd0d1c324ff1fa8817a056ccdc1c @@ -8626,23 +8698,23 @@ __metadata: version: 17.7.2 resolution: "yargs@npm:17.7.2" dependencies: - cliui: "npm:^8.0.1" - escalade: "npm:^3.1.1" - get-caller-file: "npm:^2.0.5" - require-directory: "npm:^2.1.1" - string-width: "npm:^4.2.3" - y18n: "npm:^5.0.5" - yargs-parser: "npm:^21.1.1" + cliui: ^8.0.1 + escalade: ^3.1.1 + get-caller-file: ^2.0.5 + require-directory: ^2.1.1 + string-width: ^4.2.3 + y18n: ^5.0.5 + yargs-parser: ^21.1.1 checksum: 73b572e863aa4a8cbef323dd911d79d193b772defd5a51aab0aca2d446655216f5002c42c5306033968193bdbf892a7a4c110b0d77954a7fdf563e653967b56a languageName: node linkType: hard "yjs@npm:^13.5.40": - version: 13.6.15 - resolution: "yjs@npm:13.6.15" + version: 13.6.18 + resolution: "yjs@npm:13.6.18" dependencies: - lib0: "npm:^0.2.86" - checksum: a0cdb323f9cd40de37c9cd0a9a4613e35d8365488ed6078ec632f0ec1853de4d16e46d435dc97e4029c0e70666e24d02c7240a71e84f7b1f15ff18670d715483 + lib0: ^0.2.86 + checksum: 5c9f8f31f5f9f30f17680a765b015e4274820fe10fb6bf6a7d39dee2ff0493a81ace02d11bff6f18c6799cade2bcfc9fc2d7b6ca8bc1eb167c4ac2f3789c0f01 languageName: node linkType: hard From 664f3896d37ffeaf84272ff02286cfee0b7af8cb Mon Sep 17 00:00:00 2001 From: Nour-Cheour10 Date: Thu, 11 Jul 2024 15:04:06 +0200 Subject: [PATCH 13/21] jlpm install --- examples/introduction.ipynb | 20 ++++++++++---------- ipyopenlayers/Map.py | 1 - 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/examples/introduction.ipynb b/examples/introduction.ipynb index 8517174..315392c 100644 --- a/examples/introduction.ipynb +++ b/examples/introduction.ipynb @@ -9,7 +9,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [ @@ -18,7 +18,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 2, "metadata": {}, "outputs": [], "source": [ @@ -27,13 +27,13 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 3, "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "689d1e18f0554e62b1db5287c8b63ef5", + "model_id": "807b9e94c0624a2381d44c0cb242874e", "version_major": 2, "version_minor": 0 }, @@ -41,7 +41,7 @@ "Map(center=[0.0, 0.0])" ] }, - "execution_count": 6, + "execution_count": 3, "metadata": {}, "output_type": "execute_result" } @@ -53,7 +53,7 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 4, "metadata": {}, "outputs": [], "source": [ @@ -63,7 +63,7 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 5, "metadata": {}, "outputs": [], "source": [ @@ -72,7 +72,7 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 6, "metadata": {}, "outputs": [], "source": [ @@ -90,7 +90,7 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 7, "metadata": {}, "outputs": [], "source": [ @@ -142,7 +142,7 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 10, "metadata": {}, "outputs": [], "source": [ diff --git a/ipyopenlayers/Map.py b/ipyopenlayers/Map.py index 050287f..8434063 100644 --- a/ipyopenlayers/Map.py +++ b/ipyopenlayers/Map.py @@ -14,7 +14,6 @@ def_loc = [0.0, 0.0] - class Layer(Widget): _model_name = Unicode('LayerModel').tag(sync=True) From 8c9877e3e5d925f28e33f4ab54f99cd94cd3361b Mon Sep 17 00:00:00 2001 From: Nour-Cheour10 Date: Fri, 12 Jul 2024 10:07:14 +0200 Subject: [PATCH 14/21] test jlpm --- examples/introduction.ipynb | 24 +++- src/arrowlayer.ts | 9 +- src/geojson.ts | 7 +- src/heatmap.ts | 2 +- src/widget.ts | 2 +- src/windlayer.ts | 52 +++---- yarn.lock | 262 ++++++++++++++++++------------------ 7 files changed, 191 insertions(+), 167 deletions(-) diff --git a/examples/introduction.ipynb b/examples/introduction.ipynb index 315392c..c309985 100644 --- a/examples/introduction.ipynb +++ b/examples/introduction.ipynb @@ -33,7 +33,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "807b9e94c0624a2381d44c0cb242874e", + "model_id": "7d186148c6d449b3a5e3299f201afdce", "version_major": 2, "version_minor": 0 }, @@ -61,6 +61,28 @@ "m.add_layer(layer)" ] }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "points_data_france = [\n", + " [48.8566, 2.3522, 0.8], # Paris\n", + " [45.7640, 4.8357, 0.6], # Lyon\n", + " [43.2965, 5.3698, 0.7], # Marseille\n", + " [43.6045, 1.4442, 0.5], # Toulouse\n", + " [43.7102, 7.2620, 0.4], # Nice\n", + " [47.2184, -1.5536, 0.3], # Nantes\n", + " [48.5734, 7.7521, 0.6], # Strasbourg\n", + " [43.6119, 3.8772, 0.5], # Montpellier\n", + " [44.8378, -0.5792, 0.4], # Bordeaux\n", + " [50.6292, 3.0573, 0.3], # Lille\n", + "]\n", + "heatmap_layer = HeatmapLayer(blur=20, radius=15, points=points_data_france)\n", + "m.add_layer(heatmap_layer)" + ] + }, { "cell_type": "code", "execution_count": 5, diff --git a/src/arrowlayer.ts b/src/arrowlayer.ts index 3eb5401..c8e50c1 100644 --- a/src/arrowlayer.ts +++ b/src/arrowlayer.ts @@ -37,7 +37,8 @@ export class ArrowLayerModel extends LayerModel { } export class ArrowLayerView extends LayerView { - obj: VectorLayer; + // @ts-expect-error type not assignable + obj: VectorLayer; render() { this.initVectorLayer(); @@ -137,7 +138,7 @@ export class ArrowLayerView extends LayerView { this.vectorLayer.setOpacity(this.model.get('opacity')); }); } - - vectorLayer: VectorLayer; + // @ts-expect-error type not assignable + vectorLayer: VectorLayer; vectorSource: VectorSource; -} \ No newline at end of file +} diff --git a/src/geojson.ts b/src/geojson.ts index 2cb544b..777b29b 100644 --- a/src/geojson.ts +++ b/src/geojson.ts @@ -10,7 +10,6 @@ import { Circle as CircleStyle, Fill, Stroke, Style } from 'ol/style.js'; import { Vector as VectorSource } from 'ol/source.js'; import { Vector as VectorLayer } from 'ol/layer.js'; import { LayerModel, LayerView } from './layer'; -import { Feature } from 'ol'; export class OpenLayersGeoJSONModel extends LayerModel { defaults() { @@ -40,7 +39,8 @@ export class OpenLayersGeoJSONModel extends LayerModel { } export class OpenLayersGeoJSONView extends LayerView { - obj: VectorLayer; + // @ts-expect-error test + obj: VectorLayer; render() { this.initVectorLayer(); this.create_obj(); @@ -110,6 +110,7 @@ export class OpenLayersGeoJSONView extends LayerView { this.listenTo(this.model, 'change:data', this.updateData); this.listenTo(this.model, 'change:visible', this.updateVisibility); } - vectorLayer: VectorLayer; + // @ts-expect-error test + vectorLayer: VectorLayer; vectorSource: VectorSource; } diff --git a/src/heatmap.ts b/src/heatmap.ts index 81717e2..729c1e3 100644 --- a/src/heatmap.ts +++ b/src/heatmap.ts @@ -1,7 +1,7 @@ import { ISerializers } from '@jupyter-widgets/base'; import { LayerModel, LayerView } from './layer'; import { MODULE_NAME, MODULE_VERSION } from './version'; -import Heatmap from 'ol/layer/Heatmap'; +import Heatmap from 'ol/layer/Heatmap.js'; import { Vector as VectorSource } from 'ol/source'; import Feature from 'ol/Feature'; import Point from 'ol/geom/Point'; diff --git a/src/widget.ts b/src/widget.ts index 3ce767d..ce51f61 100644 --- a/src/widget.ts +++ b/src/widget.ts @@ -285,4 +285,4 @@ export class MapView extends DOMWidgetView { layerViews: ViewList; overlayViews: ViewList; controlViews: ViewList; -} \ No newline at end of file +} diff --git a/src/windlayer.ts b/src/windlayer.ts index 871bb56..df35e2d 100644 --- a/src/windlayer.ts +++ b/src/windlayer.ts @@ -14,34 +14,34 @@ import { createStupidStyle, createBarbsStyle } from 'olwind/src/styling'; // @ts-expect-error use of a java script arrow import { ArrowLayer } from 'olwind/src/ArrowLayer'; // @ts-expect-error use of a java script uvbuffer -import UVBuffer from 'olwind/src/UVBuffer'; +import UVBuffer from 'olwind/src/UVBuffer'; export class WindLayerModel extends LayerModel { - defaults() { - return { - ...super.defaults(), - _model_name: WindLayerModel.model_name, - _model_module: WindLayerModel.model_module, - _model_module_version: WindLayerModel.model_module_version, - _view_name: WindLayerModel.view_name, - _view_module: WindLayerModel.view_module, - _view_module_version: WindLayerModel.view_module_version, - }; - } - - static serializers: ISerializers = { - ...DOMWidgetModel.serializers, - // Add any extra serializers here - }; - - static model_name = 'WindLayerModel'; - static model_module = MODULE_NAME; - static model_module_version = MODULE_VERSION; - static view_name = 'WindLayerView'; - static view_module = MODULE_NAME; - static view_module_version = MODULE_VERSION; - } - + defaults() { + return { + ...super.defaults(), + _model_name: WindLayerModel.model_name, + _model_module: WindLayerModel.model_module, + _model_module_version: WindLayerModel.model_module_version, + _view_name: WindLayerModel.view_name, + _view_module: WindLayerModel.view_module, + _view_module_version: WindLayerModel.view_module_version, + }; + } + + static serializers: ISerializers = { + ...DOMWidgetModel.serializers, + // Add any extra serializers here + }; + + static model_name = 'WindLayerModel'; + static model_module = MODULE_NAME; + static model_module_version = MODULE_VERSION; + static view_name = 'WindLayerView'; + static view_module = MODULE_NAME; + static view_module_version = MODULE_VERSION; +} + export class WindLayerView extends LayerView { obj: ArrowLayer; vectorSource: VectorSource; diff --git a/yarn.lock b/yarn.lock index 3d003da..ba59374 100644 --- a/yarn.lock +++ b/yarn.lock @@ -25,45 +25,45 @@ __metadata: languageName: node linkType: hard -"@babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/compat-data@npm:7.24.7" - checksum: 1fc276825dd434fe044877367dfac84171328e75a8483a6976aa28bf833b32367e90ee6df25bdd97c287d1aa8019757adcccac9153de70b1932c0d243a978ae9 +"@babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.24.8": + version: 7.24.8 + resolution: "@babel/compat-data@npm:7.24.8" + checksum: 75b2cf8220ad17ec50486a461c3fecb60cae6498b1beec3946dabf894129d03d34d9b545bbd3e81c8f9d36570a8b4d1965c694b16c02868926510c3374822c39 languageName: node linkType: hard "@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.23.7, @babel/core@npm:^7.23.9": - version: 7.24.7 - resolution: "@babel/core@npm:7.24.7" + version: 7.24.8 + resolution: "@babel/core@npm:7.24.8" dependencies: "@ampproject/remapping": ^2.2.0 "@babel/code-frame": ^7.24.7 - "@babel/generator": ^7.24.7 - "@babel/helper-compilation-targets": ^7.24.7 - "@babel/helper-module-transforms": ^7.24.7 - "@babel/helpers": ^7.24.7 - "@babel/parser": ^7.24.7 + "@babel/generator": ^7.24.8 + "@babel/helper-compilation-targets": ^7.24.8 + "@babel/helper-module-transforms": ^7.24.8 + "@babel/helpers": ^7.24.8 + "@babel/parser": ^7.24.8 "@babel/template": ^7.24.7 - "@babel/traverse": ^7.24.7 - "@babel/types": ^7.24.7 + "@babel/traverse": ^7.24.8 + "@babel/types": ^7.24.8 convert-source-map: ^2.0.0 debug: ^4.1.0 gensync: ^1.0.0-beta.2 json5: ^2.2.3 semver: ^6.3.1 - checksum: 017497e2a1b4683a885219eef7d2aee83c1c0cf353506b2e180b73540ec28841d8ef1ea1837fa69f8c561574b24ddd72f04764b27b87afedfe0a07299ccef24d + checksum: 1ccb168b7c170f9816b66a2e80f89684c6b56058b4abe21ae43e0aa0645a1bb2553790199f5a29d0d3dd778f7d5e9b33f5048edf97a39e218d305d99e35a9350 languageName: node linkType: hard -"@babel/generator@npm:^7.24.7, @babel/generator@npm:^7.7.2": - version: 7.24.7 - resolution: "@babel/generator@npm:7.24.7" +"@babel/generator@npm:^7.24.8, @babel/generator@npm:^7.7.2": + version: 7.24.8 + resolution: "@babel/generator@npm:7.24.8" dependencies: - "@babel/types": ^7.24.7 + "@babel/types": ^7.24.8 "@jridgewell/gen-mapping": ^0.3.5 "@jridgewell/trace-mapping": ^0.3.25 jsesc: ^2.5.1 - checksum: 0ff31a73b15429f1287e4d57b439bba4a266f8c673bb445fe313b82f6d110f586776997eb723a777cd7adad9d340edd162aea4973a90112c5d0cfcaf6686844b + checksum: 167ecc888ac4ba72eec18209d05e867ad730685ca5e5af2ad0682cfcf33f3b4819a2c087a414100e4f03c2d4e806054442f7b368753ab7d8462ad820190f09d1 languageName: node linkType: hard @@ -86,27 +86,27 @@ __metadata: languageName: node linkType: hard -"@babel/helper-compilation-targets@npm:^7.22.6, @babel/helper-compilation-targets@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/helper-compilation-targets@npm:7.24.7" +"@babel/helper-compilation-targets@npm:^7.22.6, @babel/helper-compilation-targets@npm:^7.24.7, @babel/helper-compilation-targets@npm:^7.24.8": + version: 7.24.8 + resolution: "@babel/helper-compilation-targets@npm:7.24.8" dependencies: - "@babel/compat-data": ^7.24.7 - "@babel/helper-validator-option": ^7.24.7 - browserslist: ^4.22.2 + "@babel/compat-data": ^7.24.8 + "@babel/helper-validator-option": ^7.24.8 + browserslist: ^4.23.1 lru-cache: ^5.1.1 semver: ^6.3.1 - checksum: dfc88bc35e223ade796c7267901728217c665adc5bc2e158f7b0ae850de14f1b7941bec4fe5950ae46236023cfbdeddd9c747c276acf9b39ca31f8dd97dc6cc6 + checksum: 40c9e87212fffccca387504b259a629615d7df10fc9080c113da6c51095d3e8b622a1409d9ed09faf2191628449ea28d582179c5148e2e993a3140234076b8da languageName: node linkType: hard "@babel/helper-create-class-features-plugin@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/helper-create-class-features-plugin@npm:7.24.7" + version: 7.24.8 + resolution: "@babel/helper-create-class-features-plugin@npm:7.24.8" dependencies: "@babel/helper-annotate-as-pure": ^7.24.7 "@babel/helper-environment-visitor": ^7.24.7 "@babel/helper-function-name": ^7.24.7 - "@babel/helper-member-expression-to-functions": ^7.24.7 + "@babel/helper-member-expression-to-functions": ^7.24.8 "@babel/helper-optimise-call-expression": ^7.24.7 "@babel/helper-replace-supers": ^7.24.7 "@babel/helper-skip-transparent-expression-wrappers": ^7.24.7 @@ -114,7 +114,7 @@ __metadata: semver: ^6.3.1 peerDependencies: "@babel/core": ^7.0.0 - checksum: 371a181a1717a9b0cebc97727c8ea9ca6afa34029476a684b6030f9d1ad94dcdafd7de175da10b63ae3ba79e4e82404db8ed968ebf264b768f097e5d64faab71 + checksum: b4707e2c4a2cb504d7656168d887bf653db6fbe8ece4502e28e5798f2ec624dc606f2d6bc4820d31b4dc1b80f7d83d98db83516dda321a76c075e5f531abed0b languageName: node linkType: hard @@ -174,13 +174,13 @@ __metadata: languageName: node linkType: hard -"@babel/helper-member-expression-to-functions@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/helper-member-expression-to-functions@npm:7.24.7" +"@babel/helper-member-expression-to-functions@npm:^7.24.7, @babel/helper-member-expression-to-functions@npm:^7.24.8": + version: 7.24.8 + resolution: "@babel/helper-member-expression-to-functions@npm:7.24.8" dependencies: - "@babel/traverse": ^7.24.7 - "@babel/types": ^7.24.7 - checksum: 9fecf412f85fa23b7cf55d19eb69de39f8240426a028b141c9df2aed8cfedf20b3ec3318d40312eb7a3dec9eea792828ce0d590e0ff62da3da532482f537192c + "@babel/traverse": ^7.24.8 + "@babel/types": ^7.24.8 + checksum: bf923d05d81b06857f4ca4fe9c528c9c447a58db5ea39595bb559eae2fce01a8266173db0fd6a2ec129d7bbbb9bb22f4e90008252f7c66b422c76630a878a4bc languageName: node linkType: hard @@ -194,9 +194,9 @@ __metadata: languageName: node linkType: hard -"@babel/helper-module-transforms@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/helper-module-transforms@npm:7.24.7" +"@babel/helper-module-transforms@npm:^7.24.7, @babel/helper-module-transforms@npm:^7.24.8": + version: 7.24.8 + resolution: "@babel/helper-module-transforms@npm:7.24.8" dependencies: "@babel/helper-environment-visitor": ^7.24.7 "@babel/helper-module-imports": ^7.24.7 @@ -205,7 +205,7 @@ __metadata: "@babel/helper-validator-identifier": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0 - checksum: ddff3b41c2667876b4e4e73d961168f48a5ec9560c95c8c2d109e6221f9ca36c6f90c6317eb7a47f2a3c99419c356e529a86b79174cad0d4f7a61960866b88ca + checksum: a7a515f4786e2c2e354721c5806c07a3ccb7ee73da7cd8c305d2d4c573d9170eadd9393e9eb993b9cd9b0ad28249d8290a525cd38e1fdfaf9f0fa04c1932c204 languageName: node linkType: hard @@ -218,10 +218,10 @@ __metadata: languageName: node linkType: hard -"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.24.7, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3": - version: 7.24.7 - resolution: "@babel/helper-plugin-utils@npm:7.24.7" - checksum: 81f2a15751d892e4a8fce25390f973363a5b27596167861d2d6eab0f61856eb2ba389b031a9f19f669c0bd4dd601185828d3cebafd25431be7a1696f2ce3ef68 +"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.24.7, @babel/helper-plugin-utils@npm:^7.24.8, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3": + version: 7.24.8 + resolution: "@babel/helper-plugin-utils@npm:7.24.8" + checksum: 73b1a83ba8bcee21dc94de2eb7323207391715e4369fd55844bb15cf13e3df6f3d13a40786d990e6370bf0f571d94fc31f70dec96c1d1002058258c35ca3767a languageName: node linkType: hard @@ -280,10 +280,10 @@ __metadata: languageName: node linkType: hard -"@babel/helper-string-parser@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/helper-string-parser@npm:7.24.7" - checksum: 09568193044a578743dd44bf7397940c27ea693f9812d24acb700890636b376847a611cdd0393a928544e79d7ad5b8b916bd8e6e772bc8a10c48a647a96e7b1a +"@babel/helper-string-parser@npm:^7.24.8": + version: 7.24.8 + resolution: "@babel/helper-string-parser@npm:7.24.8" + checksum: 39b03c5119216883878655b149148dc4d2e284791e969b19467a9411fccaa33f7a713add98f4db5ed519535f70ad273cdadfd2eb54d47ebbdeac5083351328ce languageName: node linkType: hard @@ -294,10 +294,10 @@ __metadata: languageName: node linkType: hard -"@babel/helper-validator-option@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/helper-validator-option@npm:7.24.7" - checksum: 9689166bf3f777dd424c026841c8cd651e41b21242dbfd4569a53086179a3e744c8eddd56e9d10b54142270141c91581b53af0d7c00c82d552d2540e2a919f7e +"@babel/helper-validator-option@npm:^7.24.8": + version: 7.24.8 + resolution: "@babel/helper-validator-option@npm:7.24.8" + checksum: a52442dfa74be6719c0608fee3225bd0493c4057459f3014681ea1a4643cd38b68ff477fe867c4b356da7330d085f247f0724d300582fa4ab9a02efaf34d107c languageName: node linkType: hard @@ -313,13 +313,13 @@ __metadata: languageName: node linkType: hard -"@babel/helpers@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/helpers@npm:7.24.7" +"@babel/helpers@npm:^7.24.8": + version: 7.24.8 + resolution: "@babel/helpers@npm:7.24.8" dependencies: "@babel/template": ^7.24.7 - "@babel/types": ^7.24.7 - checksum: 934da58098a3670ca7f9f42425b9c44d0ca4f8fad815c0f51d89fc7b64c5e0b4c7d5fec038599de691229ada737edeaf72fad3eba8e16dd5842e8ea447f76b66 + "@babel/types": ^7.24.8 + checksum: 2d7301b1b9c91e518c4766bae171230e243d98461c15eabbd44f8f9c83c297fad5c4a64ad80cfec9ca8e90412fc2b41ee86d7eb35dc8a7611c268bcf1317fe46 languageName: node linkType: hard @@ -335,12 +335,12 @@ __metadata: languageName: node linkType: hard -"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/parser@npm:7.24.7" +"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.24.7, @babel/parser@npm:^7.24.8": + version: 7.24.8 + resolution: "@babel/parser@npm:7.24.8" bin: parser: ./bin/babel-parser.js - checksum: fc9d2c4c8712f89672edc55c0dc5cf640dcec715b56480f111f85c2bc1d507e251596e4110d65796690a96ac37a4b60432af90b3e97bb47e69d4ef83872dbbd6 + checksum: 76f866333bfbd53800ac027419ae523bb0137fc63daa968232eb780e4390136bb6e497cb4a2cf6051a2c318aa335c2e6d2adc17079d60691ae7bde89b28c5688 languageName: node linkType: hard @@ -718,21 +718,21 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-classes@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/plugin-transform-classes@npm:7.24.7" +"@babel/plugin-transform-classes@npm:^7.24.8": + version: 7.24.8 + resolution: "@babel/plugin-transform-classes@npm:7.24.8" dependencies: "@babel/helper-annotate-as-pure": ^7.24.7 - "@babel/helper-compilation-targets": ^7.24.7 + "@babel/helper-compilation-targets": ^7.24.8 "@babel/helper-environment-visitor": ^7.24.7 "@babel/helper-function-name": ^7.24.7 - "@babel/helper-plugin-utils": ^7.24.7 + "@babel/helper-plugin-utils": ^7.24.8 "@babel/helper-replace-supers": ^7.24.7 "@babel/helper-split-export-declaration": ^7.24.7 globals: ^11.1.0 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: f01cb31143730d425681e9816020cbb519c7ddb3b6ca308dfaf2821eda5699a746637fc6bf19811e2fb42cfdf8b00a21b31c754da83771a5c280077925677354 + checksum: 9c0f547d67e255b37055461df9c1a578c29bf59c7055bd5b40b07b92e5448af3ca8d853d50056125b7dae9bfe3a4cf1559d61b9ccbc3d2578dd43f15386f12fe languageName: node linkType: hard @@ -748,14 +748,14 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-destructuring@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/plugin-transform-destructuring@npm:7.24.7" +"@babel/plugin-transform-destructuring@npm:^7.24.8": + version: 7.24.8 + resolution: "@babel/plugin-transform-destructuring@npm:7.24.8" dependencies: - "@babel/helper-plugin-utils": ^7.24.7 + "@babel/helper-plugin-utils": ^7.24.8 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: b9637b27faf9d24a8119bc5a1f98a2f47c69e6441bd8fc71163500be316253a72173308a93122bcf27d8d314ace43344c976f7291cf6376767f408350c8149d4 + checksum: 0b4bd3d608979a1e5bd97d9d42acd5ad405c7fffa61efac4c7afd8e86ea6c2d91ab2d94b6a98d63919571363fe76e0b03c4ff161f0f60241b895842596e4a999 languageName: node linkType: hard @@ -901,16 +901,16 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-modules-commonjs@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/plugin-transform-modules-commonjs@npm:7.24.7" +"@babel/plugin-transform-modules-commonjs@npm:^7.24.8": + version: 7.24.8 + resolution: "@babel/plugin-transform-modules-commonjs@npm:7.24.8" dependencies: - "@babel/helper-module-transforms": ^7.24.7 - "@babel/helper-plugin-utils": ^7.24.7 + "@babel/helper-module-transforms": ^7.24.8 + "@babel/helper-plugin-utils": ^7.24.8 "@babel/helper-simple-access": ^7.24.7 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: bfda2a0297197ed342e2a02e5f9847a489a3ae40a4a7d7f00f4aeb8544a85e9006e0c5271c8f61f39bc97975ef2717b5594cf9486694377a53433162909d64c1 + checksum: a4cf95b1639c33382064b44558f73ee5fac023f2a94d16e549d2bb55ceebd5cbc10fcddd505d08cd5bc97f5a64af9fd155512358b7dcf7b1a0082e8945cf21c5 languageName: node linkType: hard @@ -1025,16 +1025,16 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-optional-chaining@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/plugin-transform-optional-chaining@npm:7.24.7" +"@babel/plugin-transform-optional-chaining@npm:^7.24.7, @babel/plugin-transform-optional-chaining@npm:^7.24.8": + version: 7.24.8 + resolution: "@babel/plugin-transform-optional-chaining@npm:7.24.8" dependencies: - "@babel/helper-plugin-utils": ^7.24.7 + "@babel/helper-plugin-utils": ^7.24.8 "@babel/helper-skip-transparent-expression-wrappers": ^7.24.7 "@babel/plugin-syntax-optional-chaining": ^7.8.3 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 877e7ce9097d475132c7f4d1244de50bb2fd37993dc4580c735f18f8cbc49282f6e77752821bcad5ca9d3528412d2c8a7ee0aa7ca71bb680ff82648e7a5fed25 + checksum: 45e55e3a2fffb89002d3f89aef59c141610f23b60eee41e047380bffc40290b59f64fc649aa7ec5281f73d41b2065410d788acc6afaad2a9f44cad6e8af04442 languageName: node linkType: hard @@ -1154,14 +1154,14 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-typeof-symbol@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/plugin-transform-typeof-symbol@npm:7.24.7" +"@babel/plugin-transform-typeof-symbol@npm:^7.24.8": + version: 7.24.8 + resolution: "@babel/plugin-transform-typeof-symbol@npm:7.24.8" dependencies: - "@babel/helper-plugin-utils": ^7.24.7 + "@babel/helper-plugin-utils": ^7.24.8 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 6bd16b9347614d44187d8f8ee23ebd7be30dabf3632eed5ff0415f35a482e827de220527089eae9cdfb75e85aa72db0e141ebc2247c4b1187c1abcdacdc34895 + checksum: 8663a8e7347cedf181001d99c88cf794b6598c3d82f324098510fe8fb8bd22113995526a77aa35a3cc5d70ffd0617a59dd0d10311a9bf0e1a3a7d3e59b900c00 languageName: node linkType: hard @@ -1213,13 +1213,13 @@ __metadata: linkType: hard "@babel/preset-env@npm:^7.23.8": - version: 7.24.7 - resolution: "@babel/preset-env@npm:7.24.7" + version: 7.24.8 + resolution: "@babel/preset-env@npm:7.24.8" dependencies: - "@babel/compat-data": ^7.24.7 - "@babel/helper-compilation-targets": ^7.24.7 - "@babel/helper-plugin-utils": ^7.24.7 - "@babel/helper-validator-option": ^7.24.7 + "@babel/compat-data": ^7.24.8 + "@babel/helper-compilation-targets": ^7.24.8 + "@babel/helper-plugin-utils": ^7.24.8 + "@babel/helper-validator-option": ^7.24.8 "@babel/plugin-bugfix-firefox-class-in-computed-class-key": ^7.24.7 "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": ^7.24.7 "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": ^7.24.7 @@ -1250,9 +1250,9 @@ __metadata: "@babel/plugin-transform-block-scoping": ^7.24.7 "@babel/plugin-transform-class-properties": ^7.24.7 "@babel/plugin-transform-class-static-block": ^7.24.7 - "@babel/plugin-transform-classes": ^7.24.7 + "@babel/plugin-transform-classes": ^7.24.8 "@babel/plugin-transform-computed-properties": ^7.24.7 - "@babel/plugin-transform-destructuring": ^7.24.7 + "@babel/plugin-transform-destructuring": ^7.24.8 "@babel/plugin-transform-dotall-regex": ^7.24.7 "@babel/plugin-transform-duplicate-keys": ^7.24.7 "@babel/plugin-transform-dynamic-import": ^7.24.7 @@ -1265,7 +1265,7 @@ __metadata: "@babel/plugin-transform-logical-assignment-operators": ^7.24.7 "@babel/plugin-transform-member-expression-literals": ^7.24.7 "@babel/plugin-transform-modules-amd": ^7.24.7 - "@babel/plugin-transform-modules-commonjs": ^7.24.7 + "@babel/plugin-transform-modules-commonjs": ^7.24.8 "@babel/plugin-transform-modules-systemjs": ^7.24.7 "@babel/plugin-transform-modules-umd": ^7.24.7 "@babel/plugin-transform-named-capturing-groups-regex": ^7.24.7 @@ -1275,7 +1275,7 @@ __metadata: "@babel/plugin-transform-object-rest-spread": ^7.24.7 "@babel/plugin-transform-object-super": ^7.24.7 "@babel/plugin-transform-optional-catch-binding": ^7.24.7 - "@babel/plugin-transform-optional-chaining": ^7.24.7 + "@babel/plugin-transform-optional-chaining": ^7.24.8 "@babel/plugin-transform-parameters": ^7.24.7 "@babel/plugin-transform-private-methods": ^7.24.7 "@babel/plugin-transform-private-property-in-object": ^7.24.7 @@ -1286,7 +1286,7 @@ __metadata: "@babel/plugin-transform-spread": ^7.24.7 "@babel/plugin-transform-sticky-regex": ^7.24.7 "@babel/plugin-transform-template-literals": ^7.24.7 - "@babel/plugin-transform-typeof-symbol": ^7.24.7 + "@babel/plugin-transform-typeof-symbol": ^7.24.8 "@babel/plugin-transform-unicode-escapes": ^7.24.7 "@babel/plugin-transform-unicode-property-regex": ^7.24.7 "@babel/plugin-transform-unicode-regex": ^7.24.7 @@ -1295,11 +1295,11 @@ __metadata: babel-plugin-polyfill-corejs2: ^0.4.10 babel-plugin-polyfill-corejs3: ^0.10.4 babel-plugin-polyfill-regenerator: ^0.6.1 - core-js-compat: ^3.31.0 + core-js-compat: ^3.37.1 semver: ^6.3.1 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 1a82c883c7404359b19b7436d0aab05f8dd4e89e8b1f7de127cc65d0ff6a9b1c345211d9c038f5b6e8f93d26f091fa9c73812d82851026ab4ec93f5ed0f0d675 + checksum: efea0039dbb089c9cc0b792b9ac0eef949699584b4c622e2abea062b44b1a0fbcda6ad25e2263ae36a69586889b4a22439a1096aa8152b366e3fedd921ae66ac languageName: node linkType: hard @@ -1324,11 +1324,11 @@ __metadata: linkType: hard "@babel/runtime@npm:^7.8.4": - version: 7.24.7 - resolution: "@babel/runtime@npm:7.24.7" + version: 7.24.8 + resolution: "@babel/runtime@npm:7.24.8" dependencies: regenerator-runtime: ^0.14.0 - checksum: d17f29eed6f848ac15cdf4202a910b741facfb0419a9d79e5c7fa37df6362fc3227f1cc2e248cc6db5e53ddffb4caa6686c488e6e80ce3d29c36a4e74c8734ea + checksum: 6b1e4230580f67a807ad054720812bbefbb024cc2adc1159d050acbb764c4c81c7ac5f7a042c48f578987c5edc2453c71039268df059058e9501fa6023d764b0 languageName: node linkType: hard @@ -1343,32 +1343,32 @@ __metadata: languageName: node linkType: hard -"@babel/traverse@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/traverse@npm:7.24.7" +"@babel/traverse@npm:^7.24.7, @babel/traverse@npm:^7.24.8": + version: 7.24.8 + resolution: "@babel/traverse@npm:7.24.8" dependencies: "@babel/code-frame": ^7.24.7 - "@babel/generator": ^7.24.7 + "@babel/generator": ^7.24.8 "@babel/helper-environment-visitor": ^7.24.7 "@babel/helper-function-name": ^7.24.7 "@babel/helper-hoist-variables": ^7.24.7 "@babel/helper-split-export-declaration": ^7.24.7 - "@babel/parser": ^7.24.7 - "@babel/types": ^7.24.7 + "@babel/parser": ^7.24.8 + "@babel/types": ^7.24.8 debug: ^4.3.1 globals: ^11.1.0 - checksum: 7cd366afe9e7ee77e493779fdf24f67bf5595247289364f4689e29688572505eaeb886d7a8f20ebb9c29fc2de7d0895e4ff9e203e78e39ac67239724d45aa83b + checksum: ee7955476ce031613249f2b0ce9e74a3b7787c9d52e84534fcf39ad61aeb0b811a4cd83edc157608be4886f04c6ecf210861e211ba2a3db4fda729cc2048b5ed languageName: node linkType: hard -"@babel/types@npm:^7.0.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.24.7, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4, @babel/types@npm:^7.8.3": - version: 7.24.7 - resolution: "@babel/types@npm:7.24.7" +"@babel/types@npm:^7.0.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.24.7, @babel/types@npm:^7.24.8, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4, @babel/types@npm:^7.8.3": + version: 7.24.8 + resolution: "@babel/types@npm:7.24.8" dependencies: - "@babel/helper-string-parser": ^7.24.7 + "@babel/helper-string-parser": ^7.24.8 "@babel/helper-validator-identifier": ^7.24.7 to-fast-properties: ^2.0.0 - checksum: 3e4437fced97e02982972ce5bebd318c47d42c9be2152c0fd28c6f786cc74086cc0a8fb83b602b846e41df37f22c36254338eada1a47ef9d8a1ec92332ca3ea8 + checksum: e3f58ce9272c6ad519ce2ccf66efb1bfc84a62a344c0e252580d258638e0f0754eb060ec3aea3296c961973c188959f8fd3dc12f8ab6ed4ead1fb7723d693a33 languageName: node linkType: hard @@ -3183,7 +3183,7 @@ __metadata: languageName: node linkType: hard -"browserslist@npm:^4.21.10, browserslist@npm:^4.22.2, browserslist@npm:^4.23.0": +"browserslist@npm:^4.21.10, browserslist@npm:^4.23.0, browserslist@npm:^4.23.1": version: 4.23.2 resolution: "browserslist@npm:4.23.2" dependencies: @@ -3223,8 +3223,8 @@ __metadata: linkType: hard "cacache@npm:^18.0.0": - version: 18.0.3 - resolution: "cacache@npm:18.0.3" + version: 18.0.4 + resolution: "cacache@npm:18.0.4" dependencies: "@npmcli/fs": ^3.1.0 fs-minipass: ^3.0.0 @@ -3238,7 +3238,7 @@ __metadata: ssri: ^10.0.0 tar: ^6.1.11 unique-filename: ^3.0.0 - checksum: b717fd9b36e9c3279bfde4545c3a8f6d5a539b084ee26a9504d48f83694beb724057d26e090b97540f9cc62bea18b9f6cf671c50e18fb7dac60eda9db691714f + checksum: b7422c113b4ec750f33beeca0f426a0024c28e3172f332218f48f963e5b970647fa1ac05679fe5bb448832c51efea9fda4456b9a95c3a1af1105fe6c1833cde2 languageName: node linkType: hard @@ -3512,7 +3512,7 @@ __metadata: languageName: node linkType: hard -"core-js-compat@npm:^3.31.0, core-js-compat@npm:^3.36.1": +"core-js-compat@npm:^3.36.1, core-js-compat@npm:^3.37.1": version: 3.37.1 resolution: "core-js-compat@npm:3.37.1" dependencies: @@ -3831,9 +3831,9 @@ __metadata: linkType: hard "electron-to-chromium@npm:^1.4.820": - version: 1.4.825 - resolution: "electron-to-chromium@npm:1.4.825" - checksum: e01e4cdca1ad3c912e03d9c8615f0d3869bc0f2d2621d8e1ba83f78f5e7cd1cffe801914f7c9d631aa3911752d83598a7d4f1827904b380db9b9d034d69d1ab5 + version: 1.4.827 + resolution: "electron-to-chromium@npm:1.4.827" + checksum: ce0b6b28d6555b4a1f0341331def5011d0f5c56542f95d114d5cedce218fb4a4415254494322ca40663ce9e9e5590623b0c0c09170838675d602367251bde677 languageName: node linkType: hard @@ -6593,7 +6593,7 @@ __metadata: "olwind@github:gberaudo/olwind#master": version: 1.0.0 - resolution: "olwind@git+ssh://git@github.com/gberaudo/olwind.git#commit=57cff78c3fcf450a8bc13b152d17f46f514f04a7" + resolution: "olwind@https://github.com/gberaudo/olwind.git#commit=57cff78c3fcf450a8bc13b152d17f46f514f04a7" checksum: 0655379873dab09aa6b10c8c6f2b40c2c8aa40427470cfa9b4406703cf134eca53d6172abb1875243bf7575f06a387a2f7b00f3994fab792898dab72eac39716 languageName: node linkType: hard @@ -6919,12 +6919,12 @@ __metadata: linkType: hard "postcss-selector-parser@npm:^6.0.2, postcss-selector-parser@npm:^6.0.4": - version: 6.1.0 - resolution: "postcss-selector-parser@npm:6.1.0" + version: 6.1.1 + resolution: "postcss-selector-parser@npm:6.1.1" dependencies: cssesc: ^3.0.0 util-deprecate: ^1.0.2 - checksum: 449f614e6706421be307d8638183c61ba45bc3b460fe3815df8971dbb4d59c4087181940d879daee4a7a2daf3d86e915db1cce0c006dd68ca75b4087079273bd + checksum: 1c6a5adfc3c19c6e1e7d94f8addb89a5166fcca72c41f11713043d381ecbe82ce66360c5524e904e17b54f7fc9e6a077994ff31238a456bc7320c3e02e88d92e languageName: node linkType: hard @@ -8455,8 +8455,8 @@ __metadata: linkType: hard "webpack@npm:^5.76.1, webpack@npm:^5.90.0": - version: 5.92.1 - resolution: "webpack@npm:5.92.1" + version: 5.93.0 + resolution: "webpack@npm:5.93.0" dependencies: "@types/eslint-scope": ^3.7.3 "@types/estree": ^1.0.5 @@ -8487,7 +8487,7 @@ __metadata: optional: true bin: webpack: bin/webpack.js - checksum: 11bec781260c4180883e98a4a15a08df297aca654ded45e70598f688881dd722f992d680addafe6f6342debede345cddcce2b781c50f5cde29d6c0bc33a82452 + checksum: c93bd73d9e1ab49b07e139582187f1c3760ee2cf0163b6288fab2ae210e39e59240a26284e7e5d29bec851255ef4b43c51642c882fa5a94e16ce7cb906deeb47 languageName: node linkType: hard From 11b94bcd4197e4cfa4587a4f3d7a70d6a4e2796a Mon Sep 17 00:00:00 2001 From: Nour-Cheour10 Date: Fri, 12 Jul 2024 11:46:23 +0200 Subject: [PATCH 15/21] error heatmap to fix --- src/heatmap.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/heatmap.ts b/src/heatmap.ts index 729c1e3..9431f5b 100644 --- a/src/heatmap.ts +++ b/src/heatmap.ts @@ -35,6 +35,7 @@ export class HeatmapLayerModel extends LayerModel { static view_module_version = MODULE_VERSION; } + export class HeatmapLayerView extends LayerView { obj: Heatmap; From 31a387dbb3d37703f9c768ae26cd17701ea8a91d Mon Sep 17 00:00:00 2001 From: Nour-Cheour10 Date: Fri, 12 Jul 2024 11:52:00 +0200 Subject: [PATCH 16/21] fix linting --- src/heatmap.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/heatmap.ts b/src/heatmap.ts index 9431f5b..729c1e3 100644 --- a/src/heatmap.ts +++ b/src/heatmap.ts @@ -35,7 +35,6 @@ export class HeatmapLayerModel extends LayerModel { static view_module_version = MODULE_VERSION; } - export class HeatmapLayerView extends LayerView { obj: Heatmap; From ca0a19fe9e9459115d2b41d9fd8fcf15379b73cf Mon Sep 17 00:00:00 2001 From: Nour-Cheour10 Date: Fri, 12 Jul 2024 15:50:37 +0200 Subject: [PATCH 17/21] take off lock packages --- examples/introduction.ipynb | 65 +++++++++++++++++++++++++++++-------- ipyopenlayers/Map.py | 26 +++++++++++++-- src/heatmap.ts | 2 +- src/widget.ts | 9 +++++ 4 files changed, 85 insertions(+), 17 deletions(-) diff --git a/examples/introduction.ipynb b/examples/introduction.ipynb index c309985..d736418 100644 --- a/examples/introduction.ipynb +++ b/examples/introduction.ipynb @@ -9,7 +9,7 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 28, "metadata": {}, "outputs": [], "source": [ @@ -18,7 +18,7 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 30, "metadata": {}, "outputs": [], "source": [ @@ -27,21 +27,21 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 31, "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "7d186148c6d449b3a5e3299f201afdce", + "model_id": "51da7b3222a345729abd66f8a60679f9", "version_major": 2, "version_minor": 0 }, "text/plain": [ - "Map(center=[0.0, 0.0])" + "Map(center=[0.0, 0.0], coordinates=[0, 0])" ] }, - "execution_count": 3, + "execution_count": 31, "metadata": {}, "output_type": "execute_result" } @@ -53,7 +53,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 32, "metadata": {}, "outputs": [], "source": [ @@ -63,7 +63,44 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 34, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[0, 0]" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "m.coordinates" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Clicked coordinates: [15.609607948803532, 6.075295688614858]\n" + ] + } + ], + "source": [ + "m._handle_clicked_coordinates()" + ] + }, + { + "cell_type": "code", + "execution_count": 10, "metadata": {}, "outputs": [], "source": [ @@ -85,7 +122,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 22, "metadata": {}, "outputs": [], "source": [ @@ -94,7 +131,7 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 23, "metadata": {}, "outputs": [], "source": [ @@ -112,7 +149,7 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 24, "metadata": {}, "outputs": [], "source": [ @@ -121,7 +158,7 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 25, "metadata": {}, "outputs": [], "source": [ @@ -130,7 +167,7 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 26, "metadata": {}, "outputs": [], "source": [ @@ -164,7 +201,7 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 27, "metadata": {}, "outputs": [], "source": [ diff --git a/ipyopenlayers/Map.py b/ipyopenlayers/Map.py index 8434063..294a81a 100644 --- a/ipyopenlayers/Map.py +++ b/ipyopenlayers/Map.py @@ -7,7 +7,7 @@ """ TODO: Add module docstring """ - +import requests from ipywidgets import DOMWidget, Widget, widget_serialization from traitlets import Unicode, List, Instance, CFloat, Bool, Dict, Int, Tuple, Float from ._frontend import module_name, module_version @@ -139,6 +139,7 @@ class Map(DOMWidget): layers = List(Instance(Layer)).tag(sync=True, **widget_serialization) overlays=List(Instance(BaseOverlay)).tag(sync=True, **widget_serialization) controls=List(Instance(BaseControl)).tag(sync=True, **widget_serialization) + coordinates=List([0,0]).tag(sync=True, o=True) @@ -170,4 +171,25 @@ def remove_control(self, control): def clear_layers(self): - self.layers = [] \ No newline at end of file + self.layers = [] + + def _handle_clicked_coordinates(self): + coordinates = self.coordinates + print(f'Clicked coordinates: {coordinates}') + #country = self.get_country_from_coordinates(coordinates) + #print(f'Country: {country}') +''' + def get_country_from_coordinates(self, coordinates): + try: + lat, lon = coordinates + url = f'https://nominatim.openstreetmap.org/reverse?format=json&lat={lat}&lon={lon}' + response = requests.get(url) + if response.status_code == 200: + data = response.json() + address = data.get('address', {}) + return address.get('country', 'Unknown') + else: + return 'Unknown' + except Exception as e: + return 'Unknown' + ''' diff --git a/src/heatmap.ts b/src/heatmap.ts index 729c1e3..a6daecf 100644 --- a/src/heatmap.ts +++ b/src/heatmap.ts @@ -36,7 +36,7 @@ export class HeatmapLayerModel extends LayerModel { } export class HeatmapLayerView extends LayerView { - obj: Heatmap; + obj: Heatmap; render() { this.create_obj(); diff --git a/src/widget.ts b/src/widget.ts index ce51f61..39eb641 100644 --- a/src/widget.ts +++ b/src/widget.ts @@ -126,6 +126,7 @@ export class MapView extends DOMWidgetView { this.model.save_changes(); }); this.map.on('click', this.handleMapClick.bind(this)); + this.initializeMapClickListener(); this.map .getView() @@ -142,11 +143,19 @@ export class MapView extends DOMWidgetView { this.model.on('change:controls', this.controlChanged, this); this.model.on('change:zoom', this.zoomChanged, this); this.model.on('change:center', this.centerChanged, this); + + } + initializeMapClickListener() { + this.map.on('click', this.handleMapClick.bind(this)); } + handleMapClick(event: MapBrowserEvent) { const coordinates = event.coordinate; + this.model.set('coordinates', coordinates); console.log('Clicked coordinates:', coordinates); } + + layersChanged() { const layers = this.model.get('layers') as LayerModel[]; this.layerViews.update(layers); From e9351970d9c95f46efe3941265a392545cf13a24 Mon Sep 17 00:00:00 2001 From: Nour-Cheour10 Date: Fri, 12 Jul 2024 16:13:11 +0200 Subject: [PATCH 18/21] fix dependencies --- examples/introduction.ipynb | 14 +- readthedocs.yml | 2 +- src/heatmap.ts | 2 +- ui-tests/yarn.lock | 4280 ----------------------------------- 4 files changed, 9 insertions(+), 4289 deletions(-) diff --git a/examples/introduction.ipynb b/examples/introduction.ipynb index d736418..ad87180 100644 --- a/examples/introduction.ipynb +++ b/examples/introduction.ipynb @@ -9,7 +9,7 @@ }, { "cell_type": "code", - "execution_count": 28, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [ @@ -18,7 +18,7 @@ }, { "cell_type": "code", - "execution_count": 30, + "execution_count": 2, "metadata": {}, "outputs": [], "source": [ @@ -27,13 +27,13 @@ }, { "cell_type": "code", - "execution_count": 31, + "execution_count": 3, "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "51da7b3222a345729abd66f8a60679f9", + "model_id": "0dbc1a8a029a436a88ab1d624e24bc6e", "version_major": 2, "version_minor": 0 }, @@ -41,7 +41,7 @@ "Map(center=[0.0, 0.0], coordinates=[0, 0])" ] }, - "execution_count": 31, + "execution_count": 3, "metadata": {}, "output_type": "execute_result" } @@ -53,7 +53,7 @@ }, { "cell_type": "code", - "execution_count": 32, + "execution_count": 4, "metadata": {}, "outputs": [], "source": [ @@ -100,7 +100,7 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 5, "metadata": {}, "outputs": [], "source": [ diff --git a/readthedocs.yml b/readthedocs.yml index c972d9c..7f194f7 100644 --- a/readthedocs.yml +++ b/readthedocs.yml @@ -6,4 +6,4 @@ python: - examples - docs conda: - file: docs/environment.yml + file: docs/environment.yml \ No newline at end of file diff --git a/src/heatmap.ts b/src/heatmap.ts index a6daecf..729c1e3 100644 --- a/src/heatmap.ts +++ b/src/heatmap.ts @@ -36,7 +36,7 @@ export class HeatmapLayerModel extends LayerModel { } export class HeatmapLayerView extends LayerView { - obj: Heatmap; + obj: Heatmap; render() { this.create_obj(); diff --git a/ui-tests/yarn.lock b/ui-tests/yarn.lock index 6271108..e69de29 100644 --- a/ui-tests/yarn.lock +++ b/ui-tests/yarn.lock @@ -1,4280 +0,0 @@ -# This file is generated by running "yarn install" inside your project. -# Manual changes might be lost - proceed with caution! - -__metadata: - version: 6 - cacheKey: 8 - -"@codemirror/autocomplete@npm:^6.0.0, @codemirror/autocomplete@npm:^6.3.2, @codemirror/autocomplete@npm:^6.5.1, @codemirror/autocomplete@npm:^6.7.1": - version: 6.15.0 - resolution: "@codemirror/autocomplete@npm:6.15.0" - dependencies: - "@codemirror/language": ^6.0.0 - "@codemirror/state": ^6.0.0 - "@codemirror/view": ^6.17.0 - "@lezer/common": ^1.0.0 - peerDependencies: - "@codemirror/language": ^6.0.0 - "@codemirror/state": ^6.0.0 - "@codemirror/view": ^6.0.0 - "@lezer/common": ^1.0.0 - checksum: fce8d85e34a76d37a009c74d7d25c32a8cf12a9cbcff95211f96ff9afcb092e0d79e1f3b40425b4ea9b797579aaf64dd770ff2187ffabe2e5c9f44da23631363 - languageName: node - linkType: hard - -"@codemirror/commands@npm:^6.2.3": - version: 6.3.3 - resolution: "@codemirror/commands@npm:6.3.3" - dependencies: - "@codemirror/language": ^6.0.0 - "@codemirror/state": ^6.4.0 - "@codemirror/view": ^6.0.0 - "@lezer/common": ^1.1.0 - checksum: 7d23aecc973823969434b839aefa9a98bb47212d2ce0e6869ae903adbb5233aad22a760788fb7bb6eb45b00b01a4932fb93ad43bacdcbc0215e7500cf54b17bb - languageName: node - linkType: hard - -"@codemirror/lang-cpp@npm:^6.0.2": - version: 6.0.2 - resolution: "@codemirror/lang-cpp@npm:6.0.2" - dependencies: - "@codemirror/language": ^6.0.0 - "@lezer/cpp": ^1.0.0 - checksum: bb9eba482cca80037ce30c7b193cf45eff19ccbb773764fddf2071756468ecc25aa53c777c943635054f89095b0247b9b50c339e107e41e68d34d12a7295f9a9 - languageName: node - linkType: hard - -"@codemirror/lang-css@npm:^6.0.0, @codemirror/lang-css@npm:^6.1.1": - version: 6.2.1 - resolution: "@codemirror/lang-css@npm:6.2.1" - dependencies: - "@codemirror/autocomplete": ^6.0.0 - "@codemirror/language": ^6.0.0 - "@codemirror/state": ^6.0.0 - "@lezer/common": ^1.0.2 - "@lezer/css": ^1.0.0 - checksum: 5a8457ee8a4310030a969f2d3128429f549c4dc9b7907ee8888b42119c80b65af99093801432efdf659b8ec36a147d2a947bc1ecbbf69a759395214e3f4834a8 - languageName: node - linkType: hard - -"@codemirror/lang-html@npm:^6.0.0, @codemirror/lang-html@npm:^6.4.3": - version: 6.4.8 - resolution: "@codemirror/lang-html@npm:6.4.8" - dependencies: - "@codemirror/autocomplete": ^6.0.0 - "@codemirror/lang-css": ^6.0.0 - "@codemirror/lang-javascript": ^6.0.0 - "@codemirror/language": ^6.4.0 - "@codemirror/state": ^6.0.0 - "@codemirror/view": ^6.17.0 - "@lezer/common": ^1.0.0 - "@lezer/css": ^1.1.0 - "@lezer/html": ^1.3.0 - checksum: 9aec56c333cc06f9e4bb6d09806ae83e4a7f235a26b3244010e2dcea83a923cfcd7bec84904b8a59bc81256b0bb579a52bf5614962dad031d7577db1c49a216a - languageName: node - linkType: hard - -"@codemirror/lang-java@npm:^6.0.1": - version: 6.0.1 - resolution: "@codemirror/lang-java@npm:6.0.1" - dependencies: - "@codemirror/language": ^6.0.0 - "@lezer/java": ^1.0.0 - checksum: 4679104683cbffcd224ac04c7e5d144b787494697b26470b07017259035b7bb3fa62609d9a61bfbc566f1756d9f972f9f26d96a3c1362dd48881c1172f9a914d - languageName: node - linkType: hard - -"@codemirror/lang-javascript@npm:^6.0.0, @codemirror/lang-javascript@npm:^6.1.7": - version: 6.2.2 - resolution: "@codemirror/lang-javascript@npm:6.2.2" - dependencies: - "@codemirror/autocomplete": ^6.0.0 - "@codemirror/language": ^6.6.0 - "@codemirror/lint": ^6.0.0 - "@codemirror/state": ^6.0.0 - "@codemirror/view": ^6.17.0 - "@lezer/common": ^1.0.0 - "@lezer/javascript": ^1.0.0 - checksum: 66379942a8347dff2bd76d10ed7cf313bca83872f8336fdd3e14accfef23e7b690cd913c9d11a3854fba2b32299da07fc3275995327642c9ee43c2a8e538c19d - languageName: node - linkType: hard - -"@codemirror/lang-json@npm:^6.0.1": - version: 6.0.1 - resolution: "@codemirror/lang-json@npm:6.0.1" - dependencies: - "@codemirror/language": ^6.0.0 - "@lezer/json": ^1.0.0 - checksum: e9e87d50ff7b81bd56a6ab50740b1dd54e9a93f1be585e1d59d0642e2148842ea1528ac7b7221eb4ddc7fe84bbc28065144cc3ab86f6e06c6aeb2d4b4e62acf1 - languageName: node - linkType: hard - -"@codemirror/lang-markdown@npm:^6.1.1": - version: 6.2.4 - resolution: "@codemirror/lang-markdown@npm:6.2.4" - dependencies: - "@codemirror/autocomplete": ^6.7.1 - "@codemirror/lang-html": ^6.0.0 - "@codemirror/language": ^6.3.0 - "@codemirror/state": ^6.0.0 - "@codemirror/view": ^6.0.0 - "@lezer/common": ^1.2.1 - "@lezer/markdown": ^1.0.0 - checksum: fbdf1388a9fd08b4e6fc9950ac57fc59ef02bb0bd3e76654158ce1494b101356ded049b65dcf6da457e7e302cb178bf30852fd152680f3a8679be3c3884c0bc2 - languageName: node - linkType: hard - -"@codemirror/lang-php@npm:^6.0.1": - version: 6.0.1 - resolution: "@codemirror/lang-php@npm:6.0.1" - dependencies: - "@codemirror/lang-html": ^6.0.0 - "@codemirror/language": ^6.0.0 - "@codemirror/state": ^6.0.0 - "@lezer/common": ^1.0.0 - "@lezer/php": ^1.0.0 - checksum: c003a29a426486453fdfddbf7302982fa2aa7f059bf6f1ce4cbf08341b0162eee5e2f50e0d71c418dcd358491631780156d846fe352754d042576172c5d86721 - languageName: node - linkType: hard - -"@codemirror/lang-python@npm:^6.1.3": - version: 6.1.4 - resolution: "@codemirror/lang-python@npm:6.1.4" - dependencies: - "@codemirror/autocomplete": ^6.3.2 - "@codemirror/language": ^6.8.0 - "@codemirror/state": ^6.0.0 - "@lezer/common": ^1.2.1 - "@lezer/python": ^1.1.4 - checksum: 94d0126bc5da4878eb3cc4da5afae4dc2ca7bb1c4c1f483e786ec0fed439490bb6ed8cad0a6090e2638e6b3453a6f4225bfaa3b49aac5cfb3e466556d0aaae1e - languageName: node - linkType: hard - -"@codemirror/lang-rust@npm:^6.0.1": - version: 6.0.1 - resolution: "@codemirror/lang-rust@npm:6.0.1" - dependencies: - "@codemirror/language": ^6.0.0 - "@lezer/rust": ^1.0.0 - checksum: 8a439944cb22159b0b3465ca4fa4294c69843219d5d30e278ae6df8e48f30a7a9256129723c025ec9b5e694d31a3560fb004300b125ffcd81c22d13825845170 - languageName: node - linkType: hard - -"@codemirror/lang-sql@npm:^6.4.1": - version: 6.6.1 - resolution: "@codemirror/lang-sql@npm:6.6.1" - dependencies: - "@codemirror/autocomplete": ^6.0.0 - "@codemirror/language": ^6.0.0 - "@codemirror/state": ^6.0.0 - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - checksum: 65f59b2a4477ddff27aba9435f4c3f1d236cbc03aa7c9cf3b2f70b8bbcd748c8883aae249efd9077fdbd9b23a9c0f046a29c945ffb0d8e6ef4e9ee9f61d35a88 - languageName: node - linkType: hard - -"@codemirror/lang-wast@npm:^6.0.1": - version: 6.0.2 - resolution: "@codemirror/lang-wast@npm:6.0.2" - dependencies: - "@codemirror/language": ^6.0.0 - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - checksum: 72119d4a7d726c54167aa227c982ae9fa785c8ad97a158d8350ae95eecfbd8028a803eef939f7e6c5c6e626fcecda1dc37e9dffc6d5d6ec105f686aeda6b2c24 - languageName: node - linkType: hard - -"@codemirror/lang-xml@npm:^6.0.2": - version: 6.1.0 - resolution: "@codemirror/lang-xml@npm:6.1.0" - dependencies: - "@codemirror/autocomplete": ^6.0.0 - "@codemirror/language": ^6.4.0 - "@codemirror/state": ^6.0.0 - "@codemirror/view": ^6.0.0 - "@lezer/common": ^1.0.0 - "@lezer/xml": ^1.0.0 - checksum: 3a1b7af07b29ad7e53b77bf584245580b613bc92256059f175f2b1d7c28c4e39b75654fe169b9a8a330a60164b53ff5254bdb5b8ee8c6e6766427ee115c4e229 - languageName: node - linkType: hard - -"@codemirror/language@npm:^6.0.0, @codemirror/language@npm:^6.3.0, @codemirror/language@npm:^6.4.0, @codemirror/language@npm:^6.6.0, @codemirror/language@npm:^6.8.0": - version: 6.10.1 - resolution: "@codemirror/language@npm:6.10.1" - dependencies: - "@codemirror/state": ^6.0.0 - "@codemirror/view": ^6.23.0 - "@lezer/common": ^1.1.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - style-mod: ^4.0.0 - checksum: 453bbe122a84795752f29261412b69a8dcfdd7e4369eb7e112bffba36b9e527ad21adff1d3845e0dc44c9ab44eb0c6f823eb6ba790ddd00cc749847574eda779 - languageName: node - linkType: hard - -"@codemirror/legacy-modes@npm:^6.3.2": - version: 6.3.3 - resolution: "@codemirror/legacy-modes@npm:6.3.3" - dependencies: - "@codemirror/language": ^6.0.0 - checksum: 3cd32b0f011b0a193e0948e5901b625f38aa6d9a8b24344531d6e142eb6fbb3e6cb5969429102044f3d04fbe53c4deaebd9f659c05067a0b18d17766290c9e05 - languageName: node - linkType: hard - -"@codemirror/lint@npm:^6.0.0": - version: 6.5.0 - resolution: "@codemirror/lint@npm:6.5.0" - dependencies: - "@codemirror/state": ^6.0.0 - "@codemirror/view": ^6.0.0 - crelt: ^1.0.5 - checksum: b4f3899d0f73e5a2b5e9bc1df8e13ecb9324b94c7d384e7c8dde794109dee051461fc86658338f41652b44879b2ccc12cdd51a8ac0bb16a5b18aafa8e57a843c - languageName: node - linkType: hard - -"@codemirror/search@npm:^6.3.0": - version: 6.5.6 - resolution: "@codemirror/search@npm:6.5.6" - dependencies: - "@codemirror/state": ^6.0.0 - "@codemirror/view": ^6.0.0 - crelt: ^1.0.5 - checksum: 19dc88d09fc750563347001e83c6194bbb2a25c874bd919d2d81809e1f98d6330222ddbd284aa9758a09eeb41fd153ec7c2cf810b2ee51452c25963d7f5833d5 - languageName: node - linkType: hard - -"@codemirror/state@npm:^6.0.0, @codemirror/state@npm:^6.2.0, @codemirror/state@npm:^6.4.0": - version: 6.4.1 - resolution: "@codemirror/state@npm:6.4.1" - checksum: b81b55574091349eed4d32fc0eadb0c9688f1f7c98b681318f59138ee0f527cb4c4a97831b70547c0640f02f3127647838ae6730782de4a3dd2cc58836125d01 - languageName: node - linkType: hard - -"@codemirror/view@npm:^6.0.0, @codemirror/view@npm:^6.17.0, @codemirror/view@npm:^6.23.0, @codemirror/view@npm:^6.9.6": - version: 6.26.0 - resolution: "@codemirror/view@npm:6.26.0" - dependencies: - "@codemirror/state": ^6.4.0 - style-mod: ^4.1.0 - w3c-keyname: ^2.2.4 - checksum: 93c824334228d0ed81c0db8f58a627b69dad1300f4b64df6e19b487aa36cbd8bf624121092119fc09d49c290cd4e1c88680de62bd138a15f89570832f7addd80 - languageName: node - linkType: hard - -"@fortawesome/fontawesome-free@npm:^5.12.0": - version: 5.15.4 - resolution: "@fortawesome/fontawesome-free@npm:5.15.4" - checksum: 32281c3df4075290d9a96dfc22f72fadb3da7055d4117e48d34046b8c98032a55fa260ae351b0af5d6f6fb57a2f5d79a4abe52af456da35195f7cb7dda27b4a2 - languageName: node - linkType: hard - -"@isaacs/cliui@npm:^8.0.2": - version: 8.0.2 - resolution: "@isaacs/cliui@npm:8.0.2" - dependencies: - string-width: ^5.1.2 - string-width-cjs: "npm:string-width@^4.2.0" - strip-ansi: ^7.0.1 - strip-ansi-cjs: "npm:strip-ansi@^6.0.1" - wrap-ansi: ^8.1.0 - wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0" - checksum: 4a473b9b32a7d4d3cfb7a614226e555091ff0c5a29a1734c28c72a182c2f6699b26fc6b5c2131dfd841e86b185aea714c72201d7c98c2fba5f17709333a67aeb - languageName: node - linkType: hard - -"@jupyter/react-components@npm:^0.15.2": - version: 0.15.3 - resolution: "@jupyter/react-components@npm:0.15.3" - dependencies: - "@jupyter/web-components": ^0.15.3 - "@microsoft/fast-react-wrapper": ^0.3.22 - react: ">=17.0.0 <19.0.0" - checksum: 1a6b256314259c6465c4b6d958575710536b82234a7bf0fba3e889a07e1f19ff8ab321450be354359876f92c45dbcc9d21a840237ff4a619806d9de696f55496 - languageName: node - linkType: hard - -"@jupyter/web-components@npm:^0.15.2, @jupyter/web-components@npm:^0.15.3": - version: 0.15.3 - resolution: "@jupyter/web-components@npm:0.15.3" - dependencies: - "@microsoft/fast-colors": ^5.3.1 - "@microsoft/fast-element": ^1.12.0 - "@microsoft/fast-foundation": ^2.49.4 - "@microsoft/fast-web-utilities": ^5.4.1 - checksum: a0980af934157bfdbdb6cc169c0816c1b2e57602d524c56bdcef746a4c25dfeb8f505150d83207c8695ed89b5486cf53d35a3382584d25ef64db666e4e16e45b - languageName: node - linkType: hard - -"@jupyter/ydoc@npm:^1.1.1": - version: 1.1.1 - resolution: "@jupyter/ydoc@npm:1.1.1" - dependencies: - "@jupyterlab/nbformat": ^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0 - "@lumino/coreutils": ^1.11.0 || ^2.0.0 - "@lumino/disposable": ^1.10.0 || ^2.0.0 - "@lumino/signaling": ^1.10.0 || ^2.0.0 - y-protocols: ^1.0.5 - yjs: ^13.5.40 - checksum: a239b1dd57cfc9ba36c06ac5032a1b6388849ae01a1d0db0d45094f71fdadf4d473b4bf8becbef0cfcdc85cae505361fbec0822b02da5aa48e06b66f742dd7a0 - languageName: node - linkType: hard - -"@jupyterlab/application@npm:^4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/application@npm:4.1.5" - dependencies: - "@fortawesome/fontawesome-free": ^5.12.0 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/statedb": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 - "@lumino/algorithm": ^2.0.1 - "@lumino/application": ^2.3.0 - "@lumino/commands": ^2.2.0 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/polling": ^2.1.2 - "@lumino/properties": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.1 - checksum: 53feb2574cecc408aa4fec223dc9e2864f16593b3bdc6fb25904d350908883aef60e8a07ceb4da6224af6b9c810a8f311c6edc1b21ed7e2a9f83567e49f8a029 - languageName: node - linkType: hard - -"@jupyterlab/apputils@npm:^4.2.5": - version: 4.2.5 - resolution: "@jupyterlab/apputils@npm:4.2.5" - dependencies: - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statedb": ^4.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 - "@lumino/algorithm": ^2.0.1 - "@lumino/commands": ^2.2.0 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/domutils": ^2.0.1 - "@lumino/messaging": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/virtualdom": ^2.0.1 - "@lumino/widgets": ^2.3.1 - "@types/react": ^18.0.26 - react: ^18.2.0 - sanitize-html: ~2.7.3 - checksum: e5652a14d1d7972bcff84cec13fc2849a6520f6e7cb82275eff37869afdb7aa856af88dad5621dfb967ea99733539488164d3b5f54885248a87adf4c86c2ce65 - languageName: node - linkType: hard - -"@jupyterlab/attachments@npm:^4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/attachments@npm:4.1.5" - dependencies: - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@lumino/disposable": ^2.1.2 - "@lumino/signaling": ^2.1.2 - checksum: 82a7c475a0eb4b7622d2d1290e4eb3aef9f9f4d104625def1ae4404628bcdcd543355cbe70a2f7675bca6a08e2a02d7ceedec376dcd3d7115ccfcd3497562690 - languageName: node - linkType: hard - -"@jupyterlab/cells@npm:^4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/cells@npm:4.1.5" - dependencies: - "@codemirror/state": ^6.2.0 - "@codemirror/view": ^6.9.6 - "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/attachments": ^4.1.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/documentsearch": ^4.1.5 - "@jupyterlab/filebrowser": ^4.1.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/outputarea": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/toc": ^6.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 - "@lumino/algorithm": ^2.0.1 - "@lumino/coreutils": ^2.1.2 - "@lumino/domutils": ^2.0.1 - "@lumino/dragdrop": ^2.1.4 - "@lumino/messaging": ^2.0.1 - "@lumino/polling": ^2.1.2 - "@lumino/signaling": ^2.1.2 - "@lumino/virtualdom": ^2.0.1 - "@lumino/widgets": ^2.3.1 - react: ^18.2.0 - checksum: 49a9eec0323f4fcc96016303185dae72571a9b846c3ec0fc188e99b66ce7be6cd82efdd8056d041f9a4e55a1156b22004143a4c175b339fe83621e592e11c923 - languageName: node - linkType: hard - -"@jupyterlab/codeeditor@npm:^4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/codeeditor@npm:4.1.5" - dependencies: - "@codemirror/state": ^6.2.0 - "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/dragdrop": ^2.1.4 - "@lumino/messaging": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.1 - react: ^18.2.0 - checksum: f9f52122fa90058f716023489a66e2c7c2830580484a4f5474570da302452c4fa8680e55c18988cfe7e19f204839628bfada358d46027d9971ba91f56b79be78 - languageName: node - linkType: hard - -"@jupyterlab/codemirror@npm:^4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/codemirror@npm:4.1.5" - dependencies: - "@codemirror/autocomplete": ^6.5.1 - "@codemirror/commands": ^6.2.3 - "@codemirror/lang-cpp": ^6.0.2 - "@codemirror/lang-css": ^6.1.1 - "@codemirror/lang-html": ^6.4.3 - "@codemirror/lang-java": ^6.0.1 - "@codemirror/lang-javascript": ^6.1.7 - "@codemirror/lang-json": ^6.0.1 - "@codemirror/lang-markdown": ^6.1.1 - "@codemirror/lang-php": ^6.0.1 - "@codemirror/lang-python": ^6.1.3 - "@codemirror/lang-rust": ^6.0.1 - "@codemirror/lang-sql": ^6.4.1 - "@codemirror/lang-wast": ^6.0.1 - "@codemirror/lang-xml": ^6.0.2 - "@codemirror/language": ^6.6.0 - "@codemirror/legacy-modes": ^6.3.2 - "@codemirror/search": ^6.3.0 - "@codemirror/state": ^6.2.0 - "@codemirror/view": ^6.9.6 - "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/documentsearch": ^4.1.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@lezer/common": ^1.0.2 - "@lezer/generator": ^1.2.2 - "@lezer/highlight": ^1.1.4 - "@lezer/markdown": ^1.0.2 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/signaling": ^2.1.2 - yjs: ^13.5.40 - checksum: 8f6f30fbaebb2a88d50c5af5732058e2e605077871c079524d6466949973660a862cf75a205100019bd02d9888a9d7d85460269bfe646257dd50e4c61c4d0af3 - languageName: node - linkType: hard - -"@jupyterlab/console@npm:^4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/console@npm:4.1.5" - dependencies: - "@codemirror/state": ^6.2.0 - "@codemirror/view": ^6.9.6 - "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/cells": ^4.1.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/dragdrop": ^2.1.4 - "@lumino/messaging": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.1 - checksum: 01e90b8527583c5ed0ad4b17db3d8062b96cac8517319d6a8a4fecec31e612264c06f5434adf3313b6a16eec190c456116c2095fcb9e4234f30d8d042ee7d734 - languageName: node - linkType: hard - -"@jupyterlab/coreutils@npm:^6.1.5": - version: 6.1.5 - resolution: "@jupyterlab/coreutils@npm:6.1.5" - dependencies: - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/signaling": ^2.1.2 - minimist: ~1.2.0 - path-browserify: ^1.0.0 - url-parse: ~1.5.4 - checksum: b91c5a374f3c97d62e2442bb5f12cb79c6e440b5f6aa4d4ed6e492e8ca38836f7068106bb7029834a4e5de1947a9c44c342d23bedf9a4611aafca33629aed049 - languageName: node - linkType: hard - -"@jupyterlab/debugger@npm:^4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/debugger@npm:4.1.5" - dependencies: - "@codemirror/state": ^6.2.0 - "@codemirror/view": ^6.9.6 - "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/cells": ^4.1.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/console": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/fileeditor": ^4.1.5 - "@jupyterlab/notebook": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 - "@lumino/algorithm": ^2.0.1 - "@lumino/commands": ^2.2.0 - "@lumino/coreutils": ^2.1.2 - "@lumino/datagrid": ^2.3.0 - "@lumino/disposable": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/polling": ^2.1.2 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.1 - "@vscode/debugprotocol": ^1.51.0 - react: ^18.2.0 - checksum: 729fafacac228d2034a42fd216b50502ef34db828f5324731206e3558d8eed91a33ba4422da45a86d239e970a878686a188c8ae443e22cf47ed136a827f4d083 - languageName: node - linkType: hard - -"@jupyterlab/docmanager@npm:^4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/docmanager@npm:4.1.5" - dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 - "@lumino/algorithm": ^2.0.1 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/properties": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.1 - react: ^18.2.0 - checksum: d56e8ab83f523c5c90593147cd5bf12a704348bcdec243f8ecaa375f91f6f4c7646a76e9c10920f4f7d1cd19f09f79adc5eb0fbc5d1ac817b6031d3ad6ce600b - languageName: node - linkType: hard - -"@jupyterlab/docregistry@npm:^4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/docregistry@npm:4.1.5" - dependencies: - "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 - "@lumino/algorithm": ^2.0.1 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/properties": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.1 - react: ^18.2.0 - checksum: 9b017d775c31dfb4ac60908afd9d24210e9434bf6d090fb3d55fcdc0ec9c16b23b6a009fe54a376f89363882f7c25f5e5eadf3b096fa72ce1a148b14773675e4 - languageName: node - linkType: hard - -"@jupyterlab/documentsearch@npm:^4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/documentsearch@npm:4.1.5" - dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 - "@lumino/commands": ^2.2.0 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/polling": ^2.1.2 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.1 - react: ^18.2.0 - checksum: 496748a03177574a79305a42e29e996bf3633523cf9a6624ac117c97df2f5d4697cd45bf421033068539f94f568811307d0deccf2d1e24885d8f7d205b13a481 - languageName: node - linkType: hard - -"@jupyterlab/filebrowser@npm:^4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/filebrowser@npm:4.1.5" - dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docmanager": ^4.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/statedb": ^4.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 - "@lumino/algorithm": ^2.0.1 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/domutils": ^2.0.1 - "@lumino/dragdrop": ^2.1.4 - "@lumino/messaging": ^2.0.1 - "@lumino/polling": ^2.1.2 - "@lumino/signaling": ^2.1.2 - "@lumino/virtualdom": ^2.0.1 - "@lumino/widgets": ^2.3.1 - react: ^18.2.0 - checksum: 6ec08114012ab6ec8c3263fcff932c6949445c4d01f1f8aeefb9e6c496628025ca84683ae212aa03c5342b43e5df9082c812c6bf2b05fc0e2dc7aefeedf47cd2 - languageName: node - linkType: hard - -"@jupyterlab/fileeditor@npm:^4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/fileeditor@npm:4.1.5" - dependencies: - "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/documentsearch": ^4.1.5 - "@jupyterlab/lsp": ^4.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/toc": ^6.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 - "@lumino/commands": ^2.2.0 - "@lumino/coreutils": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/widgets": ^2.3.1 - react: ^18.2.0 - regexp-match-indices: ^1.0.2 - checksum: 88fe63f91ed7266afa0447f4d919b57cd8bae944d8661bc570562b570a8196cc23c5f92777058515cfeb0c12c5fb98b6906b5d8c91190dd8c961b921f268d1af - languageName: node - linkType: hard - -"@jupyterlab/galata@npm:^5.0.1": - version: 5.1.5 - resolution: "@jupyterlab/galata@npm:5.1.5" - dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/debugger": ^4.1.5 - "@jupyterlab/docmanager": ^4.1.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/notebook": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@lumino/coreutils": ^2.1.2 - "@playwright/test": ^1.32.2 - "@stdlib/stats": ~0.0.13 - fs-extra: ^10.1.0 - json5: ^2.2.3 - path: ~0.12.7 - systeminformation: ^5.8.6 - vega: ^5.20.0 - vega-lite: ^5.6.1 - vega-statistics: ^1.7.9 - checksum: d79637e7c53b1f9492e173ca1f033d4983c455a68ab693d43902161cee63d87f1cc9ad3bffd296999aa79f7b72f5d405f9ad91443a06785835c8a6a682772ae6 - languageName: node - linkType: hard - -"@jupyterlab/lsp@npm:^4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/lsp@npm:4.1.5" - dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/translation": ^4.1.5 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.1 - lodash.mergewith: ^4.6.1 - vscode-jsonrpc: ^6.0.0 - vscode-languageserver-protocol: ^3.17.0 - vscode-ws-jsonrpc: ~1.0.2 - checksum: 2f8a63214684c5dde76eed7c7b22dbf3a4b33babdf081d3f321b00caae83045b97d4df216a903ecc0ed22950e8c213b11885f7efc94d1ce0ac30a5ca5b9362f6 - languageName: node - linkType: hard - -"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@npm:^4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/nbformat@npm:4.1.5" - dependencies: - "@lumino/coreutils": ^2.1.2 - checksum: d417d7eade40d389fea8593358b6455158cf3e67fa40c0c4c05c865852520acc466102109723c9cb16eecf95952617d79f7fe6be9da6ca3f601749bdecdfda97 - languageName: node - linkType: hard - -"@jupyterlab/notebook@npm:^4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/notebook@npm:4.1.5" - dependencies: - "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/cells": ^4.1.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/documentsearch": ^4.1.5 - "@jupyterlab/lsp": ^4.1.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/toc": ^6.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 - "@lumino/algorithm": ^2.0.1 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/domutils": ^2.0.1 - "@lumino/dragdrop": ^2.1.4 - "@lumino/messaging": ^2.0.1 - "@lumino/properties": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/virtualdom": ^2.0.1 - "@lumino/widgets": ^2.3.1 - react: ^18.2.0 - checksum: 63ae9f1ec558b48cd81f4155d52a5c0ae9cf4bc76fe21273762e45077a7e5768b071b20aeee616cfdfee767f26667b2b896304c90ced3db96605e6e655a00903 - languageName: node - linkType: hard - -"@jupyterlab/observables@npm:^5.1.5": - version: 5.1.5 - resolution: "@jupyterlab/observables@npm:5.1.5" - dependencies: - "@lumino/algorithm": ^2.0.1 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/signaling": ^2.1.2 - checksum: 6d45de8a137c79566818ff56460366419b2603a06ab5d9cef4f0b311df3fd69c755b357ab3bd9c26ed56dec5a2247ef0cfc15cfa6e2e180aa46af7f96c6ab10c - languageName: node - linkType: hard - -"@jupyterlab/outputarea@npm:^4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/outputarea@npm:4.1.5" - dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/translation": ^4.1.5 - "@lumino/algorithm": ^2.0.1 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/properties": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.1 - checksum: 3cd51dd9ba4d613c42ec2917065c8b6f39b418e3a892b7662741f31aceaca816e55af80af97513e783a6b1e4d152497e03062b18ee80dc1bace0b4d2a7f4b439 - languageName: node - linkType: hard - -"@jupyterlab/rendermime-interfaces@npm:^3.9.5": - version: 3.9.5 - resolution: "@jupyterlab/rendermime-interfaces@npm:3.9.5" - dependencies: - "@lumino/coreutils": ^1.11.0 || ^2.1.2 - "@lumino/widgets": ^1.37.2 || ^2.3.1 - checksum: 790c8d4d58213c02470599b2c69e8ccff8d3496750fc88403aafe4e7bc26bb262d40c9ed3fdd27fdfd77268b94e7ea4e178f73897dd42d9ab18cbe5a359d925c - languageName: node - linkType: hard - -"@jupyterlab/rendermime@npm:^4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/rendermime@npm:4.1.5" - dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/translation": ^4.1.5 - "@lumino/coreutils": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.1 - lodash.escape: ^4.0.1 - checksum: b96a56aa5e32cfcb99ac757ccb41cad29f2be9ded204c6f7bdc5b1bf55cdb4e2129aef596c0ee21ac96384e809c3aea59cd2885c7e2c8d39d45bdf373041259b - languageName: node - linkType: hard - -"@jupyterlab/services@npm:^7.1.5": - version: 7.1.5 - resolution: "@jupyterlab/services@npm:7.1.5" - dependencies: - "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statedb": ^4.1.5 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/polling": ^2.1.2 - "@lumino/properties": ^2.0.1 - "@lumino/signaling": ^2.1.2 - ws: ^8.11.0 - checksum: f4b20ee62e5c3c7e0fa5942d3deb95329beb5a9ea6295403eefc0d5a723665379a09c58b21bc6a9fed7a69990570e5cfb66bc314e037a452b678fc4ec237dc55 - languageName: node - linkType: hard - -"@jupyterlab/settingregistry@npm:^4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/settingregistry@npm:4.1.5" - dependencies: - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/statedb": ^4.1.5 - "@lumino/commands": ^2.2.0 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/signaling": ^2.1.2 - "@rjsf/utils": ^5.13.4 - ajv: ^8.12.0 - json5: ^2.2.3 - peerDependencies: - react: ">=16" - checksum: 576d49cbbb4a18ba5f55230938b67c6dbc6819dfafb75ece2d9d030913e69768ddcb2616de4f7dbd3bcd8aa35e292aee90fe98b91e7dccdaae2610c64ec07f94 - languageName: node - linkType: hard - -"@jupyterlab/statedb@npm:^4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/statedb@npm:4.1.5" - dependencies: - "@lumino/commands": ^2.2.0 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/properties": ^2.0.1 - "@lumino/signaling": ^2.1.2 - checksum: e7f3ea9a5ebb04a602d93d1ddc9175a5b24a0f3814e99410ec3dba2dd3a86572ea61917d8a65e1b4b8c4ed25c8eaa814646a817a3b5d39b8a74a7b6cbb0071c1 - languageName: node - linkType: hard - -"@jupyterlab/statusbar@npm:^4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/statusbar@npm:4.1.5" - dependencies: - "@jupyterlab/ui-components": ^4.1.5 - "@lumino/algorithm": ^2.0.1 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.1 - react: ^18.2.0 - checksum: 402f3b80495c155f6c08447ca6ef348dbaae030cc6c20d11a7f4f365445f389dd71fefe9649296d59e8c698aa31347fb563b9a962e51b8712ed3bbe2cfd0ca37 - languageName: node - linkType: hard - -"@jupyterlab/toc@npm:^6.1.5": - version: 6.1.5 - resolution: "@jupyterlab/toc@npm:6.1.5" - dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.1 - react: ^18.2.0 - checksum: 8be983a63ecd0ee33da196e3b9f254704230b4bd3ee5a59064e1bc32599a4c798274d68b0155360b95f5cb2893a2558156039c49cef542ea9aef2354ee82aeab - languageName: node - linkType: hard - -"@jupyterlab/translation@npm:^4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/translation@npm:4.1.5" - dependencies: - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/statedb": ^4.1.5 - "@lumino/coreutils": ^2.1.2 - checksum: f12e2f13048cd1628a9a03003401009972a3439a038314e2c7cdf19ab4c29fa02a0091475bdd1ddb7cb26e2175c401a86ab8664f54b99bb47962cbd595e6f643 - languageName: node - linkType: hard - -"@jupyterlab/ui-components@npm:^4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/ui-components@npm:4.1.5" - dependencies: - "@jupyter/react-components": ^0.15.2 - "@jupyter/web-components": ^0.15.2 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/translation": ^4.1.5 - "@lumino/algorithm": ^2.0.1 - "@lumino/commands": ^2.2.0 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/polling": ^2.1.2 - "@lumino/properties": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/virtualdom": ^2.0.1 - "@lumino/widgets": ^2.3.1 - "@rjsf/core": ^5.13.4 - "@rjsf/utils": ^5.13.4 - react: ^18.2.0 - react-dom: ^18.2.0 - typestyle: ^2.0.4 - peerDependencies: - react: ^18.2.0 - checksum: a50315549c03718b5e953bdb695757b1d39db293131dd5c2c26587612e0ed30ad208d1d65c86ddc153a241df2e01d3a9a162f0e4b5f86d2a20816260c9aefe67 - languageName: node - linkType: hard - -"@lezer/common@npm:^1.0.0, @lezer/common@npm:^1.0.2, @lezer/common@npm:^1.1.0, @lezer/common@npm:^1.2.0, @lezer/common@npm:^1.2.1": - version: 1.2.1 - resolution: "@lezer/common@npm:1.2.1" - checksum: 0bd092e293a509ce334f4aaf9a4d4a25528f743cd9d7e7948c697e34ac703b805b288b62ad01563488fb206fc34ff05084f7fc5d864be775924b3d0d53ea5dd2 - languageName: node - linkType: hard - -"@lezer/cpp@npm:^1.0.0": - version: 1.1.2 - resolution: "@lezer/cpp@npm:1.1.2" - dependencies: - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - checksum: a319cd46fd32affc07c9432e9b2b9954becf7766be0361176c525d03474bb794cc051aad9932f48c9df33833eee1d6bfdccab12e571f2b137b4ca765c60c75de - languageName: node - linkType: hard - -"@lezer/css@npm:^1.0.0, @lezer/css@npm:^1.1.0": - version: 1.1.8 - resolution: "@lezer/css@npm:1.1.8" - dependencies: - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - checksum: 1f5968360dbac7ba27f0c2a194143769f7b01824715274dd8507dacf13cc790bb8c48ce95de355e9c58be93bb3e271bf98b9fc51213f79e4ce918e7c7ebbef04 - languageName: node - linkType: hard - -"@lezer/generator@npm:^1.2.2": - version: 1.7.0 - resolution: "@lezer/generator@npm:1.7.0" - dependencies: - "@lezer/common": ^1.1.0 - "@lezer/lr": ^1.3.0 - bin: - lezer-generator: src/lezer-generator.cjs - checksum: 69f4c6625446cb65adaa509480ec67502f27651707a8e45e99373e682d7f66f8842205669f174bcb138eade72c64ded0b54d6de6aa5af995ac1f1e805ef021fd - languageName: node - linkType: hard - -"@lezer/highlight@npm:^1.0.0, @lezer/highlight@npm:^1.1.3, @lezer/highlight@npm:^1.1.4": - version: 1.2.0 - resolution: "@lezer/highlight@npm:1.2.0" - dependencies: - "@lezer/common": ^1.0.0 - checksum: 5b9dfe741f95db13f6124cb9556a43011cb8041ecf490be98d44a86b04d926a66e912bcd3a766f6a3d79e064410f1a2f60ab240b50b645a12c56987bf4870086 - languageName: node - linkType: hard - -"@lezer/html@npm:^1.3.0": - version: 1.3.9 - resolution: "@lezer/html@npm:1.3.9" - dependencies: - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - checksum: 40d89b0af4379768ce7d3e7162988e9ec73b42984e333e877c7451f7e2c10131e39e4b50150bc334093cbd84a3b34f9fc1a6ac62cbba51f503a495ad243e880b - languageName: node - linkType: hard - -"@lezer/java@npm:^1.0.0": - version: 1.1.1 - resolution: "@lezer/java@npm:1.1.1" - dependencies: - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - checksum: 8a071aca6b5e1ed1d22bffed22bbd29f21b102b7337a7ea5c956eb259e6ff20eee2d6e85b7dadff69859cb6615d6b1a3f0ba109673e87ce5a1f6cabdeee626fd - languageName: node - linkType: hard - -"@lezer/javascript@npm:^1.0.0": - version: 1.4.13 - resolution: "@lezer/javascript@npm:1.4.13" - dependencies: - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.1.3 - "@lezer/lr": ^1.3.0 - checksum: a5e4607fec7671dff66d1f3bfee5a5da7395982f1867e17ac4d8f2d8f223451fb18516ef2699340b148af112176a07e1fcba9e63c5f8397c12895dd0509113d6 - languageName: node - linkType: hard - -"@lezer/json@npm:^1.0.0": - version: 1.0.2 - resolution: "@lezer/json@npm:1.0.2" - dependencies: - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - checksum: f899d13765d95599c9199fc3404cb57969031dc40ce07de30f4e648979153966581f0bee02e2f8f70463b0a5322206a97c2fe8d5d14f218888c72a6dcedf90ef - languageName: node - linkType: hard - -"@lezer/lr@npm:^1.0.0, @lezer/lr@npm:^1.1.0, @lezer/lr@npm:^1.3.0": - version: 1.4.0 - resolution: "@lezer/lr@npm:1.4.0" - dependencies: - "@lezer/common": ^1.0.0 - checksum: 4c8517017e9803415c6c5cb8230d8764107eafd7d0b847676cd1023abb863a4b268d0d01c7ce3cf1702c4749527c68f0a26b07c329cb7b68c36ed88362d7b193 - languageName: node - linkType: hard - -"@lezer/markdown@npm:^1.0.0, @lezer/markdown@npm:^1.0.2": - version: 1.2.0 - resolution: "@lezer/markdown@npm:1.2.0" - dependencies: - "@lezer/common": ^1.0.0 - "@lezer/highlight": ^1.0.0 - checksum: e6355272ad98c97b339dd42d8d9b78fa4f48fdcc5c9c408720936cacb7d2bcd47b0cedf8e0997ef93539c2b03a65326fc59372e54f0b24acd98630e06869a350 - languageName: node - linkType: hard - -"@lezer/php@npm:^1.0.0": - version: 1.0.2 - resolution: "@lezer/php@npm:1.0.2" - dependencies: - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.1.0 - checksum: c85ef18571d37826b687dd141a0fe110f5814adaf9d1a391e7e482020d7f81df189ca89ec0dd141c1433d48eff4c6e53648b46f008dea8ad2dc574f35f1d4d79 - languageName: node - linkType: hard - -"@lezer/python@npm:^1.1.4": - version: 1.1.13 - resolution: "@lezer/python@npm:1.1.13" - dependencies: - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - checksum: 43465f3289063e16caac9a109f61b8f810dd6a0e1043874df1b4d0f1cee5fba39cfd8c78fa2e507c0aa8f50cee8c48fe36df549ac1f959dae8d51c06e8ec0d0b - languageName: node - linkType: hard - -"@lezer/rust@npm:^1.0.0": - version: 1.0.2 - resolution: "@lezer/rust@npm:1.0.2" - dependencies: - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - checksum: fc5e97852b42beeb44a0ebe316dc64e3cc49ff481c22e3e67d6003fc4a5c257fcd94959cfcc76cd154fa172db9b3b4b28de5c09f10550d6e5f14869ddc274e5b - languageName: node - linkType: hard - -"@lezer/xml@npm:^1.0.0": - version: 1.0.5 - resolution: "@lezer/xml@npm:1.0.5" - dependencies: - "@lezer/common": ^1.2.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - checksum: a0a077b9e455b03593b93a7fdff2a4eab2cb7b230c8e1b878a8bebe80184632b9cc75ca018f1f9e2acb3a26e1386f4777385ab6e87aea70ccf479cde5ca268ee - languageName: node - linkType: hard - -"@lumino/algorithm@npm:^2.0.1": - version: 2.0.1 - resolution: "@lumino/algorithm@npm:2.0.1" - checksum: cbf7fcf6ee6b785ea502cdfddc53d61f9d353dcb9659343511d5cd4b4030be2ff2ca4c08daec42f84417ab0318a3d9972a17319fa5231693e109ab112dcf8000 - languageName: node - linkType: hard - -"@lumino/application@npm:^2.3.0": - version: 2.3.0 - resolution: "@lumino/application@npm:2.3.0" - dependencies: - "@lumino/commands": ^2.2.0 - "@lumino/coreutils": ^2.1.2 - "@lumino/widgets": ^2.3.1 - checksum: 9d1eb5bc972ed158bf219604a53bbac1262059bc5b0123d3e041974486b9cbb8288abeeec916f3b62f62d7c32e716cccf8b73e4832ae927e4f9dd4e4b0cd37ed - languageName: node - linkType: hard - -"@lumino/collections@npm:^2.0.1": - version: 2.0.1 - resolution: "@lumino/collections@npm:2.0.1" - dependencies: - "@lumino/algorithm": ^2.0.1 - checksum: 8a29b7973a388a33c5beda0819dcd2dc2aad51a8406dcfd4581b055a9f77a39dc5800f7a8b4ae3c0bb97ae7b56a7a869e2560ffb7a920a28e93b477ba05907d6 - languageName: node - linkType: hard - -"@lumino/commands@npm:^2.2.0": - version: 2.2.0 - resolution: "@lumino/commands@npm:2.2.0" - dependencies: - "@lumino/algorithm": ^2.0.1 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/domutils": ^2.0.1 - "@lumino/keyboard": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/virtualdom": ^2.0.1 - checksum: 093e9715491e5cef24bc80665d64841417b400f2fa595f9b60832a3b6340c405c94a6aa276911944a2c46d79a6229f3cc087b73f50852bba25ece805abd0fae9 - languageName: node - linkType: hard - -"@lumino/coreutils@npm:^1.11.0 || ^2.0.0, @lumino/coreutils@npm:^1.11.0 || ^2.1.2, @lumino/coreutils@npm:^2.1.2": - version: 2.1.2 - resolution: "@lumino/coreutils@npm:2.1.2" - checksum: 7865317ac0676b448d108eb57ab5d8b2a17c101995c0f7a7106662d9fe6c859570104525f83ee3cda12ae2e326803372206d6f4c1f415a5b59e4158a7b81066f - languageName: node - linkType: hard - -"@lumino/datagrid@npm:^2.3.0": - version: 2.3.0 - resolution: "@lumino/datagrid@npm:2.3.0" - dependencies: - "@lumino/algorithm": ^2.0.1 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/domutils": ^2.0.1 - "@lumino/dragdrop": ^2.1.4 - "@lumino/keyboard": ^2.0.1 - "@lumino/messaging": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.1 - checksum: 906ecd8d02a4ccbd6d09384e181f809ef4c165ca7bbc2388b43276f28d0a7d2949093f8b1782f8e11c988640ffaaeca9fe889722a51ee424cad3314674658695 - languageName: node - linkType: hard - -"@lumino/disposable@npm:^1.10.0 || ^2.0.0, @lumino/disposable@npm:^2.1.2": - version: 2.1.2 - resolution: "@lumino/disposable@npm:2.1.2" - dependencies: - "@lumino/signaling": ^2.1.2 - checksum: ac2fb2bf18d0b2939fda454f3db248a0ff6e8a77b401e586d1caa9293b3318f808b93a117c9c3ac27cd17aab545aea83b49108d099b9b2f5503ae2a012fbc6e2 - languageName: node - linkType: hard - -"@lumino/domutils@npm:^2.0.1": - version: 2.0.1 - resolution: "@lumino/domutils@npm:2.0.1" - checksum: 61fa0ab226869dfbb763fc426790cf5a43b7d6f4cea1364c6dd56d61c44bff05eea188d33ff847449608ef58ed343161bee15c19b96f35410e4ee35815dc611a - languageName: node - linkType: hard - -"@lumino/dragdrop@npm:^2.1.4": - version: 2.1.4 - resolution: "@lumino/dragdrop@npm:2.1.4" - dependencies: - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - checksum: 43d82484b13b38b612e7dfb424a840ed6a38d0db778af10655c4ba235c67b5b12db1683929b35a36ab2845f77466066dfd1ee25c1c273e8e175677eba9dc560d - languageName: node - linkType: hard - -"@lumino/keyboard@npm:^2.0.1": - version: 2.0.1 - resolution: "@lumino/keyboard@npm:2.0.1" - checksum: cf33f13427a418efd7cc91061233321e860d5404f3d86397781028309bef86c8ad2d88276ffe335c1db0fe619bd9d1e60641c81f881696957a58703ee4652c3e - languageName: node - linkType: hard - -"@lumino/messaging@npm:^2.0.1": - version: 2.0.1 - resolution: "@lumino/messaging@npm:2.0.1" - dependencies: - "@lumino/algorithm": ^2.0.1 - "@lumino/collections": ^2.0.1 - checksum: 964c4651c374b17452b4252b7d71500b32d2ecd87c192fc5bcf5d3bd1070661d78d07edcac8eca7d1d6fd50aa25992505485e1296d6dd995691b8e349b652045 - languageName: node - linkType: hard - -"@lumino/polling@npm:^2.1.2": - version: 2.1.2 - resolution: "@lumino/polling@npm:2.1.2" - dependencies: - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/signaling": ^2.1.2 - checksum: fa9b401e6dbeb8f31d7e3ba485e8ef1e0c92b3f2da086239c0ed49931026f5d3528709193c93e031e35ac624fb4bbbfcdcbaa0e25eb797f36e2952e5cd91e9e3 - languageName: node - linkType: hard - -"@lumino/properties@npm:^2.0.1": - version: 2.0.1 - resolution: "@lumino/properties@npm:2.0.1" - checksum: c50173a935148cc4148fdaea119df1d323ee004ae16ab666800388d27e9730345629662d85f25591683329b39f0cdae60ee8c94e8943b4d0ef7d7370a38128d6 - languageName: node - linkType: hard - -"@lumino/signaling@npm:^1.10.0 || ^2.0.0, @lumino/signaling@npm:^2.1.2": - version: 2.1.2 - resolution: "@lumino/signaling@npm:2.1.2" - dependencies: - "@lumino/algorithm": ^2.0.1 - "@lumino/coreutils": ^2.1.2 - checksum: ad7d7153db57980da899c43e412e6130316ef30b231a70250e7af49058db16cadb018c1417a2ea8083d83c48623cfe6b705fa82bf10216b1a8949aed9f4aca4e - languageName: node - linkType: hard - -"@lumino/virtualdom@npm:^2.0.1": - version: 2.0.1 - resolution: "@lumino/virtualdom@npm:2.0.1" - dependencies: - "@lumino/algorithm": ^2.0.1 - checksum: cf59b6f15b430e13e9e657b7a0619b9056cd9ea7b2a87f407391d071c501b77403c302b6a66dca510382045e75b2e3fe551630bb391f1c6b33678057d4bec164 - languageName: node - linkType: hard - -"@lumino/widgets@npm:^1.37.2 || ^2.3.1, @lumino/widgets@npm:^2.3.1": - version: 2.3.1 - resolution: "@lumino/widgets@npm:2.3.1" - dependencies: - "@lumino/algorithm": ^2.0.1 - "@lumino/commands": ^2.2.0 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/domutils": ^2.0.1 - "@lumino/dragdrop": ^2.1.4 - "@lumino/keyboard": ^2.0.1 - "@lumino/messaging": ^2.0.1 - "@lumino/properties": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/virtualdom": ^2.0.1 - checksum: ba7b8f8839c1cd2a41dbda13281094eb6981a270cccf4f25a0cf83686dcc526a2d8044a20204317630bb7dd4a04d65361408c7623a921549c781afca84b91c67 - languageName: node - linkType: hard - -"@microsoft/fast-colors@npm:^5.3.1": - version: 5.3.1 - resolution: "@microsoft/fast-colors@npm:5.3.1" - checksum: ff87f402faadb4b5aeee3d27762566c11807f927cd4012b8bbc7f073ca68de0e2197f95330ff5dfd7038f4b4f0e2f51b11feb64c5d570f5c598d37850a5daf60 - languageName: node - linkType: hard - -"@microsoft/fast-element@npm:^1.12.0": - version: 1.12.0 - resolution: "@microsoft/fast-element@npm:1.12.0" - checksum: bbff4e9c83106d1d74f3eeedc87bf84832429e78fee59c6a4ae8164ee4f42667503f586896bea72341b4d2c76c244a3cb0d4fd0d5d3732755f00357714dd609e - languageName: node - linkType: hard - -"@microsoft/fast-foundation@npm:^2.49.4, @microsoft/fast-foundation@npm:^2.49.5": - version: 2.49.5 - resolution: "@microsoft/fast-foundation@npm:2.49.5" - dependencies: - "@microsoft/fast-element": ^1.12.0 - "@microsoft/fast-web-utilities": ^5.4.1 - tabbable: ^5.2.0 - tslib: ^1.13.0 - checksum: 8a4729e8193ee93f780dc88fac26561b42f2636e3f0a8e89bb1dfe256f50a01a21ed1d8e4d31ce40678807dc833e25f31ba735cb5d3c247b65219aeb2560c82c - languageName: node - linkType: hard - -"@microsoft/fast-react-wrapper@npm:^0.3.22": - version: 0.3.23 - resolution: "@microsoft/fast-react-wrapper@npm:0.3.23" - dependencies: - "@microsoft/fast-element": ^1.12.0 - "@microsoft/fast-foundation": ^2.49.5 - peerDependencies: - react: ">=16.9.0" - checksum: 45885e1868916d2aa9059e99c341c97da434331d9340a57128d4218081df68b5e1107031c608db9a550d6d1c3b010d516ed4f8dc5a8a2470058da6750dcd204a - languageName: node - linkType: hard - -"@microsoft/fast-web-utilities@npm:^5.4.1": - version: 5.4.1 - resolution: "@microsoft/fast-web-utilities@npm:5.4.1" - dependencies: - exenv-es6: ^1.1.1 - checksum: 303e87847f962944f474e3716c3eb305668243916ca9e0719e26bb9a32346144bc958d915c103776b3e552cea0f0f6233f839fad66adfdf96a8436b947288ca7 - languageName: node - linkType: hard - -"@npmcli/agent@npm:^2.0.0": - version: 2.2.1 - resolution: "@npmcli/agent@npm:2.2.1" - dependencies: - agent-base: ^7.1.0 - http-proxy-agent: ^7.0.0 - https-proxy-agent: ^7.0.1 - lru-cache: ^10.0.1 - socks-proxy-agent: ^8.0.1 - checksum: c69aca42dbba393f517bc5777ee872d38dc98ea0e5e93c1f6d62b82b8fecdc177a57ea045f07dda1a770c592384b2dd92a5e79e21e2a7cf51c9159466a8f9c9b - languageName: node - linkType: hard - -"@npmcli/fs@npm:^3.1.0": - version: 3.1.0 - resolution: "@npmcli/fs@npm:3.1.0" - dependencies: - semver: ^7.3.5 - checksum: a50a6818de5fc557d0b0e6f50ec780a7a02ab8ad07e5ac8b16bf519e0ad60a144ac64f97d05c443c3367235d337182e1d012bbac0eb8dbae8dc7b40b193efd0e - languageName: node - linkType: hard - -"@pkgjs/parseargs@npm:^0.11.0": - version: 0.11.0 - resolution: "@pkgjs/parseargs@npm:0.11.0" - checksum: 6ad6a00fc4f2f2cfc6bff76fb1d88b8ee20bc0601e18ebb01b6d4be583733a860239a521a7fbca73b612e66705078809483549d2b18f370eb346c5155c8e4a0f - languageName: node - linkType: hard - -"@playwright/test@npm:^1.32.0, @playwright/test@npm:^1.32.2": - version: 1.42.1 - resolution: "@playwright/test@npm:1.42.1" - dependencies: - playwright: 1.42.1 - bin: - playwright: cli.js - checksum: a41505f02a4dac358e645452a190cac620b8d4eae79ab5d90ea1fb7ca06d86a9f5749b1a803dea789b662d1cbfd216380f722bed72093897e18b4238f4a07a4d - languageName: node - linkType: hard - -"@rjsf/core@npm:^5.13.4": - version: 5.17.1 - resolution: "@rjsf/core@npm:5.17.1" - dependencies: - lodash: ^4.17.21 - lodash-es: ^4.17.21 - markdown-to-jsx: ^7.4.1 - nanoid: ^3.3.7 - prop-types: ^15.8.1 - peerDependencies: - "@rjsf/utils": ^5.16.x - react: ^16.14.0 || >=17 - checksum: 2dead2886a4db152d259d3e85281c1fa5975eeac5f05c2840201ccc583ef1cf9d48c922cd404d515133e140eae7a8fca4aa63ccde0bcfe63d0b3fbe3cd621aed - languageName: node - linkType: hard - -"@rjsf/utils@npm:^5.13.4": - version: 5.17.1 - resolution: "@rjsf/utils@npm:5.17.1" - dependencies: - json-schema-merge-allof: ^0.8.1 - jsonpointer: ^5.0.1 - lodash: ^4.17.21 - lodash-es: ^4.17.21 - react-is: ^18.2.0 - peerDependencies: - react: ^16.14.0 || >=17 - checksum: 83010de66b06f1046b023a0b7d0bf30b5f47b152893c3b12f1f42faa89e7c7d18b2f04fe2e9035e5f63454317f09e6d5753fc014d43b933c8023b71fc50c3acf - languageName: node - linkType: hard - -"@stdlib/array@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/array@npm:0.0.12" - dependencies: - "@stdlib/assert": ^0.0.x - "@stdlib/blas": ^0.0.x - "@stdlib/complex": ^0.0.x - "@stdlib/constants": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/symbol": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 0d95690461f0c4560eabef0796d1170274415cd03de80333c6d39814d0484a6873ef4be04a64941ebf3a600747e84c3a4f23b21c7020e53842c07985331b39f1 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/assert@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/assert@npm:0.0.12" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/cli": ^0.0.x - "@stdlib/complex": ^0.0.x - "@stdlib/constants": ^0.0.x - "@stdlib/fs": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/ndarray": ^0.0.x - "@stdlib/number": ^0.0.x - "@stdlib/os": ^0.0.x - "@stdlib/process": ^0.0.x - "@stdlib/regexp": ^0.0.x - "@stdlib/streams": ^0.0.x - "@stdlib/string": ^0.0.x - "@stdlib/symbol": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: d4dcbeabbfb86ba56cdd972ff785f43e7d25018b2b1800cab8b0deb9e5c54c795d6ead3d142f4dd13c351f636deba4dc1857c85147d6b059fdc78eb2c9510b99 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/bigint@npm:^0.0.x": - version: 0.0.11 - resolution: "@stdlib/bigint@npm:0.0.11" - dependencies: - "@stdlib/utils": ^0.0.x - checksum: 7bf825d116e4b010e214209af239706ac1ef923eecb5c8b0af9229c9975450081355e441ecc7b4765d81a9e653141868e0492b8061d1e65724fa42fb8283aabd - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/blas@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/blas@npm:0.0.12" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/number": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 67ea00a968f7a9c710b37f718b7f756e2830e479a1a1ee44cbf6ec3cc27dd8863078928867707d9d1624007e81de89d040f2326d10f435e2cce913cab121975e - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/buffer@npm:^0.0.x": - version: 0.0.11 - resolution: "@stdlib/buffer@npm:0.0.11" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/process": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 93df02e3bf548e940ff9cef65121566e7bf93b554f0614d62336c9dbccfc07c9f1b1c4e9a7aebbe4819ef16a6d2a33a7010c2fdf908fface8298a3109c3c4ef0 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/cli@npm:^0.0.x": - version: 0.0.10 - resolution: "@stdlib/cli@npm:0.0.10" - dependencies: - "@stdlib/utils": ^0.0.x - minimist: ^1.2.0 - checksum: bbece8d3dbff2835518582a7726c6c4c22743dc408d2303d9e35a3b72151d5d0a8e78d61bc896663d4c3fb702e966abea7a1bd621ed943723a359f57053f121f - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/complex@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/complex@npm:0.0.12" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 8eda35027495417f1b0dd9bbbc2d4983f50ad3cf9e2276ffe0945ccdbe78f0fc66b9fc36ab71926d2a125c8fb7467c8970a222b230b42ff4bb8042c53314ca09 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/constants@npm:^0.0.x": - version: 0.0.11 - resolution: "@stdlib/constants@npm:0.0.11" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/number": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: fc19d055a4e71ae84b6c92e4a3a88371d50693da8f0a813df4063dc549374d19b9cf23f4fdae2fb7b2013e13929f713c3e1b9e4054767e741b75561ed43d15c3 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/fs@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/fs@npm:0.0.12" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/cli": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/process": ^0.0.x - "@stdlib/string": ^0.0.x - "@stdlib/utils": ^0.0.x - debug: ^2.6.9 - checksum: 33ac5ee4844d4599fe3a8a8402f1a3e2cafee31a5c9cf5b85df530a61a2b54ef17dc30a67be98dacdc2958219413edd0e4cdc3c28266f4bc30277ee024f6a49e - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/math@npm:^0.0.x": - version: 0.0.11 - resolution: "@stdlib/math@npm:0.0.11" - dependencies: - "@stdlib/assert": ^0.0.x - "@stdlib/constants": ^0.0.x - "@stdlib/ndarray": ^0.0.x - "@stdlib/number": ^0.0.x - "@stdlib/strided": ^0.0.x - "@stdlib/symbol": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - debug: ^2.6.9 - checksum: 6c4c9dda36fbce50553e1437354c5286aa782c42399534dbed8e696ddeb1b91ef6cff5fe5962f1c9e1eb2ef63c63d9bd58f7ca4b87d59018aaac20099c3fb79a - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/ndarray@npm:^0.0.x": - version: 0.0.13 - resolution: "@stdlib/ndarray@npm:0.0.13" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/bigint": ^0.0.x - "@stdlib/buffer": ^0.0.x - "@stdlib/complex": ^0.0.x - "@stdlib/constants": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/number": ^0.0.x - "@stdlib/string": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 842a94afce5fc74bf8a964b75a302ddb8713eadbc79616e6799f1310c8bce860ed9e9877adc4a39338d9136b8798947ee21cf03368d46408308a313c8075d49a - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/nlp@npm:^0.0.x": - version: 0.0.11 - resolution: "@stdlib/nlp@npm:0.0.11" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/random": ^0.0.x - "@stdlib/string": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 398fe2853fb95404bb6598e3e199ca3e0435b94447d50e14e2e30582cadfb91f43464f23d80a0e1da4d64567a4a108a7299d7440509f1ab26b02aea7bb16e9a8 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/number@npm:^0.0.x": - version: 0.0.10 - resolution: "@stdlib/number@npm:0.0.10" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/constants": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/os": ^0.0.x - "@stdlib/string": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 326190956c787cbf9321c332beedab5ba4b3fa97d52a82aa708a0349b4678c0df7a351424f00a606f4eaca4fb4ba4cc191580c99d7c64ee0f08d37baa3de14f2 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/os@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/os@npm:0.0.12" - dependencies: - "@stdlib/assert": ^0.0.x - "@stdlib/cli": ^0.0.x - "@stdlib/fs": ^0.0.x - "@stdlib/process": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 37156b0c723da70d7740d92d08fc592eae803461c1d546cff6ac044765d6e40722fdad342219277e747c39344b513096ac1d0aa1e733cf3079bd8a9a8578612a - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/process@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/process@npm:0.0.12" - dependencies: - "@stdlib/assert": ^0.0.x - "@stdlib/buffer": ^0.0.x - "@stdlib/cli": ^0.0.x - "@stdlib/fs": ^0.0.x - "@stdlib/streams": ^0.0.x - "@stdlib/string": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 6d5c3d943f9914d1ae39bd36ad7436f783cf64baa2bff67a808035c99258676ae3f704c328a78d62754951cf85fe99d8e9af5f4fa7d5f8cba347bca72767e357 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/random@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/random@npm:0.0.12" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/blas": ^0.0.x - "@stdlib/buffer": ^0.0.x - "@stdlib/cli": ^0.0.x - "@stdlib/constants": ^0.0.x - "@stdlib/fs": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/process": ^0.0.x - "@stdlib/stats": ^0.0.x - "@stdlib/streams": ^0.0.x - "@stdlib/symbol": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - debug: ^2.6.9 - readable-stream: ^2.1.4 - checksum: 67fcb5553274f8596ceae91153e96ae297bacfd55279821cb09f19f2844845aaf892802e4a5962965323dbfded0c7df8a89a6ce77d60d5c8a5899d483055a964 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/regexp@npm:^0.0.x": - version: 0.0.13 - resolution: "@stdlib/regexp@npm:0.0.13" - dependencies: - "@stdlib/assert": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: dd52adb096ff9a02d1c4818be2889ae01bc04a0cdbc0d52473685e0a7a4eaa13e1be603b964f140f7488d11450b644dc5f8c97029d77db1ed4a563554245ff1c - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/stats@npm:^0.0.x, @stdlib/stats@npm:~0.0.13": - version: 0.0.13 - resolution: "@stdlib/stats@npm:0.0.13" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/blas": ^0.0.x - "@stdlib/constants": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/ndarray": ^0.0.x - "@stdlib/random": ^0.0.x - "@stdlib/string": ^0.0.x - "@stdlib/symbol": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 5ca12b2e123543f56a59aca828e14afaf525ad4aa40467bee7037a9178e21e55d4ce8ba3de9387cc9a0efe3e0d035d6c58705b12f634f77a2b3f87d334dfb076 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/streams@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/streams@npm:0.0.12" - dependencies: - "@stdlib/assert": ^0.0.x - "@stdlib/buffer": ^0.0.x - "@stdlib/cli": ^0.0.x - "@stdlib/fs": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - debug: ^2.6.9 - readable-stream: ^2.1.4 - checksum: 231b4607d082ea81d9dadbeab08002ec398a29c7eb5d611d8a4183f9db6964428e2f8a9e0f8edd085ca12b5d58258576987a575e9d8f6fcabcb5a62c6b8efe88 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/strided@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/strided@npm:0.0.12" - dependencies: - "@stdlib/assert": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/ndarray": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 55ccc8543596894a2e3ad734b394700c69697b499a54b3bfbcf80cddd8d91509792c23931f5cebf7c89269676ac3f44352582e4f42e2c2c2898363cc3a76403d - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/string@npm:^0.0.x": - version: 0.0.14 - resolution: "@stdlib/string@npm:0.0.14" - dependencies: - "@stdlib/assert": ^0.0.x - "@stdlib/cli": ^0.0.x - "@stdlib/constants": ^0.0.x - "@stdlib/fs": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/nlp": ^0.0.x - "@stdlib/process": ^0.0.x - "@stdlib/regexp": ^0.0.x - "@stdlib/streams": ^0.0.x - "@stdlib/types": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: aaaaaddf381cccc67f15dbab76f43ce81cb71a4f5595bfa06ef915b6747458deca3c25c60ff3c002c0c36482687d92a150f364069559dfea915f63a040d5f603 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/symbol@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/symbol@npm:0.0.12" - dependencies: - "@stdlib/assert": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 2263341ce0296de2063d26038902bd63bf1d7b820307402fdf38c3b248bd026f17d96bccdc3189fd9fcc9c83a778eaab797dc11805bd66203b8ac9c6934f6588 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/time@npm:^0.0.x": - version: 0.0.14 - resolution: "@stdlib/time@npm:0.0.14" - dependencies: - "@stdlib/assert": ^0.0.x - "@stdlib/cli": ^0.0.x - "@stdlib/constants": ^0.0.x - "@stdlib/fs": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/string": ^0.0.x - "@stdlib/utils": ^0.0.x - checksum: 6e8a1b985a09936ab09c98d44bf1b2c79e08995c3c73401494bc1f6f708747ef136d769af4809a8af92a9ceb3d390db6c4c4e01608cd8d794a86c4b57e343eb1 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/types@npm:^0.0.x": - version: 0.0.14 - resolution: "@stdlib/types@npm:0.0.14" - checksum: 5680a655ddb3ad730f5c7eb2363a43e089f3e6a1b85b12546cab49f7749bb3baf293bd50fbfe55486f233f4227f1020b65eb461b754b94fb4a4bc2799647ec22 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@stdlib/utils@npm:^0.0.x": - version: 0.0.12 - resolution: "@stdlib/utils@npm:0.0.12" - dependencies: - "@stdlib/array": ^0.0.x - "@stdlib/assert": ^0.0.x - "@stdlib/blas": ^0.0.x - "@stdlib/buffer": ^0.0.x - "@stdlib/cli": ^0.0.x - "@stdlib/constants": ^0.0.x - "@stdlib/fs": ^0.0.x - "@stdlib/math": ^0.0.x - "@stdlib/os": ^0.0.x - "@stdlib/process": ^0.0.x - "@stdlib/random": ^0.0.x - "@stdlib/regexp": ^0.0.x - "@stdlib/streams": ^0.0.x - "@stdlib/string": ^0.0.x - "@stdlib/symbol": ^0.0.x - "@stdlib/time": ^0.0.x - "@stdlib/types": ^0.0.x - debug: ^2.6.9 - checksum: e0c3671c5f62c11bb3abd721f2958c41641b00a75d449bd25fbb62bcb8689cfe9c1f600c0688e7b6819ae870d6e5974d0fc7b2ec86081c45d9194b316b2a2ec2 - conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) - languageName: node - linkType: hard - -"@types/estree@npm:^1.0.0": - version: 1.0.5 - resolution: "@types/estree@npm:1.0.5" - checksum: dd8b5bed28e6213b7acd0fb665a84e693554d850b0df423ac8076cc3ad5823a6bc26b0251d080bdc545af83179ede51dd3f6fa78cad2c46ed1f29624ddf3e41a - languageName: node - linkType: hard - -"@types/geojson@npm:7946.0.4": - version: 7946.0.4 - resolution: "@types/geojson@npm:7946.0.4" - checksum: 541aea46540c918b9fe21ab73f497fe17b1eaf4d0d3baeb5f5614029b7f488c37f63843b644c024a8178dc2fb66d3d6623c25d9cf61d7b553aa19c8dc7f99047 - languageName: node - linkType: hard - -"@types/klaw-sync@npm:^6.0.1": - version: 6.0.5 - resolution: "@types/klaw-sync@npm:6.0.5" - dependencies: - "@types/node": "*" - checksum: 618a985280e4d8d451d8208d85b7df31bc5af8f17f2501cbbe57bedd1b6eb0d297ac6ac2ad2ea4dddf7f9b96f34aac1af7f635cf7c42f276e016c3854de8b9d2 - languageName: node - linkType: hard - -"@types/node@npm:*": - version: 20.11.30 - resolution: "@types/node@npm:20.11.30" - dependencies: - undici-types: ~5.26.4 - checksum: 7597767aa3e44b0f1bf62efa522dd17741135f283c11de6a20ead8bb7016fb4999cc30adcd8f2bb29ebb216906c92894346ccd187de170927dc1e212d2c07c81 - languageName: node - linkType: hard - -"@types/prop-types@npm:*": - version: 15.7.11 - resolution: "@types/prop-types@npm:15.7.11" - checksum: 7519ff11d06fbf6b275029fe03fff9ec377b4cb6e864cac34d87d7146c7f5a7560fd164bdc1d2dbe00b60c43713631251af1fd3d34d46c69cd354602bc0c7c54 - languageName: node - linkType: hard - -"@types/react@npm:^18.0.26": - version: 18.2.67 - resolution: "@types/react@npm:18.2.67" - dependencies: - "@types/prop-types": "*" - "@types/scheduler": "*" - csstype: ^3.0.2 - checksum: 9e48122b0e8d0ae20601f613aca32289eeb94d55c58ff03a7dc532d80ed289a1ba9715f14b773bd926ccdd63e503717f14264143ef531dc370063abe09dee0b2 - languageName: node - linkType: hard - -"@types/scheduler@npm:*": - version: 0.16.8 - resolution: "@types/scheduler@npm:0.16.8" - checksum: 6c091b096daa490093bf30dd7947cd28e5b2cd612ec93448432b33f724b162587fed9309a0acc104d97b69b1d49a0f3fc755a62282054d62975d53d7fd13472d - languageName: node - linkType: hard - -"@vscode/debugprotocol@npm:^1.51.0": - version: 1.65.0 - resolution: "@vscode/debugprotocol@npm:1.65.0" - checksum: 3ea504d01c67cd6a0c56fa3357f61f2dbaa426445443dba8b860292232e62e5bff7111e68e4cb844cedd564db1617e08847477a19527becd9f2608199eae4118 - languageName: node - linkType: hard - -"abbrev@npm:^2.0.0": - version: 2.0.0 - resolution: "abbrev@npm:2.0.0" - checksum: 0e994ad2aa6575f94670d8a2149afe94465de9cedaaaac364e7fb43a40c3691c980ff74899f682f4ca58fa96b4cbd7421a015d3a6defe43a442117d7821a2f36 - languageName: node - linkType: hard - -"agent-base@npm:^7.0.2, agent-base@npm:^7.1.0": - version: 7.1.0 - resolution: "agent-base@npm:7.1.0" - dependencies: - debug: ^4.3.4 - checksum: f7828f991470a0cc22cb579c86a18cbae83d8a3cbed39992ab34fc7217c4d126017f1c74d0ab66be87f71455318a8ea3e757d6a37881b8d0f2a2c6aa55e5418f - languageName: node - linkType: hard - -"aggregate-error@npm:^3.0.0": - version: 3.1.0 - resolution: "aggregate-error@npm:3.1.0" - dependencies: - clean-stack: ^2.0.0 - indent-string: ^4.0.0 - checksum: 1101a33f21baa27a2fa8e04b698271e64616b886795fd43c31068c07533c7b3facfcaf4e9e0cab3624bd88f729a592f1c901a1a229c9e490eafce411a8644b79 - languageName: node - linkType: hard - -"ajv@npm:^8.12.0": - version: 8.12.0 - resolution: "ajv@npm:8.12.0" - dependencies: - fast-deep-equal: ^3.1.1 - json-schema-traverse: ^1.0.0 - require-from-string: ^2.0.2 - uri-js: ^4.2.2 - checksum: 4dc13714e316e67537c8b31bc063f99a1d9d9a497eb4bbd55191ac0dcd5e4985bbb71570352ad6f1e76684fb6d790928f96ba3b2d4fd6e10024be9612fe3f001 - languageName: node - linkType: hard - -"ansi-regex@npm:^5.0.1": - version: 5.0.1 - resolution: "ansi-regex@npm:5.0.1" - checksum: 2aa4bb54caf2d622f1afdad09441695af2a83aa3fe8b8afa581d205e57ed4261c183c4d3877cee25794443fde5876417d859c108078ab788d6af7e4fe52eb66b - languageName: node - linkType: hard - -"ansi-regex@npm:^6.0.1": - version: 6.0.1 - resolution: "ansi-regex@npm:6.0.1" - checksum: 1ff8b7667cded1de4fa2c9ae283e979fc87036864317da86a2e546725f96406746411d0d85e87a2d12fa5abd715d90006de7fa4fa0477c92321ad3b4c7d4e169 - languageName: node - linkType: hard - -"ansi-styles@npm:^4.0.0": - version: 4.3.0 - resolution: "ansi-styles@npm:4.3.0" - dependencies: - color-convert: ^2.0.1 - checksum: 513b44c3b2105dd14cc42a19271e80f386466c4be574bccf60b627432f9198571ebf4ab1e4c3ba17347658f4ee1711c163d574248c0c1cdc2d5917a0ad582ec4 - languageName: node - linkType: hard - -"ansi-styles@npm:^6.1.0": - version: 6.2.1 - resolution: "ansi-styles@npm:6.2.1" - checksum: ef940f2f0ced1a6347398da88a91da7930c33ecac3c77b72c5905f8b8fe402c52e6fde304ff5347f616e27a742da3f1dc76de98f6866c69251ad0b07a66776d9 - languageName: node - linkType: hard - -"balanced-match@npm:^1.0.0": - version: 1.0.2 - resolution: "balanced-match@npm:1.0.2" - checksum: 9706c088a283058a8a99e0bf91b0a2f75497f185980d9ffa8b304de1d9e58ebda7c72c07ebf01dadedaac5b2907b2c6f566f660d62bd336c3468e960403b9d65 - languageName: node - linkType: hard - -"bqplot-ui-tests@workspace:.": - version: 0.0.0-use.local - resolution: "bqplot-ui-tests@workspace:." - dependencies: - "@jupyterlab/galata": ^5.0.1 - "@playwright/test": ^1.32.0 - "@types/klaw-sync": ^6.0.1 - klaw-sync: ^6.0.0 - languageName: unknown - linkType: soft - -"brace-expansion@npm:^2.0.1": - version: 2.0.1 - resolution: "brace-expansion@npm:2.0.1" - dependencies: - balanced-match: ^1.0.0 - checksum: a61e7cd2e8a8505e9f0036b3b6108ba5e926b4b55089eeb5550cd04a471fe216c96d4fe7e4c7f995c728c554ae20ddfc4244cad10aef255e72b62930afd233d1 - languageName: node - linkType: hard - -"cacache@npm:^18.0.0": - version: 18.0.2 - resolution: "cacache@npm:18.0.2" - dependencies: - "@npmcli/fs": ^3.1.0 - fs-minipass: ^3.0.0 - glob: ^10.2.2 - lru-cache: ^10.0.1 - minipass: ^7.0.3 - minipass-collect: ^2.0.1 - minipass-flush: ^1.0.5 - minipass-pipeline: ^1.2.4 - p-map: ^4.0.0 - ssri: ^10.0.0 - tar: ^6.1.11 - unique-filename: ^3.0.0 - checksum: 0250df80e1ad0c828c956744850c5f742c24244e9deb5b7dc81bca90f8c10e011e132ecc58b64497cc1cad9a98968676147fb6575f4f94722f7619757b17a11b - languageName: node - linkType: hard - -"chownr@npm:^2.0.0": - version: 2.0.0 - resolution: "chownr@npm:2.0.0" - checksum: c57cf9dd0791e2f18a5ee9c1a299ae6e801ff58fee96dc8bfd0dcb4738a6ce58dd252a3605b1c93c6418fe4f9d5093b28ffbf4d66648cb2a9c67eaef9679be2f - languageName: node - linkType: hard - -"clean-stack@npm:^2.0.0": - version: 2.2.0 - resolution: "clean-stack@npm:2.2.0" - checksum: 2ac8cd2b2f5ec986a3c743935ec85b07bc174d5421a5efc8017e1f146a1cf5f781ae962618f416352103b32c9cd7e203276e8c28241bbe946160cab16149fb68 - languageName: node - linkType: hard - -"cliui@npm:^8.0.1": - version: 8.0.1 - resolution: "cliui@npm:8.0.1" - dependencies: - string-width: ^4.2.0 - strip-ansi: ^6.0.1 - wrap-ansi: ^7.0.0 - checksum: 79648b3b0045f2e285b76fb2e24e207c6db44323581e421c3acbd0e86454cba1b37aea976ab50195a49e7384b871e6dfb2247ad7dec53c02454ac6497394cb56 - languageName: node - linkType: hard - -"color-convert@npm:^2.0.1": - version: 2.0.1 - resolution: "color-convert@npm:2.0.1" - dependencies: - color-name: ~1.1.4 - checksum: 79e6bdb9fd479a205c71d89574fccfb22bd9053bd98c6c4d870d65c132e5e904e6034978e55b43d69fcaa7433af2016ee203ce76eeba9cfa554b373e7f7db336 - languageName: node - linkType: hard - -"color-name@npm:~1.1.4": - version: 1.1.4 - resolution: "color-name@npm:1.1.4" - checksum: b0445859521eb4021cd0fb0cc1a75cecf67fceecae89b63f62b201cca8d345baf8b952c966862a9d9a2632987d4f6581f0ec8d957dfacece86f0a7919316f610 - languageName: node - linkType: hard - -"commander@npm:2": - version: 2.20.3 - resolution: "commander@npm:2.20.3" - checksum: ab8c07884e42c3a8dbc5dd9592c606176c7eb5c1ca5ff274bcf907039b2c41de3626f684ea75ccf4d361ba004bbaff1f577d5384c155f3871e456bdf27becf9e - languageName: node - linkType: hard - -"commander@npm:7": - version: 7.2.0 - resolution: "commander@npm:7.2.0" - checksum: 53501cbeee61d5157546c0bef0fedb6cdfc763a882136284bed9a07225f09a14b82d2a84e7637edfd1a679fb35ed9502fd58ef1d091e6287f60d790147f68ddc - languageName: node - linkType: hard - -"compute-gcd@npm:^1.2.1": - version: 1.2.1 - resolution: "compute-gcd@npm:1.2.1" - dependencies: - validate.io-array: ^1.0.3 - validate.io-function: ^1.0.2 - validate.io-integer-array: ^1.0.0 - checksum: 51cf33b75f7c8db5142fcb99a9d84a40260993fed8e02a7ab443834186c3ab99b3fd20b30ad9075a6a9d959d69df6da74dd3be8a59c78d9f2fe780ebda8242e1 - languageName: node - linkType: hard - -"compute-lcm@npm:^1.1.2": - version: 1.1.2 - resolution: "compute-lcm@npm:1.1.2" - dependencies: - compute-gcd: ^1.2.1 - validate.io-array: ^1.0.3 - validate.io-function: ^1.0.2 - validate.io-integer-array: ^1.0.0 - checksum: d499ab57dcb48e8d0fd233b99844a06d1cc56115602c920c586e998ebba60293731f5b6976e8a1e83ae6cbfe86716f62d9432e8d94913fed8bd8352f447dc917 - languageName: node - linkType: hard - -"core-util-is@npm:~1.0.0": - version: 1.0.3 - resolution: "core-util-is@npm:1.0.3" - checksum: 9de8597363a8e9b9952491ebe18167e3b36e7707569eed0ebf14f8bba773611376466ae34575bca8cfe3c767890c859c74056084738f09d4e4a6f902b2ad7d99 - languageName: node - linkType: hard - -"crelt@npm:^1.0.5": - version: 1.0.6 - resolution: "crelt@npm:1.0.6" - checksum: dad842093371ad702afbc0531bfca2b0a8dd920b23a42f26e66dabbed9aad9acd5b9030496359545ef3937c3aced0fd4ac39f7a2d280a23ddf9eb7fdcb94a69f - languageName: node - linkType: hard - -"cross-spawn@npm:^7.0.0": - version: 7.0.3 - resolution: "cross-spawn@npm:7.0.3" - dependencies: - path-key: ^3.1.0 - shebang-command: ^2.0.0 - which: ^2.0.1 - checksum: 671cc7c7288c3a8406f3c69a3ae2fc85555c04169e9d611def9a675635472614f1c0ed0ef80955d5b6d4e724f6ced67f0ad1bb006c2ea643488fcfef994d7f52 - languageName: node - linkType: hard - -"csstype@npm:3.0.10": - version: 3.0.10 - resolution: "csstype@npm:3.0.10" - checksum: 20a8fa324f2b33ddf94aa7507d1b6ab3daa6f3cc308888dc50126585d7952f2471de69b2dbe0635d1fdc31223fef8e070842691877e725caf456e2378685a631 - languageName: node - linkType: hard - -"csstype@npm:^3.0.2": - version: 3.1.3 - resolution: "csstype@npm:3.1.3" - checksum: 8db785cc92d259102725b3c694ec0c823f5619a84741b5c7991b8ad135dfaa66093038a1cc63e03361a6cd28d122be48f2106ae72334e067dd619a51f49eddf7 - languageName: node - linkType: hard - -"d3-array@npm:1 - 3, d3-array@npm:2 - 3, d3-array@npm:2.10.0 - 3, d3-array@npm:2.5.0 - 3, d3-array@npm:3.2.4, d3-array@npm:^3.2.2": - version: 3.2.4 - resolution: "d3-array@npm:3.2.4" - dependencies: - internmap: 1 - 2 - checksum: a5976a6d6205f69208478bb44920dd7ce3e788c9dceb86b304dbe401a4bfb42ecc8b04c20facde486e9adcb488b5d1800d49393a3f81a23902b68158e12cddd0 - languageName: node - linkType: hard - -"d3-color@npm:1 - 3, d3-color@npm:^3.1.0": - version: 3.1.0 - resolution: "d3-color@npm:3.1.0" - checksum: 4931fbfda5d7c4b5cfa283a13c91a954f86e3b69d75ce588d06cde6c3628cebfc3af2069ccf225e982e8987c612aa7948b3932163ce15eb3c11cd7c003f3ee3b - languageName: node - linkType: hard - -"d3-delaunay@npm:^6.0.2": - version: 6.0.4 - resolution: "d3-delaunay@npm:6.0.4" - dependencies: - delaunator: 5 - checksum: ce6d267d5ef21a8aeadfe4606329fc80a22ab6e7748d47bc220bcc396ee8be84b77a5473033954c5ac4aa522d265ddc45d4165d30fe4787dd60a15ea66b9bbb4 - languageName: node - linkType: hard - -"d3-dispatch@npm:1 - 3": - version: 3.0.1 - resolution: "d3-dispatch@npm:3.0.1" - checksum: fdfd4a230f46463e28e5b22a45dd76d03be9345b605e1b5dc7d18bd7ebf504e6c00ae123fd6d03e23d9e2711e01f0e14ea89cd0632545b9f0c00b924ba4be223 - languageName: node - linkType: hard - -"d3-dsv@npm:^3.0.1": - version: 3.0.1 - resolution: "d3-dsv@npm:3.0.1" - dependencies: - commander: 7 - iconv-lite: 0.6 - rw: 1 - bin: - csv2json: bin/dsv2json.js - csv2tsv: bin/dsv2dsv.js - dsv2dsv: bin/dsv2dsv.js - dsv2json: bin/dsv2json.js - json2csv: bin/json2dsv.js - json2dsv: bin/json2dsv.js - json2tsv: bin/json2dsv.js - tsv2csv: bin/dsv2dsv.js - tsv2json: bin/dsv2json.js - checksum: 5fc0723647269d5dccd181d74f2265920ab368a2868b0b4f55ffa2fecdfb7814390ea28622cd61ee5d9594ab262879509059544e9f815c54fe76fbfb4ffa4c8a - languageName: node - linkType: hard - -"d3-force@npm:^3.0.0": - version: 3.0.0 - resolution: "d3-force@npm:3.0.0" - dependencies: - d3-dispatch: 1 - 3 - d3-quadtree: 1 - 3 - d3-timer: 1 - 3 - checksum: 6c7e96438cab62fa32aeadb0ade3297b62b51f81b1b38b0a60a5ec9fd627d74090c1189654d92df2250775f31b06812342f089f1d5947de9960a635ee3581def - languageName: node - linkType: hard - -"d3-format@npm:1 - 3, d3-format@npm:^3.1.0": - version: 3.1.0 - resolution: "d3-format@npm:3.1.0" - checksum: f345ec3b8ad3cab19bff5dead395bd9f5590628eb97a389b1dd89f0b204c7c4fc1d9520f13231c2c7cf14b7c9a8cf10f8ef15bde2befbab41454a569bd706ca2 - languageName: node - linkType: hard - -"d3-geo-projection@npm:^4.0.0": - version: 4.0.0 - resolution: "d3-geo-projection@npm:4.0.0" - dependencies: - commander: 7 - d3-array: 1 - 3 - d3-geo: 1.12.0 - 3 - bin: - geo2svg: bin/geo2svg.js - geograticule: bin/geograticule.js - geoproject: bin/geoproject.js - geoquantize: bin/geoquantize.js - geostitch: bin/geostitch.js - checksum: 631422b10dd78d1047ba5a3b073148bea27721060bd7087a5fa6c053ca80445d26432e505e0e3acbd6e0d76cf577c61bf9a5db70dabbc9310c493de1f7ff736d - languageName: node - linkType: hard - -"d3-geo@npm:1.12.0 - 3, d3-geo@npm:^3.1.0": - version: 3.1.1 - resolution: "d3-geo@npm:3.1.1" - dependencies: - d3-array: 2.5.0 - 3 - checksum: 3cc4bb50af5d2d4858d2df1729a1777b7fd361854079d9faab1166186c988d2cba0d11911da0c4598d5e22fae91d79113ed262a9f98cabdbc6dbf7c30e5c0363 - languageName: node - linkType: hard - -"d3-hierarchy@npm:^3.1.2": - version: 3.1.2 - resolution: "d3-hierarchy@npm:3.1.2" - checksum: 0fd946a8c5fd4686d43d3e11bbfc2037a145fda29d2261ccd0e36f70b66af6d7638e2c0c7112124d63fc3d3127197a00a6aecf676bd5bd392a94d7235a214263 - languageName: node - linkType: hard - -"d3-interpolate@npm:1.2.0 - 3, d3-interpolate@npm:^3.0.1": - version: 3.0.1 - resolution: "d3-interpolate@npm:3.0.1" - dependencies: - d3-color: 1 - 3 - checksum: a42ba314e295e95e5365eff0f604834e67e4a3b3c7102458781c477bd67e9b24b6bb9d8e41ff5521050a3f2c7c0c4bbbb6e187fd586daa3980943095b267e78b - languageName: node - linkType: hard - -"d3-path@npm:^3.1.0": - version: 3.1.0 - resolution: "d3-path@npm:3.1.0" - checksum: 2306f1bd9191e1eac895ec13e3064f732a85f243d6e627d242a313f9777756838a2215ea11562f0c7630c7c3b16a19ec1fe0948b1c82f3317fac55882f6ee5d8 - languageName: node - linkType: hard - -"d3-quadtree@npm:1 - 3": - version: 3.0.1 - resolution: "d3-quadtree@npm:3.0.1" - checksum: 5469d462763811475f34a7294d984f3eb100515b0585ca5b249656f6b1a6e99b20056a2d2e463cc9944b888896d2b1d07859c50f9c0cf23438df9cd2e3146066 - languageName: node - linkType: hard - -"d3-scale@npm:^4.0.2": - version: 4.0.2 - resolution: "d3-scale@npm:4.0.2" - dependencies: - d3-array: 2.10.0 - 3 - d3-format: 1 - 3 - d3-interpolate: 1.2.0 - 3 - d3-time: 2.1.1 - 3 - d3-time-format: 2 - 4 - checksum: a9c770d283162c3bd11477c3d9d485d07f8db2071665f1a4ad23eec3e515e2cefbd369059ec677c9ac849877d1a765494e90e92051d4f21111aa56791c98729e - languageName: node - linkType: hard - -"d3-shape@npm:^3.2.0": - version: 3.2.0 - resolution: "d3-shape@npm:3.2.0" - dependencies: - d3-path: ^3.1.0 - checksum: de2af5fc9a93036a7b68581ca0bfc4aca2d5a328aa7ba7064c11aedd44d24f310c20c40157cb654359d4c15c3ef369f95ee53d71221017276e34172c7b719cfa - languageName: node - linkType: hard - -"d3-time-format@npm:2 - 4, d3-time-format@npm:^4.1.0": - version: 4.1.0 - resolution: "d3-time-format@npm:4.1.0" - dependencies: - d3-time: 1 - 3 - checksum: 7342bce28355378152bbd4db4e275405439cabba082d9cd01946d40581140481c8328456d91740b0fe513c51ec4a467f4471ffa390c7e0e30ea30e9ec98fcdf4 - languageName: node - linkType: hard - -"d3-time@npm:1 - 3, d3-time@npm:2.1.1 - 3, d3-time@npm:^3.1.0": - version: 3.1.0 - resolution: "d3-time@npm:3.1.0" - dependencies: - d3-array: 2 - 3 - checksum: 613b435352a78d9f31b7f68540788186d8c331b63feca60ad21c88e9db1989fe888f97f242322ebd6365e45ec3fb206a4324cd4ca0dfffa1d9b5feb856ba00a7 - languageName: node - linkType: hard - -"d3-timer@npm:1 - 3, d3-timer@npm:^3.0.1": - version: 3.0.1 - resolution: "d3-timer@npm:3.0.1" - checksum: 1cfddf86d7bca22f73f2c427f52dfa35c49f50d64e187eb788dcad6e927625c636aa18ae4edd44d084eb9d1f81d8ca4ec305dae7f733c15846a824575b789d73 - languageName: node - linkType: hard - -"debug@npm:4, debug@npm:^4.3.4": - version: 4.3.4 - resolution: "debug@npm:4.3.4" - dependencies: - ms: 2.1.2 - peerDependenciesMeta: - supports-color: - optional: true - checksum: 3dbad3f94ea64f34431a9cbf0bafb61853eda57bff2880036153438f50fb5a84f27683ba0d8e5426bf41a8c6ff03879488120cf5b3a761e77953169c0600a708 - languageName: node - linkType: hard - -"debug@npm:^2.6.9": - version: 2.6.9 - resolution: "debug@npm:2.6.9" - dependencies: - ms: 2.0.0 - checksum: d2f51589ca66df60bf36e1fa6e4386b318c3f1e06772280eea5b1ae9fd3d05e9c2b7fd8a7d862457d00853c75b00451aa2d7459b924629ee385287a650f58fe6 - languageName: node - linkType: hard - -"deepmerge@npm:^4.2.2": - version: 4.3.1 - resolution: "deepmerge@npm:4.3.1" - checksum: 2024c6a980a1b7128084170c4cf56b0fd58a63f2da1660dcfe977415f27b17dbe5888668b59d0b063753f3220719d5e400b7f113609489c90160bb9a5518d052 - languageName: node - linkType: hard - -"delaunator@npm:5": - version: 5.0.1 - resolution: "delaunator@npm:5.0.1" - dependencies: - robust-predicates: ^3.0.2 - checksum: 69ee43ec649b4a13b7f33c8a027fb3e8dfcb09266af324286118da757e04d3d39df619b905dca41421405c311317ccf632ecfa93db44519bacec3303c57c5a0b - languageName: node - linkType: hard - -"dom-serializer@npm:^1.0.1": - version: 1.4.1 - resolution: "dom-serializer@npm:1.4.1" - dependencies: - domelementtype: ^2.0.1 - domhandler: ^4.2.0 - entities: ^2.0.0 - checksum: fbb0b01f87a8a2d18e6e5a388ad0f7ec4a5c05c06d219377da1abc7bb0f674d804f4a8a94e3f71ff15f6cb7dcfc75704a54b261db672b9b3ab03da6b758b0b22 - languageName: node - linkType: hard - -"domelementtype@npm:^2.0.1, domelementtype@npm:^2.2.0": - version: 2.3.0 - resolution: "domelementtype@npm:2.3.0" - checksum: ee837a318ff702622f383409d1f5b25dd1024b692ef64d3096ff702e26339f8e345820f29a68bcdcea8cfee3531776b3382651232fbeae95612d6f0a75efb4f6 - languageName: node - linkType: hard - -"domhandler@npm:^4.0.0, domhandler@npm:^4.2.0": - version: 4.3.1 - resolution: "domhandler@npm:4.3.1" - dependencies: - domelementtype: ^2.2.0 - checksum: 4c665ceed016e1911bf7d1dadc09dc888090b64dee7851cccd2fcf5442747ec39c647bb1cb8c8919f8bbdd0f0c625a6bafeeed4b2d656bbecdbae893f43ffaaa - languageName: node - linkType: hard - -"domutils@npm:^2.5.2": - version: 2.8.0 - resolution: "domutils@npm:2.8.0" - dependencies: - dom-serializer: ^1.0.1 - domelementtype: ^2.2.0 - domhandler: ^4.2.0 - checksum: abf7434315283e9aadc2a24bac0e00eab07ae4313b40cc239f89d84d7315ebdfd2fb1b5bf750a96bc1b4403d7237c7b2ebf60459be394d625ead4ca89b934391 - languageName: node - linkType: hard - -"eastasianwidth@npm:^0.2.0": - version: 0.2.0 - resolution: "eastasianwidth@npm:0.2.0" - checksum: 7d00d7cd8e49b9afa762a813faac332dee781932d6f2c848dc348939c4253f1d4564341b7af1d041853bc3f32c2ef141b58e0a4d9862c17a7f08f68df1e0f1ed - languageName: node - linkType: hard - -"emoji-regex@npm:^8.0.0": - version: 8.0.0 - resolution: "emoji-regex@npm:8.0.0" - checksum: d4c5c39d5a9868b5fa152f00cada8a936868fd3367f33f71be515ecee4c803132d11b31a6222b2571b1e5f7e13890156a94880345594d0ce7e3c9895f560f192 - languageName: node - linkType: hard - -"emoji-regex@npm:^9.2.2": - version: 9.2.2 - resolution: "emoji-regex@npm:9.2.2" - checksum: 8487182da74aabd810ac6d6f1994111dfc0e331b01271ae01ec1eb0ad7b5ecc2bbbbd2f053c05cb55a1ac30449527d819bbfbf0e3de1023db308cbcb47f86601 - languageName: node - linkType: hard - -"encoding@npm:^0.1.13": - version: 0.1.13 - resolution: "encoding@npm:0.1.13" - dependencies: - iconv-lite: ^0.6.2 - checksum: bb98632f8ffa823996e508ce6a58ffcf5856330fde839ae42c9e1f436cc3b5cc651d4aeae72222916545428e54fd0f6aa8862fd8d25bdbcc4589f1e3f3715e7f - languageName: node - linkType: hard - -"entities@npm:^2.0.0": - version: 2.2.0 - resolution: "entities@npm:2.2.0" - checksum: 19010dacaf0912c895ea262b4f6128574f9ccf8d4b3b65c7e8334ad0079b3706376360e28d8843ff50a78aabcb8f08f0a32dbfacdc77e47ed77ca08b713669b3 - languageName: node - linkType: hard - -"env-paths@npm:^2.2.0": - version: 2.2.1 - resolution: "env-paths@npm:2.2.1" - checksum: 65b5df55a8bab92229ab2b40dad3b387fad24613263d103a97f91c9fe43ceb21965cd3392b1ccb5d77088021e525c4e0481adb309625d0cb94ade1d1fb8dc17e - languageName: node - linkType: hard - -"err-code@npm:^2.0.2": - version: 2.0.3 - resolution: "err-code@npm:2.0.3" - checksum: 8b7b1be20d2de12d2255c0bc2ca638b7af5171142693299416e6a9339bd7d88fc8d7707d913d78e0993176005405a236b066b45666b27b797252c771156ace54 - languageName: node - linkType: hard - -"escalade@npm:^3.1.1": - version: 3.1.2 - resolution: "escalade@npm:3.1.2" - checksum: 1ec0977aa2772075493002bdbd549d595ff6e9393b1cb0d7d6fcaf78c750da0c158f180938365486f75cb69fba20294351caddfce1b46552a7b6c3cde52eaa02 - languageName: node - linkType: hard - -"escape-string-regexp@npm:^4.0.0": - version: 4.0.0 - resolution: "escape-string-regexp@npm:4.0.0" - checksum: 98b48897d93060f2322108bf29db0feba7dd774be96cd069458d1453347b25ce8682ecc39859d4bca2203cc0ab19c237bcc71755eff49a0f8d90beadeeba5cc5 - languageName: node - linkType: hard - -"exenv-es6@npm:^1.1.1": - version: 1.1.1 - resolution: "exenv-es6@npm:1.1.1" - checksum: 7f2aa12025e6f06c48dc286f380cf3183bb19c6017b36d91695034a3e5124a7235c4f8ff24ca2eb88ae801322f0f99605cedfcfd996a5fcbba7669320e2a448e - languageName: node - linkType: hard - -"exponential-backoff@npm:^3.1.1": - version: 3.1.1 - resolution: "exponential-backoff@npm:3.1.1" - checksum: 3d21519a4f8207c99f7457287291316306255a328770d320b401114ec8481986e4e467e854cb9914dd965e0a1ca810a23ccb559c642c88f4c7f55c55778a9b48 - languageName: node - linkType: hard - -"fast-deep-equal@npm:^3.1.1": - version: 3.1.3 - resolution: "fast-deep-equal@npm:3.1.3" - checksum: e21a9d8d84f53493b6aa15efc9cfd53dd5b714a1f23f67fb5dc8f574af80df889b3bce25dc081887c6d25457cce704e636395333abad896ccdec03abaf1f3f9d - languageName: node - linkType: hard - -"foreground-child@npm:^3.1.0": - version: 3.1.1 - resolution: "foreground-child@npm:3.1.1" - dependencies: - cross-spawn: ^7.0.0 - signal-exit: ^4.0.1 - checksum: 139d270bc82dc9e6f8bc045fe2aae4001dc2472157044fdfad376d0a3457f77857fa883c1c8b21b491c6caade9a926a4bed3d3d2e8d3c9202b151a4cbbd0bcd5 - languageName: node - linkType: hard - -"free-style@npm:3.1.0": - version: 3.1.0 - resolution: "free-style@npm:3.1.0" - checksum: 949258ae315deda48cac93ecd5f9a80f36e8a027e19ce2103598dc8d5ab60e963bbad5444b2a4990ddb746798dd188896f430285cf484afbf2141f7d75a191d8 - languageName: node - linkType: hard - -"fs-extra@npm:^10.1.0": - version: 10.1.0 - resolution: "fs-extra@npm:10.1.0" - dependencies: - graceful-fs: ^4.2.0 - jsonfile: ^6.0.1 - universalify: ^2.0.0 - checksum: dc94ab37096f813cc3ca12f0f1b5ad6744dfed9ed21e953d72530d103cea193c2f81584a39e9dee1bea36de5ee66805678c0dddc048e8af1427ac19c00fffc50 - languageName: node - linkType: hard - -"fs-minipass@npm:^2.0.0": - version: 2.1.0 - resolution: "fs-minipass@npm:2.1.0" - dependencies: - minipass: ^3.0.0 - checksum: 1b8d128dae2ac6cc94230cc5ead341ba3e0efaef82dab46a33d171c044caaa6ca001364178d42069b2809c35a1c3c35079a32107c770e9ffab3901b59af8c8b1 - languageName: node - linkType: hard - -"fs-minipass@npm:^3.0.0": - version: 3.0.3 - resolution: "fs-minipass@npm:3.0.3" - dependencies: - minipass: ^7.0.3 - checksum: 8722a41109130851d979222d3ec88aabaceeaaf8f57b2a8f744ef8bd2d1ce95453b04a61daa0078822bc5cd21e008814f06fe6586f56fef511e71b8d2394d802 - languageName: node - linkType: hard - -"fsevents@npm:2.3.2": - version: 2.3.2 - resolution: "fsevents@npm:2.3.2" - dependencies: - node-gyp: latest - checksum: 97ade64e75091afee5265e6956cb72ba34db7819b4c3e94c431d4be2b19b8bb7a2d4116da417950c3425f17c8fe693d25e20212cac583ac1521ad066b77ae31f - conditions: os=darwin - languageName: node - linkType: hard - -"fsevents@patch:fsevents@2.3.2#~builtin": - version: 2.3.2 - resolution: "fsevents@patch:fsevents@npm%3A2.3.2#~builtin::version=2.3.2&hash=df0bf1" - dependencies: - node-gyp: latest - conditions: os=darwin - languageName: node - linkType: hard - -"get-caller-file@npm:^2.0.5": - version: 2.0.5 - resolution: "get-caller-file@npm:2.0.5" - checksum: b9769a836d2a98c3ee734a88ba712e62703f1df31b94b784762c433c27a386dd6029ff55c2a920c392e33657d80191edbf18c61487e198844844516f843496b9 - languageName: node - linkType: hard - -"glob@npm:^10.2.2, glob@npm:^10.3.10": - version: 10.3.10 - resolution: "glob@npm:10.3.10" - dependencies: - foreground-child: ^3.1.0 - jackspeak: ^2.3.5 - minimatch: ^9.0.1 - minipass: ^5.0.0 || ^6.0.2 || ^7.0.0 - path-scurry: ^1.10.1 - bin: - glob: dist/esm/bin.mjs - checksum: 4f2fe2511e157b5a3f525a54092169a5f92405f24d2aed3142f4411df328baca13059f4182f1db1bf933e2c69c0bd89e57ae87edd8950cba8c7ccbe84f721cf3 - languageName: node - linkType: hard - -"graceful-fs@npm:^4.1.11, graceful-fs@npm:^4.1.6, graceful-fs@npm:^4.2.0, graceful-fs@npm:^4.2.6": - version: 4.2.11 - resolution: "graceful-fs@npm:4.2.11" - checksum: ac85f94da92d8eb6b7f5a8b20ce65e43d66761c55ce85ac96df6865308390da45a8d3f0296dd3a663de65d30ba497bd46c696cc1e248c72b13d6d567138a4fc7 - languageName: node - linkType: hard - -"htmlparser2@npm:^6.0.0": - version: 6.1.0 - resolution: "htmlparser2@npm:6.1.0" - dependencies: - domelementtype: ^2.0.1 - domhandler: ^4.0.0 - domutils: ^2.5.2 - entities: ^2.0.0 - checksum: 81a7b3d9c3bb9acb568a02fc9b1b81ffbfa55eae7f1c41ae0bf840006d1dbf54cb3aa245b2553e2c94db674840a9f0fdad7027c9a9d01a062065314039058c4e - languageName: node - linkType: hard - -"http-cache-semantics@npm:^4.1.1": - version: 4.1.1 - resolution: "http-cache-semantics@npm:4.1.1" - checksum: 83ac0bc60b17a3a36f9953e7be55e5c8f41acc61b22583060e8dedc9dd5e3607c823a88d0926f9150e571f90946835c7fe150732801010845c72cd8bbff1a236 - languageName: node - linkType: hard - -"http-proxy-agent@npm:^7.0.0": - version: 7.0.2 - resolution: "http-proxy-agent@npm:7.0.2" - dependencies: - agent-base: ^7.1.0 - debug: ^4.3.4 - checksum: 670858c8f8f3146db5889e1fa117630910101db601fff7d5a8aa637da0abedf68c899f03d3451cac2f83bcc4c3d2dabf339b3aa00ff8080571cceb02c3ce02f3 - languageName: node - linkType: hard - -"https-proxy-agent@npm:^7.0.1": - version: 7.0.4 - resolution: "https-proxy-agent@npm:7.0.4" - dependencies: - agent-base: ^7.0.2 - debug: 4 - checksum: daaab857a967a2519ddc724f91edbbd388d766ff141b9025b629f92b9408fc83cee8a27e11a907aede392938e9c398e240d643e178408a59e4073539cde8cfe9 - languageName: node - linkType: hard - -"iconv-lite@npm:0.6, iconv-lite@npm:^0.6.2": - version: 0.6.3 - resolution: "iconv-lite@npm:0.6.3" - dependencies: - safer-buffer: ">= 2.1.2 < 3.0.0" - checksum: 3f60d47a5c8fc3313317edfd29a00a692cc87a19cac0159e2ce711d0ebc9019064108323b5e493625e25594f11c6236647d8e256fbe7a58f4a3b33b89e6d30bf - languageName: node - linkType: hard - -"imurmurhash@npm:^0.1.4": - version: 0.1.4 - resolution: "imurmurhash@npm:0.1.4" - checksum: 7cae75c8cd9a50f57dadd77482359f659eaebac0319dd9368bcd1714f55e65badd6929ca58569da2b6494ef13fdd5598cd700b1eba23f8b79c5f19d195a3ecf7 - languageName: node - linkType: hard - -"indent-string@npm:^4.0.0": - version: 4.0.0 - resolution: "indent-string@npm:4.0.0" - checksum: 824cfb9929d031dabf059bebfe08cf3137365e112019086ed3dcff6a0a7b698cb80cf67ccccde0e25b9e2d7527aa6cc1fed1ac490c752162496caba3e6699612 - languageName: node - linkType: hard - -"inherits@npm:2.0.3": - version: 2.0.3 - resolution: "inherits@npm:2.0.3" - checksum: 78cb8d7d850d20a5e9a7f3620db31483aa00ad5f722ce03a55b110e5a723539b3716a3b463e2b96ce3fe286f33afc7c131fa2f91407528ba80cea98a7545d4c0 - languageName: node - linkType: hard - -"inherits@npm:~2.0.3": - version: 2.0.4 - resolution: "inherits@npm:2.0.4" - checksum: 4a48a733847879d6cf6691860a6b1e3f0f4754176e4d71494c41f3475553768b10f84b5ce1d40fbd0e34e6bfbb864ee35858ad4dd2cf31e02fc4a154b724d7f1 - languageName: node - linkType: hard - -"internmap@npm:1 - 2": - version: 2.0.3 - resolution: "internmap@npm:2.0.3" - checksum: 7ca41ec6aba8f0072fc32fa8a023450a9f44503e2d8e403583c55714b25efd6390c38a87161ec456bf42d7bc83aab62eb28f5aef34876b1ac4e60693d5e1d241 - languageName: node - linkType: hard - -"ip-address@npm:^9.0.5": - version: 9.0.5 - resolution: "ip-address@npm:9.0.5" - dependencies: - jsbn: 1.1.0 - sprintf-js: ^1.1.3 - checksum: aa15f12cfd0ef5e38349744e3654bae649a34c3b10c77a674a167e99925d1549486c5b14730eebce9fea26f6db9d5e42097b00aa4f9f612e68c79121c71652dc - languageName: node - linkType: hard - -"is-fullwidth-code-point@npm:^3.0.0": - version: 3.0.0 - resolution: "is-fullwidth-code-point@npm:3.0.0" - checksum: 44a30c29457c7fb8f00297bce733f0a64cd22eca270f83e58c105e0d015e45c019491a4ab2faef91ab51d4738c670daff901c799f6a700e27f7314029e99e348 - languageName: node - linkType: hard - -"is-lambda@npm:^1.0.1": - version: 1.0.1 - resolution: "is-lambda@npm:1.0.1" - checksum: 93a32f01940220532e5948538699ad610d5924ac86093fcee83022252b363eb0cc99ba53ab084a04e4fb62bf7b5731f55496257a4c38adf87af9c4d352c71c35 - languageName: node - linkType: hard - -"is-plain-object@npm:^5.0.0": - version: 5.0.0 - resolution: "is-plain-object@npm:5.0.0" - checksum: e32d27061eef62c0847d303125440a38660517e586f2f3db7c9d179ae5b6674ab0f469d519b2e25c147a1a3bc87156d0d5f4d8821e0ce4a9ee7fe1fcf11ce45c - languageName: node - linkType: hard - -"isarray@npm:~1.0.0": - version: 1.0.0 - resolution: "isarray@npm:1.0.0" - checksum: f032df8e02dce8ec565cf2eb605ea939bdccea528dbcf565cdf92bfa2da9110461159d86a537388ef1acef8815a330642d7885b29010e8f7eac967c9993b65ab - languageName: node - linkType: hard - -"isexe@npm:^2.0.0": - version: 2.0.0 - resolution: "isexe@npm:2.0.0" - checksum: 26bf6c5480dda5161c820c5b5c751ae1e766c587b1f951ea3fcfc973bafb7831ae5b54a31a69bd670220e42e99ec154475025a468eae58ea262f813fdc8d1c62 - languageName: node - linkType: hard - -"isexe@npm:^3.1.1": - version: 3.1.1 - resolution: "isexe@npm:3.1.1" - checksum: 7fe1931ee4e88eb5aa524cd3ceb8c882537bc3a81b02e438b240e47012eef49c86904d0f0e593ea7c3a9996d18d0f1f3be8d3eaa92333977b0c3a9d353d5563e - languageName: node - linkType: hard - -"isomorphic.js@npm:^0.2.4": - version: 0.2.5 - resolution: "isomorphic.js@npm:0.2.5" - checksum: d8d1b083f05f3c337a06628b982ac3ce6db953bbef14a9de8ad49131250c3592f864b73c12030fdc9ef138ce97b76ef55c7d96a849561ac215b1b4b9d301c8e9 - languageName: node - linkType: hard - -"jackspeak@npm:^2.3.5": - version: 2.3.6 - resolution: "jackspeak@npm:2.3.6" - dependencies: - "@isaacs/cliui": ^8.0.2 - "@pkgjs/parseargs": ^0.11.0 - dependenciesMeta: - "@pkgjs/parseargs": - optional: true - checksum: 57d43ad11eadc98cdfe7496612f6bbb5255ea69fe51ea431162db302c2a11011642f50cfad57288bd0aea78384a0612b16e131944ad8ecd09d619041c8531b54 - languageName: node - linkType: hard - -"js-tokens@npm:^3.0.0 || ^4.0.0": - version: 4.0.0 - resolution: "js-tokens@npm:4.0.0" - checksum: 8a95213a5a77deb6cbe94d86340e8d9ace2b93bc367790b260101d2f36a2eaf4e4e22d9fa9cf459b38af3a32fb4190e638024cf82ec95ef708680e405ea7cc78 - languageName: node - linkType: hard - -"jsbn@npm:1.1.0": - version: 1.1.0 - resolution: "jsbn@npm:1.1.0" - checksum: 944f924f2bd67ad533b3850eee47603eed0f6ae425fd1ee8c760f477e8c34a05f144c1bd4f5a5dd1963141dc79a2c55f89ccc5ab77d039e7077f3ad196b64965 - languageName: node - linkType: hard - -"json-schema-compare@npm:^0.2.2": - version: 0.2.2 - resolution: "json-schema-compare@npm:0.2.2" - dependencies: - lodash: ^4.17.4 - checksum: dd6f2173857c8e3b77d6ebdfa05bd505bba5b08709ab46b532722f5d1c33b5fee1fc8f3c97d0c0d011db25f9f3b0baf7ab783bb5f55c32abd9f1201760e43c2c - languageName: node - linkType: hard - -"json-schema-merge-allof@npm:^0.8.1": - version: 0.8.1 - resolution: "json-schema-merge-allof@npm:0.8.1" - dependencies: - compute-lcm: ^1.1.2 - json-schema-compare: ^0.2.2 - lodash: ^4.17.20 - checksum: 82700f6ac77351959138d6b153d77375a8c29cf48d907241b85c8292dd77aabd8cb816400f2b0d17062c4ccc8893832ec4f664ab9c814927ef502e7a595ea873 - languageName: node - linkType: hard - -"json-schema-traverse@npm:^1.0.0": - version: 1.0.0 - resolution: "json-schema-traverse@npm:1.0.0" - checksum: 02f2f466cdb0362558b2f1fd5e15cce82ef55d60cd7f8fa828cf35ba74330f8d767fcae5c5c2adb7851fa811766c694b9405810879bc4e1ddd78a7c0e03658ad - languageName: node - linkType: hard - -"json-stringify-pretty-compact@npm:~3.0.0": - version: 3.0.0 - resolution: "json-stringify-pretty-compact@npm:3.0.0" - checksum: 01ab5c5c8260299414868d96db97f53aef93c290fe469edd9a1363818e795006e01c952fa2fd7b47cbbab506d5768998eccc25e1da4fa2ccfebd1788c6098791 - languageName: node - linkType: hard - -"json5@npm:^2.2.3": - version: 2.2.3 - resolution: "json5@npm:2.2.3" - bin: - json5: lib/cli.js - checksum: 2a7436a93393830bce797d4626275152e37e877b265e94ca69c99e3d20c2b9dab021279146a39cdb700e71b2dd32a4cebd1514cd57cee102b1af906ce5040349 - languageName: node - linkType: hard - -"jsonfile@npm:^6.0.1": - version: 6.1.0 - resolution: "jsonfile@npm:6.1.0" - dependencies: - graceful-fs: ^4.1.6 - universalify: ^2.0.0 - dependenciesMeta: - graceful-fs: - optional: true - checksum: 7af3b8e1ac8fe7f1eccc6263c6ca14e1966fcbc74b618d3c78a0a2075579487547b94f72b7a1114e844a1e15bb00d440e5d1720bfc4612d790a6f285d5ea8354 - languageName: node - linkType: hard - -"jsonpointer@npm:^5.0.1": - version: 5.0.1 - resolution: "jsonpointer@npm:5.0.1" - checksum: 0b40f712900ad0c846681ea2db23b6684b9d5eedf55807b4708c656f5894b63507d0e28ae10aa1bddbea551241035afe62b6df0800fc94c2e2806a7f3adecd7c - languageName: node - linkType: hard - -"klaw-sync@npm:^6.0.0": - version: 6.0.0 - resolution: "klaw-sync@npm:6.0.0" - dependencies: - graceful-fs: ^4.1.11 - checksum: 0da397f8961313c3ef8f79fb63af9002cde5a8fb2aeb1a37351feff0dd6006129c790400c3f5c3b4e757bedcabb13d21ec0a5eaef5a593d59515d4f2c291e475 - languageName: node - linkType: hard - -"lib0@npm:^0.2.85, lib0@npm:^0.2.86": - version: 0.2.93 - resolution: "lib0@npm:0.2.93" - dependencies: - isomorphic.js: ^0.2.4 - bin: - 0ecdsa-generate-keypair: bin/0ecdsa-generate-keypair.js - 0gentesthtml: bin/gentesthtml.js - 0serve: bin/0serve.js - checksum: 4c482aba249c471316fdec360ee4ace2a70ae42faad5fb6862aebb6786e187de9470eb082a5675489c59ffe54b005a15711a3d7dba33764bcab56349e61a1520 - languageName: node - linkType: hard - -"lodash-es@npm:^4.17.21": - version: 4.17.21 - resolution: "lodash-es@npm:4.17.21" - checksum: 05cbffad6e2adbb331a4e16fbd826e7faee403a1a04873b82b42c0f22090f280839f85b95393f487c1303c8a3d2a010048bf06151a6cbe03eee4d388fb0a12d2 - languageName: node - linkType: hard - -"lodash.escape@npm:^4.0.1": - version: 4.0.1 - resolution: "lodash.escape@npm:4.0.1" - checksum: fcb54f457497256964d619d5cccbd80a961916fca60df3fe0fa3e7f052715c2944c0ed5aefb4f9e047d127d44aa2d55555f3350cb42c6549e9e293fb30b41e7f - languageName: node - linkType: hard - -"lodash.mergewith@npm:^4.6.1": - version: 4.6.2 - resolution: "lodash.mergewith@npm:4.6.2" - checksum: a6db2a9339752411f21b956908c404ec1e088e783a65c8b29e30ae5b3b6384f82517662d6f425cc97c2070b546cc2c7daaa8d33f78db7b6e9be06cd834abdeb8 - languageName: node - linkType: hard - -"lodash@npm:^4.17.20, lodash@npm:^4.17.21, lodash@npm:^4.17.4": - version: 4.17.21 - resolution: "lodash@npm:4.17.21" - checksum: eb835a2e51d381e561e508ce932ea50a8e5a68f4ebdd771ea240d3048244a8d13658acbd502cd4829768c56f2e16bdd4340b9ea141297d472517b83868e677f7 - languageName: node - linkType: hard - -"loose-envify@npm:^1.1.0, loose-envify@npm:^1.4.0": - version: 1.4.0 - resolution: "loose-envify@npm:1.4.0" - dependencies: - js-tokens: ^3.0.0 || ^4.0.0 - bin: - loose-envify: cli.js - checksum: 6517e24e0cad87ec9888f500c5b5947032cdfe6ef65e1c1936a0c48a524b81e65542c9c3edc91c97d5bddc806ee2a985dbc79be89215d613b1de5db6d1cfe6f4 - languageName: node - linkType: hard - -"lru-cache@npm:^10.0.1, lru-cache@npm:^9.1.1 || ^10.0.0": - version: 10.2.0 - resolution: "lru-cache@npm:10.2.0" - checksum: eee7ddda4a7475deac51ac81d7dd78709095c6fa46e8350dc2d22462559a1faa3b81ed931d5464b13d48cbd7e08b46100b6f768c76833912bc444b99c37e25db - languageName: node - linkType: hard - -"lru-cache@npm:^6.0.0": - version: 6.0.0 - resolution: "lru-cache@npm:6.0.0" - dependencies: - yallist: ^4.0.0 - checksum: f97f499f898f23e4585742138a22f22526254fdba6d75d41a1c2526b3b6cc5747ef59c5612ba7375f42aca4f8461950e925ba08c991ead0651b4918b7c978297 - languageName: node - linkType: hard - -"make-fetch-happen@npm:^13.0.0": - version: 13.0.0 - resolution: "make-fetch-happen@npm:13.0.0" - dependencies: - "@npmcli/agent": ^2.0.0 - cacache: ^18.0.0 - http-cache-semantics: ^4.1.1 - is-lambda: ^1.0.1 - minipass: ^7.0.2 - minipass-fetch: ^3.0.0 - minipass-flush: ^1.0.5 - minipass-pipeline: ^1.2.4 - negotiator: ^0.6.3 - promise-retry: ^2.0.1 - ssri: ^10.0.0 - checksum: 7c7a6d381ce919dd83af398b66459a10e2fe8f4504f340d1d090d3fa3d1b0c93750220e1d898114c64467223504bd258612ba83efbc16f31b075cd56de24b4af - languageName: node - linkType: hard - -"markdown-to-jsx@npm:^7.4.1": - version: 7.4.4 - resolution: "markdown-to-jsx@npm:7.4.4" - peerDependencies: - react: ">= 0.14.0" - checksum: a901e68a4cf258095133b659a52b35dc7b8025706d74cb363831c664cf0c948d06098b6327dd956f0f429e31d8c7f2a272a39d16c9b370072d1012557f2ade41 - languageName: node - linkType: hard - -"minimatch@npm:^9.0.1": - version: 9.0.3 - resolution: "minimatch@npm:9.0.3" - dependencies: - brace-expansion: ^2.0.1 - checksum: 253487976bf485b612f16bf57463520a14f512662e592e95c571afdab1442a6a6864b6c88f248ce6fc4ff0b6de04ac7aa6c8bb51e868e99d1d65eb0658a708b5 - languageName: node - linkType: hard - -"minimist@npm:^1.2.0, minimist@npm:~1.2.0": - version: 1.2.8 - resolution: "minimist@npm:1.2.8" - checksum: 75a6d645fb122dad29c06a7597bddea977258957ed88d7a6df59b5cd3fe4a527e253e9bbf2e783e4b73657f9098b96a5fe96ab8a113655d4109108577ecf85b0 - languageName: node - linkType: hard - -"minipass-collect@npm:^2.0.1": - version: 2.0.1 - resolution: "minipass-collect@npm:2.0.1" - dependencies: - minipass: ^7.0.3 - checksum: b251bceea62090f67a6cced7a446a36f4cd61ee2d5cea9aee7fff79ba8030e416327a1c5aa2908dc22629d06214b46d88fdab8c51ac76bacbf5703851b5ad342 - languageName: node - linkType: hard - -"minipass-fetch@npm:^3.0.0": - version: 3.0.4 - resolution: "minipass-fetch@npm:3.0.4" - dependencies: - encoding: ^0.1.13 - minipass: ^7.0.3 - minipass-sized: ^1.0.3 - minizlib: ^2.1.2 - dependenciesMeta: - encoding: - optional: true - checksum: af7aad15d5c128ab1ebe52e043bdf7d62c3c6f0cecb9285b40d7b395e1375b45dcdfd40e63e93d26a0e8249c9efd5c325c65575aceee192883970ff8cb11364a - languageName: node - linkType: hard - -"minipass-flush@npm:^1.0.5": - version: 1.0.5 - resolution: "minipass-flush@npm:1.0.5" - dependencies: - minipass: ^3.0.0 - checksum: 56269a0b22bad756a08a94b1ffc36b7c9c5de0735a4dd1ab2b06c066d795cfd1f0ac44a0fcae13eece5589b908ecddc867f04c745c7009be0b566421ea0944cf - languageName: node - linkType: hard - -"minipass-pipeline@npm:^1.2.4": - version: 1.2.4 - resolution: "minipass-pipeline@npm:1.2.4" - dependencies: - minipass: ^3.0.0 - checksum: b14240dac0d29823c3d5911c286069e36d0b81173d7bdf07a7e4a91ecdef92cdff4baaf31ea3746f1c61e0957f652e641223970870e2353593f382112257971b - languageName: node - linkType: hard - -"minipass-sized@npm:^1.0.3": - version: 1.0.3 - resolution: "minipass-sized@npm:1.0.3" - dependencies: - minipass: ^3.0.0 - checksum: 79076749fcacf21b5d16dd596d32c3b6bf4d6e62abb43868fac21674078505c8b15eaca4e47ed844985a4514854f917d78f588fcd029693709417d8f98b2bd60 - languageName: node - linkType: hard - -"minipass@npm:^3.0.0": - version: 3.3.6 - resolution: "minipass@npm:3.3.6" - dependencies: - yallist: ^4.0.0 - checksum: a30d083c8054cee83cdcdc97f97e4641a3f58ae743970457b1489ce38ee1167b3aaf7d815cd39ec7a99b9c40397fd4f686e83750e73e652b21cb516f6d845e48 - languageName: node - linkType: hard - -"minipass@npm:^5.0.0": - version: 5.0.0 - resolution: "minipass@npm:5.0.0" - checksum: 425dab288738853fded43da3314a0b5c035844d6f3097a8e3b5b29b328da8f3c1af6fc70618b32c29ff906284cf6406b6841376f21caaadd0793c1d5a6a620ea - languageName: node - linkType: hard - -"minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0, minipass@npm:^7.0.2, minipass@npm:^7.0.3": - version: 7.0.4 - resolution: "minipass@npm:7.0.4" - checksum: 87585e258b9488caf2e7acea242fd7856bbe9a2c84a7807643513a338d66f368c7d518200ad7b70a508664d408aa000517647b2930c259a8b1f9f0984f344a21 - languageName: node - linkType: hard - -"minizlib@npm:^2.1.1, minizlib@npm:^2.1.2": - version: 2.1.2 - resolution: "minizlib@npm:2.1.2" - dependencies: - minipass: ^3.0.0 - yallist: ^4.0.0 - checksum: f1fdeac0b07cf8f30fcf12f4b586795b97be856edea22b5e9072707be51fc95d41487faec3f265b42973a304fe3a64acd91a44a3826a963e37b37bafde0212c3 - languageName: node - linkType: hard - -"mkdirp@npm:^1.0.3": - version: 1.0.4 - resolution: "mkdirp@npm:1.0.4" - bin: - mkdirp: bin/cmd.js - checksum: a96865108c6c3b1b8e1d5e9f11843de1e077e57737602de1b82030815f311be11f96f09cce59bd5b903d0b29834733e5313f9301e3ed6d6f6fba2eae0df4298f - languageName: node - linkType: hard - -"ms@npm:2.0.0": - version: 2.0.0 - resolution: "ms@npm:2.0.0" - checksum: 0e6a22b8b746d2e0b65a430519934fefd41b6db0682e3477c10f60c76e947c4c0ad06f63ffdf1d78d335f83edee8c0aa928aa66a36c7cd95b69b26f468d527f4 - languageName: node - linkType: hard - -"ms@npm:2.1.2": - version: 2.1.2 - resolution: "ms@npm:2.1.2" - checksum: 673cdb2c3133eb050c745908d8ce632ed2c02d85640e2edb3ace856a2266a813b30c613569bf3354fdf4ea7d1a1494add3bfa95e2713baa27d0c2c71fc44f58f - languageName: node - linkType: hard - -"nanoid@npm:^3.3.7": - version: 3.3.7 - resolution: "nanoid@npm:3.3.7" - bin: - nanoid: bin/nanoid.cjs - checksum: d36c427e530713e4ac6567d488b489a36582ef89da1d6d4e3b87eded11eb10d7042a877958c6f104929809b2ab0bafa17652b076cdf84324aa75b30b722204f2 - languageName: node - linkType: hard - -"negotiator@npm:^0.6.3": - version: 0.6.3 - resolution: "negotiator@npm:0.6.3" - checksum: b8ffeb1e262eff7968fc90a2b6767b04cfd9842582a9d0ece0af7049537266e7b2506dfb1d107a32f06dd849ab2aea834d5830f7f4d0e5cb7d36e1ae55d021d9 - languageName: node - linkType: hard - -"node-fetch@npm:^2.6.7": - version: 2.7.0 - resolution: "node-fetch@npm:2.7.0" - dependencies: - whatwg-url: ^5.0.0 - peerDependencies: - encoding: ^0.1.0 - peerDependenciesMeta: - encoding: - optional: true - checksum: d76d2f5edb451a3f05b15115ec89fc6be39de37c6089f1b6368df03b91e1633fd379a7e01b7ab05089a25034b2023d959b47e59759cb38d88341b2459e89d6e5 - languageName: node - linkType: hard - -"node-gyp@npm:latest": - version: 10.0.1 - resolution: "node-gyp@npm:10.0.1" - dependencies: - env-paths: ^2.2.0 - exponential-backoff: ^3.1.1 - glob: ^10.3.10 - graceful-fs: ^4.2.6 - make-fetch-happen: ^13.0.0 - nopt: ^7.0.0 - proc-log: ^3.0.0 - semver: ^7.3.5 - tar: ^6.1.2 - which: ^4.0.0 - bin: - node-gyp: bin/node-gyp.js - checksum: 60a74e66d364903ce02049966303a57f898521d139860ac82744a5fdd9f7b7b3b61f75f284f3bfe6e6add3b8f1871ce305a1d41f775c7482de837b50c792223f - languageName: node - linkType: hard - -"nopt@npm:^7.0.0": - version: 7.2.0 - resolution: "nopt@npm:7.2.0" - dependencies: - abbrev: ^2.0.0 - bin: - nopt: bin/nopt.js - checksum: a9c0f57fb8cb9cc82ae47192ca2b7ef00e199b9480eed202482c962d61b59a7fbe7541920b2a5839a97b42ee39e288c0aed770e38057a608d7f579389dfde410 - languageName: node - linkType: hard - -"object-assign@npm:^4.1.1": - version: 4.1.1 - resolution: "object-assign@npm:4.1.1" - checksum: fcc6e4ea8c7fe48abfbb552578b1c53e0d194086e2e6bbbf59e0a536381a292f39943c6e9628af05b5528aa5e3318bb30d6b2e53cadaf5b8fe9e12c4b69af23f - languageName: node - linkType: hard - -"p-map@npm:^4.0.0": - version: 4.0.0 - resolution: "p-map@npm:4.0.0" - dependencies: - aggregate-error: ^3.0.0 - checksum: cb0ab21ec0f32ddffd31dfc250e3afa61e103ef43d957cc45497afe37513634589316de4eb88abdfd969fe6410c22c0b93ab24328833b8eb1ccc087fc0442a1c - languageName: node - linkType: hard - -"parse-srcset@npm:^1.0.2": - version: 1.0.2 - resolution: "parse-srcset@npm:1.0.2" - checksum: 3a0380380c6082021fcce982f0b89fb8a493ce9dfd7d308e5e6d855201e80db8b90438649b31fdd82a3d6089a8ca17dccddaa2b730a718389af4c037b8539ebf - languageName: node - linkType: hard - -"path-browserify@npm:^1.0.0": - version: 1.0.1 - resolution: "path-browserify@npm:1.0.1" - checksum: c6d7fa376423fe35b95b2d67990060c3ee304fc815ff0a2dc1c6c3cfaff2bd0d572ee67e18f19d0ea3bbe32e8add2a05021132ac40509416459fffee35200699 - languageName: node - linkType: hard - -"path-key@npm:^3.1.0": - version: 3.1.1 - resolution: "path-key@npm:3.1.1" - checksum: 55cd7a9dd4b343412a8386a743f9c746ef196e57c823d90ca3ab917f90ab9f13dd0ded27252ba49dbdfcab2b091d998bc446f6220cd3cea65db407502a740020 - languageName: node - linkType: hard - -"path-scurry@npm:^1.10.1": - version: 1.10.1 - resolution: "path-scurry@npm:1.10.1" - dependencies: - lru-cache: ^9.1.1 || ^10.0.0 - minipass: ^5.0.0 || ^6.0.2 || ^7.0.0 - checksum: e2557cff3a8fb8bc07afdd6ab163a92587884f9969b05bbbaf6fe7379348bfb09af9ed292af12ed32398b15fb443e81692047b786d1eeb6d898a51eb17ed7d90 - languageName: node - linkType: hard - -"path@npm:~0.12.7": - version: 0.12.7 - resolution: "path@npm:0.12.7" - dependencies: - process: ^0.11.1 - util: ^0.10.3 - checksum: 5dedb71e78fc008fcba797defc0b4e1cf06c1f18e0a631e03ba5bb505136f587ff017afc14f9a3d481cbe77aeedff7dc0c1d2ce4d820c1ebf3c4281ca49423a1 - languageName: node - linkType: hard - -"picocolors@npm:^1.0.0": - version: 1.0.0 - resolution: "picocolors@npm:1.0.0" - checksum: a2e8092dd86c8396bdba9f2b5481032848525b3dc295ce9b57896f931e63fc16f79805144321f72976383fc249584672a75cc18d6777c6b757603f372f745981 - languageName: node - linkType: hard - -"playwright-core@npm:1.42.1": - version: 1.42.1 - resolution: "playwright-core@npm:1.42.1" - bin: - playwright-core: cli.js - checksum: e7081ff0f43b4b9053255109eb1d82164b7c6b55c7d022e25fca935d0f4fc547cb2e02a7b64f0c2a9462729be7bb45edb082f8b038306415944f1061d00d9c90 - languageName: node - linkType: hard - -"playwright@npm:1.42.1": - version: 1.42.1 - resolution: "playwright@npm:1.42.1" - dependencies: - fsevents: 2.3.2 - playwright-core: 1.42.1 - dependenciesMeta: - fsevents: - optional: true - bin: - playwright: cli.js - checksum: 06c16bcd07d03993126ee6c168bde28c59d3cab7f7d4721eaf57bd5c51e9c929e10a286758de062b5fc02874413ceae2684d14cbb7865c0a51fc8df6d9001ad1 - languageName: node - linkType: hard - -"postcss@npm:^8.3.11": - version: 8.4.38 - resolution: "postcss@npm:8.4.38" - dependencies: - nanoid: ^3.3.7 - picocolors: ^1.0.0 - source-map-js: ^1.2.0 - checksum: 649f9e60a763ca4b5a7bbec446a069edf07f057f6d780a5a0070576b841538d1ecf7dd888f2fbfd1f76200e26c969e405aeeae66332e6927dbdc8bdcb90b9451 - languageName: node - linkType: hard - -"proc-log@npm:^3.0.0": - version: 3.0.0 - resolution: "proc-log@npm:3.0.0" - checksum: 02b64e1b3919e63df06f836b98d3af002b5cd92655cab18b5746e37374bfb73e03b84fe305454614b34c25b485cc687a9eebdccf0242cda8fda2475dd2c97e02 - languageName: node - linkType: hard - -"process-nextick-args@npm:~2.0.0": - version: 2.0.1 - resolution: "process-nextick-args@npm:2.0.1" - checksum: 1d38588e520dab7cea67cbbe2efdd86a10cc7a074c09657635e34f035277b59fbb57d09d8638346bf7090f8e8ebc070c96fa5fd183b777fff4f5edff5e9466cf - languageName: node - linkType: hard - -"process@npm:^0.11.1": - version: 0.11.10 - resolution: "process@npm:0.11.10" - checksum: bfcce49814f7d172a6e6a14d5fa3ac92cc3d0c3b9feb1279774708a719e19acd673995226351a082a9ae99978254e320ccda4240ddc474ba31a76c79491ca7c3 - languageName: node - linkType: hard - -"promise-retry@npm:^2.0.1": - version: 2.0.1 - resolution: "promise-retry@npm:2.0.1" - dependencies: - err-code: ^2.0.2 - retry: ^0.12.0 - checksum: f96a3f6d90b92b568a26f71e966cbbc0f63ab85ea6ff6c81284dc869b41510e6cdef99b6b65f9030f0db422bf7c96652a3fff9f2e8fb4a0f069d8f4430359429 - languageName: node - linkType: hard - -"prop-types@npm:^15.8.1": - version: 15.8.1 - resolution: "prop-types@npm:15.8.1" - dependencies: - loose-envify: ^1.4.0 - object-assign: ^4.1.1 - react-is: ^16.13.1 - checksum: c056d3f1c057cb7ff8344c645450e14f088a915d078dcda795041765047fa080d38e5d626560ccaac94a4e16e3aa15f3557c1a9a8d1174530955e992c675e459 - languageName: node - linkType: hard - -"punycode@npm:^2.1.0": - version: 2.3.1 - resolution: "punycode@npm:2.3.1" - checksum: bb0a0ceedca4c3c57a9b981b90601579058903c62be23c5e8e843d2c2d4148a3ecf029d5133486fb0e1822b098ba8bba09e89d6b21742d02fa26bda6441a6fb2 - languageName: node - linkType: hard - -"querystringify@npm:^2.1.1": - version: 2.2.0 - resolution: "querystringify@npm:2.2.0" - checksum: 5641ea231bad7ef6d64d9998faca95611ed4b11c2591a8cae741e178a974f6a8e0ebde008475259abe1621cb15e692404e6b6626e927f7b849d5c09392604b15 - languageName: node - linkType: hard - -"react-dom@npm:^18.2.0": - version: 18.2.0 - resolution: "react-dom@npm:18.2.0" - dependencies: - loose-envify: ^1.1.0 - scheduler: ^0.23.0 - peerDependencies: - react: ^18.2.0 - checksum: 7d323310bea3a91be2965f9468d552f201b1c27891e45ddc2d6b8f717680c95a75ae0bc1e3f5cf41472446a2589a75aed4483aee8169287909fcd59ad149e8cc - languageName: node - linkType: hard - -"react-is@npm:^16.13.1": - version: 16.13.1 - resolution: "react-is@npm:16.13.1" - checksum: f7a19ac3496de32ca9ae12aa030f00f14a3d45374f1ceca0af707c831b2a6098ef0d6bdae51bd437b0a306d7f01d4677fcc8de7c0d331eb47ad0f46130e53c5f - languageName: node - linkType: hard - -"react-is@npm:^18.2.0": - version: 18.2.0 - resolution: "react-is@npm:18.2.0" - checksum: e72d0ba81b5922759e4aff17e0252bd29988f9642ed817f56b25a3e217e13eea8a7f2322af99a06edb779da12d5d636e9fda473d620df9a3da0df2a74141d53e - languageName: node - linkType: hard - -"react@npm:>=17.0.0 <19.0.0, react@npm:^18.2.0": - version: 18.2.0 - resolution: "react@npm:18.2.0" - dependencies: - loose-envify: ^1.1.0 - checksum: 88e38092da8839b830cda6feef2e8505dec8ace60579e46aa5490fc3dc9bba0bd50336507dc166f43e3afc1c42939c09fe33b25fae889d6f402721dcd78fca1b - languageName: node - linkType: hard - -"readable-stream@npm:^2.1.4": - version: 2.3.8 - resolution: "readable-stream@npm:2.3.8" - dependencies: - core-util-is: ~1.0.0 - inherits: ~2.0.3 - isarray: ~1.0.0 - process-nextick-args: ~2.0.0 - safe-buffer: ~5.1.1 - string_decoder: ~1.1.1 - util-deprecate: ~1.0.1 - checksum: 65645467038704f0c8aaf026a72fbb588a9e2ef7a75cd57a01702ee9db1c4a1e4b03aaad36861a6a0926546a74d174149c8c207527963e0c2d3eee2f37678a42 - languageName: node - linkType: hard - -"regexp-match-indices@npm:^1.0.2": - version: 1.0.2 - resolution: "regexp-match-indices@npm:1.0.2" - dependencies: - regexp-tree: ^0.1.11 - checksum: 8cc779f6cf8f404ead828d09970a7d4bd66bd78d43ab9eb2b5e65f2ef2ba1ed53536f5b5fa839fb90b350365fb44b6a851c7f16289afc3f37789c113ab2a7916 - languageName: node - linkType: hard - -"regexp-tree@npm:^0.1.11": - version: 0.1.27 - resolution: "regexp-tree@npm:0.1.27" - bin: - regexp-tree: bin/regexp-tree - checksum: 129aebb34dae22d6694ab2ac328be3f99105143737528ab072ef624d599afecbcfae1f5c96a166fa9e5f64fa1ecf30b411c4691e7924c3e11bbaf1712c260c54 - languageName: node - linkType: hard - -"require-directory@npm:^2.1.1": - version: 2.1.1 - resolution: "require-directory@npm:2.1.1" - checksum: fb47e70bf0001fdeabdc0429d431863e9475e7e43ea5f94ad86503d918423c1543361cc5166d713eaa7029dd7a3d34775af04764bebff99ef413111a5af18c80 - languageName: node - linkType: hard - -"require-from-string@npm:^2.0.2": - version: 2.0.2 - resolution: "require-from-string@npm:2.0.2" - checksum: a03ef6895445f33a4015300c426699bc66b2b044ba7b670aa238610381b56d3f07c686251740d575e22f4c87531ba662d06937508f0f3c0f1ddc04db3130560b - languageName: node - linkType: hard - -"requires-port@npm:^1.0.0": - version: 1.0.0 - resolution: "requires-port@npm:1.0.0" - checksum: eee0e303adffb69be55d1a214e415cf42b7441ae858c76dfc5353148644f6fd6e698926fc4643f510d5c126d12a705e7c8ed7e38061113bdf37547ab356797ff - languageName: node - linkType: hard - -"retry@npm:^0.12.0": - version: 0.12.0 - resolution: "retry@npm:0.12.0" - checksum: 623bd7d2e5119467ba66202d733ec3c2e2e26568074923bc0585b6b99db14f357e79bdedb63cab56cec47491c4a0da7e6021a7465ca6dc4f481d3898fdd3158c - languageName: node - linkType: hard - -"robust-predicates@npm:^3.0.2": - version: 3.0.2 - resolution: "robust-predicates@npm:3.0.2" - checksum: 36854c1321548ceca96d36ad9d6e0a5a512986029ec6929ad6ed3ec1612c22cc8b46cc72d2c5674af42e8074a119d793f6f0ea3a5b51373e3ab926c64b172d7a - languageName: node - linkType: hard - -"rw@npm:1": - version: 1.3.3 - resolution: "rw@npm:1.3.3" - checksum: c20d82421f5a71c86a13f76121b751553a99cd4a70ea27db86f9b23f33db941f3f06019c30f60d50c356d0bd674c8e74764ac146ea55e217c091bde6fba82aa3 - languageName: node - linkType: hard - -"safe-buffer@npm:~5.1.0, safe-buffer@npm:~5.1.1": - version: 5.1.2 - resolution: "safe-buffer@npm:5.1.2" - checksum: f2f1f7943ca44a594893a852894055cf619c1fbcb611237fc39e461ae751187e7baf4dc391a72125e0ac4fb2d8c5c0b3c71529622e6a58f46b960211e704903c - languageName: node - linkType: hard - -"safer-buffer@npm:>= 2.1.2 < 3.0.0": - version: 2.1.2 - resolution: "safer-buffer@npm:2.1.2" - checksum: cab8f25ae6f1434abee8d80023d7e72b598cf1327164ddab31003c51215526801e40b66c5e65d658a0af1e9d6478cadcb4c745f4bd6751f97d8644786c0978b0 - languageName: node - linkType: hard - -"sanitize-html@npm:~2.7.3": - version: 2.7.3 - resolution: "sanitize-html@npm:2.7.3" - dependencies: - deepmerge: ^4.2.2 - escape-string-regexp: ^4.0.0 - htmlparser2: ^6.0.0 - is-plain-object: ^5.0.0 - parse-srcset: ^1.0.2 - postcss: ^8.3.11 - checksum: 2399d1fdbbc3a263fb413c1fe1971b3dc2b51abc6cc5cb49490624539d1c57a8fe31e2b21408c118e2a957f4e673e3169b1f9a5807654408f17b130a9d78aed7 - languageName: node - linkType: hard - -"scheduler@npm:^0.23.0": - version: 0.23.0 - resolution: "scheduler@npm:0.23.0" - dependencies: - loose-envify: ^1.1.0 - checksum: d79192eeaa12abef860c195ea45d37cbf2bbf5f66e3c4dcd16f54a7da53b17788a70d109ee3d3dde1a0fd50e6a8fc171f4300356c5aee4fc0171de526bf35f8a - languageName: node - linkType: hard - -"semver@npm:^7.3.5": - version: 7.6.0 - resolution: "semver@npm:7.6.0" - dependencies: - lru-cache: ^6.0.0 - bin: - semver: bin/semver.js - checksum: 7427f05b70786c696640edc29fdd4bc33b2acf3bbe1740b955029044f80575fc664e1a512e4113c3af21e767154a94b4aa214bf6cd6e42a1f6dba5914e0b208c - languageName: node - linkType: hard - -"shebang-command@npm:^2.0.0": - version: 2.0.0 - resolution: "shebang-command@npm:2.0.0" - dependencies: - shebang-regex: ^3.0.0 - checksum: 6b52fe87271c12968f6a054e60f6bde5f0f3d2db483a1e5c3e12d657c488a15474121a1d55cd958f6df026a54374ec38a4a963988c213b7570e1d51575cea7fa - languageName: node - linkType: hard - -"shebang-regex@npm:^3.0.0": - version: 3.0.0 - resolution: "shebang-regex@npm:3.0.0" - checksum: 1a2bcae50de99034fcd92ad4212d8e01eedf52c7ec7830eedcf886622804fe36884278f2be8be0ea5fde3fd1c23911643a4e0f726c8685b61871c8908af01222 - languageName: node - linkType: hard - -"signal-exit@npm:^4.0.1": - version: 4.1.0 - resolution: "signal-exit@npm:4.1.0" - checksum: 64c757b498cb8629ffa5f75485340594d2f8189e9b08700e69199069c8e3070fb3e255f7ab873c05dc0b3cec412aea7402e10a5990cb6a050bd33ba062a6c549 - languageName: node - linkType: hard - -"smart-buffer@npm:^4.2.0": - version: 4.2.0 - resolution: "smart-buffer@npm:4.2.0" - checksum: b5167a7142c1da704c0e3af85c402002b597081dd9575031a90b4f229ca5678e9a36e8a374f1814c8156a725d17008ae3bde63b92f9cfd132526379e580bec8b - languageName: node - linkType: hard - -"socks-proxy-agent@npm:^8.0.1": - version: 8.0.2 - resolution: "socks-proxy-agent@npm:8.0.2" - dependencies: - agent-base: ^7.0.2 - debug: ^4.3.4 - socks: ^2.7.1 - checksum: 4fb165df08f1f380881dcd887b3cdfdc1aba3797c76c1e9f51d29048be6e494c5b06d68e7aea2e23df4572428f27a3ec22b3d7c75c570c5346507433899a4b6d - languageName: node - linkType: hard - -"socks@npm:^2.7.1": - version: 2.8.1 - resolution: "socks@npm:2.8.1" - dependencies: - ip-address: ^9.0.5 - smart-buffer: ^4.2.0 - checksum: 29586d42e9c36c5016632b2bcb6595e3adfbcb694b3a652c51bc8741b079c5ec37bdd5675a1a89a1620078c8137208294991fabb50786f92d47759a725b2b62e - languageName: node - linkType: hard - -"source-map-js@npm:^1.2.0": - version: 1.2.0 - resolution: "source-map-js@npm:1.2.0" - checksum: 791a43306d9223792e84293b00458bf102a8946e7188f3db0e4e22d8d530b5f80a4ce468eb5ec0bf585443ad55ebbd630bf379c98db0b1f317fd902500217f97 - languageName: node - linkType: hard - -"sprintf-js@npm:^1.1.3": - version: 1.1.3 - resolution: "sprintf-js@npm:1.1.3" - checksum: a3fdac7b49643875b70864a9d9b469d87a40dfeaf5d34d9d0c5b1cda5fd7d065531fcb43c76357d62254c57184a7b151954156563a4d6a747015cfb41021cad0 - languageName: node - linkType: hard - -"ssri@npm:^10.0.0": - version: 10.0.5 - resolution: "ssri@npm:10.0.5" - dependencies: - minipass: ^7.0.3 - checksum: 0a31b65f21872dea1ed3f7c200d7bc1c1b91c15e419deca14f282508ba917cbb342c08a6814c7f68ca4ca4116dd1a85da2bbf39227480e50125a1ceffeecb750 - languageName: node - linkType: hard - -"string-width-cjs@npm:string-width@^4.2.0, string-width@npm:^4.1.0, string-width@npm:^4.2.0, string-width@npm:^4.2.3": - version: 4.2.3 - resolution: "string-width@npm:4.2.3" - dependencies: - emoji-regex: ^8.0.0 - is-fullwidth-code-point: ^3.0.0 - strip-ansi: ^6.0.1 - checksum: e52c10dc3fbfcd6c3a15f159f54a90024241d0f149cf8aed2982a2d801d2e64df0bf1dc351cf8e95c3319323f9f220c16e740b06faecd53e2462df1d2b5443fb - languageName: node - linkType: hard - -"string-width@npm:^5.0.1, string-width@npm:^5.1.2": - version: 5.1.2 - resolution: "string-width@npm:5.1.2" - dependencies: - eastasianwidth: ^0.2.0 - emoji-regex: ^9.2.2 - strip-ansi: ^7.0.1 - checksum: 7369deaa29f21dda9a438686154b62c2c5f661f8dda60449088f9f980196f7908fc39fdd1803e3e01541970287cf5deae336798337e9319a7055af89dafa7193 - languageName: node - linkType: hard - -"string_decoder@npm:~1.1.1": - version: 1.1.1 - resolution: "string_decoder@npm:1.1.1" - dependencies: - safe-buffer: ~5.1.0 - checksum: 9ab7e56f9d60a28f2be697419917c50cac19f3e8e6c28ef26ed5f4852289fe0de5d6997d29becf59028556f2c62983790c1d9ba1e2a3cc401768ca12d5183a5b - languageName: node - linkType: hard - -"strip-ansi-cjs@npm:strip-ansi@^6.0.1, strip-ansi@npm:^6.0.0, strip-ansi@npm:^6.0.1": - version: 6.0.1 - resolution: "strip-ansi@npm:6.0.1" - dependencies: - ansi-regex: ^5.0.1 - checksum: f3cd25890aef3ba6e1a74e20896c21a46f482e93df4a06567cebf2b57edabb15133f1f94e57434e0a958d61186087b1008e89c94875d019910a213181a14fc8c - languageName: node - linkType: hard - -"strip-ansi@npm:^7.0.1": - version: 7.1.0 - resolution: "strip-ansi@npm:7.1.0" - dependencies: - ansi-regex: ^6.0.1 - checksum: 859c73fcf27869c22a4e4d8c6acfe690064659e84bef9458aa6d13719d09ca88dcfd40cbf31fd0be63518ea1a643fe070b4827d353e09533a5b0b9fd4553d64d - languageName: node - linkType: hard - -"style-mod@npm:^4.0.0, style-mod@npm:^4.1.0": - version: 4.1.2 - resolution: "style-mod@npm:4.1.2" - checksum: 7c5c3e82747f9bcf5f288d8d07f50848e4630fe5ff7bfe4d94cc87d6b6a2588227cbf21b4c792ac6406e5852293300a75e710714479a5c59a06af677f0825ef8 - languageName: node - linkType: hard - -"systeminformation@npm:^5.8.6": - version: 5.22.6 - resolution: "systeminformation@npm:5.22.6" - bin: - systeminformation: lib/cli.js - checksum: 17f946c4b6ad7e01b5ca296133ffce53716c96778458f0052272744b99ebd412785e4300400138e0fa3f80c376e6e6b7af8fde8cea01994a1755bbfcdeefd865 - conditions: (os=darwin | os=linux | os=win32 | os=freebsd | os=openbsd | os=netbsd | os=sunos | os=android) - languageName: node - linkType: hard - -"tabbable@npm:^5.2.0": - version: 5.3.3 - resolution: "tabbable@npm:5.3.3" - checksum: 1aa56e1bb617cc10616c407f4e756f0607f3e2d30f9803664d70b85db037ca27e75918ed1c71443f3dc902e21dc9f991ce4b52d63a538c9b69b3218d3babcd70 - languageName: node - linkType: hard - -"tar@npm:^6.1.11, tar@npm:^6.1.2": - version: 6.2.1 - resolution: "tar@npm:6.2.1" - dependencies: - chownr: ^2.0.0 - fs-minipass: ^2.0.0 - minipass: ^5.0.0 - minizlib: ^2.1.1 - mkdirp: ^1.0.3 - yallist: ^4.0.0 - checksum: f1322768c9741a25356c11373bce918483f40fa9a25c69c59410c8a1247632487edef5fe76c5f12ac51a6356d2f1829e96d2bc34098668a2fc34d76050ac2b6c - languageName: node - linkType: hard - -"topojson-client@npm:^3.1.0": - version: 3.1.0 - resolution: "topojson-client@npm:3.1.0" - dependencies: - commander: 2 - bin: - topo2geo: bin/topo2geo - topomerge: bin/topomerge - topoquantize: bin/topoquantize - checksum: 8c029a4f18324ace0b8b55dd90edbd40c9e3c6de18bafbb5da37ca20ebf20e26fbd4420891acb3c2c264e214185f7557871f5651a9eee517028663be98d836de - languageName: node - linkType: hard - -"tr46@npm:~0.0.3": - version: 0.0.3 - resolution: "tr46@npm:0.0.3" - checksum: 726321c5eaf41b5002e17ffbd1fb7245999a073e8979085dacd47c4b4e8068ff5777142fc6726d6ca1fd2ff16921b48788b87225cbc57c72636f6efa8efbffe3 - languageName: node - linkType: hard - -"tslib@npm:^1.13.0": - version: 1.14.1 - resolution: "tslib@npm:1.14.1" - checksum: dbe628ef87f66691d5d2959b3e41b9ca0045c3ee3c7c7b906cc1e328b39f199bb1ad9e671c39025bd56122ac57dfbf7385a94843b1cc07c60a4db74795829acd - languageName: node - linkType: hard - -"tslib@npm:~2.6.2": - version: 2.6.2 - resolution: "tslib@npm:2.6.2" - checksum: 329ea56123005922f39642318e3d1f0f8265d1e7fcb92c633e0809521da75eeaca28d2cf96d7248229deb40e5c19adf408259f4b9640afd20d13aecc1430f3ad - languageName: node - linkType: hard - -"typestyle@npm:^2.0.4": - version: 2.4.0 - resolution: "typestyle@npm:2.4.0" - dependencies: - csstype: 3.0.10 - free-style: 3.1.0 - checksum: 8b4f02c24f67b594f98507b15a753dabd4db5eb0af007e1d310527c64030e11e9464b25b5a6bc65fb5eec9a4459a8336050121ecc29063ac87b8b47a6d698893 - languageName: node - linkType: hard - -"undici-types@npm:~5.26.4": - version: 5.26.5 - resolution: "undici-types@npm:5.26.5" - checksum: 3192ef6f3fd5df652f2dc1cd782b49d6ff14dc98e5dced492aa8a8c65425227da5da6aafe22523c67f035a272c599bb89cfe803c1db6311e44bed3042fc25487 - languageName: node - linkType: hard - -"unique-filename@npm:^3.0.0": - version: 3.0.0 - resolution: "unique-filename@npm:3.0.0" - dependencies: - unique-slug: ^4.0.0 - checksum: 8e2f59b356cb2e54aab14ff98a51ac6c45781d15ceaab6d4f1c2228b780193dc70fae4463ce9e1df4479cb9d3304d7c2043a3fb905bdeca71cc7e8ce27e063df - languageName: node - linkType: hard - -"unique-slug@npm:^4.0.0": - version: 4.0.0 - resolution: "unique-slug@npm:4.0.0" - dependencies: - imurmurhash: ^0.1.4 - checksum: 0884b58365af59f89739e6f71e3feacb5b1b41f2df2d842d0757933620e6de08eff347d27e9d499b43c40476cbaf7988638d3acb2ffbcb9d35fd035591adfd15 - languageName: node - linkType: hard - -"universalify@npm:^2.0.0": - version: 2.0.1 - resolution: "universalify@npm:2.0.1" - checksum: ecd8469fe0db28e7de9e5289d32bd1b6ba8f7183db34f3bfc4ca53c49891c2d6aa05f3fb3936a81285a905cc509fb641a0c3fc131ec786167eff41236ae32e60 - languageName: node - linkType: hard - -"uri-js@npm:^4.2.2": - version: 4.4.1 - resolution: "uri-js@npm:4.4.1" - dependencies: - punycode: ^2.1.0 - checksum: 7167432de6817fe8e9e0c9684f1d2de2bb688c94388f7569f7dbdb1587c9f4ca2a77962f134ec90be0cc4d004c939ff0d05acc9f34a0db39a3c797dada262633 - languageName: node - linkType: hard - -"url-parse@npm:~1.5.4": - version: 1.5.10 - resolution: "url-parse@npm:1.5.10" - dependencies: - querystringify: ^2.1.1 - requires-port: ^1.0.0 - checksum: fbdba6b1d83336aca2216bbdc38ba658d9cfb8fc7f665eb8b17852de638ff7d1a162c198a8e4ed66001ddbf6c9888d41e4798912c62b4fd777a31657989f7bdf - languageName: node - linkType: hard - -"util-deprecate@npm:~1.0.1": - version: 1.0.2 - resolution: "util-deprecate@npm:1.0.2" - checksum: 474acf1146cb2701fe3b074892217553dfcf9a031280919ba1b8d651a068c9b15d863b7303cb15bd00a862b498e6cf4ad7b4a08fb134edd5a6f7641681cb54a2 - languageName: node - linkType: hard - -"util@npm:^0.10.3": - version: 0.10.4 - resolution: "util@npm:0.10.4" - dependencies: - inherits: 2.0.3 - checksum: 913f9a90d05a60e91f91af01b8bd37e06bca4cc02d7b49e01089f9d5b78be2fffd61fb1a41b517de7238c5fc7337fa939c62d1fb4eb82e014894c7bee6637aaf - languageName: node - linkType: hard - -"validate.io-array@npm:^1.0.3": - version: 1.0.6 - resolution: "validate.io-array@npm:1.0.6" - checksum: 54eca83ebc702e3e46499f9d9e77287a95ae25c4e727cd2fafee29c7333b3a36cca0c5d8f090b9406262786de80750fba85e7e7ef41e20bf8cc67d5570de449b - languageName: node - linkType: hard - -"validate.io-function@npm:^1.0.2": - version: 1.0.2 - resolution: "validate.io-function@npm:1.0.2" - checksum: e4cce2479a20cb7c42e8630c777fb107059c27bc32925f769e3a73ca5fd62b4892d897b3c80227e14d5fcd1c5b7d05544e0579d63e59f14034c0052cda7f7c44 - languageName: node - linkType: hard - -"validate.io-integer-array@npm:^1.0.0": - version: 1.0.0 - resolution: "validate.io-integer-array@npm:1.0.0" - dependencies: - validate.io-array: ^1.0.3 - validate.io-integer: ^1.0.4 - checksum: 5f6d7fab8df7d2bf546a05e830201768464605539c75a2c2417b632b4411a00df84b462f81eac75e1be95303e7e0ac92f244c137424739f4e15cd21c2eb52c7f - languageName: node - linkType: hard - -"validate.io-integer@npm:^1.0.4": - version: 1.0.5 - resolution: "validate.io-integer@npm:1.0.5" - dependencies: - validate.io-number: ^1.0.3 - checksum: 88b3f8bb5a5277a95305d64abbfc437079220ce4f57a148cc6113e7ccec03dd86b10a69d413982602aa90a62b8d516148a78716f550dcd3aff863ac1c2a7a5e6 - languageName: node - linkType: hard - -"validate.io-number@npm:^1.0.3": - version: 1.0.3 - resolution: "validate.io-number@npm:1.0.3" - checksum: 42418aeb6c969efa745475154fe576809b02eccd0961aad0421b090d6e7a12d23a3e28b0d5dddd2c6347c1a6bdccb82bba5048c716131cd20207244d50e07282 - languageName: node - linkType: hard - -"vega-canvas@npm:^1.2.6, vega-canvas@npm:^1.2.7": - version: 1.2.7 - resolution: "vega-canvas@npm:1.2.7" - checksum: 6ff92fcdf0c359f2f662909c859a7f4cb4a502436136ab2f4c02373c47a621996ec0eea23e2108f11d62a618be301de86cd8528b5058c2e207a53ddd7ff58d1b - languageName: node - linkType: hard - -"vega-crossfilter@npm:~4.1.1": - version: 4.1.1 - resolution: "vega-crossfilter@npm:4.1.1" - dependencies: - d3-array: ^3.2.2 - vega-dataflow: ^5.7.5 - vega-util: ^1.17.1 - checksum: e399f7e92d7ba273ad5c1a9e29d362a9ec7feaeacb976eff3aa205b318382fb37a9fac3150ec1cb806364cd2b2cb54d5f23aea3285db684df2b4c27836422464 - languageName: node - linkType: hard - -"vega-dataflow@npm:^5.7.3, vega-dataflow@npm:^5.7.5, vega-dataflow@npm:~5.7.5": - version: 5.7.5 - resolution: "vega-dataflow@npm:5.7.5" - dependencies: - vega-format: ^1.1.1 - vega-loader: ^4.5.1 - vega-util: ^1.17.1 - checksum: 917ed63e88b0871169a883f68da127a404d88e50c9ed6fa3f063a706016b064594fb804a2bf99f09bc4a899819cac320bdde12467edc861af1acc024552dd202 - languageName: node - linkType: hard - -"vega-encode@npm:~4.9.2": - version: 4.9.2 - resolution: "vega-encode@npm:4.9.2" - dependencies: - d3-array: ^3.2.2 - d3-interpolate: ^3.0.1 - vega-dataflow: ^5.7.5 - vega-scale: ^7.3.0 - vega-util: ^1.17.1 - checksum: fcba123d2efb865b4f6cf8e9d64e0752ebae163dcfe61013f4874f7fe6fce3003ea9dd83b89db3ffab2a1530532a7c902dd24dfec226eb53d08dcf69189f308d - languageName: node - linkType: hard - -"vega-event-selector@npm:^3.0.1, vega-event-selector@npm:~3.0.1": - version: 3.0.1 - resolution: "vega-event-selector@npm:3.0.1" - checksum: 66d09b5800a19a9b0c75f28811b140a1a2e70e84be6d6f87c568cdbce6e17c8e195f130f4e3de5d6dc737142d1f46f4fe7645177e154582cc8ba27c6845b54e8 - languageName: node - linkType: hard - -"vega-expression@npm:^5.0.1, vega-expression@npm:^5.1.0, vega-expression@npm:~5.1.0": - version: 5.1.0 - resolution: "vega-expression@npm:5.1.0" - dependencies: - "@types/estree": ^1.0.0 - vega-util: ^1.17.1 - checksum: 0355ebb6edd8f2ccc2dcf277a29b42b13f971725443212ce8a64cb8a02049f75f0add7ca9afcd3bc6744b93be791b526e7f983d9080d5052e9b0ca55bd488ae5 - languageName: node - linkType: hard - -"vega-force@npm:~4.2.0": - version: 4.2.0 - resolution: "vega-force@npm:4.2.0" - dependencies: - d3-force: ^3.0.0 - vega-dataflow: ^5.7.5 - vega-util: ^1.17.1 - checksum: 8a371ca8d0892bc3e932cc279bbf54fe8b88e2b384c42f8df9877c801191953f3ee3e2f516f675a69ecb052ed081232dfb3438989620e8ad5c2a316ccee60277 - languageName: node - linkType: hard - -"vega-format@npm:^1.1.1, vega-format@npm:~1.1.1": - version: 1.1.1 - resolution: "vega-format@npm:1.1.1" - dependencies: - d3-array: ^3.2.2 - d3-format: ^3.1.0 - d3-time-format: ^4.1.0 - vega-time: ^2.1.1 - vega-util: ^1.17.1 - checksum: d506acb8611a6340ff419ebf308a758a54aaf3cf141863553df83980dcf8dc7bf806bee257d11a52d43682d159d7be03ab8a92bdd4d018d8c9f39a70c45cb197 - languageName: node - linkType: hard - -"vega-functions@npm:^5.13.1, vega-functions@npm:^5.14.0, vega-functions@npm:~5.14.0": - version: 5.14.0 - resolution: "vega-functions@npm:5.14.0" - dependencies: - d3-array: ^3.2.2 - d3-color: ^3.1.0 - d3-geo: ^3.1.0 - vega-dataflow: ^5.7.5 - vega-expression: ^5.1.0 - vega-scale: ^7.3.0 - vega-scenegraph: ^4.10.2 - vega-selections: ^5.4.2 - vega-statistics: ^1.8.1 - vega-time: ^2.1.1 - vega-util: ^1.17.1 - checksum: 24857fade62d122ce95ddae87637ade069cac36018e53814cf0ef52055af574641e221199e9baaa8a648cba4fd607c469de7a5e5a0d630e2a676018bfa894673 - languageName: node - linkType: hard - -"vega-geo@npm:~4.4.1": - version: 4.4.1 - resolution: "vega-geo@npm:4.4.1" - dependencies: - d3-array: ^3.2.2 - d3-color: ^3.1.0 - d3-geo: ^3.1.0 - vega-canvas: ^1.2.7 - vega-dataflow: ^5.7.5 - vega-projection: ^1.6.0 - vega-statistics: ^1.8.1 - vega-util: ^1.17.1 - checksum: e9c62d9134c2449a1a80cd5cb71ed6dc455d893a36fdcb1a696bcae3897670c32687cf14a0f366b0ec76905e5be406131dc671e5d607ffcbef74e94b8c697007 - languageName: node - linkType: hard - -"vega-hierarchy@npm:~4.1.1": - version: 4.1.1 - resolution: "vega-hierarchy@npm:4.1.1" - dependencies: - d3-hierarchy: ^3.1.2 - vega-dataflow: ^5.7.5 - vega-util: ^1.17.1 - checksum: beb23948922f1b52bf03b836d71d3a5a36db3a6bfe2af74b6a5fc45a2e2e877226313e2389772be62a459728467618175d8c02a07e88330844fdec45fd5f69ac - languageName: node - linkType: hard - -"vega-label@npm:~1.2.1": - version: 1.2.1 - resolution: "vega-label@npm:1.2.1" - dependencies: - vega-canvas: ^1.2.6 - vega-dataflow: ^5.7.3 - vega-scenegraph: ^4.9.2 - vega-util: ^1.15.2 - checksum: 2704c99328ead677441e746acd8f4529301437d08b2758933fc13353d2eab9af353e4ebcc4ff1f09f41d600401b097e2df3c9e8e56d4861e5216222dd9e29185 - languageName: node - linkType: hard - -"vega-lite@npm:^5.6.1": - version: 5.17.0 - resolution: "vega-lite@npm:5.17.0" - dependencies: - json-stringify-pretty-compact: ~3.0.0 - tslib: ~2.6.2 - vega-event-selector: ~3.0.1 - vega-expression: ~5.1.0 - vega-util: ~1.17.2 - yargs: ~17.7.2 - peerDependencies: - vega: ^5.24.0 - bin: - vl2pdf: bin/vl2pdf - vl2png: bin/vl2png - vl2svg: bin/vl2svg - vl2vg: bin/vl2vg - checksum: 0c508f6060bd20df740be1c81ac0691623c813066424b021f0845422b7cc21fe9211346e8ce84d75288fa53fe3caecfde5c681e3fb590d2b7b372e38879fa2b7 - languageName: node - linkType: hard - -"vega-loader@npm:^4.5.1, vega-loader@npm:~4.5.1": - version: 4.5.1 - resolution: "vega-loader@npm:4.5.1" - dependencies: - d3-dsv: ^3.0.1 - node-fetch: ^2.6.7 - topojson-client: ^3.1.0 - vega-format: ^1.1.1 - vega-util: ^1.17.1 - checksum: 95f6eebc75a97665cf34faaea431934047e1b2e9d7532f48f62dab4884d606a7d9da53962e1631a5790a7a867f720581852a3db9be1a7f667882062f6c102ee0 - languageName: node - linkType: hard - -"vega-parser@npm:~6.3.0": - version: 6.3.0 - resolution: "vega-parser@npm:6.3.0" - dependencies: - vega-dataflow: ^5.7.5 - vega-event-selector: ^3.0.1 - vega-functions: ^5.14.0 - vega-scale: ^7.3.1 - vega-util: ^1.17.2 - checksum: 5af7604116bd2ebe75179f9e8e7282e43c8128844fde9ad0e53b6b1f9aa78e74be6709a2ae44cfe6de12d64d1a52d15287932b5625ac864cb75a23b89436f6ed - languageName: node - linkType: hard - -"vega-projection@npm:^1.6.0, vega-projection@npm:~1.6.0": - version: 1.6.0 - resolution: "vega-projection@npm:1.6.0" - dependencies: - d3-geo: ^3.1.0 - d3-geo-projection: ^4.0.0 - vega-scale: ^7.3.0 - checksum: 9c52848e294ff68051fe9f44fa536656c4e6be3d474bd3359e21aa154ab282755eaee624ac31b1ca01816227900e1d81a6d191e36f46e47525ed6648397f0fa0 - languageName: node - linkType: hard - -"vega-regression@npm:~1.2.0": - version: 1.2.0 - resolution: "vega-regression@npm:1.2.0" - dependencies: - d3-array: ^3.2.2 - vega-dataflow: ^5.7.3 - vega-statistics: ^1.9.0 - vega-util: ^1.15.2 - checksum: 5f79db18c7849b465550e00ca8fec9d896aa3cf6d6279daac8b862beb632d841dcb6a93136d6b827c37e3d1cbd2bb2f7dec58f96c572763870c2d38f2cc4e0b3 - languageName: node - linkType: hard - -"vega-runtime@npm:^6.1.4, vega-runtime@npm:~6.1.4": - version: 6.1.4 - resolution: "vega-runtime@npm:6.1.4" - dependencies: - vega-dataflow: ^5.7.5 - vega-util: ^1.17.1 - checksum: a1da40ddb3109f1ced8e61d2e7b52784fbb29936ee4c47cb5630dbbeb12ef6e0c3cd3cd189c34377f82402bf19c61dd148d90330fec743b8667635ac48e4ba29 - languageName: node - linkType: hard - -"vega-scale@npm:^7.3.0, vega-scale@npm:^7.3.1, vega-scale@npm:~7.3.1": - version: 7.3.1 - resolution: "vega-scale@npm:7.3.1" - dependencies: - d3-array: ^3.2.2 - d3-interpolate: ^3.0.1 - d3-scale: ^4.0.2 - vega-time: ^2.1.1 - vega-util: ^1.17.1 - checksum: c1f6a97b26bbf7b4d1d907e8851d8ac6b58200aa331a1b6c0f67f11aa1ce0ced6d121ac4b2036dbca5779429f41eae4013fe7dd55e09802feda8666b5a0a7ece - languageName: node - linkType: hard - -"vega-scenegraph@npm:^4.10.2, vega-scenegraph@npm:^4.9.2, vega-scenegraph@npm:~4.11.2": - version: 4.11.2 - resolution: "vega-scenegraph@npm:4.11.2" - dependencies: - d3-path: ^3.1.0 - d3-shape: ^3.2.0 - vega-canvas: ^1.2.7 - vega-loader: ^4.5.1 - vega-scale: ^7.3.0 - vega-util: ^1.17.1 - checksum: fefe12c1b0393184abf0cfcae6bfcff7894a1782fe545c6c048275674359e8ec2525280aba1ddbfe6f77e710e45480fdcd9293f849a2409cde87695b04065c5b - languageName: node - linkType: hard - -"vega-selections@npm:^5.4.2": - version: 5.4.2 - resolution: "vega-selections@npm:5.4.2" - dependencies: - d3-array: 3.2.4 - vega-expression: ^5.0.1 - vega-util: ^1.17.1 - checksum: 4e78053ab1f8ba4338005ed424043e7d0e91c857b58ab03600a07292e3777a4244d34caa7f8c85e72b2fdd9916882dfdda2fa93c730120ce790ec9883738f2be - languageName: node - linkType: hard - -"vega-statistics@npm:^1.7.9, vega-statistics@npm:^1.8.1, vega-statistics@npm:^1.9.0, vega-statistics@npm:~1.9.0": - version: 1.9.0 - resolution: "vega-statistics@npm:1.9.0" - dependencies: - d3-array: ^3.2.2 - checksum: bbf2ea088c5a6a662c6aed1bf57996c06a82a98228730ada8a97e57824a6ed391999ea974f16dcde6e73bf88799976d91aff748842848d38ab45dbb9fafba3f9 - languageName: node - linkType: hard - -"vega-time@npm:^2.1.1, vega-time@npm:~2.1.1": - version: 2.1.1 - resolution: "vega-time@npm:2.1.1" - dependencies: - d3-array: ^3.2.2 - d3-time: ^3.1.0 - vega-util: ^1.17.1 - checksum: 3d6a50f779be4b5e7f27bd2aae766035c29e59e03e62d2e96b94a2f759ed3104c1102c1006dd416e7b819ee501880ae7a722c2fa9aabf9efac86503c1aada14a - languageName: node - linkType: hard - -"vega-transforms@npm:~4.11.1": - version: 4.11.1 - resolution: "vega-transforms@npm:4.11.1" - dependencies: - d3-array: ^3.2.2 - vega-dataflow: ^5.7.5 - vega-statistics: ^1.8.1 - vega-time: ^2.1.1 - vega-util: ^1.17.1 - checksum: 88ae468613a768f2a6324ad66fb4db3712228a17984316080767bcaafbd5c3c1d198bed5844a9b184d9068284a1ad7bf42f93b7b7568e2e37f98bfd43c3c6bd7 - languageName: node - linkType: hard - -"vega-typings@npm:~1.1.0": - version: 1.1.0 - resolution: "vega-typings@npm:1.1.0" - dependencies: - "@types/geojson": 7946.0.4 - vega-event-selector: ^3.0.1 - vega-expression: ^5.1.0 - vega-util: ^1.17.2 - checksum: 59c76d1b48087b36c4386cd1bccc242afa4e1008a147d0e9966912716522c231c1d8ad35b7bc72bb3d7ccab467b786e7ba43280c75ccb54e0381c7f3aed75721 - languageName: node - linkType: hard - -"vega-util@npm:^1.15.2, vega-util@npm:^1.17.1, vega-util@npm:^1.17.2, vega-util@npm:~1.17.2": - version: 1.17.2 - resolution: "vega-util@npm:1.17.2" - checksum: 5d681cb1a6ffda7af1b74df7c1c46a32f1d874daef54f9c9c65c7d7c7bfc4271dc6d9b1c1c7a853b14eb6e4cc8ec811b0132cd3ea25fa85259eac92e1b4f07fa - languageName: node - linkType: hard - -"vega-view-transforms@npm:~4.5.9": - version: 4.5.9 - resolution: "vega-view-transforms@npm:4.5.9" - dependencies: - vega-dataflow: ^5.7.5 - vega-scenegraph: ^4.10.2 - vega-util: ^1.17.1 - checksum: aeeaf3c2f1a02b1303c16a586dbcb20f208c101d06d7e988e18ab71fb67d87be5d8ff228ebf25971535d6e41dc816168cfa68b8676e7250df07a40aefdea32a7 - languageName: node - linkType: hard - -"vega-view@npm:~5.12.0": - version: 5.12.0 - resolution: "vega-view@npm:5.12.0" - dependencies: - d3-array: ^3.2.2 - d3-timer: ^3.0.1 - vega-dataflow: ^5.7.5 - vega-format: ^1.1.1 - vega-functions: ^5.13.1 - vega-runtime: ^6.1.4 - vega-scenegraph: ^4.10.2 - vega-util: ^1.17.1 - checksum: 8ccbff58ad132dc51647afe1ca31759c8f2782e00124e9f3cb5c16a17c27daca10e354e7aa8517f275182ee36ec3e5be8913ab4eb91f66d2f5a17a385400e7ab - languageName: node - linkType: hard - -"vega-voronoi@npm:~4.2.2": - version: 4.2.2 - resolution: "vega-voronoi@npm:4.2.2" - dependencies: - d3-delaunay: ^6.0.2 - vega-dataflow: ^5.7.5 - vega-util: ^1.17.1 - checksum: 719121a675ae021a30854e6c0fce39adc2a59478d7a1088b554140bf5a4a8e382186ad0762a21a969fa49e5e58ff757a4ec398fb77a834fcd2863d6862a1b92d - languageName: node - linkType: hard - -"vega-wordcloud@npm:~4.1.4": - version: 4.1.4 - resolution: "vega-wordcloud@npm:4.1.4" - dependencies: - vega-canvas: ^1.2.7 - vega-dataflow: ^5.7.5 - vega-scale: ^7.3.0 - vega-statistics: ^1.8.1 - vega-util: ^1.17.1 - checksum: 34d1882651d3a2f34ce40a6eaeed700de126f627cdf041ec2bcc7ada46d7b4b68a38a2974236eec87ee876d9abd095af7ab17e7698b0e2fbc831460767969d7a - languageName: node - linkType: hard - -"vega@npm:^5.20.0": - version: 5.28.0 - resolution: "vega@npm:5.28.0" - dependencies: - vega-crossfilter: ~4.1.1 - vega-dataflow: ~5.7.5 - vega-encode: ~4.9.2 - vega-event-selector: ~3.0.1 - vega-expression: ~5.1.0 - vega-force: ~4.2.0 - vega-format: ~1.1.1 - vega-functions: ~5.14.0 - vega-geo: ~4.4.1 - vega-hierarchy: ~4.1.1 - vega-label: ~1.2.1 - vega-loader: ~4.5.1 - vega-parser: ~6.3.0 - vega-projection: ~1.6.0 - vega-regression: ~1.2.0 - vega-runtime: ~6.1.4 - vega-scale: ~7.3.1 - vega-scenegraph: ~4.11.2 - vega-statistics: ~1.9.0 - vega-time: ~2.1.1 - vega-transforms: ~4.11.1 - vega-typings: ~1.1.0 - vega-util: ~1.17.2 - vega-view: ~5.12.0 - vega-view-transforms: ~4.5.9 - vega-voronoi: ~4.2.2 - vega-wordcloud: ~4.1.4 - checksum: ab9cd1a246903ebf8d49e590ad67e8aeb171127fea67548ea76269f3b56a34535b7c541cd000c6126b84c6144a99bdcd86ad0e5832c4e87058febeb00da747f5 - languageName: node - linkType: hard - -"vscode-jsonrpc@npm:8.2.0, vscode-jsonrpc@npm:^8.0.2": - version: 8.2.0 - resolution: "vscode-jsonrpc@npm:8.2.0" - checksum: f302a01e59272adc1ae6494581fa31c15499f9278df76366e3b97b2236c7c53ebfc71efbace9041cfd2caa7f91675b9e56f2407871a1b3c7f760a2e2ee61484a - languageName: node - linkType: hard - -"vscode-jsonrpc@npm:^6.0.0": - version: 6.0.0 - resolution: "vscode-jsonrpc@npm:6.0.0" - checksum: 3a67a56f287e8c449f2d9752eedf91e704dc7b9a326f47fb56ac07667631deb45ca52192e9bccb2ab108764e48409d70fa64b930d46fc3822f75270b111c5f53 - languageName: node - linkType: hard - -"vscode-languageserver-protocol@npm:^3.17.0": - version: 3.17.5 - resolution: "vscode-languageserver-protocol@npm:3.17.5" - dependencies: - vscode-jsonrpc: 8.2.0 - vscode-languageserver-types: 3.17.5 - checksum: dfb42d276df5dfea728267885b99872ecff62f6c20448b8539fae71bb196b420f5351c5aca7c1047bf8fb1f89fa94a961dce2bc5bf7e726198f4be0bb86a1e71 - languageName: node - linkType: hard - -"vscode-languageserver-types@npm:3.17.5": - version: 3.17.5 - resolution: "vscode-languageserver-types@npm:3.17.5" - checksum: 79b420e7576398d396579ca3a461c9ed70e78db4403cd28bbdf4d3ed2b66a2b4114031172e51fad49f0baa60a2180132d7cb2ea35aa3157d7af3c325528210ac - languageName: node - linkType: hard - -"vscode-ws-jsonrpc@npm:~1.0.2": - version: 1.0.2 - resolution: "vscode-ws-jsonrpc@npm:1.0.2" - dependencies: - vscode-jsonrpc: ^8.0.2 - checksum: eb2fdb5c96f124326505f06564dfc6584318b748fd6e39b4c0ba16a0d383d13ba0e9433596abdb841428dfc2a5501994c3206723d1cb38c6af5fcac1faf4be26 - languageName: node - linkType: hard - -"w3c-keyname@npm:^2.2.4": - version: 2.2.8 - resolution: "w3c-keyname@npm:2.2.8" - checksum: 95bafa4c04fa2f685a86ca1000069c1ec43ace1f8776c10f226a73296caeddd83f893db885c2c220ebeb6c52d424e3b54d7c0c1e963bbf204038ff1a944fbb07 - languageName: node - linkType: hard - -"webidl-conversions@npm:^3.0.0": - version: 3.0.1 - resolution: "webidl-conversions@npm:3.0.1" - checksum: c92a0a6ab95314bde9c32e1d0a6dfac83b578f8fa5f21e675bc2706ed6981bc26b7eb7e6a1fab158e5ce4adf9caa4a0aee49a52505d4d13c7be545f15021b17c - languageName: node - linkType: hard - -"whatwg-url@npm:^5.0.0": - version: 5.0.0 - resolution: "whatwg-url@npm:5.0.0" - dependencies: - tr46: ~0.0.3 - webidl-conversions: ^3.0.0 - checksum: b8daed4ad3356cc4899048a15b2c143a9aed0dfae1f611ebd55073310c7b910f522ad75d727346ad64203d7e6c79ef25eafd465f4d12775ca44b90fa82ed9e2c - languageName: node - linkType: hard - -"which@npm:^2.0.1": - version: 2.0.2 - resolution: "which@npm:2.0.2" - dependencies: - isexe: ^2.0.0 - bin: - node-which: ./bin/node-which - checksum: 1a5c563d3c1b52d5f893c8b61afe11abc3bab4afac492e8da5bde69d550de701cf9806235f20a47b5c8fa8a1d6a9135841de2596535e998027a54589000e66d1 - languageName: node - linkType: hard - -"which@npm:^4.0.0": - version: 4.0.0 - resolution: "which@npm:4.0.0" - dependencies: - isexe: ^3.1.1 - bin: - node-which: bin/which.js - checksum: f17e84c042592c21e23c8195108cff18c64050b9efb8459589116999ea9da6dd1509e6a1bac3aeebefd137be00fabbb61b5c2bc0aa0f8526f32b58ee2f545651 - languageName: node - linkType: hard - -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0, wrap-ansi@npm:^7.0.0": - version: 7.0.0 - resolution: "wrap-ansi@npm:7.0.0" - dependencies: - ansi-styles: ^4.0.0 - string-width: ^4.1.0 - strip-ansi: ^6.0.0 - checksum: a790b846fd4505de962ba728a21aaeda189b8ee1c7568ca5e817d85930e06ef8d1689d49dbf0e881e8ef84436af3a88bc49115c2e2788d841ff1b8b5b51a608b - languageName: node - linkType: hard - -"wrap-ansi@npm:^8.1.0": - version: 8.1.0 - resolution: "wrap-ansi@npm:8.1.0" - dependencies: - ansi-styles: ^6.1.0 - string-width: ^5.0.1 - strip-ansi: ^7.0.1 - checksum: 371733296dc2d616900ce15a0049dca0ef67597d6394c57347ba334393599e800bab03c41d4d45221b6bc967b8c453ec3ae4749eff3894202d16800fdfe0e238 - languageName: node - linkType: hard - -"ws@npm:^8.11.0": - version: 8.16.0 - resolution: "ws@npm:8.16.0" - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: ">=5.0.2" - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - checksum: feb3eecd2bae82fa8a8beef800290ce437d8b8063bdc69712725f21aef77c49cb2ff45c6e5e7fce622248f9c7abaee506bae0a9064067ffd6935460c7357321b - languageName: node - linkType: hard - -"y-protocols@npm:^1.0.5": - version: 1.0.6 - resolution: "y-protocols@npm:1.0.6" - dependencies: - lib0: ^0.2.85 - peerDependencies: - yjs: ^13.0.0 - checksum: 4b57c8811befcf2e45c3d47830005f8a33e626c734f78a42fe8a4fa3caad2233ba85a7c8bceefbd52ffc40130d3f3faee664fd0d1c324ff1fa8817a056ccdc1c - languageName: node - linkType: hard - -"y18n@npm:^5.0.5": - version: 5.0.8 - resolution: "y18n@npm:5.0.8" - checksum: 54f0fb95621ee60898a38c572c515659e51cc9d9f787fb109cef6fde4befbe1c4602dc999d30110feee37456ad0f1660fa2edcfde6a9a740f86a290999550d30 - languageName: node - linkType: hard - -"yallist@npm:^4.0.0": - version: 4.0.0 - resolution: "yallist@npm:4.0.0" - checksum: 343617202af32df2a15a3be36a5a8c0c8545208f3d3dfbc6bb7c3e3b7e8c6f8e7485432e4f3b88da3031a6e20afa7c711eded32ddfb122896ac5d914e75848d5 - languageName: node - linkType: hard - -"yargs-parser@npm:^21.1.1": - version: 21.1.1 - resolution: "yargs-parser@npm:21.1.1" - checksum: ed2d96a616a9e3e1cc7d204c62ecc61f7aaab633dcbfab2c6df50f7f87b393993fe6640d017759fe112d0cb1e0119f2b4150a87305cc873fd90831c6a58ccf1c - languageName: node - linkType: hard - -"yargs@npm:~17.7.2": - version: 17.7.2 - resolution: "yargs@npm:17.7.2" - dependencies: - cliui: ^8.0.1 - escalade: ^3.1.1 - get-caller-file: ^2.0.5 - require-directory: ^2.1.1 - string-width: ^4.2.3 - y18n: ^5.0.5 - yargs-parser: ^21.1.1 - checksum: 73b572e863aa4a8cbef323dd911d79d193b772defd5a51aab0aca2d446655216f5002c42c5306033968193bdbf892a7a4c110b0d77954a7fdf563e653967b56a - languageName: node - linkType: hard - -"yjs@npm:^13.5.40": - version: 13.6.14 - resolution: "yjs@npm:13.6.14" - dependencies: - lib0: ^0.2.86 - checksum: df399049049820d32d5759a7bd9d70cf30602408ca2a9771324f1b459f703bb6073fb35b5bcde7493fab3721d64e3c1b60eb88415b184e95a73fbce2947741cb - languageName: node - linkType: hard From 7ac8b43d7fa72903fad70fdc8408530089109023 Mon Sep 17 00:00:00 2001 From: Nour-Cheour10 Date: Fri, 12 Jul 2024 16:21:04 +0200 Subject: [PATCH 19/21] linting problem --- src/widget.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/widget.ts b/src/widget.ts index 39eb641..e9c5f06 100644 --- a/src/widget.ts +++ b/src/widget.ts @@ -143,7 +143,6 @@ export class MapView extends DOMWidgetView { this.model.on('change:controls', this.controlChanged, this); this.model.on('change:zoom', this.zoomChanged, this); this.model.on('change:center', this.centerChanged, this); - } initializeMapClickListener() { this.map.on('click', this.handleMapClick.bind(this)); @@ -155,7 +154,6 @@ export class MapView extends DOMWidgetView { console.log('Clicked coordinates:', coordinates); } - layersChanged() { const layers = this.model.get('layers') as LayerModel[]; this.layerViews.update(layers); From f9b2ce7e6487ec5e9fa7bb109f3a099c28433a72 Mon Sep 17 00:00:00 2001 From: Nour Cheour <161816839+Nour-Cheour10@users.noreply.github.com> Date: Fri, 12 Jul 2024 16:37:04 +0200 Subject: [PATCH 20/21] take off comments --- ipyopenlayers/Map.py | 21 +-------------- src/widget.ts | 62 -------------------------------------------- 2 files changed, 1 insertion(+), 82 deletions(-) diff --git a/ipyopenlayers/Map.py b/ipyopenlayers/Map.py index 294a81a..6801941 100644 --- a/ipyopenlayers/Map.py +++ b/ipyopenlayers/Map.py @@ -173,23 +173,4 @@ def remove_control(self, control): def clear_layers(self): self.layers = [] - def _handle_clicked_coordinates(self): - coordinates = self.coordinates - print(f'Clicked coordinates: {coordinates}') - #country = self.get_country_from_coordinates(coordinates) - #print(f'Country: {country}') -''' - def get_country_from_coordinates(self, coordinates): - try: - lat, lon = coordinates - url = f'https://nominatim.openstreetmap.org/reverse?format=json&lat={lat}&lon={lon}' - response = requests.get(url) - if response.status_code == 200: - data = response.json() - address = data.get('address', {}) - return address.get('country', 'Unknown') - else: - return 'Unknown' - except Exception as e: - return 'Unknown' - ''' + diff --git a/src/widget.ts b/src/widget.ts index e9c5f06..f650e1b 100644 --- a/src/widget.ts +++ b/src/widget.ts @@ -11,10 +11,7 @@ import { MapBrowserEvent } from 'ol'; import { LayerModel, LayerView } from './layer'; import { BaseOverlayModel, BaseOverlayView } from './baseoverlay'; import { BaseControlModel, BaseControlView } from './basecontrol'; -//import { ArrowLayerModel, ArrowLayerView } from './arrowlayer'; import { ViewObjectEventTypes } from 'ol/View'; -//import Point from 'ol/geom/Point'; -//import Feature from 'ol/Feature'; import { Map } from 'ol'; import TileLayer from 'ol/layer/Tile'; import View from 'ol/View'; @@ -125,8 +122,6 @@ export class MapView extends DOMWidgetView { this.model.set('center', this.map.getView().getCenter()); this.model.save_changes(); }); - this.map.on('click', this.handleMapClick.bind(this)); - this.initializeMapClickListener(); this.map .getView() @@ -144,15 +139,6 @@ export class MapView extends DOMWidgetView { this.model.on('change:zoom', this.zoomChanged, this); this.model.on('change:center', this.centerChanged, this); } - initializeMapClickListener() { - this.map.on('click', this.handleMapClick.bind(this)); - } - - handleMapClick(event: MapBrowserEvent) { - const coordinates = event.coordinate; - this.model.set('coordinates', coordinates); - console.log('Clicked coordinates:', coordinates); - } layersChanged() { const layers = this.model.get('layers') as LayerModel[]; @@ -204,10 +190,6 @@ export class MapView extends DOMWidgetView { const view = await this.create_child_view(child_model, { map_view: this, }); - - /*if (child_model instanceof ArrowLayerModel) { - await this.animateArrowLayer(view as ArrowLayerView); - }*/ this.map.addLayer(view.obj); this.displayed.then(() => { view.trigger('displayed', this); @@ -215,51 +197,7 @@ export class MapView extends DOMWidgetView { return view; } - /* async animateArrowLayer(view: ArrowLayerView) { - const source = view.vectorLayer.getSource(); - if (source) { - const features = source.getFeatures(); - for (const feature of features) { - const windProperties = feature.getProperties().wind; - const windDirection = windProperties?.deg; - const windSpeed = windProperties?.speed; - if (windDirection !== undefined && windSpeed !== undefined) { - const distance = windSpeed * 1; - this.animateFeature(feature, windDirection, distance, 1000); - } - } - } - } - animateFeature( - feature: Feature, - windDirection: number, - distance: number, - duration: number, - ) { - const startCoords = (feature.getGeometry() as Point).getCoordinates(); - const dx = distance * Math.cos((windDirection - 180) * (Math.PI / 180)); - const dy = distance * Math.sin((windDirection - 180) * (Math.PI / 180)); - const startTime = Date.now(); - - const translateStep = () => { - const elapsed = Date.now() - startTime; - const progress = Math.min(elapsed / duration, 1); - - const newX = startCoords[0] + dx * progress; - const newY = startCoords[1] + dy * progress; - (feature.getGeometry() as Point).setCoordinates([newX, newY]); - - if (progress < 1) { - requestAnimationFrame(translateStep); - } else { - this.animateFeature(feature, windDirection, distance, duration); - } - }; - - translateStep(); - } -*/ async addOverlayModel(child_model: BaseOverlayModel) { const view = await this.create_child_view(child_model, { map_view: this, From 933987d7c46e2d33f1bea4367eae00eae1caffef Mon Sep 17 00:00:00 2001 From: Nour Cheour <161816839+Nour-Cheour10@users.noreply.github.com> Date: Thu, 18 Jul 2024 14:27:54 +0200 Subject: [PATCH 21/21] take of MapBrowser --- src/widget.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/widget.ts b/src/widget.ts index f650e1b..02fdde4 100644 --- a/src/widget.ts +++ b/src/widget.ts @@ -7,7 +7,6 @@ import { unpack_models, ViewList, } from '@jupyter-widgets/base'; -import { MapBrowserEvent } from 'ol'; import { LayerModel, LayerView } from './layer'; import { BaseOverlayModel, BaseOverlayView } from './baseoverlay'; import { BaseControlModel, BaseControlView } from './basecontrol';