{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Service API Example on Hartmann6\n", "\n", "The Ax Service API is designed to allow the user to control scheduling of trials and data computation while having an easy to use interface with Ax.\n", "\n", "The user iteratively:\n", "- Queries Ax for candidates\n", "- Schedules / deploys them however they choose\n", "- Computes data and logs to Ax\n", "- Repeat" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "data": { "text/html": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:25] ax.utils.notebook.plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n" ] }, { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "from ax.service.ax_client import AxClient\n", "from ax.utils.measurement.synthetic_functions import hartmann6\n", "from ax.utils.notebook.plotting import render, init_notebook_plotting\n", "\n", "init_notebook_plotting()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 1. Initialize client\n", "\n", "Create a client object to interface with Ax APIs. By default this runs locally without storage." ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:25] ax.service.ax_client: Starting optimization with verbose logging. To disable logging, set the `verbose_logging` argument to `False`. Note that float values in the logs are rounded to 2 decimal points.\n" ] } ], "source": [ "ax_client = AxClient()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 2. Set up experiment\n", "An experiment consists of a **search space** (parameters and parameter constraints) and **optimization configuration** (objective name, minimization setting, and outcome constraints). Note that:\n", "- Only `name`, `parameters`, and `objective_name` arguments are required.\n", "- Dictionaries in `parameters` have the following required keys: \"name\" - parameter name, \"type\" - parameter type (\"range\", \"choice\" or \"fixed\"), \"bounds\" for range parameters, \"values\" for choice parameters, and \"value\" for fixed parameters.\n", "- Dictionaries in `parameters` can optionally include \"value_type\" (\"int\", \"float\", \"bool\" or \"str\"), \"log_scale\" flag for range parameters, and \"is_ordered\" flag for choice parameters.\n", "- `parameter_constraints` should be a list of strings of form \"p1 >= p2\" or \"p1 + p2 <= some_bound\".\n", "- `outcome_constraints` should be a list of strings of form \"constrained_metric <= some_bound\"." ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:25] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x2. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:25] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x3. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:25] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x4. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:25] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x5. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:25] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x6. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:25] ax.modelbridge.dispatch_utils: Using Bayesian optimization since there are more ordered parameters than there are categories for the unordered categorical parameters.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:25] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+GPEI', steps=[Sobol for 12 trials, GPEI for subsequent trials]). Iterations after 12 will take longer to generate due to model-fitting.\n" ] } ], "source": [ "ax_client.create_experiment(\n", " name=\"hartmann_test_experiment\",\n", " parameters=[\n", " {\n", " \"name\": \"x1\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " \"value_type\": \"float\", # Optional, defaults to inference from type of \"bounds\".\n", " \"log_scale\": False, # Optional, defaults to False.\n", " },\n", " {\n", " \"name\": \"x2\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x3\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x4\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x5\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x6\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " ],\n", " objective_name=\"hartmann6\",\n", " minimize=True, # Optional, defaults to False.\n", " parameter_constraints=[\"x1 + x2 <= 2.0\"], # Optional.\n", " outcome_constraints=[\"l2norm <= 1.25\"], # Optional.\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 3. Define how to evaluate trials\n", "When using Ax a service, evaluation of parameterizations suggested by Ax is done either locally or, more commonly, using an external scheduler. Below is a dummy evaluation function that outputs data for two metrics \"hartmann6\" and \"l2norm\". Note that all returned metrics correspond to either the `objective_name` set on experiment creation or the metric names mentioned in `outcome_constraints`." ] }, { "cell_type": "code", "execution_count": 4, "metadata": { "collapsed": true }, "outputs": [], "source": [ "import numpy as np\n", "def evaluate(parameters):\n", " x = np.array([parameters.get(f\"x{i+1}\") for i in range(6)])\n", " # In our case, standard error is 0, since we are computing a synthetic function.\n", " return {\"hartmann6\": (hartmann6(x), 0.0), \"l2norm\": (np.sqrt((x ** 2).sum()), 0.0)}" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Result of the evaluation should generally be a mapping of the format: `{metric_name -> (mean, SEM)}`. If there is only one metric in the experiment – the objective – then evaluation function can return a single tuple of mean and SEM, in which case Ax will assume that evaluation corresponds to the objective. _It can also return only the mean as a float, in which case Ax will treat SEM as unknown and use a model that can infer it._ \n", "\n", "For more details on evaluation function, refer to the \"Trial Evaluation\" section in the Ax docs at [ax.dev](https://ax.dev/)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 4. Run optimization loop\n", "With the experiment set up, we can start the optimization loop.\n", "\n", "At each step, the user queries the client for a new trial then submits the evaluation of that trial back to the client.\n", "\n", "Note that Ax auto-selects an appropriate optimization algorithm based on the search space. For more advance use cases that require a specific optimization algorithm, pass a `generation_strategy` argument into the `AxClient` constructor. Note that when Bayesian Optimization is used, generating new trials may take a few minutes." ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:25] ax.service.ax_client: Generated new trial 0 with parameters {'x1': 0.2, 'x2': 0.9, 'x3': 0.85, 'x4': 0.21, 'x5': 0.86, 'x6': 0.64}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:25] ax.service.ax_client: Completed trial 0 with data: {'hartmann6': (-0.04, 0.0), 'l2norm': (1.66, 0.0)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:25] ax.service.ax_client: Generated new trial 1 with parameters {'x1': 0.63, 'x2': 0.76, 'x3': 0.17, 'x4': 0.61, 'x5': 0.7, 'x6': 0.43}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:25] ax.service.ax_client: Completed trial 1 with data: {'hartmann6': (-0.14, 0.0), 'l2norm': (1.44, 0.0)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:25] ax.service.ax_client: Generated new trial 2 with parameters {'x1': 0.71, 'x2': 0.54, 'x3': 0.08, 'x4': 0.68, 'x5': 0.31, 'x6': 0.56}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:26] ax.service.ax_client: Completed trial 2 with data: {'hartmann6': (-0.15, 0.0), 'l2norm': (1.3, 0.0)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:26] ax.service.ax_client: Generated new trial 3 with parameters {'x1': 0.29, 'x2': 0.55, 'x3': 0.7, 'x4': 0.43, 'x5': 0.91, 'x6': 0.21}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:26] ax.service.ax_client: Completed trial 3 with data: {'hartmann6': (-0.61, 0.0), 'l2norm': (1.39, 0.0)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:26] ax.service.ax_client: Generated new trial 4 with parameters {'x1': 0.69, 'x2': 0.15, 'x3': 0.6, 'x4': 0.16, 'x5': 0.24, 'x6': 0.97}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:26] ax.service.ax_client: Completed trial 4 with data: {'hartmann6': (-0.75, 0.0), 'l2norm': (1.38, 0.0)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:26] ax.service.ax_client: Generated new trial 5 with parameters {'x1': 0.29, 'x2': 0.1, 'x3': 0.45, 'x4': 0.2, 'x5': 0.23, 'x6': 0.35}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:26] ax.service.ax_client: Completed trial 5 with data: {'hartmann6': (-1.31, 0.0), 'l2norm': (0.71, 0.0)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:26] ax.service.ax_client: Generated new trial 6 with parameters {'x1': 0.76, 'x2': 0.08, 'x3': 0.78, 'x4': 0.0, 'x5': 0.29, 'x6': 0.87}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:26] ax.service.ax_client: Completed trial 6 with data: {'hartmann6': (-0.53, 0.0), 'l2norm': (1.42, 0.0)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:26] ax.service.ax_client: Generated new trial 7 with parameters {'x1': 0.16, 'x2': 0.1, 'x3': 0.82, 'x4': 0.58, 'x5': 0.63, 'x6': 0.4}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:26] ax.service.ax_client: Completed trial 7 with data: {'hartmann6': (-0.15, 0.0), 'l2norm': (1.27, 0.0)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:26] ax.service.ax_client: Generated new trial 8 with parameters {'x1': 0.95, 'x2': 0.53, 'x3': 0.8, 'x4': 0.72, 'x5': 0.56, 'x6': 0.89}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:26] ax.service.ax_client: Completed trial 8 with data: {'hartmann6': (-0.16, 0.0), 'l2norm': (1.85, 0.0)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:26] ax.service.ax_client: Generated new trial 9 with parameters {'x1': 0.17, 'x2': 0.39, 'x3': 0.92, 'x4': 0.9, 'x5': 0.2, 'x6': 0.55}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:26] ax.service.ax_client: Completed trial 9 with data: {'hartmann6': (-0.09, 0.0), 'l2norm': (1.48, 0.0)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:26] ax.service.ax_client: Generated new trial 10 with parameters {'x1': 0.82, 'x2': 0.83, 'x3': 0.64, 'x4': 0.94, 'x5': 0.38, 'x6': 0.34}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:26] ax.service.ax_client: Completed trial 10 with data: {'hartmann6': (-0.01, 0.0), 'l2norm': (1.71, 0.0)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:26] ax.service.ax_client: Generated new trial 11 with parameters {'x1': 0.82, 'x2': 0.53, 'x3': 0.64, 'x4': 0.22, 'x5': 0.64, 'x6': 0.2}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:26] ax.service.ax_client: Completed trial 11 with data: {'hartmann6': (-0.03, 0.0), 'l2norm': (1.37, 0.0)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:31] ax.service.ax_client: Generated new trial 12 with parameters {'x1': 0.34, 'x2': 0.09, 'x3': 0.43, 'x4': 0.15, 'x5': 0.19, 'x6': 0.47}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:31] ax.service.ax_client: Completed trial 12 with data: {'hartmann6': (-1.64, 0.0), 'l2norm': (0.77, 0.0)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:36] ax.service.ax_client: Generated new trial 13 with parameters {'x1': 0.35, 'x2': 0.07, 'x3': 0.4, 'x4': 0.12, 'x5': 0.14, 'x6': 0.55}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:36] ax.service.ax_client: Completed trial 13 with data: {'hartmann6': (-1.37, 0.0), 'l2norm': (0.79, 0.0)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:41] ax.service.ax_client: Generated new trial 14 with parameters {'x1': 0.39, 'x2': 0.1, 'x3': 0.49, 'x4': 0.16, 'x5': 0.24, 'x6': 0.49}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:41] ax.service.ax_client: Completed trial 14 with data: {'hartmann6': (-1.86, 0.0), 'l2norm': (0.85, 0.0)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:46] ax.service.ax_client: Generated new trial 15 with parameters {'x1': 0.4, 'x2': 0.16, 'x3': 0.5, 'x4': 0.17, 'x5': 0.27, 'x6': 0.54}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:46] ax.service.ax_client: Completed trial 15 with data: {'hartmann6': (-2.22, 0.0), 'l2norm': (0.91, 0.0)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:51] ax.service.ax_client: Generated new trial 16 with parameters {'x1': 0.39, 'x2': 0.21, 'x3': 0.5, 'x4': 0.15, 'x5': 0.27, 'x6': 0.55}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:51] ax.service.ax_client: Completed trial 16 with data: {'hartmann6': (-2.23, 0.0), 'l2norm': (0.92, 0.0)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:57] ax.service.ax_client: Generated new trial 17 with parameters {'x1': 0.39, 'x2': 0.19, 'x3': 0.5, 'x4': 0.21, 'x5': 0.28, 'x6': 0.58}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:57] ax.service.ax_client: Completed trial 17 with data: {'hartmann6': (-2.63, 0.0), 'l2norm': (0.95, 0.0)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:35:02] ax.service.ax_client: Generated new trial 18 with parameters {'x1': 0.38, 'x2': 0.23, 'x3': 0.49, 'x4': 0.25, 'x5': 0.3, 'x6': 0.62}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:35:02] ax.service.ax_client: Completed trial 18 with data: {'hartmann6': (-2.85, 0.0), 'l2norm': (0.99, 0.0)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:35:08] ax.service.ax_client: Generated new trial 19 with parameters {'x1': 0.35, 'x2': 0.19, 'x3': 0.5, 'x4': 0.27, 'x5': 0.34, 'x6': 0.67}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:35:08] ax.service.ax_client: Completed trial 19 with data: {'hartmann6': (-2.99, 0.0), 'l2norm': (1.02, 0.0)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:35:12] ax.service.ax_client: Generated new trial 20 with parameters {'x1': 0.38, 'x2': 0.17, 'x3': 0.44, 'x4': 0.28, 'x5': 0.38, 'x6': 0.66}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:35:12] ax.service.ax_client: Completed trial 20 with data: {'hartmann6': (-2.75, 0.0), 'l2norm': (1.01, 0.0)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:35:16] ax.service.ax_client: Generated new trial 21 with parameters {'x1': 0.32, 'x2': 0.18, 'x3': 0.53, 'x4': 0.29, 'x5': 0.3, 'x6': 0.69}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:35:16] ax.service.ax_client: Completed trial 21 with data: {'hartmann6': (-3.08, 0.0), 'l2norm': (1.03, 0.0)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:35:21] ax.service.ax_client: Generated new trial 22 with parameters {'x1': 0.33, 'x2': 0.18, 'x3': 0.61, 'x4': 0.3, 'x5': 0.31, 'x6': 0.69}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:35:21] ax.service.ax_client: Completed trial 22 with data: {'hartmann6': (-2.9, 0.0), 'l2norm': (1.09, 0.0)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:35:26] ax.service.ax_client: Generated new trial 23 with parameters {'x1': 0.26, 'x2': 0.21, 'x3': 0.51, 'x4': 0.28, 'x5': 0.31, 'x6': 0.68}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:35:26] ax.service.ax_client: Completed trial 23 with data: {'hartmann6': (-3.22, 0.0), 'l2norm': (1.01, 0.0)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:35:30] ax.service.ax_client: Generated new trial 24 with parameters {'x1': 0.2, 'x2': 0.19, 'x3': 0.5, 'x4': 0.25, 'x5': 0.31, 'x6': 0.72}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:35:30] ax.service.ax_client: Completed trial 24 with data: {'hartmann6': (-3.19, 0.0), 'l2norm': (1.0, 0.0)}.\n" ] } ], "source": [ "for i in range(25):\n", " parameters, trial_index = ax_client.get_next_trial()\n", " # Local evaluation here can be replaced with deployment to external system.\n", " ax_client.complete_trial(trial_index=trial_index, raw_data=evaluate(parameters))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### How many trials can run in parallel?\n", "By default, Ax restricts number of trials that can run in parallel for some optimization stages, in order to improve the optimization performance and reduce the number of trials that the optimization will require. To check the maximum parallelism for each optimization stage:" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[(12, 12), (-1, 3)]" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "ax_client.get_max_parallelism()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The output of this function is a list of tuples of form (number of trials, max parallelism), so the example above means \"the max parallelism is 6 for the first 6 trials and 3 for all subsequent trials.\" This is because the first 6 trials are produced quasi-randomly and can all be evaluated at once, and subsequent trials are produced via Bayesian optimization, which converges on optimal point in fewer trials when parallelism is limited. `MaxParallelismReachedException` indicates that the parallelism limit has been reached –– refer to the 'Service API Exceptions Meaning and Handling' section at the end of the tutorial for handling." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### How to view all existing trials during optimization?" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:35:30] ax.modelbridge.generation_strategy: Note that parameter values in dataframe are rounded to 2 decimal points; the values in the dataframe are thus not the exact ones suggested by Ax in trials.\n" ] }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Generation StepGeneration ModelTrial IndexTrial StatusArm Parameterizations
00Sobol0COMPLETED{'0_0': {'x1': 0.2, 'x2': 0.9, 'x3': 0.85, 'x4...
10Sobol1COMPLETED{'1_0': {'x1': 0.63, 'x2': 0.76, 'x3': 0.17, '...
20Sobol2COMPLETED{'2_0': {'x1': 0.71, 'x2': 0.54, 'x3': 0.08, '...
30Sobol3COMPLETED{'3_0': {'x1': 0.29, 'x2': 0.55, 'x3': 0.7, 'x...
40Sobol4COMPLETED{'4_0': {'x1': 0.69, 'x2': 0.15, 'x3': 0.6, 'x...
50Sobol5COMPLETED{'5_0': {'x1': 0.29, 'x2': 0.1, 'x3': 0.45, 'x...
60Sobol6COMPLETED{'6_0': {'x1': 0.76, 'x2': 0.08, 'x3': 0.78, '...
70Sobol7COMPLETED{'7_0': {'x1': 0.16, 'x2': 0.1, 'x3': 0.82, 'x...
80Sobol8COMPLETED{'8_0': {'x1': 0.95, 'x2': 0.53, 'x3': 0.8, 'x...
90Sobol9COMPLETED{'9_0': {'x1': 0.17, 'x2': 0.39, 'x3': 0.92, '...
100Sobol10COMPLETED{'10_0': {'x1': 0.82, 'x2': 0.83, 'x3': 0.64, ...
110Sobol11COMPLETED{'11_0': {'x1': 0.82, 'x2': 0.53, 'x3': 0.64, ...
121GPEI12COMPLETED{'12_0': {'x1': 0.34, 'x2': 0.09, 'x3': 0.43, ...
131GPEI13COMPLETED{'13_0': {'x1': 0.35, 'x2': 0.07, 'x3': 0.4, '...
141GPEI14COMPLETED{'14_0': {'x1': 0.39, 'x2': 0.1, 'x3': 0.49, '...
151GPEI15COMPLETED{'15_0': {'x1': 0.4, 'x2': 0.16, 'x3': 0.5, 'x...
161GPEI16COMPLETED{'16_0': {'x1': 0.39, 'x2': 0.21, 'x3': 0.5, '...
171GPEI17COMPLETED{'17_0': {'x1': 0.39, 'x2': 0.19, 'x3': 0.5, '...
181GPEI18COMPLETED{'18_0': {'x1': 0.38, 'x2': 0.23, 'x3': 0.49, ...
191GPEI19COMPLETED{'19_0': {'x1': 0.35, 'x2': 0.19, 'x3': 0.5, '...
201GPEI20COMPLETED{'20_0': {'x1': 0.38, 'x2': 0.17, 'x3': 0.44, ...
211GPEI21COMPLETED{'21_0': {'x1': 0.32, 'x2': 0.18, 'x3': 0.53, ...
221GPEI22COMPLETED{'22_0': {'x1': 0.33, 'x2': 0.18, 'x3': 0.61, ...
231GPEI23COMPLETED{'23_0': {'x1': 0.26, 'x2': 0.21, 'x3': 0.51, ...
241GPEI24COMPLETED{'24_0': {'x1': 0.2, 'x2': 0.19, 'x3': 0.5, 'x...
\n", "
" ], "text/plain": [ " Generation Step Generation Model Trial Index Trial Status \\\n", "0 0 Sobol 0 COMPLETED \n", "1 0 Sobol 1 COMPLETED \n", "2 0 Sobol 2 COMPLETED \n", "3 0 Sobol 3 COMPLETED \n", "4 0 Sobol 4 COMPLETED \n", "5 0 Sobol 5 COMPLETED \n", "6 0 Sobol 6 COMPLETED \n", "7 0 Sobol 7 COMPLETED \n", "8 0 Sobol 8 COMPLETED \n", "9 0 Sobol 9 COMPLETED \n", "10 0 Sobol 10 COMPLETED \n", "11 0 Sobol 11 COMPLETED \n", "12 1 GPEI 12 COMPLETED \n", "13 1 GPEI 13 COMPLETED \n", "14 1 GPEI 14 COMPLETED \n", "15 1 GPEI 15 COMPLETED \n", "16 1 GPEI 16 COMPLETED \n", "17 1 GPEI 17 COMPLETED \n", "18 1 GPEI 18 COMPLETED \n", "19 1 GPEI 19 COMPLETED \n", "20 1 GPEI 20 COMPLETED \n", "21 1 GPEI 21 COMPLETED \n", "22 1 GPEI 22 COMPLETED \n", "23 1 GPEI 23 COMPLETED \n", "24 1 GPEI 24 COMPLETED \n", "\n", " Arm Parameterizations \n", "0 {'0_0': {'x1': 0.2, 'x2': 0.9, 'x3': 0.85, 'x4... \n", "1 {'1_0': {'x1': 0.63, 'x2': 0.76, 'x3': 0.17, '... \n", "2 {'2_0': {'x1': 0.71, 'x2': 0.54, 'x3': 0.08, '... \n", "3 {'3_0': {'x1': 0.29, 'x2': 0.55, 'x3': 0.7, 'x... \n", "4 {'4_0': {'x1': 0.69, 'x2': 0.15, 'x3': 0.6, 'x... \n", "5 {'5_0': {'x1': 0.29, 'x2': 0.1, 'x3': 0.45, 'x... \n", "6 {'6_0': {'x1': 0.76, 'x2': 0.08, 'x3': 0.78, '... \n", "7 {'7_0': {'x1': 0.16, 'x2': 0.1, 'x3': 0.82, 'x... \n", "8 {'8_0': {'x1': 0.95, 'x2': 0.53, 'x3': 0.8, 'x... \n", "9 {'9_0': {'x1': 0.17, 'x2': 0.39, 'x3': 0.92, '... \n", "10 {'10_0': {'x1': 0.82, 'x2': 0.83, 'x3': 0.64, ... \n", "11 {'11_0': {'x1': 0.82, 'x2': 0.53, 'x3': 0.64, ... \n", "12 {'12_0': {'x1': 0.34, 'x2': 0.09, 'x3': 0.43, ... \n", "13 {'13_0': {'x1': 0.35, 'x2': 0.07, 'x3': 0.4, '... \n", "14 {'14_0': {'x1': 0.39, 'x2': 0.1, 'x3': 0.49, '... \n", "15 {'15_0': {'x1': 0.4, 'x2': 0.16, 'x3': 0.5, 'x... \n", "16 {'16_0': {'x1': 0.39, 'x2': 0.21, 'x3': 0.5, '... \n", "17 {'17_0': {'x1': 0.39, 'x2': 0.19, 'x3': 0.5, '... \n", "18 {'18_0': {'x1': 0.38, 'x2': 0.23, 'x3': 0.49, ... \n", "19 {'19_0': {'x1': 0.35, 'x2': 0.19, 'x3': 0.5, '... \n", "20 {'20_0': {'x1': 0.38, 'x2': 0.17, 'x3': 0.44, ... \n", "21 {'21_0': {'x1': 0.32, 'x2': 0.18, 'x3': 0.53, ... \n", "22 {'22_0': {'x1': 0.33, 'x2': 0.18, 'x3': 0.61, ... \n", "23 {'23_0': {'x1': 0.26, 'x2': 0.21, 'x3': 0.51, ... \n", "24 {'24_0': {'x1': 0.2, 'x2': 0.19, 'x3': 0.5, 'x... " ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "ax_client.generation_strategy.trials_as_df" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 5. Retrieve best parameters\n", "\n", "Once it's complete, we can access the best parameters found, as well as the corresponding metric values." ] }, { "cell_type": "code", "execution_count": 8, "metadata": { "collapsed": true }, "outputs": [ { "data": { "text/plain": [ "{'x1': 0.2604038438549958,\n", " 'x2': 0.20527851575567252,\n", " 'x3': 0.5111798972046122,\n", " 'x4': 0.277826636437754,\n", " 'x5': 0.3078141666613247,\n", " 'x6': 0.6832769433314506}" ] }, "execution_count": 8, "metadata": {}, "output_type": "execute_result" } ], "source": [ "best_parameters, values = ax_client.get_best_parameters()\n", "best_parameters" ] }, { "cell_type": "code", "execution_count": 9, "metadata": { "collapsed": true }, "outputs": [ { "data": { "text/plain": [ "{'hartmann6': -3.2184203679787995, 'l2norm': 1.0050165489293947}" ] }, "execution_count": 9, "metadata": {}, "output_type": "execute_result" } ], "source": [ "means, covariances = values\n", "means " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "For comparison, Hartmann6 minimum:" ] }, { "cell_type": "code", "execution_count": 10, "metadata": { "collapsed": true }, "outputs": [ { "data": { "text/plain": [ "-3.32237" ] }, "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ "hartmann6.fmin" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 6. Plot the response surface and optimization trace\n", "Here we arbitrarily select \"x1\" and \"x2\" as the two parameters to plot for both metrics, \"hartmann6\" and \"l2norm\"." ] }, { "cell_type": "code", "execution_count": 11, "metadata": { "collapsed": true }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:35:30] ax.service.ax_client: Retrieving contour plot with parameter 'x1' on X-axis and 'x2' on Y-axis, for metric 'hartmann6'. Remaining parameters are affixed to the middle of their range.\n" ] }, { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 0.45, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(247,252,253)" ], [ 0.125, "rgb(229,245,249)" ], [ 0.25, "rgb(204,236,230)" ], [ 0.375, "rgb(153,216,201)" ], [ 0.5, "rgb(102,194,164)" ], [ 0.625, "rgb(65,174,118)" ], [ 0.75, "rgb(35,139,69)" ], [ 0.875, "rgb(0,109,44)" ], [ 1.0, "rgb(0,68,27)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y", "z": [ [ -1.9761993403296207, -2.030129381888548, -2.0814614886326317, -2.1296697115275256, -2.1742186576960787, -2.214573389008635, -2.2502109908277754, -2.2806335892049887, -2.3053824109713683, -2.3240522764330747, -2.3363057159021747, -2.3418857496395526, -2.340626314350999, -2.3324594014287237, -2.317418212677098, -2.2956360188407814, -2.2673408615685626, -2.232846677406029, -2.1925417495001005, -2.1468755468400573, -2.096344980689648, -2.041480931581527, -1.9828356468153983, -1.9209713509849893, -1.856450204816111, -1.78982561402364, -1.721634824992933, -1.6523927261738467, -1.5825867784650096, -1.5126730061733438, -1.443072983183237, -1.3741717451062458, -1.3063165498600642, -1.2398163999020029, -1.1749422321063097, -1.1119276776211542, -1.0509702943611297, -0.9922331786530286, -0.9358468691110178, -0.8819114641232163, -0.8304988835245288, -0.7816552144248878, -0.7354030902684897, -0.691744060704969, -0.6506609175863, -0.6121199492944044, -0.5760731016544003, -0.5424600289387088, -0.5112100229819316, -0.48224381227835833 ], [ -2.0103154705874724, -2.0657982022584536, -2.1186406998802987, -2.168297073087917, -2.214210288557728, -2.2558224477170534, -2.292586911280328, -2.3239820636395696, -2.3495263070973547, -2.3687936423203064, -2.381428956200224, -2.387161948258572, -2.385818540963248, -2.377328694274467, -2.3617298107911937, -2.3391653567424093, -2.30987886067273, -2.274203970711291, -2.232551635362135, -2.1853956442743043, -2.1332577118251876, -2.0766930576716423, -2.0162771226392913, -1.9525937470716204, -1.8862248979773502, -1.8177418868546682, -1.7476979614880759, -1.676622151821429, -1.6050142698126069, -1.5333409832141631, -1.4620328932281665, -1.391482545180902, -1.3220432937303148, -1.2540289345473585, -1.1877140066407692, -1.1233346655167078, -1.0610900276682043, -1.0011438909874024, -0.9436267426360698, -0.8886379746500118, -0.8362482371595483, -0.7865018688554222, -0.7394193537116936, -0.6949997616813822, -0.653223138944268, -0.6140528202538258, -0.5774376420156554, -0.5433140399874415, -0.5116080199947167, -0.4822369938885802 ], [ -2.0418090745054815, -2.098732336535014, -2.152976367690927, -2.2039764805111273, -2.251155153833416, -2.293932653332268, -2.3317396741871184, -2.36403181847565, -2.3903054987053096, -2.41011459612443, -2.423086928167586, -2.428939346228142, -2.4274901637530846, -2.418667677324134, -2.4025138336147416, -2.3791825975905407, -2.3489332042817974, -2.312119086791526, -2.2691737212149263, -2.2205948191753633, -2.1669282169929187, -2.108752521338814, -2.0466651845981274, -1.9812703119363209, -1.9131682254834776, -1.842946657162706, -1.7711733930547253, -1.6983902076430204, -1.6251079644465565, -1.551802792932108, -1.4789132690947246, -1.4068385292691215, -1.3359372394636357, -1.266527332234312, -1.1988864145151432, -1.1332527452957033, -1.0698266821572773, -1.0087724998815908, -0.9502204915637124, -0.894269271740431, -0.8409882109825522, -0.790419941427375, -0.7425828823240203, -0.6974737435160204, -0.6550699727387479, -0.6153321196207824, -0.5782060953746095, -0.543625312409265, -0.5115126925793221, -0.4817825365888688 ], [ -2.0704382986860184, -2.128673182230063, -2.1841929835904743, -2.236415600226646, -2.2847444586537353, -2.328579438620469, -2.3673299888234296, -2.400430270312, -2.42735592609716, -2.4476417842781766, -2.460899487470856, -2.466833761437484, -2.4652558736147787, -2.4560928771061494, -2.4393915476089085, -2.4153164895466066, -2.3841426124477225, -2.3462428890994538, -2.302072825051752, -2.252153278432667, -2.1970531551900674, -2.1373731482955876, -2.073731224800965, -2.0067501283476488, -1.9370468507213627, -1.8652238644151529, -1.7918618730264213, -1.7175138740500202, -1.6427003877510868, -1.5679057538419419, -1.493575423013898, -1.4201141753465851, -1.3478851903556728, -1.277209882118594, -1.208368403208134, -1.14160071587892, -1.0771081287219, -1.0150552011729457, -0.9555719256364783, -0.8987561063013486, -0.8446758639044486, -0.7933722059294909, -0.7448616114755793, -0.699138588978209, -0.6561781729679211, -0.6159383330768348, -0.5783622745884208, -0.5433806150473522, -0.5109134258957873, -0.4808721318739221 ], [ -2.0959753042650107, -2.1553767338833953, -2.212030162547287, -2.265337683664324, -2.3146853850818867, -2.359454536677598, -2.399035128288227, -2.432841620346034, -2.460330517681253, -2.4810190591096104, -2.494503961044484, -2.500478824869373, -2.4987486103326875, -2.4892395990766474, -2.4720036024667476, -2.447215803518812, -2.4151664499497922, -2.376247432203922, -2.3309353726405955, -2.279773081249644, -2.2233510843057713, -2.162290503658244, -2.097228016904282, -2.0288031240024806, -1.957647593602232, -1.8843767946323484, -1.8095826000407431, -1.7338276125170697, -1.6576405440818718, -1.5815126450211365, -1.5058951109485816, -1.4311974043316407, -1.3577864192541504, -1.285986405535565, -1.2160795572789085, -1.1483071646904164, -1.0828712272783554, -1.0199364305402916, -0.9596323956568206, -0.9020561211530173, -0.8472745458133231, -0.7953271724920163, -0.7462287022945013, -0.6999716375981409, -0.6565288203945862, -0.6158558794457774, -0.577893565799824, -0.5425699613958685, -0.5098025498966909, -0.4795001426233696 ], [ -2.1182103061737214, -2.1786180409338973, -2.2362475399341037, -2.290486917428548, -2.3407069010203103, -2.3862722432491643, -2.4265556271373665, -2.460953955160139, -2.488906647430076, -2.5099152331592283, -2.523563127356656, -2.5295341079705205, -2.5276277538570566, -2.5177700987138403, -2.5000181000846267, -2.4745572227638304, -2.4416923661453978, -2.4018332902452744, -2.355476363209992, -2.303184702037042, -2.245568593059943, -2.183267576499378, -2.1169349478074606, -2.0472248545448717, -1.9747817770699354, -1.900232008737742, -1.82417675103348, -1.7471865289263566, -1.6697967377755278, -1.5925042126716205, -1.5157647523665643, -1.4399915399059031, -1.365554394018246, -1.2927797711622717, -1.2219514255998705, -1.1533116275534168, -1.0870628381296603, -1.0233697433921414, -0.9623615572805525, -0.9041345125308166, -0.8487544691207737, -0.7962595801647729, -0.7466629650337788, -0.6999553484657929, -0.656107632418184, -0.6150733743820851, -0.5767911518844908, -0.541186798036751, -0.508175497352585, -0.4776637347564634 ], [ -2.136955513005959, -2.1981955801699136, -2.2566296032962896, -2.311633735416723, -2.362565565310399, -2.4087757160650973, -2.449622061857919, -2.4844864783453637, -2.5127937691802607, -2.534032049094385, -2.5477734380246124, -2.553693498819219, -2.5515875497834415, -2.5413819489900993, -2.523138800744243, -2.4970532940400916, -2.463443911232761, -2.4227367750848985, -2.375446143932832, -2.3221533327852093, -2.2634861181712593, -2.200100111641394, -2.1326628741731453, -2.0618409026330586, -1.9882891919830197, -1.9126429000693648, -1.8355106602162852, -1.7574692036930015, -1.6790590840617174, -1.6007813907600776, -1.5230953883815699, -1.4464170304325739, -1.3711182877831194, -1.2975272163708726, -1.2259286746704559, -1.1565655929776248, -1.0896406944371968, -1.0253185710179022, -0.9637280247344948, -0.904964593766585, -0.8490931934382495, -0.7961508123777291, -0.7461492139832968, -0.6990776022539259, -0.6549052189671309, -0.6135838460882884, -0.5750501932362653, -0.5392281551041074, -0.506030928048323, -0.47536297872001554 ], [ -2.152048827605975, -2.213935382011514, -2.272990275440045, -2.3285798851443653, -2.3800510961103214, -2.42674305299004, -2.4680016316047215, -2.5031965680146895, -2.5317409035033855, -2.5531120254447996, -2.566873129680472, -2.572693468773078, -2.570365407217799, -2.5598162421708937, -2.541113107213338, -2.514460086770078, -2.480187784321358, -2.4387367118892014, -2.390636676750619, -2.336484627490337, -2.276923171059475, -2.212621336640081, -2.1442583763575853, -2.072510690344909, -1.9980415016287432, -1.9214927249216267, -1.8434785087479137, -1.7645800722286813, -1.6853416102158674, -1.6062671508289936, -1.5278183061943027, -1.4504128719854366, -1.3744242225415435, -1.300181431383517, -1.227970031495833, -1.158033320135914, -1.0905741100023125, -1.0257568313330023, -0.9637098962594267, -0.904528245864289, -0.8482760105431176, -0.79498922449486, -0.7446785448587007, -0.6973319348409035, -0.6529172779998573, -0.6113848976686997, -0.572669961354881, -0.5366947549625084, -0.5033708159450023, -0.47260091811769467 ], [ -2.1633571640319165, -2.225694742360955, -2.285177053720867, -2.341163023527563, -2.392991445834088, -2.439992858743344, -2.481504215022365, -2.5168863032174307, -2.5455435902427235, -2.5669457660612345, -2.5806497951383895, -2.586320787302933, -2.583749623459995, -2.5728651851242192, -2.5537393981521657, -2.526584150275212, -2.49174032724761, -2.449660413711359, -2.4008869690222343, -2.346029591024085, -2.285742707290996, -2.2207058470832353, -2.151607201286752, -2.0791305229366532, -2.003944928153042, -1.9266969703138705, -1.8480044088183378, -1.768451256655984, -1.6885838628564707, -1.6089079098434036, -1.5298862698243711, -1.451937681973237, -1.3754362035883212, -1.3007113705916304, -1.2280489861400663, -1.1576924454723188, -1.0898445013556664, -1.0246693766153214, -0.9622951365231143, -0.9028162425987231, -0.8462962192589802, -0.7927703747573094, -0.7422485273636206, -0.6947176964043729, -0.6501447254715109, -0.608478811805085, -0.5696539216189237, -0.5335910760694531, -0.5002004967734182, -0.4693836033652903 ], [ -2.17077924145087, -2.233365355559444, -2.2930745123275305, -2.349260616375598, -2.401257120761219, -2.4483889991504206, -2.4899875610803512, -2.5254080759880404, -2.554049884423672, -2.5753782769343245, -2.588946931310206, -2.5944191867635236, -2.5915860338600476, -2.5803785960107257, -2.5608732403667402, -2.5332883304220797, -2.4979728644556856, -2.45538849822625, -2.4060873547026795, -2.350688340921789, -2.289854405607273, -2.224272451214622, -2.1546367251139493, -2.0816357205057483, -2.005942099477825, -1.9282049563459642, -1.8490437955052035, -1.7690437757361932, -1.688751959897986, -1.6086744443708632, -1.5292743137072558, -1.4509703869183461, -1.3741367142688536, -1.2991027654252916, -1.2261542324890702, -1.1555343599546544, -1.0874457090806393, -1.0220522655980337, -0.9594818054100646, -0.899828441253579, -0.8431552827991707, -0.7894971523662706, -0.7388633076845462, -0.6912401315933605, -0.6465937560880566, -0.6048725946781803, -0.5660097626765166, -0.5299253698844875, -0.4965286742856031, -0.46572008890715877 ], [ -2.1742477307596806, -2.236875720647205, -2.296606992170199, -2.352792934346529, -2.404764501904734, -2.451844259384136, -2.493361287202436, -2.5286689177485617, -2.5571649808376193, -2.5783138367381664, -2.5916689796443304, -2.5968944744272675, -2.593783080811206, -2.5822688093612083, -2.5624320155862645, -2.534496022833321, -2.4988155160853993, -2.45585822740443, -2.4061823596385246, -2.350412524185087, -2.2892166807701706, -2.2232858331331222, -2.153317323068462, -2.0800017471450083, -2.004012983592905, -1.9260006135285352, -1.8465840774066742, -1.766348092463008, -1.6858390534230443, -1.6055622829152643, -1.5259800755540915, -1.4475105045842593, -1.3705269543908427, -1.2953583247778557, -1.2222898354455758, -1.151564347054902, -1.083384110017588, -1.0179128528812278, -0.955278127258907, -0.8955738340051113, -0.8388628643703112, -0.7851797991719834, -0.7345336179527789, -0.686910378295971, -0.6422758327761388, -0.6005779574141553, -0.5617493710324782, -0.5257096296600622, -0.49236738421894155, -0.46162239323608023 ], [ -2.173730655121138, -2.236192702682081, -2.2957403371241885, -2.3517249771817306, -2.403477967893216, -2.4503226718914046, -2.491589411960237, -2.526633226912149, -2.5548541140099474, -2.5757190312085863, -2.588784440132076, -2.593717655466027, -2.5903148633543793, -2.5785135656926017, -2.5583975688472753, -2.5301935139047513, -2.4942591881371485, -2.451065129674158, -2.4011719642509677, -2.3452062503121005, -2.283837331337181, -2.2177569668215718, -2.147662601655316, -2.074244308703081, -1.9981748919184872, -1.920102423501933, -1.8406445385742367, -1.760383994285206, -1.679865199855839, -1.599591573607087, -1.5200236661605762, -1.4415780184392184, -1.364626720492508, -1.2894976213381304, -1.2164751230455757, -1.1458014800739798, -1.0776785190886993, -1.0122696945229144, -0.9497023995268052, -0.8900704590471767, -0.8334367402447981, -0.7798358242868032, -0.7292766920957604, -0.681745384524093, -0.6372076044833823, -0.5956112347579212, -0.5568887506146103, -0.5209595109709668, -0.48773191589724596, -0.457105421701828 ], [ -2.1692319796545405, -2.2313221715807767, -2.290482583874799, -2.3460672155084783, -2.397410688269513, -2.44384035860668, -2.484691240592303, -2.5193236879847207, -2.547143495894683, -2.5676236881897454, -2.5803267757728188, -2.5849257727737784, -2.5812218741333113, -2.569156606662828, -2.548816626765969, -2.5204301957614104, -2.4843555702787654, -2.441062781518222, -2.391111184535424, -2.335125499693972, -2.273772811919149, -2.2077422925559738, -2.1377285188985677, -2.0644184524590954, -1.9884815877805417, -1.9105625586331398, -1.8312755247173214, -1.7511998354281466, -1.6708766630785423, -1.59080644913933, -1.511447094595665, -1.4332128598205354, -1.3564739406836634, -1.281556674300466, -1.2087443120865942, -1.138278285843603, -1.0703598864951656, -1.0051522745146875, -0.9427827447359397, -0.883345174625265, -0.8269025929166156, -0.7734898137934823, -0.723116089895371, -0.6757677449518266, -0.6314107536236698, -0.5899932421126322, -0.5514478883208441, -0.5156942048760902, -0.4826406922777533, -0.4521868528506351 ], [ -2.1607913654716935, -2.2223086893243567, -2.280883571068952, -2.335875109904018, -2.386624039960761, -2.4324648323740954, -2.472740539719096, -2.506820309663119, -2.5341192102992176, -2.554119625281232, -2.5663930151415735, -2.570620371270456, -2.5666093369502194, -2.554305900989877, -2.533798929107363, -2.505316621756655, -2.4692151340330803, -2.425960767759499, -2.376108014977057, -2.320276071065227, -2.2591262081274524, -2.1933417424360724, -2.1236114823131733, -2.0506167567235942, -1.9750215829686781, -1.8974652962971228, -1.8185569812708244, -1.7388712004464537, -1.6589447014675551, -1.579273932400718, -1.500313285488364, -1.4224740286258784, -1.3461238898138381, -1.2715872498942158, -1.199145885076596, -1.1290401895759012, -1.0614708025312594, -0.9966005622953975, -0.9345567141305803, -0.8754333029895867, -0.8192936901869755, -0.76617314044266, -0.71608143336861, -0.6690054605875261, -0.6249117761288843, -0.5837490734840488, -0.5454505677408384, -0.5099362656240581, -0.4771151101244917, -0.4468869897858616 ], [ -2.148483105445246, -2.209234267652402, -2.267033495711038, -2.3212474422168814, -2.3712256903718965, -2.416312810989165, -2.4558630661356817, -2.48925765965161, -2.515924155618202, -2.5353573159467424, -2.547140172825173, -2.550963719093354, -2.5466432879363476, -2.534129652293865, -2.513513230496158, -2.4850205629315654, -2.4490032936481603, -2.4059209832858737, -2.3563198951196043, -2.30081022704747, -2.24004406861633, -2.1746957627464236, -2.105445563642424, -2.032966739066587, -1.9579157395626867, -1.8809248129027778, -1.802596436202158, -1.7234990701104207, -1.6441639089323015, -1.5650824428396284, -1.4867047394730184, -1.4094383957139724, -1.333648121326584, -1.259655910245453, -1.1877417440501994, -1.118144762218145, -1.0510648278577965, -0.9866644162095128, -0.9250707555078933, -0.8663781547023999, -0.8106504589355141, -0.7579235807067318, -0.7082080616913208, -0.6614916268539964, -0.61774169860104, -0.5769078441795042, -0.538924134369515, -0.5037113957797364, -0.47117934281947316, -0.44122857875689114 ], [ -2.132414299519609, -2.1922162672866197, -2.249060503824225, -2.3023235652754366, -2.3513664757706745, -2.395546698618516, -2.4342326338889193, -2.4668205125270894, -2.4927532856681025, -2.511540756596117, -2.5227797994994674, -2.5261731202679556, -2.521544748706714, -2.5088504404726386, -2.4881815166834365, -2.4597613938826317, -2.4239350360585146, -2.3811525574512817, -2.3319489552401933, -2.276922268578299, -2.2167123023673683, -2.1519815208586763, -2.083398999584465, -2.011627635424252, -1.9373143134322923, -1.8610824791148302, -1.7835265348865839, -1.7052075837165135, -1.626650191793307, -1.5483399742208364, -1.470721897414889, -1.3941992387394504, -1.3191331597362805, -1.245842847760195, -1.1746061726477544, -1.1056607967690009, -1.0392056715060316, -0.9754028516518606, -0.9143795609996025, -0.8562304465942039, -0.8010199647980915, -0.7487848486823484, -0.6995366127175313, -0.6532640569314161, -0.6099357384227109, -0.569502383289641, -0.5318992166493403, -0.4970481925312664, -0.46486010908837416, -0.43523659784744706 ], [ -2.112722362287375, -2.1714045514021296, -2.227127451985463, -2.279279735829017, -2.3272362726962283, -2.3703699698757017, -2.4080659966465854, -2.4397382323884393, -2.4648475159960626, -2.482920945499419, -2.4935711099820477, -2.4965137945410474, -2.491582480871451, -2.4787379840072488, -2.458071905297716, -2.429803247417408, -2.394268419738057, -2.351905757039295, -2.3032363530929536, -2.248843309489778, -2.1893513768377453, -2.125408502210484, -2.057670159036392, -1.9867867096929603, -1.9133935811041465, -1.838103782160355, -1.7615022386414325, -1.6841414962930128, -1.6065384678950674, -1.529172019109409, -1.4524812737130395, -1.3768645677112825, -1.3026790020235952, -1.2302405463058184, -1.1598246416264926, -1.0916672434539036, -1.0259662419899445, -0.962883195423281, -0.9025453130589073, -0.8450476288583985, -0.7904553109098891, -0.738806058039464, -0.6901125406455612, -0.644364848532372, -0.6015329138359032, -0.5615688819904374, -0.5244094080618746, -0.4899778597108071, -0.4581864115943276, -0.4289380192267336 ], [ -2.089571982067039, -2.1469780368339517, -2.2014280117920997, -2.252324736028525, -2.2990591057661094, -2.3410217425785946, -2.37761687781264, -2.4082782713844, -2.4324867251396705, -2.449788447772489, -2.4598132006464595, -2.4622908612150507, -2.4570648691333536, -2.4441010639196574, -2.423490748673532, -2.395447418321141, -2.360297375582274, -2.3184652489118758, -2.2704560309156494, -2.216835532463966, -2.158211056545093, -2.095213702385649, -2.0284831540048827, -1.958655248603621, -1.886352186575959, -1.8121749964843517, -1.7366977948285172, -1.6604634266131635, -1.5839801728982434, -1.5077193149427235, -1.432113424296686, -1.3575552974798977, -1.284397477576931, -1.2129523120603591, -1.14349249470522, -1.0762520354356746, -1.0114275986628285, -0.9491801495137755, -0.889636848503935, -0.8328931382589095, -0.7790149702380323, -0.7280411244598073, -0.6799855805092442, -0.6348399032932742, -0.5925756119095417, -0.5531465045158598, -0.5164909162130009, -0.48253389070518893, -0.4511892499232686, -0.42236154893088373 ], [ -2.063151667166262, -2.119140804408193, -2.172182308372408, -2.2216950084380533, -2.2670877547755994, -2.3077708434695516, -2.343169496460254, -2.3727391766465438, -2.3959822860612165, -2.4124655196010645, -2.4218368592773767, -2.423840948839743, -2.4183314600800694, -2.405279127051819, -2.3847744326895377, -2.357024474162099, -2.3223442228933253, -2.2811430859518134, -2.233908206522562, -2.1811861936749812, -2.1235649085406862, -2.06165660658219, -1.9960832588806565, -1.927464384675737, -1.8564073334424915, -1.783499713920374, -1.7093035777095054, -1.6343509847058728, -1.5591406529753442, -1.484135482229691, -1.4097608118398937, -1.3364033222998877, -1.2644105150814475, -1.1940907163198602, -1.125713551548314, -1.0595108369894455, -0.9956778309467986, -0.9343747881771005, -0.8757287612067531, -0.8198355952058042, -0.7667620668165644, -0.7165481217802335, -0.6692091709130943, -0.6247384086647793, -0.5831091229657449, -0.5442769692505841, -0.5081821854037567, -0.4747517279295913, -0.44390131293263135, -0.41553734854442215 ], [ -2.0336700210712477, -2.0881179346824212, -2.1396322869212794, -2.187649529272134, -2.2315981190947194, -2.270909660025696, -2.3050319179292504, -2.333443469145889, -2.3556695229037246, -2.3712982132720355, -2.379996408076544, -2.381523881632284, -2.375744607626521, -2.3626340092824556, -2.3422812919445644, -2.31488646454481, -2.280752256426836, -2.240271732952322, -2.193912874860522, -2.142201613883569, -2.0857047775947533, -2.0250141291818715, -1.9607322858396168, -1.8934608748836874, -1.823790933903247, -1.7522953320384167, -1.679522888093753, -1.605993857856623, -1.5321965149235615, -1.4585846186592735, -1.3855756253161065, -1.313549543419492, -1.2428483616002257, -1.173775990262592, -1.1065986631052767, -1.0415457450362962, -0.9788108924577148, -0.9185535118779148, -0.8609004639716327, -0.8059479625777112, -0.7537636214365138, -0.7043886053715906, -0.6578398467897263, -0.6141122925643476, -0.5731811504201361, -0.5350041077698283, -0.4995234995407948, -0.4666684048785199, -0.43635665575215865, -0.4084967434427267 ], [ -2.0013518848355876, -2.054151228693367, -2.1040369901611964, -2.1504646276584083, -2.1928835730322405, -2.230748037969426, -2.263529513562712, -2.290730701422808, -2.3119004187757444, -2.3266488026086427, -2.3346619276425766, -2.335714792657529, -2.3296815713811774, -2.316542115553819, -2.296383963571139, -2.2693995319508606, -2.2358786846526906, -2.196197386808891, -2.1508035470528695, -2.1002013555684567, -2.0449354044987094, -1.9855756630195776, -1.9227040452388655, -1.8569029464930442, -1.7887458118552353, -1.7187895863327403, -1.647568788046075, -1.575590923553921, -1.5033329954501242, -1.431238904939049, -1.3597176043187, -1.2891418951398779, -1.2198477946568789, -1.1521344081729215, -1.0862642518259245, -1.022463972899113, -0.9609254155591306, -0.9018069806369715, -0.8452352294309433, -0.7913066837174778, -0.7400897770905766, -0.691626916178154, -0.6459366139590703, -0.6030156611304472, -0.5628413051180068, -0.5253734098112119, -0.49055657241533235, -0.45832217694977617, -0.42859036690601104, -0.401271922430523 ], [ -1.9664344736948958, -2.0174949575373793, -2.0656679081072014, -2.110428930079554, -2.15124950861072, -2.187607436880527, -2.2189987557008424, -2.244950930950188, -2.265036818294898, -2.2788887756273786, -2.2862121081915667, -2.286796906474377, -2.2805273048737753, -2.2673872863728173, -2.24746240094934, -2.2209371358887657, -2.188088119994304, -2.1492737791097625, -2.104921400585651, -2.055512743846684, -2.0015693285519838, -1.9436383628389624, -1.8822799998884099, -1.8180563049790461, -1.7515220429947116, -1.6832171991915672, -1.6136610354088714, -1.5433474474065683, -1.4727414020240872, -1.402276269909114, -1.3323519113868199, -1.26333340865905, -1.195550362996518, -1.1292966914023481, -1.0648308658495709, -1.0023765424171955, -0.9421235297397633, -0.884229047649227, -0.8288192285358476, -0.7759908160976847, -0.7258130187971397, -0.678329478367833, -0.6335603169484013, -0.5915042297143542, -0.5521405931318311, -0.5154315621109572, -0.48132413237212, -0.4497521472605813, -0.4206382310687069, -0.3938956336664752 ], [ -1.9291636181235199, -1.9784117627370656, -2.024804533518818, -2.067838573926339, -2.1070082186985406, -2.1418155036707573, -2.1717815117441575, -2.1964587739020454, -2.215444287574651, -2.2283925524564756, -2.235027879764144, -2.235155136206403, -2.228668072450729, -2.2155544848680178, -2.195897678331158, -2.1698740195426724, -2.1377467487744544, -2.099856586667305, -2.0566099623467555, -2.0084658469367227, -1.9559221819780164, -1.8995027611662265, -1.8397452012264468, -1.7771903819889832, -1.7123735006121357, -1.6458167062216515, -1.578023171875712, -1.5094724141159337, -1.4406166687068775, -1.3718781544181358, -1.3036470884317404, -1.2362803467720231, -1.170100686327196, -1.105396460785859, -1.0424217724528122, -0.9813970074076065, -0.9225097046416342, -0.8659157119805501, -0.8117405835696008, -0.7600811758521134, -0.7110074014141128, -0.6645641027605478, -0.6207730109346602, -0.579634756794718, -0.5411309056498372, -0.5052259887897734, -0.4718695082108044, -0.44099789354712793, -0.4125363928775422, -0.3864008817017335 ], [ -1.88979019948431, -1.9371688043390753, -1.981730225691598, -2.0229927969222743, -2.060474229262803, -2.093701172174266, -2.1222199423095063, -2.1456081385112498, -2.1634867228899632, -2.1755320105950036, -2.1814868943318553, -2.1811705600701976, -2.1744859544031794, -2.161424361598262, -2.1420666443682634, -2.1165809802827322, -2.0852172470468004, -2.048298521046185, -2.0062103992093423, -1.9593889923346923, -1.9083084514035549, -1.8534687883759746, -1.795384574080248, -1.7345748839773618, -1.671554661433388, -1.6068275083461252, -1.5408798077737929, -1.4741760301921207, -1.4071550619368636, -1.3402274058554704, -1.273773126556906, -1.2081404364594885, -1.1436448390415217, -1.080568760631983, -1.0191616120975349, -0.9596402281196017, -0.9021896357634546, -0.846964106820581, -0.79408845069386, -0.7436595068021787, -0.6957477977805281, -0.6503993071750432, -0.6076373478454479, -0.5674644898397606, -0.5298645190580432, -0.4948044005533009, -0.462236222826682, -0.4320991019705128, -0.4043210270085479, -0.37882063028590296 ], [ -1.8485668491988991, -1.8940342281073992, -1.9367284548449228, -1.976189973635414, -2.0119601486758123, -2.0435903511155122, -2.0706520577826097, -2.092747682492444, -2.1095217415569216, -2.1206718400397313, -2.1259588724633245, -2.125215782474511, -2.1183542411452967, -2.105368697382352, -2.0863374279528637, -2.0614204536458596, -2.03085446008539, -1.9949451236414837, -1.9540574507812387, -1.908604859629041, -1.8590377512613339, -1.8058322432662315, -1.7494795956178564, -1.6904766848101067, -1.629317711553984, -1.56648718612496, -1.5024541364992863, -1.437667428205174, -1.372552063361869, -1.3075063281816377, -1.242899672236284, -1.1790712207319616, -1.1163288378787781, -1.0549486729601742, -0.9951751305373704, -0.9372212129672375, -0.8812691879806958, -0.8274715373164175, -0.7759521449666621, -0.7268076858682957, -0.6801091780716717, -0.635903663626448, -0.5942159856530334, -0.5550506313119422, -0.5183936126311043, -0.48421435940262314, -0.45246760062487834, -0.4230952132579765, -0.3960280193932102, -0.37118751531618654 ], [ -1.8057449596848367, -1.8492739989891538, -1.8900794715011329, -1.9277241387427573, -1.961773066951105, -1.9918022245567197, -2.0174079469284494, -2.038216996670417, -2.0538968453987283, -2.0641657076411564, -2.068801784703963, -2.067651143374417, -2.060633677068532, -2.047746685425806, -2.029065761868339, -2.0047428835090457, -1.9750018275673573, -1.940131258615022, -1.9004760067081048, -1.8564271612328824, -1.8084116274089888, -1.7568817372566174, -1.702305394280521, -1.645157088983099, -1.5859099786260509, -1.5250291011415027, -1.4629657017461233, -1.4001525939477326, -1.337000449465521, -1.2738949057910474, -1.2111943869978816, -1.1492285458770757, -1.0882972488101055, -1.0286700364849672, -0.9705860027391116, -0.9142540405663717, -0.859853409175559, -0.8075345795398275, -0.7574203186385395, -0.7096069749267782, -0.6641659296907619, -0.621145180976198, -0.5805710287651467, -0.5424498320506013, -0.5067698104330943, -0.4735028648587176, -0.442606394153521, -0.41402508610609823, -0.38769266402299163, -0.36353357193555014 ], [ -1.7615720363924994, -1.8031491265481019, -1.8420574212589274, -1.8778820104158025, -1.910211509553057, -1.9386461592870388, -1.962806660819946, -1.98234348648707, -1.9969463172839554, -2.0063531812399886, -2.010358810350456, -2.00882171341848, -2.001669489619263, -1.9889019895898556, -1.9705920655123426, -1.9468838267996937, -1.917988511848396, -1.8841782712715807, -1.8457783065224005, -1.8031578988301031, -1.756720887293088, -1.7068961153799846, -1.6541282768675671, -1.5988694768863556, -1.5415717035251557, -1.4826802983840963, -1.4226284314425317, -1.3618325300145817, -1.3006885809264217, -1.2395692135673273, -1.1788214724518609, -1.118765195502764, -1.0596919241530622, -1.0018642810005585, -0.9455157589269694, -0.8908508720236826, -0.8380456235367792, -0.787248249727359, -0.7385802014138161, -0.6921373273202674, -0.6479912254069645, -0.606190730235489, -0.5667635062030985, -0.5297177182181642, -0.4950437531212796, -0.46271596691895944, -0.4326944347206084, -0.40492668218179617, -0.3793493792749294, -0.35588997933780475 ], [ -1.7162894038888994, -1.75591329000191, -1.7929279058366412, -1.8269405065280524, -1.8575629290600189, -1.884419192087711, -1.9071537142219621, -1.925439902872951, -1.938988792383979, -1.947557346862492, -1.950956000571941, -1.9490549979758518, -1.94178912551058, -1.929160502251785, -1.9112392142284091, -1.8881617265809088, -1.8601271712119112, -1.8273917629596481, -1.7902617228464517, -1.7490851659438937, -1.704243435967432, -1.656142341132771, -1.6052036771854743, -1.5518573303900551, -1.4965341532536465, -1.4396597136936367, -1.3816489438890858, -1.3229016620988485, -1.2637989084314933, -1.204700020061927, -1.1459403677007296, -1.087829678476432, -1.0306508770561946, -0.9746593843252629, -0.9200828198973905, -0.8671210605726389, -0.8159466115225912, -0.7667052506330563, -0.7195169093122434, -0.6744767554063822, -0.6316564458352207, -0.5911055182983056, -0.5528528930025287, -0.51690845689171, -0.4832647043760615, -0.45189841011183185, -0.42277231101083557, -0.3958367763989421, -0.3710314471123819, -0.348286826327066 ], [ -1.6701302654342927, -1.7078108560960363, -1.7429459762376491, -1.7751647311102807, -1.804101702869743, -1.8294040553651647, -1.8507391532155644, -1.8678024620618912, -1.8803254355408971, -1.8880830436646, -1.8909005657158247, -1.8886592671071256, -1.881300610523625, -1.8688287197304891, -1.8513109167238024, -1.828876280254679, -1.8017123115662048, -1.7700599238074834, -1.734207077780662, -1.6944814552018652, -1.651242585043225, -1.6048738201125112, -1.5557745080745002, -1.5043526263057634, -1.4510180671915338, -1.3961766818478736, -1.3402251241971865, -1.283546487902569, -1.2265066961097955, -1.1694515858691719, -1.1127046218763645, -1.056565174025039, -1.0013072970359165, -0.9471789558270832, -0.8944016458948962, -0.8431703630482045, -0.7936538811117297, -0.7459952996841168, -0.7003128268220016, -0.656700763776641, -0.6152306607786654, -0.5759526144693995, -0.5388966790115316, -0.5040743642575489, -0.47148019567929444, -0.44109331212564085, -0.41287907892715936, -0.3867906954450093, -0.36277077788998313, -0.3407529001235421 ], [ -1.623318104926275, -1.6590752721857291, -1.6923545330404406, -1.7228063979941899, -1.7500875953929607, -1.7738676910076763, -1.793836130622229, -1.8097094883108158, -1.821238652182196, -1.8282156389084625, -1.8304797055036046, -1.827922428274496, -1.820491449452861, -1.8081926531908044, -1.7910906213366358, -1.7693073278502458, -1.7430191469552336, -1.7124523600530392, -1.6778774363716593, -1.6396024217647787, -1.597965793698814, -1.5533291289676152, -1.5060698901613485, -1.4565745770914662, -1.4052324211568588, -1.3524297338935485, -1.2985449629144592, -1.2439444630765362, -1.188978958932635, -1.1339806550218994, -1.0792609407764768, -1.0251086338809174, -0.9717887071913729, -0.9195414477661534, -0.8685820007880186, -0.8191002553488572, -0.7712610328142965, -0.7252045416538879, -0.6810470652258941, -0.6388818511261487, -0.5987801724511491, -0.5607925327885526, -0.5249499880266267, -0.49126555925226645, -0.45973571215959785, -0.4303418795846641, -0.4030520050716644, -0.3778220868055726, -0.35459770284080716, -0.33331550032470436 ], [ -1.576065412272016, -1.609927809240928, -1.6413831016002092, -1.670102652114841, -1.695764637754222, -1.7180601981958583, -1.7366999281460702, -1.7514205124048605, -1.7619912606459232, -1.7682202670119027, -1.7699599036128768, -1.7671113620296512, -1.7596279864139823, -1.7475171963884386, -1.7308408747419801, -1.7097141872296375, -1.6843028999026748, -1.654819352033499, -1.62151731900035, -1.584686051072387, -1.5446437965107986, -1.5017311110447586, -1.4563042250842553, -1.4087286924076385, -1.3593734880755797, -1.3086056669680746, -1.2567856437657108, -1.204263114108918, -1.1513736063908921, -1.0984356336212902, -1.0457484033342224, -0.9935900384345646, -0.9422162610632726, -0.8918594932521868, -0.8427283310368437, -0.795007351954353, -0.7488572189860636, -0.7044150467793898, -0.6617949983284884, -0.6210890822271482, -0.582368122191286, -0.545682871861918, -0.5110652490261741, -0.47852966441640477, -0.44807442124306784, -0.4196831626564169, -0.3933263454744722, -0.36896271980605855, -0.3465407956664033, -0.32600027933857456 ], [ -1.5285727078864997, -1.5605766245822157, -1.5902469457421162, -1.6172752456771773, -1.6413603759109032, -1.6622141601087446, -1.6795673647690474, -1.6931757608414202, -1.702826057080701, -1.708341461095392, -1.7095866133296935, -1.7064716465801553, -1.698955151519506, -1.6870458771821868, -1.67080306171151, -1.6503353672534444, -1.625798475791674, -1.5973914809106575, -1.5653522753056779, -1.5299521786259926, -1.491490071332913, -1.4502862976616686, -1.4066765777836798, -1.3610061315271549, -1.3136241702388038, -1.2648788660092207, -1.2151128637207607, -1.1646593645844265, -1.1138387815281579, -1.0629559469564431, -1.01229784095542, -0.9621318013877092, -0.9127041748349942, -0.864239367518999, -0.8169392569958063, -0.7709829277501983, -0.7265266962900374, -0.6837043936602889, -0.642627875325575, -0.6033877300733538, -0.5660541609901555, -0.5306780127158464, -0.49729192015626456, -0.465911554709704, -0.4365369449139266, -0.4091538493190824, -0.38373516039940747, -0.3602423194801134, -0.3386267240056029, -0.31883111002160414 ], [ -1.4810278387317681, -1.5112161115049298, -1.5391464817019036, -1.5645300255717727, -1.5870854384267643, -1.6065442960239908, -1.6226565337382512, -1.635195974577307, -1.6439657091258293, -1.6488031113427424, -1.649584267452957, -1.6462276039691774, -1.6386965268233484, -1.6270009264351502, -1.6111974607928938, -1.5913885955440434, -1.567720450239408, -1.540379565989819, -1.5095887649792459, -1.4756023111572338, -1.4387006010273948, -1.399184613559806, -1.3573703312778382, -1.3135833148103049, -1.2681535759074871, -1.2214108542873652, -1.1736803660413566, -1.1252790586949026, -1.0765123819604188, -1.0276715640552605, -0.9790313705929989, -0.9308483153819829, -0.8833592886922286, -0.8367805674574287, -0.7913071724418755, -0.7471125388520737, -0.704348468678982, -0.6631453348879618, -0.6236125092477093, -0.5858389870288839, -0.5498941829971241, -0.515828874105569, -0.48367626511452344, -0.45345315409909737, -0.42516117552201704, -0.39878809931807147, -0.3743091653199693, -0.3516884334004302, -0.3308801309427345, -0.31182998069320456 ], [ -1.4336055167220125, -1.4620265020710699, -1.488266954050215, -1.5120566893838556, -1.533133377154079, -1.5512473884165323, -1.5661668146488612, -1.577682501357755, -1.5856129205407956, -1.5898086911051792, -1.5901565526911512, -1.586582607895245, -1.5790546717532452, -1.5675836050741117, -1.5522235575719154, -1.5330711037652047, -1.5102633140455002, -1.4839748593229212, -1.4544142947165737, -1.4218197015445622, -1.3864538849180905, -1.3485993262503528, -1.3085530776852639, -1.2666217621093725, -1.2231168121360838, -1.1783500484152787, -1.1326296654281416, -1.0862566642158185, -1.039521747799816, -0.9927026769088249, -0.9460620707788707, -0.8998456294974795, -0.854280749650114, -0.8095755029133355, -0.7659179468521232, -0.7234757378211342, -0.6823960170301799, -0.6428055421685565, -0.60481103828125, -0.5684997427437104, -0.5339401201531265, -0.5011827237531716, -0.47026118067697575, -0.4411932788881423, -0.41398213428868647, -0.3886174171116794, -0.36507661748494225, -0.3433263309867116, -0.3233235461455959, -0.3050169171769048 ], [ -1.386467070052627, -1.4131736898073861, -1.4377783366219037, -1.4600287695235106, -1.4796807371959773, -1.4965024387017478, -1.5102791120364705, -1.5208176113265823, -1.5279508152722932, -1.5315416984810188, -1.5314868959147652, -1.527719600479961, -1.520211655535661, -1.5089747372242854, -1.4940605640584164, -1.475560119820826, -1.4536019262651216, -1.42834944963787, -1.3999977652478661, -1.3687696336921835, -1.3349111588671063, -1.298687201182175, -1.2603767106982628, -1.220268126715238, -1.1786549658467156, -1.1358316931818266, -1.0920899437302125, -1.0477151362630206, -1.0029835003486192, -0.958159520478011, -0.9134937886673237, -0.8692212483483179, -0.825559807007862, -0.7827092921364601, -0.7408507238664014, -0.700145877607307, -0.6607371105452587, -0.6227474267215279, -0.5862807563251148, -0.5514224256909899, -0.5182397952346275, -0.48678304316532395, -0.45708607333266993, -0.4291675260207376, -0.4030318709721441, -0.3786705624607132, -0.3560632368928782, -0.3351789342494489, -0.3159773257102332, -0.2984099310460855 ], [ -1.339760378735321, -1.3648092404647403, -1.387835423644857, -1.4086038079704326, -1.4268873162808429, -1.44247100979073, -1.4551562771077329, -1.464764991428852, -1.4711434957387406, -1.4741662677481921, -1.4737391164980878, -1.4698017722665822, -1.4623297510863156, -1.4513354041966597, -1.4368680993931606, -1.4190135227347078, -1.3978921319275677, -1.3736568331251837, -1.3464899872939524, -1.3165998778701995, -1.2842167864719487, -1.2495888275451232, -1.212977686897071, -1.1746543949897512, -1.1348952461325794, -1.0939779520071196, -1.0521780947310453, -1.009765922889101, -0.9670035149522453, -0.9241423189618776, -0.8814210654176069, -0.839064041719025, -0.7972797107782047, -0.7562596529422906, -0.7161778085478846, -0.6771899977428913, -0.6394336942264086, -0.6030280299507907, -0.5680740083776068, -0.5346549044412253, -0.502836829877219, -0.4726694429957269, -0.4441867823364748, -0.4174082039706034, -0.39233940256619926, -0.3689734967648528, -0.3472921599780947, -0.3272667784469052, -0.3088596193431634, -0.2920249928396461 ], [ -1.2936199670504571, -1.3170705610555595, -1.3385780789915214, -1.357923687531673, -1.374896577743542, -1.389297718299867, -1.4009436744539494, -1.4096703797854413, -1.4153367361336666, -1.417827911299922, -1.4170582054122884, -1.4129733662270711, -1.4055522513216867, -1.3948077605036426, -1.380786993319609, -1.3635706219999308, -1.3432715066556844, -1.320032613981004, -1.2940243302194194, -1.2654412814310325, -1.2344987877311373, -1.2014290827735141, -1.1664774259377921, -1.1298982238802688, -1.0919512622738785, -1.052898129834642, -1.0129988971287271, -0.9725090938457172, -0.9316770114038289, -0.8907413436130639, -0.8499291669058691, -0.8094542532481617, -0.7695157029345775, -0.7302968806013794, -0.6919646354802764, -0.6546687857205465, -0.618541846146285, -0.5836989787923305, -0.5502381457601756, -0.5182404442109194, -0.48777060358459046, -0.4588776253713811, -0.43159554596444005, -0.40594430332442777, -0.38193068842701283, -0.35954936279494554, -0.33878392388364964, -0.3196080007324378, -0.3019863631383053, -0.28587602866620454 ], [ -1.2481672275246338, -1.2700811998415884, -1.2901316145029802, -1.3081150890999003, -1.3238361854289522, -1.3371108438582566, -1.3477698606067987, -1.3556623065691378, -1.3606587771537715, -1.3626543585136517, -1.3615711976142837, -1.3573605724777438, -1.3500043747546138, -1.3395159389223803, -1.3259401795965677, -1.309353028757269, -1.2898601957966414, -1.267595302684774, -1.2427174718956542, -1.215408464157848, -1.185869475413177, -1.1543177072079025, -1.120982822525218, -1.086103390876017, -1.0499234138191949, -1.0126890066913208, -0.9746452958422634, -0.9360335745102535, -0.8970887456837836, -0.858037067553209, -0.8190942067523218, -0.7804635965321639, -0.7423350910906272, -0.7048839031740877, -0.6682698093958959, -0.632636606112053, -0.5981117978294814, -0.5648064997295205, -0.532815535765961, -0.5022177138033275, -0.47307625931193353, -0.4454393891922116, -0.41934100735730806, -0.3948015037808281, -0.37182863885204664, -0.3504184951168443, -0.33055647886145323, -0.3122183545529542, -0.2953712959089003, -0.2799749383378505 ], [ -1.2035107532161833, -1.2239512525984053, -1.242607271466963, -1.2592900479885991, -1.2738186328427772, -1.286023027335672, -1.2957473459836235, -1.3028529128434496, -1.3072211936671527, -1.3087564632108126, -1.3073881095690347, -1.3030724857180869, -1.2957942325357363, -1.2855670168752031, -1.2724336516969896, -1.2564655912148062, -1.237761820570077, -1.216447184681477, -1.1926702227225368, -1.1666005916284887, -1.138426173134113, -1.1083499637453236, -1.0765868460283938, -1.0433603334760448, -1.0088993711651315, -0.9734352618184963, -0.9371987730752465, -0.9004174679462027, -0.8633132875089632, -0.8261004035007282, -0.7889833489221416, -0.7521554271479586, -0.7157973942390055, -0.680076404935049, -0.6451452098908297, -0.6111415897986496, -0.5781880108431574, -0.546391485222361, -0.5158436200590911, -0.4866208377864747, -0.45878475093505267, -0.432382674134689, -0.40744825606075374, -0.3840022140154735, -0.3620531538709413, -0.34159845824731416, -0.3226252260952167, -0.30511124732658956, -0.28902599681449437, -0.2743316329671983 ], [ -1.1597467573957108, -1.178777853190345, -1.1961027824284813, -1.211546585881908, -1.2249419426618502, -1.2361320338794712, -1.2449734160608432, -1.251338823288048, -1.2551198114206679, -1.2562291560243402, -1.2546029184404532, -1.250202102113364, -1.2430138337930743, -1.233052021050536, -1.2203574577339864, -1.2049973712344852, -1.1870644281409501, -1.166675236391574, -1.1439684008216329, -1.11910220380949, -1.0922519927036314, -1.0636073605485148, -1.0333692064930102, -1.0017467577735042, -0.968954627236768, -0.9352099700910352, -0.900729792048729, -0.8657284492443554, -0.8304153690771631, -0.7949930110068526, -0.7596550776526146, -0.7245849794327246, -0.6899545503926405, -0.6559230086507798, -0.6226361518267665, -0.5902257756688274, -0.5588093026349472, -0.5284896062037926, -0.4993550160324922, -0.4714794886170832, -0.44492292776689657, -0.4197316389319711, -0.3959389012083301, -0.3735656406981509, -0.35262118884414906, -0.3331041094210867, -0.3150030780845694, -0.29829779877559615, -0.2829599418770872, -0.268954089822232 ], [ -1.1169595620317758, -1.1346457291430863, -1.1507029934779205, -1.1649693981871363, -1.1772904162135485, -1.1875215603509697, -1.195530991476332, -1.201202052713891, -1.2044356529422258, -1.2051524220926244, -1.2032945636072558, -1.1988273364626942, -1.1917401102281537, -1.1820469512662928, -1.1697867155932522, -1.1550226429924264, -1.1378414664275978, -1.1183520692700113, -1.096683739075209, -1.0729840795838599, -1.0474166515798804, -1.0201584179213599, -0.9913970685693904, -0.9613282982328866, -0.9301531030406947, -0.8980751543094003, -0.8652982978921858, -0.8320242175985342, -0.7984502914551206, -0.7647676606436716, -0.7311595231230282, -0.6977996573690115, -0.6648511763549841, -0.6324655077543845, -0.6007815932175112, -0.5699252972725773, -0.5400090147378906, -0.511131464337304, -0.4833776553414437, -0.4568190134039366, -0.43151365124938124, -0.40750676945499353, -0.3848311722340483, -0.3635078828809237, -0.343546843393288, -0.3249476827730893, -0.3077005386521028, -0.29178691721351546, -0.2771805769043003, -0.26384842215872206 ], [ -1.075222138752681, -1.0916278054285282, -1.1064805299340805, -1.1196305795673007, -1.1309354157061307, -1.1402620700701487, -1.1474895101894345, -1.1525109297742537, -1.1552358963432205, -1.1555922880709972, -1.1535279547383663, -1.1490120440667326, -1.14203594448587, -1.132613808116185, -1.1207826327618373, -1.1066018980929413, -1.0901527678763876, -1.0715368859852996, -1.0508748079391745, -1.0283041210460324, -1.0039773142486152, -0.9780594632493375, -0.9507257974555632, -0.922159213086015, -0.8925477919662933, -0.8620823788029643, -0.8309542617885474, -0.7993529929413975, -0.7674643762124459, -0.7354686435463499, -0.70353883207042, -0.6718393695624242, -0.6405248703601433, -0.6097391398723933, -0.579614382724376, -0.5502706071783003, -0.5218152166634425, -0.4943427778863665, -0.4679349539500933, -0.442660590094923, -0.4185759390153724, -0.39572501216679856, -0.37414004303427184, -0.35384204799689956, -0.33484147019750043, -0.31713889174224463, -0.30072579963096135, -0.2855853910765407, -0.27169340432438505, -0.25901896173383565 ], [ -1.0345966880983206, -1.0497858420297086, -1.0634964908812015, -1.0755903731340188, -1.085936164826267, -1.0944116407124107, -1.1009058178328806, -1.1053210243282208, -1.107574833799941, -1.107601805532873, -1.105354973740429, -1.100807034777775, -1.0939511898711942, -1.0848016119804709, -1.0733935183664627, -1.0597828445161115, -1.0440455294019901, -1.0262764357111125, -1.006587940815622, -0.9851082441692424, -0.9619794440040278, -0.937355440430093, -0.9113997233222442, -0.8842831019603781, -0.8561814297043576, -0.827273371573589, -0.7977382560553008, -0.7677540453525303, -0.7374954511016713, -0.7071322157356817, -0.6768275734221414, -0.6467368990296921, -0.6170065489360991, -0.5877728936706992, -0.5591615393122933, -0.5312867321360993, -0.5042509391032397, -0.47814459529802666, -0.453046008240501, -0.42902140805175015, -0.40612513166834907, -0.38439992865248107, -0.3638773756094331, -0.34457838580376987, -0.3265138002711574, -0.30968504657239215, -0.2940848513496539, -0.27969799303915166, -0.26650208148014554, -0.2544683517400508 ], [ -0.9951352448654069, -1.0091710930053113, -1.0218011603116657, -1.0328979311904674, -1.042340555819961, -1.050016813766269, -1.0558250549979342, -1.0596760675422956, -1.0614948191287783, -1.0612220204653855, -1.0588154605135593, -1.054251069327401, -1.0475236715870038, -1.038647403573404, -1.0276557775148438, -1.014601389346508, -0.9995552782422181, -0.9826059580462918, -0.9638581512544713, -0.9434312648783841, -0.9214576539611066, -0.8980807224758702, -0.8734529128266805, -0.8477336343585266, -0.8210871785068778, -0.7936806639022745, -0.765682049371694, -0.7372582468134063, -0.708573359786944, -0.6797870676986432, -0.6510531699292568, -0.6225182993039499, -0.5943208100239302, -0.566589841571219, -0.5394445571220534, -0.5129935525859187, -0.4873344304369167, -0.4625535309307529, -0.4387258120204166, -0.41591486822820567, -0.3941730778496859, -0.3735418671242192, -0.3540520793915185, -0.3357244367628014, -0.31857008147791177, -0.30259118391087014, -0.2877816041424943, -0.2741275941539387, -0.26160852801811463, -0.25019764797796373 ], [ -0.9568802991646971, -0.9698249767106892, -0.9814347246661252, -0.9915920775348817, -1.0001859533529505, -1.0071134361789955, -1.0122815324325165, -1.015608856060046, -1.0170271961100585, -1.0164829207938748, -1.0139381746682992, -1.0093718302313937, -1.002780161862031, -0.9941772183872071, -0.9835948802161729, -0.9710825974089093, -0.9567068156479734, -0.9405501072386133, -0.9227100333924039, -0.9032977716671398, -0.8824365481872887, -0.8602599179628252, -0.8369099382335683, -0.8125352794198186, -0.7872893162114464, -0.7613282379170652, -0.7348092128059185, -0.707888636193391, -0.6807204868003263, -0.6534548107532361, -0.6262363477136496, -0.5992033091827678, -0.5724863151057251, -0.5462074915235408, -0.5204797291703058, -0.4954061005391738, -0.4710794309767997, -0.4475820177415514, -0.4249854896092873, -0.4033507984753111, -0.38272833343998025, -0.3631581470504619, -0.344670282689189, -0.3272851915489192, -0.3110142272224914, -0.2958602056747144, -0.2818180182681651, -0.26887528559562246, -0.2570130401363804, -0.24620642620171962 ], [ -0.9198654244415035, -0.9317797485542392, -0.942427988355856, -0.9517020631810629, -0.95949998732734, -0.9657274867163781, -0.9702995870358297, -0.9731421334680678, -0.9741932011014214, -0.973404355740763, -0.9707417272130717, -0.9661868614156712, -0.9597373231734116, -0.9514070292237353, -0.9412262989874968, -0.9292416197688103, -0.9155151321622748, -0.9001238502198482, -0.8831586388625222, -0.8647229777078389, -0.8449315456240922, -0.8239086637451601, -0.8017866363498851, -0.7787040290157392, -0.7548039219914322, -0.7302321740647837, -0.7051357286388368, -0.6796609895870244, -0.6539522900328576, -0.6281504727456625, -0.6023915965614557, -0.5768057792690373, -0.5515161838310217, -0.5266381516737901, -0.5022784840766849, -0.4785348703884875, -0.4554954598519978, -0.43323857217189277, -0.4118325405653668, -0.39133567984422735, -0.3717963710569261, -0.3532532533466395, -0.33573551294595205, -0.3192632586288757, -0.3038479724828145, -0.2894930245573957, -0.2761942398050734, -0.2639405057598694, -0.2527144096107119, -0.24249289371363902 ], [ -0.8841159051608318, -0.8950591691804006, -0.9048030804114415, -0.913248308942652, -0.9203013284379344, -0.925875881173092, -0.9298944131371272, -0.9322894438772127, -0.9330048350556874, -0.9319969223806344, -0.9292354777619979, -0.9247044722355835, -0.9184026152897293, -0.9103436525241406, -0.9005564107743774, -0.8890845875829338, -0.8759862897769306, -0.8613333335008402, -0.8452103249527062, -0.8277135469447987, -0.8089496810010228, -0.7890343978626576, -0.7680908509582791, -0.74624810766266, -0.7236395521688352, -0.7004012917372473, -0.6766705952127103, -0.6525843892722646, -0.628277834130939, -0.6038829966048421, -0.5795276346875413, -0.5553341042655682, -0.5314183953661794, -0.5078893024376162, -0.48484773061858166, -0.46238613774401105, -0.44058810992766695, -0.41952806692020594, -0.3992710920252349, -0.3798728801309408, -0.3613797963540397, -0.3438290368785555, -0.3272488827954947, -0.31165903711047305, -0.29707103459030093, -0.28348871377520823, -0.27090874030073, -0.2593211706598042, -0.2487100456956306, -0.23905400344732808 ], [ -0.8496493581322336, -0.8596791622853143, -0.8685741467442359, -0.8762431296849054, -0.8826004416116711, -0.8875672519233645, -0.8910728648854022, -0.8930559537590685, -0.8934657013589996, -0.8922628160355204, -0.8894203940792899, -0.8849246028159241, -0.8787751631095883, -0.8709856154556345, -0.8615833600675032, -0.8506094680469924, -0.8381182675289082, -0.8241767152609236, -0.8088635700871077, -0.7922683899652586, -0.7744903782486189, -0.7556371078680308, -0.7358231537155063, -0.715168663991531, -0.6937979006454899, -0.671837777474766, -0.6494164221502045, -0.6266617856142428, -0.6037003191569407, -0.5806557361983076, -0.5576478725453772, -0.5347916557659073, -0.5121961914077611, -0.48996397113961376, -0.4681902055128403, -0.4469622819421418, -0.4263593466555453, -0.40645200774683843, -0.3873021550472666, -0.3689628912930034, -0.3514785679802477, -0.33488491835779755, -0.3192092792014527, -0.3044708923461861, -0.2906812764256905, -0.27784465889262133, -0.2659584581747416, -0.2550138057686986, -0.24499609818712065, -0.23588556895397517 ], [ -0.8164763425573168, -0.8256484574034407, -0.8337480236521937, -0.840691436195247, -0.8464003136142197, -0.8508026984283429, -0.8538342266847525, -0.8554392392642739, -0.8555718069706638, -0.854196642200642, -0.8512898718072981, -0.8468396486595309, -0.8408465832863089, -0.8333239817308451, -0.8242978811196952, -0.8138068802213951, -0.801901768145895, -0.7886449600293436, -0.7741097537842293, -0.7583794265349949, -0.7415461930202282, -0.7237100509071988, -0.7049775395855229, -0.6854604396049573, -0.6652744395782446, -0.6445377962097372, -0.623370011291023, -0.6018905471961107, -0.5802175997796053, -0.5584669447865307, -0.5367508710538198, -0.5151772110251371, -0.49384847648726005, -0.4728611050152076, -0.45230482040777376, -0.4322621084101128, -0.4128078072469865, -0.3940088109135551, -0.37592388177127756, -0.3586035677569812, -0.3420902184194454, -0.326418093040864, -0.31161355327689666, -0.2976953320601423, -0.28467486996277014, -0.27255670981193103, -0.2613389401033026, -0.2510136776692078, -0.24156758013000457, -0.23298237888831608 ], [ -0.7846009548381452, -0.7929692139701094, -0.8003248891703976, -0.8065914115860199, -0.8116971520565194, -0.8155765062465383, -0.8181709495183468, -0.8194300371348394, -0.8193123252099113, -0.8177861885360025, -0.8148305130558571, -0.810435243293254, -0.8046017684464849, -0.7973431349542714, -0.7886840779938544, -0.7786608693537502, -0.7673209842044414, -0.7547225942282179, -0.7409338991360428, -0.7260323125948188, -0.7101035218569548, -0.6932404428217931, -0.6755420938186578, -0.6571124120926959, -0.6380590368553377, -0.6184920819279413, -0.5985229195838412, -0.5782629953179059, -0.5578226910825069, -0.537310252154243, -0.5168307903501173, -0.4964853738868391, -0.47637021184158823, -0.4565759389733922, -0.43718700462818183, -0.4182811675884792, -0.39992909703998314, -0.38219407830427254, -0.3651318206183507, -0.34879036301689514, -0.3332100732829284, -0.3184237339721083, -0.3044567086837924, -0.2913271810509197, -0.2790464583559136, -0.2676193312576094, -0.2570444808409422, -0.24731492408125688, -0.23841848884978867, -0.23033830977340397 ] ], "zauto": true, "zmax": 2.5968944744272675, "zmin": -2.5968944744272675 }, { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 1, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(255,247,251)" ], [ 0.14285714285714285, "rgb(236,231,242)" ], [ 0.2857142857142857, "rgb(208,209,230)" ], [ 0.42857142857142855, "rgb(166,189,219)" ], [ 0.5714285714285714, "rgb(116,169,207)" ], [ 0.7142857142857143, "rgb(54,144,192)" ], [ 0.8571428571428571, "rgb(5,112,176)" ], [ 1.0, "rgb(3,78,123)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x2", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y2", "z": [ [ 0.47958029340857977, 0.4645670969924112, 0.4496876950558008, 0.43505633138744526, 0.42078203245095325, 0.4069635240421411, 0.3936846328603692, 0.3810110917283151, 0.3689897890574115, 0.35765142642421976, 0.34701719490154764, 0.33710942592357335, 0.3279652708924903, 0.3196514537416861, 0.3122772230282833, 0.30600204248940943, 0.30103456791812483, 0.29762035699377826, 0.2960177935215191, 0.29646482773876437, 0.2991426105411974, 0.30414440129754516, 0.31145760495838914, 0.32096303214836636, 0.33245009079841464, 0.3456423073715217, 0.36022613874076465, 0.375877315727823, 0.39228150259859, 0.40914842789071554, 0.42622015028911997, 0.44327475962935037, 0.4601268713999867, 0.4766260575484712, 0.49265406835990716, 0.5081214383685961, 0.5229638661843774, 0.537138613771719, 0.5506210734408525, 0.5634015873686903, 0.5754825638548767, 0.586875908710414, 0.597600773746136, 0.6076816137808541, 0.6171465367518444, 0.6260259270686181, 0.6343513195246613, 0.6421544994122325, 0.649466803699062, 0.6563185980509691 ], [ 0.47105888943657676, 0.4554773004171779, 0.44004786462723977, 0.4248965080207437, 0.4101439204694189, 0.3958993999284994, 0.3822549556307655, 0.3692807427826173, 0.35702311727639185, 0.34550658906403586, 0.3347406028181626, 0.324731333820966, 0.31549761085847555, 0.30708883305533113, 0.29960157825647915, 0.29319078415622923, 0.2880712208582545, 0.28450581741188774, 0.2827796244604644, 0.2831618951961968, 0.2858632227985519, 0.2909979705781676, 0.2985620135805244, 0.3084312226218187, 0.3203791873682084, 0.334107107800013, 0.34927707681854814, 0.36554183081649033, 0.3825673918222011, 0.40004795707109275, 0.41771411098619293, 0.43533604589279584, 0.4527234208478345, 0.46972315680284726, 0.486216095160539, 0.5021131356541378, 0.517351241548764, 0.5318895456759611, 0.5457056910738561, 0.5587924775549852, 0.5711548470988113, 0.5828072174753184, 0.5937711590953401, 0.6040734011421384, 0.6137441474151428, 0.622815678764369, 0.6313212168094589, 0.639294022430103, 0.6467667020668528, 0.6537706950532048 ], [ 0.46301525808979377, 0.4468864234363037, 0.4309281524382524, 0.4152788459827618, 0.40007196350785945, 0.38542873653831805, 0.371450833596783, 0.35821419902158397, 0.34576562339620204, 0.334123688218312, 0.32328539993058264, 0.3132390019125769, 0.30398218079700545, 0.29554337040457945, 0.28800240530362536, 0.2815057108667996, 0.276270862686054, 0.2725760959139432, 0.27073268605131473, 0.27104237238982654, 0.2737475283251908, 0.27898631965736587, 0.28676540394416117, 0.2969572837691083, 0.30932066017909926, 0.3235350307756049, 0.3392387487914777, 0.356062321609746, 0.3736530251999213, 0.3916904675926142, 0.4098946550098612, 0.4280286668462565, 0.44589784638290664, 0.4633469541576515, 0.48025627348079186, 0.4965372986564518, 0.5121283864158194, 0.5269905888398714, 0.5411037855261271, 0.5544631723099253, 0.5670761281599753, 0.5789594609493479, 0.5901370205010085, 0.6006376599752881, 0.6104935222199215, 0.6197386249887382, 0.6284077173386898, 0.6365353787207039, 0.6441553321277296, 0.6512999430663536 ], [ 0.45554250899802745, 0.4388947285911646, 0.42243544792346804, 0.4063160741479851, 0.3906837049886587, 0.3756726909753647, 0.36139576005650975, 0.34793606522311493, 0.3353419955975188, 0.3236268024790429, 0.31277481042553573, 0.30275507309168276, 0.2935418420922152, 0.2851393997666526, 0.2776070453069452, 0.2710787018871233, 0.2657710677367142, 0.2619748625177904, 0.2600261130222293, 0.26025914424099417, 0.2629495786680021, 0.26826162804644565, 0.2762150634645911, 0.28668100913196204, 0.29940487494675266, 0.3140458330906981, 0.3302198241665209, 0.34753646112475806, 0.3656255754310886, 0.384153378957607, 0.402830322370798, 0.4214131941716661, 0.43970364222614344, 0.45754470328327995, 0.47481638248191066, 0.49143092107211245, 0.507328121409434, 0.5224709304871975, 0.5368413832756321, 0.550436949377859, 0.5632672938452861, 0.5753514447243038, 0.5867153496849788, 0.5973897982900085, 0.6074086831109072, 0.6168075709437975, 0.6256225543000234, 0.6338893529074985, 0.641642635054566, 0.6489155291943025 ], [ 0.4487358031347594, 0.4316054276072473, 0.41468051604820527, 0.3981256619542782, 0.38210210994107663, 0.3667581890491236, 0.3522188469302902, 0.3385757634551995, 0.3258801702919265, 0.31414087258232715, 0.3033297602250647, 0.2933961064239898, 0.2842892170291827, 0.27598683521475065, 0.26852460949841994, 0.2620203594781251, 0.25668616300886477, 0.25282180223514655, 0.25078549081036017, 0.25094288498120976, 0.25360305950429757, 0.2589576733938639, 0.2670416984219336, 0.27772718739641405, 0.29074854438399095, 0.30574681681423477, 0.3223176289520226, 0.34005164178946506, 0.35856296088858575, 0.37750584111032204, 0.3965823158906299, 0.4155437320179841, 0.4341886351960716, 0.45235871824304164, 0.46993391772536525, 0.4868273001351505, 0.5029800933206994, 0.5183570472167608, 0.5329422092680173, 0.5467351451569779, 0.5597476058229692, 0.5720006260379433, 0.5835220315294388, 0.5943443272539238, 0.604502937049725, 0.6140347636052048, 0.6229770370397081, 0.6313664202460578, 0.6392383394366391, 0.6466265090650289 ], [ 0.44269010314598967, 0.4251223074702161, 0.40777555344248134, 0.3908273725682932, 0.3744531876806598, 0.3588156842221247, 0.34405276719375427, 0.33026567334085183, 0.3175096425343221, 0.30579011002754847, 0.29506727265724514, 0.2852708195606807, 0.2763246204447887, 0.26817862974019074, 0.26084281435431805, 0.254416104453154, 0.24910253636126187, 0.24520719066255986, 0.24310687195702926, 0.24319578659688845, 0.24581504336277432, 0.25118389451172496, 0.2593540201166291, 0.2702008360037044, 0.2834506531992812, 0.29872942778440253, 0.3156153588483199, 0.33368272294249995, 0.3525320408598578, 0.37180729509454563, 0.39120335484804303, 0.4104670031111759, 0.42939425438917844, 0.44782578807245216, 0.46564162041893226, 0.48275565700297357, 0.49911046831286227, 0.5146724566979258, 0.529427485820673, 0.5433769918566637, 0.5565345688632385, 0.5689230073087899, 0.5805717581951526, 0.591514792035536, 0.6017888204051958, 0.6114318470340329, 0.6204820151220652, 0.628976717631827, 0.636951937749574, 0.6444417875408327 ], [ 0.4374973859568381, 0.41954668692683994, 0.4018309353942611, 0.3845398714484006, 0.3678625555165386, 0.35197578570647, 0.33703056084791533, 0.3231382195744897, 0.3103589154922195, 0.2986958556387792, 0.2880987441138521, 0.2784787466745888, 0.26973501808411404, 0.2617899003276443, 0.25462708765627007, 0.2483250395726055, 0.24307703274192743, 0.23918965607158976, 0.23705385488556519, 0.2370880529116258, 0.23966212217143487, 0.24502144221737604, 0.2532349737133984, 0.2641837956427664, 0.2775895176405019, 0.29306680249897554, 0.31018008263042834, 0.32849043162955516, 0.3475873458040927, 0.3671064679359857, 0.3867368785014493, 0.40622171535838125, 0.42535502507587736, 0.4439767703835445, 0.46196714963090896, 0.4792408714307611, 0.49574171661345334, 0.5114375426960538, 0.5263157903519331, 0.5403795018434824, 0.5536438368863347, 0.5661330598758246, 0.5778779672519373, 0.5889137215911517, 0.5992780581225892, 0.6090098290340742, 0.6181478508986136, 0.6267300207742118, 0.6347926670577532, 0.6423701020702683 ], [ 0.43324339771530485, 0.41497377013269965, 0.3969511951352046, 0.3793763927937969, 0.3624508938328568, 0.3463646444541299, 0.3312811296735213, 0.31732167734617295, 0.304551826067799, 0.29297362330286, 0.28252787145304276, 0.2731091602097568, 0.26459397394973266, 0.25687882842729626, 0.24992222900281325, 0.24378205868625097, 0.23863911630052645, 0.2347979860202799, 0.23265871008267078, 0.23265818954242204, 0.23518990514041585, 0.24052208616716522, 0.2487403207131164, 0.2597332318765624, 0.27322137630908705, 0.2888125370506865, 0.30606171540398625, 0.32452052896478784, 0.34377040906765843, 0.36344083850488434, 0.3832166178592046, 0.4028382164349071, 0.4220982881768592, 0.4408363621318951, 0.45893289407687715, 0.47630332675245407, 0.49289248462544105, 0.5086694495156566, 0.5236229682783833, 0.5377573957988824, 0.5510891537103235, 0.5636436750797712, 0.5754528011744078, 0.5865525949393918, 0.5969815353846801, 0.606779057020147, 0.6159843985927069, 0.6246357256744409, 0.6327694922120332, 0.6404200070656564 ], [ 0.4300041155310782, 0.41148857253656296, 0.3932304114502128, 0.3754396270145463, 0.35832842565376194, 0.34209818189192787, 0.326923441307518, 0.31293464142920246, 0.3002026148139066, 0.28872912375817616, 0.27844796148901135, 0.2692399321376214, 0.2609622177307917, 0.25348893547386037, 0.24675621523419783, 0.2408028190755517, 0.2357964908699096, 0.2320367931265957, 0.2299275163489577, 0.22991718918924164, 0.23241607167873268, 0.2377101959649781, 0.2458997696907761, 0.2568821858940017, 0.2703805955532404, 0.286000711515285, 0.3032929598786522, 0.3218037192662693, 0.34110966746834953, 0.3608365393536131, 0.3806665024994978, 0.4003384069571318, 0.4196441203349916, 0.43842302682844375, 0.45655590653231043, 0.4739588513846662, 0.49057754324108593, 0.5063820366858103, 0.5213620935068961, 0.535523068364685, 0.5488823231480308, 0.561466138096401, 0.5733070842134271, 0.5844418204129976, 0.594909278643798, 0.604749200299652, 0.614000987376116, 0.6227028321217549, 0.6308910894686471, 0.638599857423103 ], [ 0.4278421645404994, 0.4091617088295416, 0.39074733244115967, 0.37281618593756644, 0.3555887901031915, 0.3392755199850916, 0.32405976060180874, 0.310079402352262, 0.2974098733659229, 0.28605325570731654, 0.27593842895983284, 0.26693592761772456, 0.25888818553113946, 0.25165183498459814, 0.24514501307468997, 0.23939024633290004, 0.2345427382080182, 0.23089459988126512, 0.22884798117267335, 0.2288554854191471, 0.23133608484407903, 0.23658711681019415, 0.24472014411851875, 0.25564178280045563, 0.2690811805934748, 0.2846469210228915, 0.30189001411391764, 0.3203561396883285, 0.33962080164016517, 0.35930859311719326, 0.3791008236461909, 0.3987358514949132, 0.4180054079490766, 0.4367490424237119, 0.4548479333600045, 0.4722187355759557, 0.48880779576182554, 0.5045858807993451, 0.5195434660638715, 0.5336865827984519, 0.5470332014735121, 0.5596101186861644, 0.571450311691335, 0.5825907236289485, 0.5930704423190176, 0.6029292355120979, 0.6122064055572999, 0.6209399266466581, 0.6291658282449591, 0.6369177891454586 ], [ 0.42680350330134526, 0.4080454276605718, 0.3895606979383736, 0.3715711861391942, 0.3543029185893588, 0.3379722673229165, 0.3227685705518528, 0.30883484497254093, 0.2962498688864149, 0.28501636951501164, 0.27506051313663604, 0.2662466118963043, 0.2584078081634675, 0.2513892993019773, 0.24509680846729098, 0.23954060509917152, 0.23486473214125766, 0.2313519705654622, 0.22939761372479647, 0.2294505449777014, 0.23192974916785833, 0.23713647866197232, 0.24518945989109603, 0.25600424791886506, 0.269318958493081, 0.2847498417374994, 0.30185369483713337, 0.32018016963734797, 0.339307322748651, 0.3588613402245062, 0.3785245474210401, 0.3980360087671088, 0.41718801665714755, 0.4358206261057424, 0.4538155061844838, 0.47108979832812925, 0.487590326137091, 0.503288309474318, 0.5181746349761593, 0.5322556850948342, 0.5455497044727445, 0.5580836724103898, 0.5698906462993284, 0.5810075395596727, 0.5914732971822491, 0.6013274317714457, 0.6106088828587302, 0.6193551622749813, 0.6276017486720273, 0.635381695005469 ], [ 0.42691471495156535, 0.4081703227257536, 0.38970529770849216, 0.37174360593624806, 0.35451368873221184, 0.33823454067064296, 0.32309812914300884, 0.3092498187947984, 0.296770108573713, 0.2856624731497615, 0.27585257811249286, 0.26720283231192254, 0.2595430353488892, 0.25271362410669157, 0.24661414194626596, 0.24124718616132404, 0.23674753788642375, 0.2333871964031144, 0.23154972258648118, 0.2316727126890091, 0.23416651421921642, 0.23932870912025944, 0.24728056120056385, 0.2579457153683637, 0.2710736874764638, 0.2862927913075163, 0.30317058651546763, 0.32126527904010194, 0.3401612028147736, 0.3594889111196434, 0.3789336715067786, 0.3982365029118187, 0.41719099870616533, 0.43563809321561187, 0.45346006356821905, 0.4705744800607378, 0.4869284687139242, 0.5024934527505766, 0.5172604347612861, 0.5312358282012777, 0.544437821419113, 0.5568932459625847, 0.5686349160599616, 0.5796994041686642, 0.5901252165400256, 0.5999513321457361, 0.6092160678590203, 0.6179562325344319, 0.626206532721161, 0.6339991933120125 ], [ 0.4281812111409967, 0.40954312093047446, 0.39118928031052447, 0.37334306338145545, 0.35623214675032044, 0.34007465212725113, 0.32506170483435837, 0.311338079625238, 0.29898421597927516, 0.2880043190521406, 0.27832569328244144, 0.2698131367308498, 0.26229906140626785, 0.2556258399811429, 0.24969310055716823, 0.24450040999473135, 0.24017531826507837, 0.23697786941564605, 0.2352754974211469, 0.2354876120524536, 0.23800798260834685, 0.24312344312085857, 0.2509532727942012, 0.2614280379984397, 0.27431051233528625, 0.28924486638578323, 0.30581391839888755, 0.32358870308579035, 0.34216339647193306, 0.36117563312827894, 0.38031554516633254, 0.3993273768950552, 0.4180067943358803, 0.4361960172348363, 0.4537780774860828, 0.47067094154158434, 0.4868218842370375, 0.5022022997945412, 0.5168030257520051, 0.5306301983382207, 0.5437016293561859, 0.5560436810678534, 0.5676886092565181, 0.5786723415971897, 0.5890326567606908, 0.5988077284950929, 0.6080349980225302, 0.6167503374836827, 0.6249874669788549, 0.6327775881229007 ], [ 0.43058656804193396, 0.41214583906567775, 0.3939930946207478, 0.37634850642208845, 0.3594359135812799, 0.3434692071829576, 0.32863535641601027, 0.31507575857380654, 0.3028691140379763, 0.2920203394062204, 0.28246036555219933, 0.27406034821093456, 0.2666607883687071, 0.26011211741902146, 0.25431973841882066, 0.24928437041526427, 0.2451281483998863, 0.24209814575452426, 0.24054189223745992, 0.24085475731148956, 0.24340724728286112, 0.24846946144428628, 0.25615474171327096, 0.26639933205248667, 0.2789805619771109, 0.29356150724809976, 0.30974406097085616, 0.32711586460486913, 0.3452841960336374, 0.36389632823778184, 0.3826491190283127, 0.401291301778178, 0.4196214062954029, 0.4374833740359882, 0.4547611709160026, 0.4713731578342558, 0.48726663276447646, 0.5024127530975944, 0.5168019316591635, 0.5304397378144212, 0.5433433028862448, 0.5555382128184835, 0.5670558627598442, 0.577931243811904, 0.5882011294706512, 0.597902627353649, 0.6070720603217874, 0.6157441400542444, 0.6239513956154833, 0.6317238196787394 ], [ 0.4340930820880832, 0.41593642793009616, 0.3980702237122337, 0.3807090265577461, 0.3640700492631263, 0.34835996225805055, 0.3337586884168185, 0.3204018770463074, 0.30836512188968723, 0.29765412382573003, 0.28820520288408147, 0.27989926234495444, 0.27258948411062706, 0.26613941885484965, 0.26046487560338083, 0.2555710522314289, 0.25157602568739984, 0.24871298343719433, 0.2473065198623399, 0.24772343651405232, 0.2503059161089715, 0.2553028034610957, 0.26281842751747986, 0.2727935732474024, 0.2850209061211, 0.29918463882147145, 0.31490874467010144, 0.3318006143103602, 0.34948346683217235, 0.3676165321963385, 0.3859051434308904, 0.4041037526626522, 0.42201455297437146, 0.4394836724100241, 0.4563962263839396, 0.4726710058005073, 0.4882552413160849, 0.5031196776408019, 0.517254071739953, 0.5306631617466135, 0.5433631170043791, 0.555378460166645, 0.5667394416810958, 0.5774798408604771, 0.5876351637870548, 0.5972412054385602, 0.6063329412432912, 0.6149437116920704, 0.6231046627183128, 0.6308444043979505 ], [ 0.43864348405051745, 0.4208508247765827, 0.40334961138309156, 0.38634667473202616, 0.37005023600413545, 0.35465729469330953, 0.3403384499559608, 0.3272218276606209, 0.3153789898052255, 0.30481663162565464, 0.2954779349154089, 0.2872561828875167, 0.28002067709836354, 0.27365177420791914, 0.26807896514796203, 0.26331417302080345, 0.25947220080241296, 0.25677154187129914, 0.2555116735864642, 0.2560277806062198, 0.2586304423963798, 0.2635443377544661, 0.2708627079133464, 0.28052994834785194, 0.292354375315649, 0.30604274718211366, 0.3212432561856434, 0.3375854699202312, 0.3547108904417201, 0.37229272414398873, 0.39004637705668166, 0.4077331935366797, 0.4251598286553747, 0.4421750898243458, 0.45866549782916616, 0.474550353024261, 0.4897767710813221, 0.5043149478240267, 0.5181537890385534, 0.5312969692980033, 0.5437594430670615, 0.5555644083597996, 0.5667407099827456, 0.5773206613146873, 0.587338258179316, 0.5968277544332853, 0.6058225659036247, 0.6143544671186507, 0.6224530439060407, 0.6301453644462971 ], [ 0.44416361539115085, 0.4268061573470614, 0.4097394506109752, 0.393160863560609, 0.3772677743731844, 0.3622456986871584, 0.34825433902432035, 0.33541318751584226, 0.32378932606237926, 0.313390782057272, 0.30416872863418265, 0.29603061610679327, 0.28886404369968377, 0.2825683796126913, 0.2770886335073547, 0.272444579924331, 0.2687479719007248, 0.26620195899360216, 0.26507962097562277, 0.2656829639347808, 0.2682894177076285, 0.273098122320474, 0.2801901221962093, 0.2895127234285758, 0.30088980254287434, 0.31405129943709126, 0.32867091066280746, 0.3444020724435727, 0.3609063751238599, 0.3778726825168758, 0.3950278893946356, 0.4121413309024811, 0.42902491352416455, 0.4455306435871238, 0.4615467470327854, 0.4769931630450268, 0.49181689458463607, 0.5059874994080031, 0.5194928797546821, 0.5323354529775519, 0.5445287404043778, 0.5560943851339651, 0.5670595934068244, 0.5774549839695513, 0.5873128228521719, 0.5966656158398975, 0.6055450270244236, 0.6139810889468399, 0.6220016679662583, 0.6296321476383252 ], [ 0.45056577723173613, 0.43370472371749724, 0.41713185413005316, 0.40103375681426395, 0.3855956668539768, 0.3709904621991701, 0.35736607774157936, 0.3448328971183089, 0.3334535010019567, 0.3232376620206169, 0.3141452970516116, 0.30609896625625327, 0.29900552546807835, 0.2927841568652729, 0.28739589065089044, 0.282868475110715, 0.2793103847256207, 0.27690899903047317, 0.27591060285800334, 0.27658382406492604, 0.2791729196882022, 0.28385143755103204, 0.2906879404458503, 0.29963215286941197, 0.31052308290000485, 0.3231138083296816, 0.33710403072302636, 0.3521720374850312, 0.3680007704398924, 0.3842960721310027, 0.40079753677198665, 0.4172834962943497, 0.433571878405541, 0.4495184308574086, 0.46501342938072127, 0.47997763522633347, 0.49435799638726863, 0.5081233965817179, 0.521260631339472, 0.533770711790204, 0.5456655480719546, 0.5569650342414753, 0.5676945376480443, 0.5778827832711513, 0.5875601148057091, 0.5967571078352143, 0.6055035055468991, 0.6138274438227004, 0.6217549301065542, 0.6293095391983572 ], [ 0.45775242351397427, 0.441438329877339, 0.42540788360042087, 0.40983600472781934, 0.3948950245848872, 0.38074464563109556, 0.36752078921872083, 0.35532478948261315, 0.34421502797178843, 0.3342034377137971, 0.32525904484303, 0.31731969088000195, 0.31031138229885347, 0.30417272739311724, 0.29888017986643894, 0.29446879854240054, 0.2910432547968218, 0.28877500655508115, 0.28788394215540614, 0.2886062483138799, 0.2911541995618703, 0.295676720090935, 0.3022302403858086, 0.3107665759632928, 0.32113917359058547, 0.3331236472126014, 0.3464455261119362, 0.3608082853767633, 0.3759169599906615, 0.391495326296808, 0.4072966657510064, 0.42310920199866964, 0.4387576200480786, 0.45410196605608527, 0.46903495151035046, 0.48347839698300843, 0.4973793112567339, 0.5107059251564108, 0.5234438780865733, 0.5355926753209981, 0.5471624825639559, 0.5581712911946864, 0.5686424659545865, 0.5786026721356172, 0.588080168844711, 0.5971034471067013, 0.6057001856316806, 0.6138964926547393, 0.6217163992270349, 0.6291815676551831 ], [ 0.4656198845473541, 0.44989259676807924, 0.43444246545800674, 0.4194322641097854, 0.4050211476274109, 0.39135563227158365, 0.3785598823228712, 0.36672663588612253, 0.3559105760114362, 0.3461261421446529, 0.33735146528257753, 0.32953919112176444, 0.3226335259979717, 0.3165912112688123, 0.3114027289355052, 0.30710925908137693, 0.30381101200203675, 0.3016636677757876, 0.30086177223397514, 0.3016108668336254, 0.3040933029890835, 0.3084350602443725, 0.3146812264616363, 0.3227855018986498, 0.33261489226962343, 0.3439665213732607, 0.3565910186016774, 0.3702168241469961, 0.3845713269176115, 0.39939683166324275, 0.41446105876356437, 0.4295628878767571, 0.4445344452546581, 0.4592406328917589, 0.4735770162828059, 0.4874667618397197, 0.5008571113848455, 0.5137157217861329, 0.5260270826938993, 0.5377891460575418, 0.5490102478478538, 0.5597063668340392, 0.5698987411673827, 0.5796118466937288, 0.5888717286878312, 0.5977046695033895, 0.6061361676138817, 0.6141901982704973, 0.6218887223487771, 0.6292514078161164 ], [ 0.474061861773383, 0.4589509290122366, 0.4441088356317173, 0.42968609716240186, 0.4158288295288549, 0.40267076559432585, 0.3903249311828779, 0.3788761710720135, 0.36837605138055796, 0.3588417417708129, 0.3502601451968795, 0.34259773359692974, 0.33581535977599947, 0.3298860002195988, 0.3248122768624912, 0.3206400247573291, 0.3174643387555178, 0.31542554742734624, 0.3146943962469512, 0.3154481517811675, 0.31784184415596867, 0.3219806158101561, 0.32789927183264567, 0.33555327626692805, 0.3448222016260809, 0.3555233622323663, 0.36743134330341143, 0.3802988684473361, 0.39387551555887546, 0.40792236898531803, 0.42222209615110673, 0.43658484747535325, 0.45085080091608476, 0.46489025333827116, 0.4786020603155467, 0.49191105995250556, 0.5047649497866291, 0.5171309463457806, 0.5289924506688429, 0.5403458664542393, 0.5511976638241666, 0.5615617444336388, 0.5714571375486688, 0.580906037981617, 0.5899321828967296, 0.5985595539466613, 0.6068113831024415, 0.6147094344481469, 0.6222735299148014, 0.6295212843132487 ], [ 0.48297251036920485, 0.46849794108912723, 0.45428229252128, 0.4404640185273056, 0.42717665284815376, 0.41454184210775413, 0.40266231927838014, 0.39161585886627376, 0.38145147933540585, 0.3721891544429438, 0.36382395727078687, 0.3563348598627716, 0.3496974361505445, 0.34389866876764236, 0.338951205372712, 0.334903998402813, 0.33184647277035745, 0.3299042747813988, 0.32922621095780763, 0.3299639620766512, 0.33224810492035045, 0.3361652516315694, 0.3417411193413183, 0.3489328739991144, 0.3576316159670119, 0.36767335635016274, 0.3788552029619523, 0.3909531257746278, 0.40373836602587954, 0.41699072299416046, 0.4305080758476285, 0.4441122954573173, 0.45765212684789985, 0.47100376075446093, 0.4840697781811392, 0.49677703971811443, 0.5090739613746638, 0.5209275007249031, 0.5323200818734504, 0.5432466156053015, 0.5537117183516675, 0.5637271955714338, 0.5733098275962866, 0.5824794756696439, 0.5912575105656122, 0.5996655543587325, 0.6077245167779813, 0.6154539006591859, 0.6228713460713169, 0.6299923795945518 ], [ 0.49224900529407795, 0.47842223870978734, 0.46484316556866684, 0.4516386153219733, 0.4389302239384517, 0.42682843285810274, 0.4154266391926546, 0.40479638995664774, 0.3949846506133568, 0.38601412007040004, 0.37788724022953807, 0.3705939505240454, 0.3641224467667125, 0.3584713815120257, 0.353661296275353, 0.3497428006323203, 0.3467992487837969, 0.3449424614274339, 0.344301335555161, 0.34500476630407356, 0.3471617986759962, 0.3508428498459159, 0.35606577942366496, 0.3627894338802854, 0.3709154082223029, 0.3802968411305719, 0.39075175437759985, 0.40207807191078454, 0.41406788203394024, 0.4265193551400192, 0.43924561243585325, 0.4520805205315534, 0.4648817929829384, 0.47753195172692464, 0.4899377173684109, 0.5020283313664756, 0.5137532173731638, 0.5250792929920505, 0.5359881603978697, 0.5464733382028875, 0.5565376464806217, 0.5661908190085253, 0.5754473884356107, 0.5843248685895464, 0.5928422415724204, 0.601018744360096, 0.6088729395246024, 0.6164220469940332, 0.6236815082030364, 0.6306647504113911 ], [ 0.5017935555138477, 0.48861853746485073, 0.4756790063985868, 0.46309077865215054, 0.45096442048278523, 0.43940013999024413, 0.42848297745898145, 0.41827904562735657, 0.40883364423400725, 0.4001719820297911, 0.392302939910132, 0.385225806342901, 0.37893928162533935, 0.3734514104734926, 0.3687886233042478, 0.36500189639716596, 0.3621682845845161, 0.3603867667140161, 0.3597684047712105, 0.3604220656264925, 0.36243808839971786, 0.36587294236500434, 0.37073782759153745, 0.37699327669907995, 0.38455038979015466, 0.3932778649646395, 0.40301294850927855, 0.4135740613087364, 0.42477310235926974, 0.43642603371405203, 0.44836103245726266, 0.4604240604236028, 0.472482073945201, 0.484424282954421, 0.49616192071187165, 0.5076269571565343, 0.5187701236014434, 0.529558541798667, 0.5399731807716315, 0.5500063060306556, 0.5596590387171508, 0.5689391054807922, 0.5778588314095113, 0.5864334061300385, 0.5946794357138542, 0.602613779163452, 0.6102526573194894, 0.6176110136099653, 0.6247020999182157, 0.6315372568115701 ], [ 0.5115148835849339, 0.49898916053895204, 0.4866860748517526, 0.47471115355629623, 0.4631647940033597, 0.45213796145979446, 0.4417082781088363, 0.4319371253753213, 0.42286840823909017, 0.4145295221764929, 0.4069347944068079, 0.40009125416840874, 0.3940060830294302, 0.3886946089440623, 0.3841873605979074, 0.38053460602812667, 0.3778070374719978, 0.37609184601085355, 0.37548428674402223, 0.37607580925757195, 0.3779406822699147, 0.3811235135819156, 0.38562996599820654, 0.3914222805530678, 0.39842014055749364, 0.40650629099727015, 0.4155355064257917, 0.42534516068910994, 0.4357657738715801, 0.44663033180867645, 0.45778169040843225, 0.46907783737258096, 0.48039511257214157, 0.49162967622825615, 0.5026975889928285, 0.5135338687117935, 0.5240908493547707, 0.5343361125426458, 0.5442502056773941, 0.5538243098862162, 0.5630579782237697, 0.5719570297642601, 0.5805316572576198, 0.588794783595529, 0.5967606842730111, 0.6044438784769633, 0.6118582798127363, 0.6190165886441034, 0.6259299013546408, 0.632607507377491 ], [ 0.5213292220567185, 0.5094449926304695, 0.4977702263451047, 0.48640094462879685, 0.47542829382499097, 0.4649349542904093, 0.4549919901635825, 0.44565664646386394, 0.43697159569824956, 0.42896602286411933, 0.4216587018731362, 0.41506287460164853, 0.4091923480419372, 0.4040678569813693, 0.39972249400251114, 0.3962049707520686, 0.393579697510093, 0.39192315371949127, 0.39131670713558464, 0.391836792713973, 0.39354400179683446, 0.3964729677981555, 0.40062483810406385, 0.40596359267189464, 0.41241665611572575, 0.4198793986427408, 0.42822247416787723, 0.43730064160701365, 0.4469617592634863, 0.4570549280592987, 0.4674371456555267, 0.4779782018370118, 0.4885638284469053, 0.49909729592670327, 0.5094997358487687, 0.5197094903903117, 0.5296807714677016, 0.5393818745274923, 0.5487931481159957, 0.5579048777875876, 0.566715205045734, 0.5752281697910067, 0.5834519379094418, 0.5913972534511752, 0.5990761365662791, 0.6065008333712283, 0.613683011791687, 0.6206331878960778, 0.6273603601226448, 0.6338718239627519 ], [ 0.5311608963105602, 0.519905982535984, 0.5088473173261105, 0.49807221793557793, 0.4876634741590341, 0.4776963739804495, 0.4682361857090543, 0.4593365033821845, 0.4510388379687653, 0.4433737261851378, 0.4363634259430159, 0.43002599034346367, 0.4243802042899409, 0.4194505933127516, 0.4152715449995056, 0.41188958216188576, 0.40936302934094404, 0.4077587147424637, 0.40714589210833285, 0.40758814585869924, 0.4091345194627805, 0.4118113448770507, 0.4156161639421713, 0.42051472738758744, 0.4264414426917388, 0.4333029940786401, 0.4409843498434439, 0.449356110439709, 0.45828214726576827, 0.46762667186895607, 0.47726016004526545, 0.4870638455228503, 0.4969327360751494, 0.5067772683772235, 0.5165238094854939, 0.5261142482129252, 0.5355049176833288, 0.5446650672556588, 0.5535750695475267, 0.562224513767924, 0.5706103038978962, 0.5787348511035088, 0.5866044245288962, 0.5942277031069081, 0.6016145528637913, 0.608775039025242, 0.6157186697897127, 0.622453858745746, 0.6289875854474779, 0.6353252285032384 ], [ 0.5409425692265902, 0.5303012879602591, 0.519843240429152, 0.5096478272532896, 0.49979032565352877, 0.49033944050935563, 0.4813553035197024, 0.47288824262980395, 0.4649786083679954, 0.457657840472306, 0.45095078672898825, 0.4448790636186879, 0.4394650111635257, 0.4347355922766959, 0.4307254740463975, 0.4274785499719722, 0.4250473412869247, 0.42349004232305626, 0.4228654012079626, 0.4232260695193653, 0.424611408672083, 0.42704090902079256, 0.43050930221858347, 0.4349841374108033, 0.4404061274318479, 0.4466920776049556, 0.4537398116553344, 0.4614342870896814, 0.46965406221288625, 0.4782773992724432, 0.48718749551551854, 0.4962765596374776, 0.505448647946856, 0.5146213195872353, 0.5237262601310131, 0.5327090663071377, 0.5415283944550815, 0.5501546640248268, 0.5585684849337803, 0.5667589505813944, 0.5747219108556623, 0.5824583136503869, 0.5899726801444259, 0.5972717586182793, 0.6043633838595293, 0.6112555541201976, 0.6179557250319692, 0.6244703097850731, 0.6308043671672363, 0.6369614536500531 ], [ 0.5506152204768228, 0.5405691485058902, 0.5306936873769335, 0.5210610726961438, 0.5117398466849679, 0.5027928503975869, 0.4942756393010722, 0.4862355741005579, 0.4787117979476441, 0.4717362180615984, 0.4653354669082521, 0.45953364141152125, 0.4543554375746998, 0.44982915105147714, 0.44598894195957167, 0.44287579669691224, 0.4405367747479189, 0.4390223928184226, 0.43838233176051666, 0.43865998843092435, 0.439886657205958, 0.44207624454953115, 0.4452213561045308, 0.4492913586577367, 0.4542326676678791, 0.4599711345489185, 0.4664160964437063, 0.4734654654755952, 0.4810111911160056, 0.48894450516191906, 0.49716050797034506, 0.5055618281980285, 0.5140612485737545, 0.5225833158655643, 0.531065037765768, 0.5394558164517026, 0.5477167864102334, 0.5558197219629192, 0.5637456657599977, 0.5714834092337998, 0.5790279335139773, 0.5863788969174876, 0.5935392340617865, 0.6005139124881074, 0.6073088756654802, 0.6139301864735072, 0.6203833727808503, 0.6266729665735771, 0.6328022202407353, 0.6387729780415204 ], [ 0.5601279257864145, 0.5506565608552741, 0.5413437208429968, 0.5322551781388201, 0.5234534437897712, 0.5149961253203931, 0.5069346731328798, 0.49931371001995295, 0.4921710964707889, 0.4855388026353263, 0.47944454022986305, 0.4739139685238465, 0.4689731515168607, 0.46465083820753084, 0.46098009424638975, 0.4579988536776988, 0.45574909176884804, 0.4542745321716233, 0.45361706072801816, 0.45381227374785343, 0.45488478297871326, 0.4568439829945002, 0.45968093337474436, 0.4633668264368454, 0.4678532443818619, 0.4730741219868751, 0.4789490874903157, 0.4853877007656201, 0.49229405984992913, 0.49957129140105544, 0.5071255467938451, 0.5148692578833031, 0.5227235353861086, 0.5306196996554285, 0.5385000105548731, 0.5463177105054142, 0.5540365174828366, 0.5616297092770539, 0.5690789328734904, 0.5763728583547237, 0.5835057788084238, 0.5904762386908757, 0.5972857543440102, 0.6039376727099519, 0.6104361981939678, 0.6167856033737185, 0.6229896270237331, 0.6290510528412419, 0.6349714543845258, 0.640751086056729 ], [ 0.5694374918390616, 0.5605188169169659, 0.5517472196527617, 0.5431826537379255, 0.5348822279439609, 0.5268988634494902, 0.5192802997752195, 0.5120685978058968, 0.5053002480664672, 0.49900692198440355, 0.49321680817550273, 0.48795636710841744, 0.48325223472122236, 0.4791329313239091, 0.4756300081961526, 0.4727783060487645, 0.4706151107290553, 0.4691781609118416, 0.46850266324803796, 0.4686176639403428, 0.4695422694757743, 0.4712822678008184, 0.47382765711667274, 0.4771514501041053, 0.4812099182614371, 0.4859442206759309, 0.49128317124626747, 0.4971467725397386, 0.50345009683057, 0.5101071187062133, 0.5170341783476707, 0.5241528546874319, 0.5313921303439658, 0.5386898197184445, 0.5459932999277873, 0.553259629734025, 0.5604551667736538, 0.5675548025213649, 0.5745409321636475, 0.5814022669444657, 0.588132582693593, 0.5947294823665191, 0.6011932339878837, 0.607525729353814, 0.6137295938352855, 0.6198074640570332, 0.625761438403083, 0.6315926954278412, 0.6373012674526592, 0.6428859509321979 ], [ 0.5785079924204519, 0.5701189530220051, 0.5618662466016864, 0.5538045927746588, 0.5459862549568971, 0.5384599405847047, 0.531270008334908, 0.5244560943884043, 0.5180532325756243, 0.5120924836085972, 0.5066020114838214, 0.5016084609039082, 0.49713841313810614, 0.49321964624802583, 0.489881914814064, 0.48715700452889826, 0.4850779094576144, 0.4836771142102506, 0.4829841183453148, 0.48302248662349534, 0.48380681495696515, 0.4853400427627531, 0.48761150617373245, 0.49059601933439934, 0.49425411595088203, 0.49853341409200475, 0.5033709184778307, 0.5086959720638455, 0.51443352429675, 0.5205073940142516, 0.5268432569988037, 0.5333711634693047, 0.5400274719737321, 0.5467561602328789, 0.5535095329600216, 0.5602483889082276, 0.5669417351794777, 0.5735661488497851, 0.5801048875385594, 0.5865468448413338, 0.5928854361824603, 0.5991174876340046, 0.6052421860383387, 0.6112601343877283, 0.6171725425800318, 0.6229805709123474, 0.628684832382767, 0.6342850503228596, 0.6397798602553385, 0.6451667392321202 ], [ 0.5873102419661781, 0.5794271470821648, 0.5716703755324248, 0.5640899383629824, 0.5567337440140405, 0.5496466938050071, 0.5428700436497251, 0.5364411156183523, 0.530393409666887, 0.5247571160650932, 0.5195599674431135, 0.5148283045571186, 0.5105881735335173, 0.5068662373475137, 0.5036902819368485, 0.5010891344066263, 0.49909188687942396, 0.49772642581055304, 0.4970173861070698, 0.49698375987192533, 0.49763646802290545, 0.49897623136005725, 0.5009920479496837, 0.5036605009477823, 0.5069460022403042, 0.5108019470774242, 0.5151726385368489, 0.5199957577111374, 0.5252051156547294, 0.530733425546179, 0.5365148693639888, 0.542487289724704, 0.5485939013331299, 0.5547844772713945, 0.5610160163885135, 0.5672529362803512, 0.5734668615117594, 0.5796360903045459, 0.5857448271647279, 0.5917822662458818, 0.5977416027919221, 0.6036190395297908, 0.6094128427517856, 0.6151224900685093, 0.6207479392053851, 0.6262890353531602, 0.6317450639200528, 0.6371144464045185, 0.6423945697328712, 0.6475817338899577 ], [ 0.5958212344449675, 0.588420091319099, 0.5811360042353538, 0.57401474507018, 0.5671002978331653, 0.560434109978255, 0.5540545716170963, 0.547996784372082, 0.5422926524984072, 0.5369712878210408, 0.5320596711958155, 0.5275834636600294, 0.5235678192667559, 0.5200380283852174, 0.5170198230308635, 0.5145392088607977, 0.5126217506167402, 0.5112913214776965, 0.5105684187219854, 0.5104682314500484, 0.5109987039695971, 0.5121588578913654, 0.5139376116787551, 0.5163132723312189, 0.5192537826428014, 0.5227177070144664, 0.5266558477475113, 0.5310133168629362, 0.5357318536792817, 0.5407521760218152, 0.5460161773386726, 0.551468824050944, 0.5570596574023189, 0.5627438535832796, 0.5684828391917879, 0.5742444930414766, 0.580002989048923, 0.5857383490530054, 0.5914357803985903, 0.5970848727045377, 0.6026787231383083, 0.608213051230973, 0.6136853540220504, 0.6190941411159663, 0.6244382778525475, 0.6297164538733733, 0.6349267844001459, 0.6400665429046525, 0.6451320167968899, 0.6501184724231575 ], [ 0.6040235686467907, 0.5970803607374141, 0.5902456719850747, 0.5835614526978866, 0.5770681402725052, 0.5708040341247561, 0.5648048635788676, 0.5591035938370915, 0.553730490170186, 0.5487134269113956, 0.5440783893950984, 0.53985007935088, 0.5360525044458753, 0.5327094177620377, 0.5298444786477593, 0.52748103521603, 0.5256414791617268, 0.524346189250613, 0.523612150434903, 0.5234513983758534, 0.5238694817725381, 0.5248641480696298, 0.5264244382358128, 0.5285303265344148, 0.5311529708721815, 0.5342555615976415, 0.5377946853052054, 0.5417220664465617, 0.5459865197333604, 0.5505359414059952, 0.5553191838517553, 0.5602876893814819, 0.565396797962344, 0.5706066838272994, 0.5758829122663855, 0.5811966376057747, 0.586524485177701, 0.5918481740391611, 0.5971539441612452, 0.602431853012322, 0.60767500321335, 0.6128787564910047, 0.6180399805833133, 0.6231563659883832, 0.6282258392631482, 0.6332460896151193, 0.6382142163027305, 0.6431264962676818, 0.6479782647447213, 0.6527638964887919 ], [ 0.6119048754269109, 0.6053957917542729, 0.5989873947289295, 0.5927181838244802, 0.5866253818516904, 0.5807444075348088, 0.5751085099412747, 0.569748597438026, 0.5646932727276827, 0.5599690583458398, 0.5556007669298804, 0.5516119421543525, 0.5480252748305888, 0.5448628895117879, 0.5421464039552846, 0.5398966884742938, 0.5381332928352183, 0.5368735597560143, 0.5361314981944584, 0.5359165369231292, 0.5362323102325962, 0.5370756363590815, 0.5384358329628361, 0.5402944751841534, 0.5426256474069479, 0.5453966795959254, 0.5485693031701445, 0.5521011182914982, 0.5559472392840963, 0.560061978867903, 0.5644004427757373, 0.5689199296522524, 0.5735810615381881, 0.57834860264353, 0.5831919544835166, 0.5880853411312099, 0.5930077179817642, 0.5979424507287546, 0.602876818637453, 0.607801398482744, 0.6127093836874713, 0.6175958882536086, 0.6224572779626297, 0.6272905628730635, 0.6320928760960185, 0.6368610548100976, 0.6415913310052942, 0.6462791319303497, 0.6509189839534786, 0.655504508707642 ], [ 0.6194572581385616, 0.6133588810448903, 0.6073540267066119, 0.6014780727045639, 0.595765319921263, 0.5902485420518482, 0.5849586698113618, 0.5799246333158837, 0.575173368480741, 0.5707299714436738, 0.5666179616271589, 0.562859592711549, 0.5594761355810481, 0.5564880520464516, 0.5539149855384828, 0.5517755157790476, 0.5500866569989538, 0.5488631193816165, 0.5481163948526856, 0.5478537639172224, 0.5480773432462022, 0.5487832993712087, 0.549961340520421, 0.5515945682807332, 0.5536597285720297, 0.5561278545815812, 0.5589652504522219, 0.562134730068612, 0.565597004301489, 0.569312103794624, 0.5732407314978927, 0.5773454565466521, 0.5815916848029989, 0.5859483674811772, 0.5903884344964794, 0.5948889611737233, 0.5994310943804169, 0.6039997765048889, 0.6085833130946787, 0.613172832913889, 0.6177616883876944, 0.6223448406737275, 0.6269182677272752, 0.6314784264573041, 0.6360217920824388, 0.6405444896884532, 0.6450420252696425, 0.6495091166136123, 0.6539396185621134, 0.6583265326358178 ], [ 0.6266767541804281, 0.6209662114388357, 0.615342654239711, 0.6098386303273813, 0.6044857776703394, 0.5993144345622986, 0.5943533610903649, 0.5896295887571857, 0.5851684004735168, 0.5809934257052554, 0.5771268174466213, 0.5735894617366766, 0.5704011597298313, 0.567580719646906, 0.565145903099009, 0.5631131876081851, 0.5614973331110032, 0.5603107714451621, 0.55956286948836, 0.5592591433409867, 0.5594005177697151, 0.5599827286298839, 0.5609959550605704, 0.5624247444337983, 0.5642482602115965, 0.5664408463880866, 0.5689728677713813, 0.5718117578766451, 0.5749231888726438, 0.5782722720235058, 0.5818247016538084, 0.5855477686772784, 0.5894111882539688, 0.5933877071551535, 0.5974534772725072, 0.6015882004108596, 0.6057750647805418, 0.6100005048472449, 0.6142538233191739, 0.6185267173332664, 0.6228127508485691, 0.627106812484765, 0.6314045932174026, 0.6357021121116965, 0.6399953112605028, 0.6442797338484184, 0.6485502922783459, 0.6528011269665159, 0.6570255510343995, 0.6612160718927068 ], [ 0.633562823097116, 0.628217909351859, 0.6229540252805078, 0.6178011485114523, 0.6127884844362321, 0.6079441241244636, 0.6032947938410114, 0.5988657081649856, 0.5946805267777888, 0.5907614011477771, 0.5871290833713917, 0.583803057551218, 0.5808016466274231, 0.5781420465349254, 0.5758402461531984, 0.5739108057876392, 0.5723664875160417, 0.5712177549524113, 0.5704721841339336, 0.5701338472672473, 0.5702027433288966, 0.5706743515303988, 0.5715393746963566, 0.5727837208675919, 0.5743887458408287, 0.5763317509017646, 0.5785867029806967, 0.5811251225828781, 0.5839170706569772, 0.5869321601179708, 0.5901405206543124, 0.5935136552303976, 0.5970251412030912, 0.6006511458868781, 0.6043707436064643, 0.6081660370839224, 0.6120220992644254, 0.6159267617494335, 0.6198702826710277, 0.6238449302241669, 0.6278445185140409, 0.6318639303466481, 0.6358986576334023, 0.6399443847580092, 0.6439966341169409, 0.6480504866071883, 0.652100383551661, 0.656140010802629, 0.6601622608362961, 0.6641592647385487 ], [ 0.640117864823702, 0.6351171365457168, 0.6301920168056178, 0.6253701445972624, 0.6206784986123219, 0.6161430930695161, 0.6117887486028888, 0.6076389468479573, 0.6037157676662029, 0.6000398970119724, 0.596630682707543, 0.593506206572465, 0.590683336196937, 0.5881777195963233, 0.5860036918324149, 0.5841740743189464, 0.582699863780403, 0.5815898265630639, 0.5808500323745424, 0.5804833765046237, 0.5804891484647106, 0.5808627059908122, 0.5815953059994022, 0.5826741293082465, 0.584082515929874, 0.585800405520654, 0.5878049563481947, 0.5900712987672609, 0.592573367667199, 0.5952847535866692, 0.598179514023893, 0.6012328938751624, 0.6044219153386013, 0.6077258112488771, 0.6111262899740958, 0.614607633304875, 0.6181566401752184, 0.6217624379475308, 0.6254161890945774, 0.6291107244271513, 0.6328401347628441, 0.6365993514635254, 0.6403837430257932, 0.6441887503690981, 0.6480095781165227, 0.6518409534678125, 0.6556769586432561, 0.6595109376858177, 0.6633354739237325, 0.6671424308041557 ], [ 0.646346770306904, 0.6416696177994675, 0.6370631410936154, 0.6325528474011806, 0.6281636736549604, 0.6239197126434666, 0.6198440005066937, 0.6159583719247628, 0.6122833814988465, 0.6088382812133977, 0.6056410356296295, 0.6027083499211994, 0.6000556823271872, 0.597697213094241, 0.595645747019383, 0.5939125360909893, 0.5925070214784997, 0.5914365085525121, 0.5907058025575703, 0.5903168437215168, 0.5902683869804266, 0.5905557718366337, 0.5911708218304044, 0.5921019014302005, 0.5933341424919927, 0.5948498350668713, 0.5966289606845899, 0.5986498324828955, 0.6008897972578174, 0.6033259504545939, 0.6059358162722568, 0.6086979507127002, 0.6115924344119659, 0.6146012330897817, 0.6177084151045608, 0.6209002267463404, 0.6241650356520689, 0.627493160498534, 0.630876610613495, 0.634308762281654, 0.6377839994336133, 0.6412973453543117, 0.6448441093849369, 0.6484195687233232, 0.6520187007762362, 0.6556359764978904, 0.6592652201446668, 0.6628995362149827, 0.6665313002849891, 0.6701522071754807 ], [ 0.6522565057406338, 0.6478832052133904, 0.6435760911957766, 0.6393587244739405, 0.6352541671368453, 0.631284733211301, 0.6274717894257005, 0.623835610893573, 0.6203952902158437, 0.6171686917395314, 0.6141724363932592, 0.6114218976682668, 0.6089311868976808, 0.606713106739159, 0.604779056003889, 0.6031388764722485, 0.6018006422826133, 0.600770403549512, 0.600051906402903, 0.5996463199237697, 0.5995520050141038, 0.5997643601479541, 0.6002757739986239, 0.6010757057018684, 0.6021509012545475, 0.6034857409696769, 0.6050626998572916, 0.6068628919409762, 0.6088666620823341, 0.611054185517834, 0.6134060360557269, 0.6159036882540578, 0.6185299260542746, 0.6212691392403311, 0.6241074986716486, 0.6270330105501063, 0.6300354582672371, 0.6331062471045887, 0.6362381719198452, 0.63942513083763, 0.6426618089374078, 0.6459433551806537, 0.6492650736258352, 0.6526221466813478, 0.6560094041095482, 0.6594211470864819, 0.6628510321855223, 0.6662920159888481, 0.6697363573788114, 0.6731756715922034 ], [ 0.6578557309239806, 0.6537674792478341, 0.6497413253928936, 0.6457990502689261, 0.6419619923949942, 0.638250818634285, 0.6346853359285731, 0.6312843478297117, 0.6280655545920003, 0.6250454902878297, 0.6222394855603525, 0.6196616410137732, 0.6173247945851112, 0.6152404670601064, 0.613418773380414, 0.6118682933134721, 0.6105959027587734, 0.60960657540989, 0.6089031724161189, 0.6084862438018116, 0.6083538686199365, 0.6085015604629503, 0.6089222608982493, 0.6096064360882298, 0.6105422822525601, 0.6117160350240137, 0.6131123675390878, 0.6147148535669754, 0.6165064660774269, 0.6184700789128896, 0.6205889397400531, 0.6228470858828263, 0.625229680356486, 0.6277232526366711, 0.630315836571122, 0.632997005602278, 0.6357578124731393, 0.6385906463640324, 0.6414890246590306, 0.6444473391396885, 0.6474605773673928, 0.6505240394777825, 0.6536330687934137, 0.6567828118455278, 0.6599680198966198, 0.6631829001938647, 0.6664210212653813, 0.669675272867442, 0.6729378779210131, 0.6762004510992834 ], [ 0.6631544517093243, 0.659333386147513, 0.6555706900557509, 0.651886514502497, 0.6483006120170981, 0.6448321241068475, 0.641499402414055, 0.6383198666990298, 0.6353098988207014, 0.6324847677300925, 0.6298585767588502, 0.62744422177382, 0.6252533476139649, 0.6232962909951871, 0.6215820008701876, 0.6201179318553071, 0.6189099122510334, 0.617961994583531, 0.6172763025190591, 0.6168528924847617, 0.6166896505655782, 0.6167822447479425, 0.6171241492662511, 0.6177067520299254, 0.6185195485951042, 0.6195504178740944, 0.6207859668114691, 0.6222119245769016, 0.6238135621824031, 0.6255761112598388, 0.6274851561235912, 0.6295269759702569, 0.6316888186692815, 0.6339590934666278, 0.6363274763985076, 0.6387849286655406, 0.6413236341114346, 0.6439368668722634, 0.6466188039398155, 0.6493642996799993, 0.6521686402532071, 0.6550272954908154, 0.657935684265376, 0.66088896698448, 0.6638818758074188, 0.6669085898089047, 0.6699626588652074, 0.6730369767569588, 0.6761238010686773, 0.6792148150640158 ], [ 0.6681637061006491, 0.6645929110622888, 0.6610770800418475, 0.6576348697361761, 0.6542845721626838, 0.6510439164674469, 0.6479298984841155, 0.6449586408778957, 0.6421452835137336, 0.6395039004239508, 0.6370474368603176, 0.634787657855405, 0.6327350988848827, 0.6308990098762801, 0.6292872860083025, 0.6279063823042226, 0.6267612135182743, 0.6258550456241527, 0.6251893896094157, 0.6247639115349877, 0.6245763743415699, 0.6246226263198112, 0.6248966484606423, 0.6253906683411413, 0.6260953423337525, 0.6270000014949558, 0.628092950302554, 0.6293618022188336, 0.6307938324447643, 0.6323763265480546, 0.6340969039857388, 0.6359437977484117, 0.6379060750847663, 0.6399737890542609, 0.6421380559826411, 0.6443910592514632, 0.6467259847913901, 0.6491368978155392, 0.6516185734784011, 0.6541662961442387, 0.6567756427678691, 0.6594422655931483, 0.6621616880975465, 0.6649291260470287, 0.6677393429008398, 0.67058654586179, 0.673464325840484, 0.6763656417058468, 0.6792828466077737, 0.6822077520139329 ], [ 0.6728952832462365, 0.6695587859099483, 0.6662741355324133, 0.6630586170001694, 0.6599291765013919, 0.6569022357581381, 0.6539935293283573, 0.6512179676306764, 0.6485895258031875, 0.6461211559356607, 0.6438247179575275, 0.6417109228696395, 0.6397892813714027, 0.6380680514412959, 0.6365541801056953, 0.6352532373229706, 0.6341693432822461, 0.6333050939921173, 0.6326614932614192, 0.6322379015108407, 0.6320320128622305, 0.6320398713746943, 0.6322559351061741, 0.6326731930897972, 0.6332833357478012, 0.6340769742853717, 0.6350438998274168, 0.6361733690576282, 0.6374544003450261, 0.6388760630780891, 0.6404277432538166, 0.642099370185254, 0.6438815922399632, 0.6457658934438432, 0.6477446471697832, 0.6498111075689951, 0.6519593435248977, 0.6541841234142782, 0.6564807616320363, 0.6588449395486476, 0.6612725142859324, 0.6637593284581824, 0.6663010329398115, 0.6688929329454596, 0.6715298654352467, 0.6742061132934681, 0.676915359078682, 0.6796506785951711, 0.6824045722487453, 0.6851690302438622 ], [ 0.6773614743169376, 0.6742442308093333, 0.6711759740201194, 0.6681727280919605, 0.6652501983561137, 0.6624235965886042, 0.6597074856373687, 0.6571156459980442, 0.6546609648921403, 0.6523553463634604, 0.6502096391248524, 0.648233577623289, 0.6464357312673515, 0.6448234571101976, 0.6434028525144352, 0.6421787063158567, 0.6411544494904566, 0.6403321089496682, 0.6397122704262255, 0.6392940580638061, 0.6390751389641639, 0.639051760389297, 0.639218825549563, 0.639570011096913, 0.6400979259063992, 0.6407943068954547, 0.6416502439664339, 0.6426564231024705, 0.6438033745508625, 0.6450817121129646, 0.6464823498978781, 0.6479966844176701, 0.6496167324124418, 0.6513352180164517, 0.6531456064886597, 0.6550420854026717, 0.6570194976185808, 0.6590732332895516, 0.6611990904020445, 0.6633931147962582, 0.6656514312215446, 0.6679700767767606, 0.6703448471521865, 0.6727711645575597, 0.6752439742508414, 0.6777576743509793, 0.6803060813025592, 0.6828824311249256, 0.6854794145631494, 0.6880892425702702 ], [ 0.6815748540518397, 0.6786627277270294, 0.6757969559863477, 0.6729924030133573, 0.6702636294570307, 0.6676247276568149, 0.6650891733302619, 0.6626696962860719, 0.6603781711094725, 0.65822552713906, 0.6562216756227345, 0.6543754509082842, 0.6526945620574834, 0.6511855514681709, 0.6498537579505171, 0.6487032831309104, 0.6477369618498594, 0.6469563391038929, 0.6463616577436783, 0.6459518622815763, 0.6457246245431241, 0.6456763963833915, 0.6458024932746461, 0.646097210383633, 0.6465539700380998, 0.6471654965556461, 0.647924011627479, 0.648821441149653, 0.6498496228447835, 0.6510005033912624, 0.6522663141357506, 0.6536397157581884, 0.6551139043416917, 0.6566826739573622, 0.6583404338514366, 0.6600821813546228, 0.6619034344728516, 0.6638001305540335, 0.6657684992970367, 0.6678049195758524, 0.6699057700529955, 0.672067283368028, 0.6742854128760696, 0.6765557195839862, 0.6788732852233341, 0.6812326554591503, 0.6836278152145226, 0.6860521961349371, 0.6884987144461427, 0.6909598359697873 ], [ 0.6855480915752296, 0.6828278248183771, 0.680151482650989, 0.677532860850385, 0.6749854635416175, 0.6725223475886953, 0.6701559811696205, 0.6678981191124569, 0.6657596962735066, 0.6637507389247177, 0.6618802929472009, 0.6601563667574628, 0.6585858864486845, 0.6571746606839038, 0.6559273534327779, 0.6548474636217723, 0.6539373120184188, 0.6531980369876242, 0.6526296019098139, 0.6522308178149135, 0.6519993849875962, 0.6519319568398646, 0.652024228224982, 0.6522710486791528, 0.6526665590076178, 0.6532043474228477, 0.6538776193614081, 0.6546793734063984, 0.6556025746303544, 0.6566403162833969, 0.6577859611325444, 0.6590332548746383, 0.6603764057866475, 0.6618101269761798, 0.6633296400506937, 0.6649306415242879, 0.6666092356241853, 0.6683618391708479, 0.6701850657512483, 0.6720755973965569, 0.6740300523752031, 0.6760448575296824, 0.6781161328732924, 0.680239595008689, 0.6824104844465972, 0.6846235202170738, 0.686872883407569, 0.6891522295543159, 0.6914547282628711, 0.6937731271235341 ], [ 0.6892937889353818, 0.6867529697992014, 0.6842538240352681, 0.6818091622526371, 0.6794315128764128, 0.6771329750845154, 0.6749250841460033, 0.6728186917609055, 0.6708238629548656, 0.6689497900074074, 0.6672047229158918, 0.6655959151391247, 0.6641295829223467, 0.6628108764354425, 0.6616438612611002, 0.660631509392833, 0.6597756997328164, 0.6590772289640379, 0.6585358344391483, 0.6581502312162031, 0.6579181654509086, 0.6578364859549033, 0.657901234850016, 0.6581077569627213, 0.6584508260484071, 0.6589247842934467, 0.6595236900146881, 0.6602414672518643, 0.6610720501847888, 0.6620095151067293, 0.663048193086517, 0.6641827574280843, 0.6654082815021299, 0.6667202643502254, 0.6681146234882034, 0.6695876563937229, 0.6711359740892288, 0.6727564118830356, 0.6744459235957047, 0.6762014664015825, 0.6780198837221245, 0.679897793424146, 0.6818314879444329, 0.683816851954217, 0.6858493018870899, 0.6879237501890595, 0.6900345956203862, 0.6921757394507085, 0.6943406260339429, 0.6965223051005668 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "Arm 0_0
hartmann6: -0.0432931 (SEM: 0)
x1: 0.200599
x2: 0.897084
x3: 0.848707
x4: 0.209322
x5: 0.859313
x6: 0.637275", "Arm 1_0
hartmann6: -0.14048 (SEM: 0)
x1: 0.629618
x2: 0.764728
x3: 0.172874
x4: 0.612461
x5: 0.704196
x6: 0.428522", "Arm 2_0
hartmann6: -0.154285 (SEM: 0)
x1: 0.711279
x2: 0.543044
x3: 0.0762402
x4: 0.681922
x5: 0.312368
x6: 0.562774", "Arm 3_0
hartmann6: -0.606926 (SEM: 0)
x1: 0.291792
x2: 0.55315
x3: 0.704073
x4: 0.426226
x5: 0.910367
x6: 0.205464", "Arm 4_0
hartmann6: -0.747436 (SEM: 0)
x1: 0.6894
x2: 0.153716
x3: 0.601733
x4: 0.160379
x5: 0.238299
x6: 0.974823", "Arm 5_0
hartmann6: -1.31202 (SEM: 0)
x1: 0.285142
x2: 0.0991786
x3: 0.446902
x4: 0.199407
x5: 0.234221
x6: 0.349746", "Arm 6_0
hartmann6: -0.52568 (SEM: 0)
x1: 0.758048
x2: 0.0818073
x3: 0.781391
x4: 0.00391702
x5: 0.290735
x6: 0.868292", "Arm 7_0
hartmann6: -0.146962 (SEM: 0)
x1: 0.162421
x2: 0.103118
x3: 0.819247
x4: 0.580236
x5: 0.634186
x6: 0.396618", "Arm 8_0
hartmann6: -0.163706 (SEM: 0)
x1: 0.950442
x2: 0.527969
x3: 0.79726
x4: 0.723166
x5: 0.559298
x6: 0.886257", "Arm 9_0
hartmann6: -0.0852145 (SEM: 0)
x1: 0.169179
x2: 0.387713
x3: 0.924425
x4: 0.899991
x5: 0.202584
x6: 0.552325", "Arm 10_0
hartmann6: -0.0122426 (SEM: 0)
x1: 0.824962
x2: 0.827101
x3: 0.640361
x4: 0.941036
x5: 0.382859
x6: 0.340897", "Arm 11_0
hartmann6: -0.0270498 (SEM: 0)
x1: 0.820812
x2: 0.531282
x3: 0.635689
x4: 0.223681
x5: 0.644599
x6: 0.204662", "Arm 12_0
hartmann6: -1.63508 (SEM: 0)
x1: 0.338171
x2: 0.0855563
x3: 0.434027
x4: 0.153941
x5: 0.193153
x6: 0.47274", "Arm 13_0
hartmann6: -1.36942 (SEM: 0)
x1: 0.354249
x2: 0.0650267
x3: 0.398692
x4: 0.116055
x5: 0.141862
x6: 0.554996", "Arm 14_0
hartmann6: -1.85699 (SEM: 0)
x1: 0.388124
x2: 0.10186
x3: 0.494358
x4: 0.156622
x5: 0.23982
x6: 0.486678", "Arm 15_0
hartmann6: -2.2231 (SEM: 0)
x1: 0.398833
x2: 0.162158
x3: 0.504719
x4: 0.168843
x5: 0.267244
x6: 0.536978", "Arm 16_0
hartmann6: -2.22832 (SEM: 0)
x1: 0.394292
x2: 0.21005
x3: 0.495043
x4: 0.154286
x5: 0.274193
x6: 0.552671", "Arm 17_0
hartmann6: -2.62757 (SEM: 0)
x1: 0.389528
x2: 0.189861
x3: 0.497334
x4: 0.213965
x5: 0.283014
x6: 0.579321", "Arm 18_0
hartmann6: -2.85337 (SEM: 0)
x1: 0.378599
x2: 0.227907
x3: 0.491248
x4: 0.250552
x5: 0.301484
x6: 0.622782", "Arm 19_0
hartmann6: -2.98617 (SEM: 0)
x1: 0.352721
x2: 0.192775
x3: 0.500576
x4: 0.2712
x5: 0.341242
x6: 0.6695", "Arm 20_0
hartmann6: -2.74511 (SEM: 0)
x1: 0.377297
x2: 0.166268
x3: 0.43972
x4: 0.283297
x5: 0.382078
x6: 0.663507", "Arm 21_0
hartmann6: -3.0848 (SEM: 0)
x1: 0.320357
x2: 0.182489
x3: 0.530249
x4: 0.287697
x5: 0.298639
x6: 0.68911", "Arm 22_0
hartmann6: -2.89617 (SEM: 0)
x1: 0.334209
x2: 0.184745
x3: 0.613489
x4: 0.301072
x5: 0.306142
x6: 0.686116", "Arm 23_0
hartmann6: -3.21843 (SEM: 0)
x1: 0.260404
x2: 0.205279
x3: 0.51118
x4: 0.277827
x5: 0.307814
x6: 0.683277" ], "type": "scatter", "x": [ 0.2005985677242279, 0.6296183317899704, 0.7112790299579501, 0.2917917026206851, 0.689400383271277, 0.2851419532671571, 0.7580483183264732, 0.16242068447172642, 0.950442255474627, 0.16917908657342196, 0.8249616520479321, 0.8208116525784135, 0.3381711744821113, 0.354249036049906, 0.3881241654510716, 0.39883320074520684, 0.39429193387780154, 0.3895275379703537, 0.37859852549500916, 0.3527206324502161, 0.37729719305540915, 0.3203570892220539, 0.33420895914668164, 0.2604038438549958 ], "xaxis": "x", "y": [ 0.8970836400985718, 0.7647282825782895, 0.5430442057549953, 0.5531500754877925, 0.15371624380350113, 0.09917861130088568, 0.0818073321133852, 0.10311754606664181, 0.527969186194241, 0.3877127543091774, 0.8271006504073739, 0.5312817534431815, 0.0855563340077027, 0.06502666229103642, 0.10186016458250943, 0.1621577566555534, 0.21005003085505822, 0.18986144166980778, 0.22790746611728624, 0.19277545404839663, 0.16626768137659043, 0.182489113651506, 0.18474530072997633, 0.20527851575567252 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "Arm 0_0
hartmann6: -0.0432931 (SEM: 0)
x1: 0.200599
x2: 0.897084
x3: 0.848707
x4: 0.209322
x5: 0.859313
x6: 0.637275", "Arm 1_0
hartmann6: -0.14048 (SEM: 0)
x1: 0.629618
x2: 0.764728
x3: 0.172874
x4: 0.612461
x5: 0.704196
x6: 0.428522", "Arm 2_0
hartmann6: -0.154285 (SEM: 0)
x1: 0.711279
x2: 0.543044
x3: 0.0762402
x4: 0.681922
x5: 0.312368
x6: 0.562774", "Arm 3_0
hartmann6: -0.606926 (SEM: 0)
x1: 0.291792
x2: 0.55315
x3: 0.704073
x4: 0.426226
x5: 0.910367
x6: 0.205464", "Arm 4_0
hartmann6: -0.747436 (SEM: 0)
x1: 0.6894
x2: 0.153716
x3: 0.601733
x4: 0.160379
x5: 0.238299
x6: 0.974823", "Arm 5_0
hartmann6: -1.31202 (SEM: 0)
x1: 0.285142
x2: 0.0991786
x3: 0.446902
x4: 0.199407
x5: 0.234221
x6: 0.349746", "Arm 6_0
hartmann6: -0.52568 (SEM: 0)
x1: 0.758048
x2: 0.0818073
x3: 0.781391
x4: 0.00391702
x5: 0.290735
x6: 0.868292", "Arm 7_0
hartmann6: -0.146962 (SEM: 0)
x1: 0.162421
x2: 0.103118
x3: 0.819247
x4: 0.580236
x5: 0.634186
x6: 0.396618", "Arm 8_0
hartmann6: -0.163706 (SEM: 0)
x1: 0.950442
x2: 0.527969
x3: 0.79726
x4: 0.723166
x5: 0.559298
x6: 0.886257", "Arm 9_0
hartmann6: -0.0852145 (SEM: 0)
x1: 0.169179
x2: 0.387713
x3: 0.924425
x4: 0.899991
x5: 0.202584
x6: 0.552325", "Arm 10_0
hartmann6: -0.0122426 (SEM: 0)
x1: 0.824962
x2: 0.827101
x3: 0.640361
x4: 0.941036
x5: 0.382859
x6: 0.340897", "Arm 11_0
hartmann6: -0.0270498 (SEM: 0)
x1: 0.820812
x2: 0.531282
x3: 0.635689
x4: 0.223681
x5: 0.644599
x6: 0.204662", "Arm 12_0
hartmann6: -1.63508 (SEM: 0)
x1: 0.338171
x2: 0.0855563
x3: 0.434027
x4: 0.153941
x5: 0.193153
x6: 0.47274", "Arm 13_0
hartmann6: -1.36942 (SEM: 0)
x1: 0.354249
x2: 0.0650267
x3: 0.398692
x4: 0.116055
x5: 0.141862
x6: 0.554996", "Arm 14_0
hartmann6: -1.85699 (SEM: 0)
x1: 0.388124
x2: 0.10186
x3: 0.494358
x4: 0.156622
x5: 0.23982
x6: 0.486678", "Arm 15_0
hartmann6: -2.2231 (SEM: 0)
x1: 0.398833
x2: 0.162158
x3: 0.504719
x4: 0.168843
x5: 0.267244
x6: 0.536978", "Arm 16_0
hartmann6: -2.22832 (SEM: 0)
x1: 0.394292
x2: 0.21005
x3: 0.495043
x4: 0.154286
x5: 0.274193
x6: 0.552671", "Arm 17_0
hartmann6: -2.62757 (SEM: 0)
x1: 0.389528
x2: 0.189861
x3: 0.497334
x4: 0.213965
x5: 0.283014
x6: 0.579321", "Arm 18_0
hartmann6: -2.85337 (SEM: 0)
x1: 0.378599
x2: 0.227907
x3: 0.491248
x4: 0.250552
x5: 0.301484
x6: 0.622782", "Arm 19_0
hartmann6: -2.98617 (SEM: 0)
x1: 0.352721
x2: 0.192775
x3: 0.500576
x4: 0.2712
x5: 0.341242
x6: 0.6695", "Arm 20_0
hartmann6: -2.74511 (SEM: 0)
x1: 0.377297
x2: 0.166268
x3: 0.43972
x4: 0.283297
x5: 0.382078
x6: 0.663507", "Arm 21_0
hartmann6: -3.0848 (SEM: 0)
x1: 0.320357
x2: 0.182489
x3: 0.530249
x4: 0.287697
x5: 0.298639
x6: 0.68911", "Arm 22_0
hartmann6: -2.89617 (SEM: 0)
x1: 0.334209
x2: 0.184745
x3: 0.613489
x4: 0.301072
x5: 0.306142
x6: 0.686116", "Arm 23_0
hartmann6: -3.21843 (SEM: 0)
x1: 0.260404
x2: 0.205279
x3: 0.51118
x4: 0.277827
x5: 0.307814
x6: 0.683277" ], "type": "scatter", "x": [ 0.2005985677242279, 0.6296183317899704, 0.7112790299579501, 0.2917917026206851, 0.689400383271277, 0.2851419532671571, 0.7580483183264732, 0.16242068447172642, 0.950442255474627, 0.16917908657342196, 0.8249616520479321, 0.8208116525784135, 0.3381711744821113, 0.354249036049906, 0.3881241654510716, 0.39883320074520684, 0.39429193387780154, 0.3895275379703537, 0.37859852549500916, 0.3527206324502161, 0.37729719305540915, 0.3203570892220539, 0.33420895914668164, 0.2604038438549958 ], "xaxis": "x2", "y": [ 0.8970836400985718, 0.7647282825782895, 0.5430442057549953, 0.5531500754877925, 0.15371624380350113, 0.09917861130088568, 0.0818073321133852, 0.10311754606664181, 0.527969186194241, 0.3877127543091774, 0.8271006504073739, 0.5312817534431815, 0.0855563340077027, 0.06502666229103642, 0.10186016458250943, 0.1621577566555534, 0.21005003085505822, 0.18986144166980778, 0.22790746611728624, 0.19277545404839663, 0.16626768137659043, 0.182489113651506, 0.18474530072997633, 0.20527851575567252 ], "yaxis": "y2" } ], "layout": { "annotations": [ { "font": { "size": 14 }, "showarrow": false, "text": "Mean", "x": 0.25, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 14 }, "showarrow": false, "text": "Standard Error", "x": 0.8, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" } ], "autosize": false, "height": 450, "hovermode": "closest", "legend": { "orientation": "h", "x": 0, "y": -0.25 }, "margin": { "b": 100, "l": 35, "pad": 0, "r": 35, "t": 35 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "width": 950, "xaxis": { "anchor": "y", "autorange": false, "domain": [ 0.05, 0.45 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "xaxis2": { "anchor": "y2", "autorange": false, "domain": [ 0.6, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "yaxis": { "anchor": "x", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x2" }, "type": "linear" }, "yaxis2": { "anchor": "x2", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "type": "linear" } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "render(ax_client.get_contour_plot())" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We can also retrieve a contour plot for the other metric, \"l2norm\" –– say, we are interested in seeing the response surface for parameters \"x3\" and \"x4\" for this one." ] }, { "cell_type": "code", "execution_count": 12, "metadata": { "collapsed": true }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:35:31] ax.service.ax_client: Retrieving contour plot with parameter 'x3' on X-axis and 'x4' on Y-axis, for metric 'l2norm'. Remaining parameters are affixed to the middle of their range.\n" ] }, { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 0.45, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(247,252,253)" ], [ 0.125, "rgb(229,245,249)" ], [ 0.25, "rgb(204,236,230)" ], [ 0.375, "rgb(153,216,201)" ], [ 0.5, "rgb(102,194,164)" ], [ 0.625, "rgb(65,174,118)" ], [ 0.75, "rgb(35,139,69)" ], [ 0.875, "rgb(0,109,44)" ], [ 1.0, "rgb(0,68,27)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y", "z": [ [ 0.9433712121496273, 0.9393209760599617, 0.9357959213092557, 0.9328232974956039, 0.9304288896695695, 0.9286366683515681, 0.9274684226427248, 0.926943382325827, 0.9270778369580136, 0.9278847623670006, 0.9293734676071593, 0.9315492781670603, 0.9344132738087495, 0.9379621015050198, 0.9421878850401986, 0.9470782523456713, 0.9526164988698305, 0.9587818995569619, 0.9655501728099812, 0.9728940869784047, 0.9807841839150462, 0.989189576403863, 0.9980787594592577, 1.0074203636748675, 1.017183776823503, 1.0273395718158829, 1.0378597054931358, 1.04871748854379, 1.0598873622304255, 1.0713445422286298, 1.0830645982493436, 1.0950230318286738, 1.1071948999828143, 1.1195545159016036, 1.1320752434853023, 1.144729391489471, 1.1574882049253765, 1.170321945427569, 1.183200048062229, 1.1960913393168975, 1.208964299703902, 1.2217873544011468, 1.2345291764221367, 1.2471589886549752, 1.2596468534195981, 1.2719639406780365, 1.2840827684668106, 1.295977411347994, 1.3076236746056782, 1.318999233508818 ], [ 0.9419412512713671, 0.9378832272162764, 0.934353742111695, 0.9313803152950926, 0.9289889965414735, 0.927204010437904, 0.9260473826653919, 0.9255385540061292, 0.9256939900611973, 0.9265267971717299, 0.9280463578223752, 0.9302580017346602, 0.9331627316959197, 0.9367570255599086, 0.9410327373014425, 0.9459771198775886, 0.9515729902096621, 0.9577990511012292, 0.9646303757050582, 0.972039046900159, 0.9799949268498543, 0.9884665122114886, 0.9974218104986216, 1.0068291573662027, 1.0166578892362241, 1.026878796834067, 1.0374643152455008, 1.048388449756689, 1.0596264810620553, 1.0711545239024343, 1.082949022126424, 1.0949862531912866, 1.1072418953684544, 1.1196906902984949, 1.1323062167883295, 1.14506077962342, 1.1579254086046213, 1.1708699568589223, 1.183863283120526, 1.1968734999740966, 1.2098682689508133, 1.2228151237290894, 1.2356818042321165, 1.248436586761905, 1.2610485980851556, 1.2734881042630197, 1.2857267677532558, 1.2977378687537573, 1.3094964888227594, 1.3209796564803629 ], [ 0.940961916762201, 0.936904401422709, 0.9333782675251984, 0.9304112412790257, 0.9280295743725423, 0.9262576838698511, 0.925117773049037, 0.924629438923048, 0.9248092743986986, 0.9256704756131764, 0.9272224678852916, 0.9294705668016667, 0.9324156939978661, 0.9360541698340111, 0.9403776069027019, 0.945372928499206, 0.9510225340753065, 0.9573046284961696, 0.9641937229070089, 0.9716613016955887, 0.9796766323384472, 0.9882076735366867, 0.9972220140741956, 1.0066877546802777, 1.0165742351594587, 1.0268525179286205, 1.0374955721447818, 1.0484781550045121, 1.0597764419786546, 1.071367495567878, 1.0832286717616928, 1.0953370488219238, 1.1076689372696196, 1.120199504827998, 1.1329025309518426, 1.145750292492072, 1.158713573074327, 1.1717617823437696, 1.184863166713576, 1.1979850905814238, 1.2110943661459945, 1.2241576107814274, 1.2371416130381743, 1.2500136912634385, 1.2627420321237393, 1.2752959996003717, 1.2876464080649292, 1.299765755681007, 1.3116284165594612, 1.3232107918174743 ], [ 0.9404421184838523, 0.9363937118792618, 0.9328790030426105, 0.9299258581075155, 0.9275606633295042, 0.9258079617088644, 0.9246900698476561, 0.9242266807194581, 0.9244344602797148, 0.9253266484845266, 0.9269126782663224, 0.9291978292114592, 0.9321829358710783, 0.9358641734561721, 0.9402329456170373, 0.9452758994379054, 0.9509750909354571, 0.9573083194430511, 0.964249640562133, 0.9717700542981216, 0.979838347261124, 0.9884220455822456, 0.9974884098051418, 1.0070053783526585, 1.0169423503319093, 1.0272707031658748, 1.037963975223002, 1.0489977050816857, 1.060348986849074, 1.071995847698723, 1.0839165643477464, 1.0960890153885816, 1.1084901340223117, 1.121095495940355, 1.1338790557083804, 1.146813031014339, 1.159867924670017, 1.1730126674059485, 1.186214859719927, 1.199441088397463, 1.2126572928428876, 1.2258291577734381, 1.2389225116221108, 1.2519037135803874, 1.264740016057733, 1.2773998930453174, 1.2898533281965079, 1.3020720592508364, 1.3140297776986658, 1.3257022843344664 ], [ 0.9403893688573128, 0.9363589463645451, 0.9328640051630381, 0.9299324810123819, 0.9275908235963042, 0.9258636310883218, 0.924773264531604, 0.9243394476744767, 0.9245788601776668, 0.925504734788406, 0.9271264721138479, 0.9294492898966882, 0.9324739269735218, 0.936196425020414, 0.9406080132531641, 0.9456951218045263, 0.9514395478051528, 0.9578187934950557, 0.964806587315667, 0.9723735863406622, 0.9804882411681991, 0.989117782216059, 0.9982292595850637, 1.0077905400714366, 1.0177711426682967, 1.0281427925917126, 1.038879608089005, 1.0499579040425575, 1.06135567766, 1.0730518985603166, 1.085025737721372, 1.0972558447255738, 1.1097197437707618, 1.122393384636797, 1.1352508612491732, 1.148264295428584, 1.1614038731106981, 1.1746380127368854, 1.1879336403140104, 1.2012565430424458, 1.21457177340628, 1.2278440777737403, 1.241038327163535, 1.254119932160474, 1.2670552284011445, 1.2798118231825826, 1.2923588973385864, 1.304667459487747, 1.3167105520859883, 1.3284634104690825 ], [ 0.9408097197738514, 0.9368064024748775, 0.9333398155666901, 0.9304378917168012, 0.9281270700899296, 0.9264319300646173, 0.9253748046492827, 0.9249753792359998, 0.9252502836226826, 0.926212687939573, 0.9278719161866327, 0.9302330943990555, 0.9332968537749999, 0.9370591120556362, 0.941510958525375, 0.9466386685489684, 0.9524238718567366, 0.9588438941294818, 0.9658722832589947, 0.9734795195714224, 0.9816338929275481, 0.9903025083496046, 0.9994523550373298, 1.0090513425462737, 1.019069179768694, 1.0294779637991576, 1.0402523768959608, 1.0513694653350818, 1.0628080677999132, 1.0745480288003904, 1.0865693475900713, 1.0988513841252077, 1.1113721991900336, 1.1241080677201458, 1.1370331786397108, 1.1501195178965455, 1.16333691958148, 1.1766532612122074, 1.1900347734391137, 1.203446431920075, 1.2168523997513434, 1.2302164919225194, 1.2435026378272367, 1.2566753230079124, 1.2696999963641622, 1.2825434335938062, 1.295174051462115, 1.3075621705632594, 1.3196802265920446, 1.3315029318726774 ], [ 0.9417077088477027, 0.9377408321696775, 0.9343114044406728, 0.931447281211056, 0.9291748155804898, 0.9275184922504685, 0.9265005414738918, 0.9261405385752399, 0.9264549970192709, 0.9274569657267893, 0.9291556444223722, 0.9315560341194657, 0.9346586431621142, 0.938459272167457, 0.942948903217297, 0.9481137190674177, 0.9539352762617165, 0.9603908512050495, 0.9674539700322549, 0.9750951213343237, 0.9832826353364161, 0.9919836933685624, 1.0011654061219875, 1.0107958678186215, 1.0208450614820688, 1.0312854749736433, 1.042092312873789, 1.0532432661105182, 1.0647179037658332, 1.076496829202816, 1.088560762461294, 1.1008896813722453, 1.1134621067046664, 1.1262545759064782, 1.1392413218117698, 1.1523941534302167, 1.1656825215915476, 1.1790737415319876, 1.192533337860015, 1.2060254750180381, 1.219513437866226, 1.2329601312358436, 1.2463285729611457, 1.2595823609278232, 1.2726861003462069, 1.2856057823758167, 1.2983091092490062, 1.310765764179536, 1.3229476266888305, 1.3348289356633378 ], [ 0.9430863153739759, 0.9391653958742039, 0.9357821230357303, 0.9329642012158624, 0.9307378216956805, 0.9291272982242273, 0.9281546829675325, 0.9278393686094248, 0.9281976846633546, 0.9292424987807777, 0.9309828369276705, 0.9334235396076167, 0.9365649745851472, 0.9404028294080193, 0.9449280088889215, 0.9501266629010652, 0.9559803676396615, 0.9624664782798392, 0.9695586623944833, 0.9772276116431539, 0.9854419143549732, 0.9941690534892726, 1.0033764717144789, 1.01303261645399, 1.0231078458229992, 1.0335750564534092, 1.044409912104058, 1.0555906232705554, 1.0670973315368444, 1.0789112367825562, 1.0910136328520348, 1.1033849929665511, 1.116004200869126, 1.1288479818892407, 1.1418905567207913, 1.1551035171939947, 1.1684559050099332, 1.1819144610654473, 1.1954440053409034, 1.209007905358475, 1.2225685938636544, 1.2360881019664118, 1.2495285808635646, 1.2628527922162631, 1.2760245535299795, 1.2890091301408235, 1.3017735695831065, 1.3142869772804802, 1.326520734814153, 1.338448663635511 ], [ 0.9449469262557391, 0.9410816263067404, 0.9377536654727926, 0.9349905241331219, 0.9328181572948884, 0.9312606327577133, 0.9303397504908362, 0.9300746490783705, 0.9304814074027427, 0.9315726524589254, 0.9333571872626037, 0.9358396560871721, 0.9390202674723187, 0.942894598175321, 0.9474535029081571, 0.9526831546062585, 0.9585652373504144, 0.9650773082799871, 0.9721933356131189, 0.9798844074700677, 0.988119591250199, 0.9968669063437728, 1.0060943534034141, 1.0157709197347773, 1.0258674536178007, 1.0363572810570907, 1.0472164486252078, 1.0584235337184944, 1.069959056741538, 1.0818046150667808, 1.0939418971685957, 1.106351724088364, 1.1190132281077387, 1.1319032376090004, 1.1449959013815838, 1.1582625557830641, 1.1716718142302416, 1.1851898416984084, 1.1987807681251195, 1.21240719321947, 1.2260307392330079, 1.2396126153913953, 1.253114165884838, 1.2664973811983586, 1.2797253594038742, 1.2927627095807754, 1.3055758938057, 1.3181335073150866, 1.3304064986954045, 1.342368333490942 ], [ 0.9472893120948866, 0.9434894021620083, 0.940226039830004, 0.9375264113607802, 0.9354161638622309, 0.9339190471822965, 0.9330565381081234, 0.93284745286294, 0.9333075562029747, 0.9344491781241999, 0.9362808522269104, 0.9388069930010581, 0.9420276324093174, 0.9459382387269304, 0.9505296420480978, 0.9557880904440615, 0.9616954576589597, 0.9682296167764165, 0.97536498417738, 0.9830732246605431, 0.991324092846982, 1.000086369377306, 1.0093288339854674, 1.0190212012993718, 1.0291349291054774, 1.0396437967104317, 1.0505241550840776, 1.0617547864651447, 1.0733163807821615, 1.085190714923573, 1.097359673570216, 1.109804260864156, 1.1225037298151015, 1.1354349185012476, 1.1485718408775267, 1.1618855416792235, 1.1753441937564497, 1.1889133952148794, 1.202556613767921, 1.2162357250912754, 1.2299115976597432, 1.2435446853777101, 1.2570955988576575, 1.2705256349839555, 1.2837972517518466, 1.2968744811505353, 1.3097232771948724, 1.3223117993408287, 1.3346106336983259, 1.3465929559050813 ], [ 0.9501116136002077, 0.946386931789896, 0.9431975486178684, 0.9405702900219053, 0.9385304278725937, 0.9371013266957204, 0.9363040740577133, 0.936157100764095, 0.936675799316091, 0.9378721517480954, 0.9397543809553439, 0.9423266427539694, 0.9455887789076975, 0.9495361537620848, 0.9541595983310922, 0.959445484909093, 0.9653759516885595, 0.97192928969839, 0.9790804932490298, 0.9868019602790662, 0.9950643118518502, 1.0038372829958906, 1.013090623385473, 1.0227949388659998, 1.0329224036689855, 1.0434472744341645, 1.0543461378838241, 1.065597832600624, 1.077183019928165, 1.089083443225363, 1.1012809830124888, 1.1137566550249853, 1.126489696826942, 1.139456856048893, 1.1526319458541012, 1.1659856848766297, 1.1794857993316117, 1.193097339384731, 1.20678315068006, 1.2205044422203903, 1.2342213992166067, 1.2478938000589395, 1.261481607402488, 1.2749455129682452, 1.2882474234557282, 1.3013508809244307, 1.3142214153656586, 1.3268268302700135, 1.3391374240966933, 1.3511261519196103 ], [ 0.9534103384446607, 0.9497707470459166, 0.9466647788708014, 0.9441188383960994, 0.942157760486002, 0.9408044630367608, 0.9400795848855068, 0.9400011153008404, 0.9405840236409203, 0.9418399003944826, 0.9437766237311462, 0.946398068708848, 0.9497038791229195, 0.9536893241780176, 0.9583452630917231, 0.9636582396009886, 0.969610724251512, 0.9761815144764521, 0.9833462903137563, 0.9910783073984792, 0.9993491901131493, 1.0081297699390317, 1.0173909028090575, 1.0271042009192834, 1.0372426301263484, 1.0477809419877857, 1.0586959093655273, 1.0699663141322489, 1.0815726291924195, 1.0934963811494829, 1.1057192625939982, 1.1182221341092828, 1.1309840792945927, 1.1439816508810479, 1.15718839280155, 1.1705746643612558, 1.1841077443538341, 1.197752162530943, 1.2114701933835283, 1.2252224483591276, 1.2389685117051337, 1.2526675772377613, 1.2662790553354768, 1.2797631297771805, 1.2930812522037067, 1.3061965680788632, 1.319074272400198, 1.331681896443206, 1.3439895288531456, 1.355969975696902 ], [ 0.9571803686889343, 0.9536357075362933, 0.9506226022181696, 0.9481669806003654, 0.946293185357185, 0.9450236336252648, 0.9443784637394552, 0.9443751755355186, 0.9450282729302504, 0.9463489200493178, 0.9483446249805846, 0.951018968106224, 0.9543713946078833, 0.9583970926841362, 0.963086979631319, 0.9684278164075846, 0.9744024667063551, 0.9809903080183483, 0.988167789071657, 0.9959091105907459, 1.0041869862502866, 1.0129734224422677, 1.0222404469228281, 1.0319607268741295, 1.0421080482289584, 1.05265766144737, 1.0635864986277956, 1.0748732207466791, 1.0864980093588612, 1.098442039737307, 1.1106866649161227, 1.123212439449693, 1.135998159194117, 1.1490200772866606, 1.162251399490164, 1.1756620943503246, 1.1892189972471434, 1.2028861523814967, 1.2166253229447548, 1.2303966015026833, 1.244159063020415, 1.2578714163478801, 1.2714926229190693, 1.2849824623045405, 1.2983020326956292, 1.3114141805972392, 1.3242838583838163, 1.3368784113654122, 1.349167797986992, 1.3611247480298116 ], [ 0.9614149788658296, 0.9579750155135838, 0.9550641854105224, 0.9527078912915827, 0.9509299357298118, 0.9497521888664048, 0.9491942452254454, 0.9492730762539509, 0.9500026873916786, 0.951393790941329, 0.9534535086810291, 0.956185120852053, 0.9595878805544991, 0.9636569142277542, 0.9683832291411218, 0.9737538468596602, 0.9797520765513875, 0.9863579328493306, 0.993548689164983, 1.0012995391097665, 1.009584318084533, 1.018376219460489, 1.0276484346144987, 1.037374664361061, 1.047529492294284, 1.0580886538163465, 1.0690292328601512, 1.0803297538376506, 1.0919700644721977, 1.1039309096600916, 1.1161931921535315, 1.1287370343941607, 1.1415408232648, 1.1545804133789523, 1.167828606893776, 1.181254954069585, 1.1948258561623906, 1.2085049132490153, 1.2222534443517514, 1.2360311091795286, 1.2497965720115742, 1.2635081624916744, 1.2771245016729038, 1.2906050729269516, 1.3039107259689164, 1.3170041085207969, 1.3298500245228162, 1.3424157207720797, 1.3546711058130023, 1.3665889061194292 ], [ 0.9661058647744352, 0.9627802416749551, 0.9599810118331075, 0.957733011304357, 0.9560594622447838, 0.9549816497405976, 0.9545185898714287, 0.9546866957795663, 0.9554994505990815, 0.9569670984429368, 0.9590963671481989, 0.9618902389438901, 0.9653477873174868, 0.9694640996483289, 0.9742303050131678, 0.9796337241500276, 0.9856581529781903, 0.9922842814337879, 0.9994902351593709, 1.0072522092173644, 1.015545142974541, 1.0243433696570492, 1.0336211730307587, 1.0433532080007053, 1.0535147908168438, 1.0640821101782871, 1.0750324052419085, 1.0863440829747608, 1.0979966627602347, 1.1099704290154877, 1.1222457646261499, 1.1348022638398771, 1.1476178032682405, 1.1606677530351897, 1.173924455368898, 1.1873570221235588, 1.2009314364837353, 1.2146109022536702, 1.228356367427055, 1.242127150292312, 1.2558816077008896, 1.2695777996915558, 1.2831741185231733, 1.2966298616395953, 1.309905736837925, 1.3229642942374005, 1.3357702840505683, 1.3482909421313656, 1.3604962072154254, 1.372358874977198 ], [ 0.9712431829533968, 0.9680413620573572, 0.965362914512658, 0.9632320751558212, 0.9616714529696889, 0.9607017179594218, 0.9603412815120029, 0.9606059771066641, 0.9615087502202627, 0.9630593684660014, 0.9652641653011962, 0.9681258328377844, 0.9716432810679662, 0.9758115817128662, 0.9806220142935042, 0.9860622291384415, 0.9921165360254709, 0.9987663172250316, 1.0059905495220554, 1.013766402088675, 1.0220698588052135, 1.0308763011794695, 1.0401609912849803, 1.049899422050084, 1.060067551021931, 1.0706419747862317, 1.081600091213844, 1.092920222957501, 1.1045815922874653, 1.1165640257600604, 1.1288473507673291, 1.1414105679457183, 1.154230967532516, 1.1672833687815796, 1.1805396125583139, 1.1939683635117389, 1.207535211487233, 1.221203018547024, 1.2349324398974266, 1.2486825476566583, 1.2624114972565998, 1.2760771906035215, 1.2896379039027166, 1.3030528595172433, 1.3162827300023152, 1.3292900688140745, 1.342039666626978, 1.354498835193857, 1.3666376226463384, 1.378428965361596 ], [ 0.9768156006831129, 0.973746806102739, 0.9711981210001606, 0.969193151222818, 0.9677538670244026, 0.9669003008217953, 0.9666502407340642, 0.9670189268177894, 0.9680187587617126, 0.9696590258195041, 0.9719456718204874, 0.9748811099942511, 0.9784641037559778, 0.9826897300711369, 0.9875494409552283, 0.9930312353502634, 0.9991199472948558, 1.0057976463570086, 1.0130441326413129, 1.0208374924277792, 1.0291546649254912, 1.0379719620252206, 1.0472654899090224, 1.057011449980403, 1.0671863403539927, 1.07776711136959, 1.0887313142825779, 1.1000572151399173, 1.1117237733299827, 1.1237103739745695, 1.1359962760839173, 1.1485598484269208, 1.161377745756184, 1.174424193789956, 1.1876705096628322, 1.2010849163398856, 1.2146326452204406, 1.228276277979585, 1.241976259574043, 1.2556915136568345, 1.2693801013989294, 1.282999878294151, 1.2965091168696208, 1.3098670744824512, 1.32303449408632, 1.3359740322138633, 1.3486506128942588, 1.361031709273368, 1.3730875567149206, 1.3847913024309584 ], [ 0.9828103562084967, 0.9798835157825991, 0.9774733102940759, 0.9756026951293939, 0.9742929828393947, 0.9735635524644085, 0.973431556933268, 0.9739116354395941, 0.9750156393966585, 0.9767523823845794, 0.9791274263013725, 0.9821429174983647, 0.9857974877056022, 0.9900862345978972, 0.9950007953644905, 1.0005295229884064, 1.0066577684908726, 1.013368262752657, 1.0206415788961478, 1.0284566420283452, 1.0367912407918471, 1.0456224903435016, 1.0549272057645491, 1.0646821715442798, 1.0748643285652935, 1.085450922157282, 1.0964196378796642, 1.1077486951496007, 1.119416811726482, 1.1314029462938286, 1.14368578813928, 1.1562430570087396, 1.1690507482325736, 1.18208247566416, 1.1953090307781302, 1.2086982157474992, 1.2222149488728116, 1.2358215991577286, 1.2494784871268063, 1.2631444868033634, 1.2767776719821307, 1.2903359623310549, 1.3037777374562443, 1.3170623979259375, 1.3301508607889934, 1.3430059834564287, 1.3555929143248266, 1.3678793716310182, 1.3798358541052547, 1.3914357883207202 ], [ 0.9892133286848693, 0.9864370154370655, 0.9841736816716018, 0.9824456164987478, 0.9812734615778159, 0.9806759325224987, 0.9806695406107054, 0.9812683216265884, 0.9824835801901616, 0.9843236595188657, 0.9867937480819273, 0.9898957358395204, 0.9936281334000138, 0.9979860670741346, 1.0029613609609387, 1.0085427133306242, 1.0147159682119338, 1.0214644740729373, 1.0287695102800667, 1.0366107502509974, 1.0449667211031892, 1.0538152178624853, 1.063133640535134, 1.0728992451122323, 1.0830893264394914, 1.0936813639634853, 1.104653144009395, 1.115982827737268, 1.1276488928301018, 1.139629876740401, 1.1519039010706236, 1.164448033982283, 1.1772376082639844, 1.1902456293275594, 1.2034423799447556, 1.216795276580883, 1.2302689790503794, 1.2438257164327329, 1.2574257724736786, 1.2710280700621785, 1.2845908008191198, 1.2980720567590145, 1.3114304325889696, 1.3246255775066627, 1.3376186836397848, 1.3503729045301673, 1.362853701602068, 1.375029119732672, 1.3868699952006647, 1.3983501006949155 ], [ 0.9960091171440821, 0.9933914917183946, 0.9912830349488371, 0.9897053587655328, 0.9886784256406327, 0.9882202823944835, 0.9883467964254435, 0.9890714010487499, 0.9904048579716025, 0.992355046284832, 0.9949267885797719, 0.9981217256973638, 1.0019382518988262, 1.0063715215485813, 1.0114135362981416, 1.0170533178339747, 1.023277165206059, 1.0300689876209257, 1.0374106940305232, 1.0452826115259186, 1.053663898273412, 1.0625329170893578, 1.071867545463501, 1.0816454158181195, 1.0918440983640059, 1.102441245108315, 1.1134146976043184, 1.1247425281494425, 1.136402957238381, 1.1483740948467933, 1.1606334962246123, 1.1731575846914695, 1.18592104292775, 1.198896288544367, 1.2120531277990263, 1.225358637794945, 1.2387772813025784, 1.2522712231423039, 1.2658007978873822, 1.27932507376277, 1.29280246224534, 1.3061913321611502, 1.3194505975075264, 1.332540257820491, 1.3454218778387248, 1.3580589993534653, 1.3704174826742577, 1.3824657783842251, 1.394175132301728, 1.4055197280570224 ], [ 1.0031811275735523, 1.0007298827580873, 0.9987838613309358, 0.9973639912639712, 0.9964895515316717, 0.9961779184436018, 0.9964443163671671, 0.9973015793191564, 0.9987599310517201, 1.000826792370974, 1.0035066253725966, 1.006800824865153, 1.010707667219517, 1.0152223259156803, 1.0203369608133441, 1.026040884346535, 1.032320802289461, 1.0391611196537809, 1.0465442944179104, 1.0544512146863032, 1.0628615708138445, 1.0717541954824479, 1.0811073529716846, 1.0908989720297229, 1.1011068285442025, 1.1117086859002216, 1.1226823875215766, 1.1340058733510048, 1.145657076471269, 1.1576136645385748, 1.1698526264883184, 1.182349753479291, 1.1950791012669972, 1.2080125324940745, 1.2211194197969686, 1.234366554733254, 1.2477182682030716, 1.2611367368007758, 1.2745824313467355, 1.28801465802177, 1.3013921454478192, 1.314673638677191, 1.3278184702152591, 1.340787086984184, 1.3535415196322524, 1.3660457865540427, 1.3782662295016896, 1.3901717809635983, 1.4017341658145226, 1.4129280413226462 ], [ 1.0107116670168514, 1.008433975427379, 1.0066574436767846, 1.0054023123566493, 1.0046871757587952, 1.0045287406741459, 1.0049415913656734, 1.0059379669299393, 1.0075275582111207, 1.009717332308361, 1.0125113933979908, 1.015910888900872, 1.019913969735784, 1.0245158122497404, 1.0297087071421287, 1.0354822171050775, 1.0418233999624338, 1.048717088097104, 1.0561462086715805, 1.0640921238781609, 1.0725349679165666, 1.0814539591391232, 1.090827672168579, 1.1006342637279414, 1.1108516527104646, 1.121457654225461, 1.1324300570413106, 1.1437466193270371, 1.1553849504161056, 1.1673222570364103, 1.1795349620754612, 1.19199824156384, 1.2046855546391508, 1.2175682495743296, 1.2306153146670025, 1.2437933134628023, 1.2570665107962806, 1.2703971689003841, 1.2837459759683458, 1.297072563115918, 1.3103360671110433, 1.3234957022504428, 1.3365113126263737, 1.3493438839307965, 1.3619560009365004, 1.3743122425216892, 1.3863795105570356, 1.3981272923026973, 1.4095278583660515, 1.4205563999421222 ], [ 1.0185820434583093, 1.0164845093568573, 1.0148839647240941, 1.0137999619936893, 1.0132504119505155, 1.0132513547708406, 1.0138167388196033, 1.014958213108768, 1.0166849400758466, 1.019003435995736, 1.0219174467799959, 1.0254278669920274, 1.0295327094235631, 1.03422713132887, 1.0395035212081007, 1.045351646761267, 1.0517588603583818, 1.058710353423869, 1.0661894462020445, 1.0741778954999341, 1.082656201389784, 1.091603895364876, 1.100999796899504, 1.110822230940695, 1.1210492022875238, 1.131658521010574, 1.1426278658030045, 1.1539347639101487, 1.165556464864948, 1.1774696969566045, 1.1896503197909036, 1.202072915260264, 1.2147103809652682, 1.2275335958599685, 1.2405112161313214, 1.2536096354688373, 1.2667931164833748, 1.2800240766073008, 1.2932634964492578, 1.3064714118491465, 1.3196074510543994, 1.3326313829818648, 1.3455036491243109, 1.358185858653955, 1.3706412327076838, 1.3828349892786815, 1.3947346644882956, 1.406310369345905, 1.417534983569149, 1.4283842897915129 ], [ 1.0267726701599, 1.0248612862414594, 1.0234426216239243, 1.02253554182483, 1.0221572770153655, 1.022323204939424, 1.0230466429657366, 1.0243386548325857, 1.0262078782145254, 1.0286603796908946, 1.031699543928707, 1.0353260037787018, 1.0395376173688822, 1.0443294970049306, 1.0496940926239224, 1.0556213296518053, 1.0620987974942104, 1.0691119808704166, 1.076644522361262, 1.084678501662652, 1.0931947159006012, 1.1021729463874153, 1.1115921999927891, 1.1214309164387466, 1.1316671342160662, 1.1422786059294359, 1.1532428493232383, 1.1645371165330507, 1.1761382663580986, 1.1880225360703462, 1.2001652293334235, 1.212540359014941, 1.2251202996968575, 1.2378755083533293, 1.2507743618699716, 1.2637831406900806, 1.2768661652559332, 1.2899860719535337, 1.303104201491411, 1.3161810658920272, 1.3291768594787756, 1.3420519824955544, 1.3547675513981046, 1.3672858759406488, 1.3795708890174554, 1.3915885203248144, 1.4033070091132749, 1.4146971546077223, 1.42573250517964, 1.4363894891826645 ], [ 1.0352631730851143, 1.033543282893363, 1.0323117450335781, 1.0315867408448294, 1.0313848239834313, 1.0317207147528034, 1.0326071047388328, 1.0340544769447493, 1.0360709470185185, 1.0386621314346924, 1.0418310485515831, 1.0455780582079925, 1.049900844832254, 1.0547944477929192, 1.0602513408440557, 1.0662615600078909, 1.0728128762172182, 1.0798910057999689, 1.0874798488851183, 1.0955617435941292, 1.1041177229370387, 1.113127761812044, 1.1225710030019007, 1.1324259525652958, 1.1426706353234832, 1.1532826996578354, 1.164239458484398, 1.175517852670792, 1.1870943275295083, 1.1989446241218669, 1.211043503496432, 1.223364438989672, 1.2358793234279655, 1.2485582401900015, 1.2613693388636948, 1.274278840453591, 1.2872511784801093, 1.300249265419861, 1.3132348617231706, 1.326169018077468, 1.3390125600762055, 1.3517265866182862, 1.3642729576815076, 1.3766147523199894, 1.3887166829588926, 1.40054545679478, 1.4120700791292617, 1.4232620967131298, 1.4340957817023063, 1.4445482587123806 ], [ 1.0440325000741977, 1.04250876652064, 1.0414689210165144, 1.0409304645373678, 1.0409092791441001, 1.0414194331823028, 1.0424729977662317, 1.0440798793678023, 1.0462476735753936, 1.0489815451997566, 1.052284139821814, 1.056155531519076, 1.060593210782644, 1.0655921154636365, 1.0711447059189927, 1.07724108338305, 1.083869148094043, 1.0910147910920676, 1.0986621112185828, 1.1067936470596123, 1.1153906126680164, 1.1244331259003335, 1.1339004187787363, 1.1437710198021953, 1.154022897973889, 1.1646335574268813, 1.1755800708565796, 1.186839041363521, 1.1983864877094448, 1.2101976580995155, 1.2222467909333532, 1.2345068539814157, 1.2469493019506257, 1.2595438934275214, 1.2722586012450992, 1.2850596374494825, 1.2979115987375955, 1.3107777240045861, 1.3236202449154273, 1.3364008041809958, 1.3490809142253326, 1.361622430208433, 1.3739880147319938, 1.3861415759396176, 1.3980486653361122, 1.4096768259900307, 1.4209958855836164, 1.431978191933018, 1.4425987911181999, 1.4528355502876316 ], [ 1.053059030524582, 1.0517354107989445, 1.0508911140900212, 1.050542965583018, 1.0507061812123728, 1.0513941831457263, 1.0526184273532224, 1.0543882477115087, 1.0567107211996332, 1.0595905587241212, 1.0630300259176086, 1.0670288978289064, 1.071584450697548, 1.076691492925327, 1.0823424358963936, 1.0885274034844803, 1.0952343770264636, 1.1024493704192746, 1.110156628056824, 1.1183388368097607, 1.126977342323469, 1.1360523595531051, 1.1455431674419534, 1.155428277635587, 1.1656855668789847, 1.1762923624702835, 1.1872254706620429, 1.1984611404708343, 1.209974961065006, 1.2217416998513524, 1.2337350991757436, 1.2459276595171755, 1.2582904432056579, 1.270792932976926, 1.2834029738012023, 1.2960868158943255, 1.3088092642318236, 1.3215339279275737, 1.334223553491474, 1.3468404201764468, 1.359346773337391, 1.3717052723044538, 1.3838794318165264, 1.3958340396952016, 1.4075355374626246, 1.4189523545390612, 1.430055190210003, 1.440817240591341, 1.4512143703043094, 1.461225230518737 ], [ 1.0623206844702582, 1.0612004114557672, 1.0605547899305026, 1.0603999743908719, 1.0607505204873895, 1.061619210190666, 1.0630168896818304, 1.064952324056678, 1.0674320729224298, 1.0704603908366903, 1.0740391562606693, 1.0781678322306072, 1.0828434612480546, 1.0880606959110217, 1.0938118655423985, 1.1000870775456648, 1.1068743505154452, 1.1141597743862328, 1.121927691286487, 1.1301608894359605, 1.1388408014759612, 1.147947698040545, 1.1574608670397761, 1.167358768891143, 1.1776191577947628, 1.1882191594017786, 1.1991352965263222, 1.2103434577154755, 1.221818809062569, 1.2335356574074052, 1.24546728177496, 1.257585757538664, 1.269861802223266, 1.282264671665454, 1.2947621302701418, 1.3073205104593792, 1.319904866044473, 1.3324792142189552, 1.345006852769722, 1.3574507337825434, 1.3697738726893127, 1.3819397715539523, 1.3939128373543996, 1.4056587789839223, 1.4171449701646155, 1.4283407689911447, 1.4392177881140162, 1.4497501124657795, 1.4599144638595223, 1.4696903137379262 ], [ 1.0717950301306336, 1.0708806002842695, 1.0704360364708863, 1.0704768279738561, 1.0710168762752794, 1.0720683293045123, 1.0736414289051315, 1.0757443752668907, 1.0783832119579182, 1.0815617349744666, 1.0852814288848234, 1.0895414326540978, 1.09433853706717, 1.0996672147909994, 1.1055196830265024, 1.1118859974167465, 1.1187541744621423, 1.1261103382413793, 1.133938885862889, 1.1422226648818765, 1.1509431549759779, 1.1600806454830204, 1.1696143999313198, 1.1795227984224597, 1.1897834487675596, 1.2003732579372512, 1.211268457150298, 1.2224445772916386, 1.2338763765277299, 1.2455377286031322, 1.2574014873037214, 1.269439348425011, 1.281621733757426, 1.2939177211112576, 1.3062950401786335, 1.318720146915127, 1.3311583805707197, 1.3435741990872159, 1.3559314815904482, 1.3681938818880668, 1.3803252144278415, 1.3922898538367754, 1.40405313046432, 1.4155817067385328, 1.426843922104194, 1.437810097443668, 1.4484527929009807, 1.4587470157611893, 1.4686703773860772, 1.4782032001386995 ], [ 1.0814593891958868, 1.0807525567266116, 1.0805106823797783, 1.0807485959834129, 1.0814795511955917, 1.0827150682546205, 1.0844647903119944, 1.0867363567729573, 1.0895352968739471, 1.092864946437458, 1.0967263903581754, 1.1011184328766006, 1.1060375970668597, 1.1114781541855356, 1.1174321825903593, 1.1238896548556243, 1.1308385505258842, 1.1382649907263802, 1.1461533896656668, 1.1544866169971266, 1.1632461641046201, 1.172412306671475, 1.1819642554050114, 1.191880286582982, 1.202137844319195, 1.2127136073843923, 1.22358351540879, 1.2347227526096538, 1.2461056918422717, 1.2577058073453156, 1.269495570163219, 1.2814463447165299, 1.2935283072500205, 1.3057104062344187, 1.3179603812098364, 1.3302448506808822, 1.3425294726005659, 1.3547791739249342, 1.3669584397106496, 1.3790316479088658, 1.3909634336095396, 1.4027190658901034, 1.4142648212822146, 1.4255683397616679, 1.436598951669251, 1.4473279667301486, 1.4577289190888474, 1.4677777648345518, 1.477453030747796, 1.4867359148973815 ], [ 1.091290939313583, 1.0907927163926725, 1.0907544121720343, 1.091190203020274, 1.0921127013406622, 1.093532806271314, 1.0954595682163277, 1.0979000703340396, 1.1008593298438725, 1.1043402216691458, 1.1083434265145768, 1.1128674049803962, 1.1179083987275058, 1.123460459015637, 1.129515502128981, 1.1360633902892827, 1.1430920356578873, 1.1505875239900283, 1.1585342534808634, 1.16691508339015, 1.175711486202368, 1.1849036964189916, 1.194470848650846, 1.2043910975794978, 1.2146417127503781, 1.225199142267372, 1.236039041506045, 1.247136266080577, 1.2584648323883956, 1.2699978537039043, 1.2817074642773367, 1.2935647473350418, 1.3055396844691443, 1.3176011431706314, 1.329716916210103, 1.3418538216969966, 1.3539778667833309, 1.366054472057554, 1.3780487485174646, 1.3899258151703575, 1.401651143021786, 1.4131909104432543, 1.4245123554251586, 1.4355841116989931, 1.4463765178131291, 1.4568618906626014, 1.4670147574612193, 1.4768120425240445, 1.4862332073801805, 1.4952603445880193 ], [ 1.1012668134220487, 1.1009774760884674, 1.1011428774410459, 1.1017765466164986, 1.1028904615798947, 1.104494907259072, 1.106598347653535, 1.10920731476869, 1.1123263169069264, 1.1159577684601558, 1.1201019429088852, 1.1247569502428816, 1.1299187394722168, 1.1355811262816238, 1.1417358451855355, 1.148372624765153, 1.155479283724504, 1.1630418446187802, 1.1710446612238479, 1.1794705546797597, 1.1883009528035877, 1.197516026391362, 1.2070948159924506, 1.2170153426556263, 1.2272546966615079, 1.2377890994402867, 1.2485939358667235, 1.2596437569616008, 1.2709122565596422, 1.2823722293479307, 1.2939955212526222, 1.3057529857849042, 1.3176144610610423, 1.3295487814525848, 1.3415238352252283, 1.3535066754702325, 1.3654636867550616, 1.3773608049452553, 1.389163783231719, 1.4008384940025405, 1.4123512540587362, 1.4236691598046083, 1.4347604192980825, 1.4455946691847361, 1.4561432662907596, 1.4663795457553825, 1.4762790398241128, 1.4858196536277317, 1.4949817963136303, 1.5037484676928332 ], [ 1.1113641957237466, 1.1112832951010352, 1.1116518039042576, 1.1124826105175685, 1.113787065570856, 1.1155748470316442, 1.117853839319938, 1.1206300290450855, 1.1239074196015506, 1.1276879664429063, 1.1319715344008692, 1.136755877937482, 1.1420366447103256, 1.1478074022824447, 1.1540596872075712, 1.1607830750613728, 1.1679652692747058, 1.1755922058734583, 1.1836481704726804, 1.192115923151399, 1.2009768262034413, 1.2102109692849274, 1.219797286246663, 1.2297136580580594, 1.2399369968236988, 1.2504433070864551, 1.2612077224798195, 1.272204518315093, 1.2834071036969363, 1.2947879999191048, 1.3063188147310776, 1.3179702240763898, 1.3297119736501974, 1.3415129118733444, 1.3533410636635181, 1.36516375099764, 1.3769477621907549, 1.3886595676303495, 1.4002655759221125, 1.411732421416061, 1.423027272107548, 1.4341181459949306, 1.4449742240371384, 1.455566148718197, 1.4658662986791644, 1.4758490317076078, 1.4854908903869832, 1.494770766742311, 1.5036700241489842, 1.5121725765066165 ], [ 1.121560414195206, 1.1216867926100036, 1.1222570940999508, 1.1232835730665947, 1.1247769602418562, 1.1267463343001491, 1.1291990074556844, 1.132140427414248, 1.1355740976552309, 1.13950151758137, 1.1439221436152036, 1.1488333718562131, 1.1542305424398318, 1.1601069652499065, 1.1664539661155973, 1.1732609520619228, 1.1805154935794555, 1.188203421243613, 1.1963089333736772, 1.2048147108134422, 1.213702034393277, 1.2229509002638022, 1.2325401281583295, 1.242447457841826, 1.2526496296387994, 1.2631224460858614, 1.2738408134599841, 1.2847787641379895, 1.295909463278278, 1.307205205894472, 1.318637412639037, 1.330176634141725, 1.3417925742332848, 1.3534541416627155, 1.3651295380197679, 1.3767863867348429, 1.3883919046229851, 1.3999131139076824, 1.41131708942162, 1.422571233061326, 1.4336435657697533, 1.4445030264021939, 1.4551197667535818, 1.4654654326691139, 1.4755134223628943, 1.4852391146573187, 1.494620061660926, 1.5036361422776618, 1.5122696747620659, 1.5205054882057942 ], [ 1.1318330295824184, 1.1321648411637044, 1.1329349256590118, 1.1341549105983355, 1.13583491463791, 1.1379834252938432, 1.140607190544669, 1.1437111264632125, 1.1472982426235216, 1.151369586577976, 1.1559242082415886, 1.1609591445705116, 1.166469424481905, 1.1724480935235289, 1.1788862573493446, 1.1857731425800593, 1.193096173119096, 1.2008410594636276, 1.2089918980163132, 1.2175312769032154, 1.226440384386091, 1.2356991156876627, 1.2452861740021879, 1.2551791617234418, 1.265354658566093, 1.2757882843380908, 1.2864547456464182, 1.297327867718646, 1.308380614640714, 1.3195851034056734, 1.3309126189409934, 1.3423336384349343, 1.3538178735760635, 1.3653343386370296, 1.37685145070629, 1.388337165980719, 1.399759153171811, 1.4110850020928938, 1.4222824627199797, 1.4333197077254027, 1.4441656098490825, 1.4547900245739993, 1.4651640683978968, 1.4752603834632816, 1.4850533803017538, 1.4945194518274865, 1.5036371533350852, 1.5123873449865086, 1.520753294989722, 1.5287207432789902 ], [ 1.1421599208340218, 1.1426946561705607, 1.1436618451003508, 1.1450724957900464, 1.1469361230777249, 1.149260631965405, 1.1520522147934138, 1.1553152640677011, 1.1590523024840027, 1.1632639312378508, 1.1679487972566396, 1.1731035795564282, 1.1787229945164268, 1.1847998194699914, 1.1913249336173883, 1.1982873748607683, 1.2056744107367943, 1.2134716211835042, 1.221662990441273, 1.230231004986803, 1.2391567540788258, 1.2484200293133587, 1.2579994196109419, 1.2678723983561744, 1.2780154000385113, 1.2884038847349153, 1.2990123901164874, 1.3098145722804138, 1.3207832384644127, 1.3318903763924586, 1.3431071863923916, 1.3544041232876651, 1.3657509552192204, 1.377116845914875, 1.3884704655221947, 1.3997801331001916, 1.411013991453401, 1.4221402124616223, 1.433127228677633, 1.4439439849596494, 1.4545602024313862, 1.4649466462011325, 1.4750753880311827, 1.4849200554827262, 1.4944560598828394, 1.5036607966594842, 1.512513813049234, 1.520996939779522, 1.5290943849499972, 1.536792789882959 ], [ 1.1525193668851215, 1.1532538813226045, 1.1544148570720962, 1.1560126908992308, 1.1580563025631891, 1.160553023738448, 1.1635085003687857, 1.1669266102526286, 1.170809397228048, 1.175157022872979, 1.179967736192729, 1.1852378613517087, 1.1909618031240956, 1.1971320693829628, 1.2037393096048599, 1.2107723680237694, 1.2182183497167482, 1.2260626975454567, 1.2342892775285488, 1.2428804699076645, 1.2518172629355615, 1.261079346309469, 1.2706452012517322, 1.2804921845571928, 1.290596604523663, 1.3009337875740736, 1.3114781355442695, 1.3222031749768428, 1.3330816012072189, 1.3440853213869997, 1.355185501675742, 1.366352624467977, 1.3775565615742054, 1.3887666686817637, 1.3999519052110105, 1.4110809819668497, 1.422122536944605, 1.433045337497828, 1.4438185050289372, 1.4544117566094776, 1.4647956566119236, 1.474941870619563, 1.484823413598885, 1.494414884546913, 1.5036926805053297, 1.5126351838807393, 1.5212229183278707, 1.5294386699328824, 1.537267571969491, 1.544697152988093 ], [ 1.1628901246362573, 1.1638206698010325, 1.1651715088976857, 1.1669524357610526, 1.169171784332992, 1.1718363227138984, 1.174951160342104, 1.1785196699448681, 1.1825434254770353, 1.187022156818673, 1.1919537215729636, 1.1973340939093104, 1.2031573700406435, 1.2094157896027724, 1.2160997719049915, 1.223197965731653, 1.2306973110857937, 1.2385831109789849, 1.2468391110986334, 1.2554475849495863, 1.264389421906064, 1.2736442155658974, 1.2831903499172377, 1.2930050811499108, 1.3030646134975072, 1.3133441682878033, 1.3238180463796265, 1.334459685308464, 1.3452417136451975, 1.3561360061579824, 1.3671137442085575, 1.378145486274315, 1.389201253466154, 1.400250634364595, 1.4112629124474432, 1.4222072179199194, 1.433052704024301, 1.443768746070389, 1.45432515966509, 1.4646924330832494, 1.4748419675330937, 1.4847463183045875, 1.4943794294821187, 1.5037168550490152, 1.5127359597746097, 1.5214160941943058, 1.5297387391883455, 1.537687617042981, 1.545248767334816, 1.5524105874134242 ], [ 1.1732515028899801, 1.174373761031381, 1.175909970204991, 1.1778693303402383, 1.1802595993791023, 1.1830869921846485, 1.1863560922269891, 1.190069777550033, 1.1942291621037342, 1.198833553095304, 1.2038804245986805, 1.2093654072855842, 1.2152822938098962, 1.221623059086313, 1.2283778944432313, 1.2355352543863565, 1.2430819144749172, 1.2510030385867326, 1.2592822536410735, 1.267901729680027, 1.2768422631091214, 1.286083360901986, 1.2956033237175657, 1.305379326194099, 1.3153874931887106, 1.3256029714246804, 1.3359999968595206, 1.3465519590373138, 1.3572314646495134, 1.36801040338965, 1.3788600198333685, 1.3897509953989802, 1.4006535443703545, 1.4115375274602124, 1.4223725854792642, 1.43312829442479, 1.4437743418232976, 1.4542807225904337, 1.4646179511476776, 1.4747572851882926, 1.4846709554183628, 1.4943323948852174, 1.503716461185917, 1.5127996449318988, 1.5215602583145225, 1.5299785984281808, 1.5380370810990245, 1.545720342255033, 1.5530153052612181, 1.5599112140285134 ], [ 1.183583431928883, 1.1848925526758867, 1.1866091073366434, 1.1887417115543186, 1.1912975576694889, 1.1942823182370856, 1.1977000619325515, 1.2015531832244046, 1.2058423467854633, 1.2105664472007305, 1.215722584135125, 1.2213060527687407, 1.2273103489990713, 1.233727188645751, 1.2405465396649336, 1.2477566661758823, 1.2553441829137109, 1.2632941185482351, 1.2715899861568842, 1.2802138590261933, 1.2891464499053902, 1.2983671918751245, 1.3078543191533358, 1.3175849464605747, 1.327535146020833, 1.337680021873681, 1.347993781891574, 1.358449808679766, 1.3690207313115792, 1.3796785005303125, 1.3903944705388909, 1.4011394907170887, 1.4118840104964616, 1.4225982001609798, 1.433252089544585, 1.4438157255212165, 1.4542593479157921, 1.4645535821145712, 1.4746696453324493, 1.4845795623105182, 1.4942563852595865, 1.5036744122022923, 1.512809397543148, 1.5216387487310767, 1.5301417032714344, 1.538299481066256, 1.5460954080635139, 1.5535150084059894, 1.5605460635960349, 1.5671786385323445 ], [ 1.1938665283574759, 1.195357167488347, 1.1972485521777037, 1.1995487240235743, 1.2022643207613055, 1.2054004841614603, 1.2089607799000126, 1.212947130664261, 1.2173597633710205, 1.2221971709795862, 1.2274560890081183, 1.233131486527895, 1.2392165711237546, 1.2457028070692988, 1.2525799457648172, 1.259836067314206, 1.267457631966807, 1.2754295400190312, 1.2837351986640562, 1.2923565942084858, 1.301274368061791, 1.3104678949692596, 1.3199153621237256, 1.3295938480717666, 1.3394794007319273, 1.3495471143568278, 1.3597712058718316, 1.3701250916641305, 1.3805814665174811, 1.3911123869175646, 1.4016893613185735, 1.4122834500995582, 1.4228653778049118, 1.433405659840339, 1.4438747450975962, 1.4542431750530176, 1.4644817587953336, 1.4745617622733524, 1.4844551089054718, 1.4941345876486645, 1.5035740637638833, 1.5127486869001796, 1.52163509079866, 1.5302115789174244, 1.5384582906087316, 1.5463573431266868, 1.5538929456694017, 1.5610514828008883, 1.567821565867921, 1.5741940523246583 ], [ 1.2040821547966385, 1.205748514623053, 1.2078087650034846, 1.2102703843711695, 1.2131394674576663, 1.2164206373635567, 1.2201169691638154, 1.2242299262094665, 1.2287593099208718, 1.233703223496556, 1.2390580496098718, 1.2448184418536765, 1.250977329427339, 1.2575259343432192, 1.2644538002521488, 1.2717488318437593, 1.279397343658126, 1.2873841170492357, 1.2956924639701917, 1.3043042962156288, 1.31320019877136, 1.3223595060029998, 1.3317603795786526, 1.3413798872778422, 1.35119408219039, 1.3611780822465036, 1.3713061505174118, 1.3815517772470747, 1.3918877650691899, 1.4022863192728268, 1.4127191452473438, 1.4231575553129558, 1.4335725869943774, 1.4439351344074156, 1.4542160938153523, 1.464386523607327, 1.4744178180103447, 1.4842818928372583, 1.493951380570472, 1.503399831157612, 1.5126019141203024, 1.5215336170085898, 1.5301724349191956, 1.5384975457702348, 1.5464899663056504, 1.554132684386981, 1.5614107639906656, 1.5683114204095543, 1.574824064376405, 1.5809403150838555 ], [ 1.2142124740181788, 1.216048344989748, 1.2182710909521215, 1.2208876386993754, 1.223903552165053, 1.227322948474654, 1.231148425082506, 1.2353809990634115, 1.2400200592860924, 1.2450633318477093, 1.2505068588208275, 1.2563449900732324, 1.2625703876758252, 1.269174042215361, 1.2761453001724057, 1.2834719014029483, 1.2911400256685022, 1.2991343470907768, 1.3074380953649642, 1.3160331225567055, 1.3248999743426382, 1.3340179646449175, 1.3433652527678304, 1.3529189223758322, 1.3626550619575275, 1.372548846788126, 1.3825746228129256, 1.3927059932946395, 1.4029159094555008, 1.4131767666570907, 1.4234605078501468, 1.4337387360555818, 1.4439828374799522, 1.4541641165148096, 1.4642539433284256, 1.4742239140586342, 1.484046022799585, 1.4936928436978785, 1.5031377205942902, 1.5123549608288032, 1.5213200291271782, 1.5300097369620689, 1.5384024224783208, 1.5464781160286207, 1.5542186866075118, 1.5616079650042705, 1.5686318402990649, 1.5752783273531228, 1.5815376041144567, 1.5874020187774298 ], [ 1.2242404971385206, 1.2262393002805523, 1.228617809762543, 1.231382412905719, 1.2345381556464161, 1.238088662394928, 1.242036066522864, 1.2463809524680878, 1.2511223101266455, 1.2562575018783313, 1.2617822422880882, 1.2676905902560724, 1.2739749531629507, 1.28062610237628, 1.287633199344576, 1.2949838314023263, 1.3026640563351783, 1.3106584547071114, 1.318950188930531, 1.327521068069621, 1.336351617415105, 1.345421151962578, 1.3547078530742573, 1.3641888478098394, 1.3738402906735403, 1.383637447831609, 1.3935547841891962, 1.4035660540508232, 1.413644396390644, 1.4237624359924503, 1.433892391846996, 1.4440061941883042, 1.454075611388754, 1.4640723876093236, 1.4739683916228636, 1.4837357766170856, 1.4933471500731406, 1.5027757520497254, 1.511995639429064, 1.5209818729531601, 1.5297107032468147, 1.5381597515400285, 1.5463081805125711, 1.5541368506295654, 1.561628457548588, 1.5687676466683451, 1.5755411016437049, 1.581937604668067, 1.5879480674485285, 1.5935655329749834 ], [ 1.2341501255501912, 1.236304955358268, 1.2388321784846985, 1.241737655570488, 1.245025927933637, 1.2487001410732015, 1.2527619783465904, 1.2572116057368246, 1.262047628331078, 1.2672670588337345, 1.2728652981565953, 1.278836127880218, 1.2851717141722758, 1.2918626225840857, 1.2988978430218152, 1.306264824100269, 1.3139495160284496, 1.3219364211444775, 1.3302086512111904, 1.3387479906061683, 1.3475349645944723, 1.356548911965352, 1.3657680614499732, 1.3751696115175092, 1.384729813368489, 1.394424057198532, 1.4042269620757446, 1.414112470039835, 1.4240539452626506, 1.434024279280289, 1.4439960033870116, 1.4539414092488157, 1.4638326786326004, 1.473642022851241, 1.4833418321000205, 1.492904834323788, 1.5023042626326648, 1.5115140296122196, 1.520508906191457, 1.529264702082453, 1.537758444234711, 1.5459685493024247, 1.553874985849498, 1.5614594219586895, 1.5687053541002798, 1.5755982135697928, 1.5821254475153301, 1.588276572504596, 1.5940431996597795, 1.5994190315214405 ], [ 1.2439261863511955, 1.2462298537807774, 1.2488984669572452, 1.2519373732371029, 1.2553506232532268, 1.2591408979156844, 1.2633094451367008, 1.2678560271321295, 1.2727788788804477, 1.2780746780467132, 1.2837385264215344, 1.289763942696452, 1.296142866206377, 1.3028656711191087, 1.3099211904399584, 1.3172967491226997, 1.32497820553045, 1.3329500004698298, 1.3411952130255216, 1.3496956224518593, 1.3584317754354815, 1.367383058131705, 1.3765277724991247, 1.3858432166130557, 1.3953057688241384, 1.4048909758363621, 1.4145736449945179, 1.4243279412773064, 1.4341274896667628, 1.443945483684311, 1.453754800927248, 1.46352812638716, 1.4732380841730148, 1.482857377990563, 1.4923589403517776, 1.5017160900153408, 1.510902696613827, 1.5198933508312615, 1.528663537890454, 1.5371898115291303, 1.5454499651281475, 1.5534231962478857, 1.5610902605745325, 1.568433611219798, 1.5754375194907948, 1.5820881736714325, 1.5883737530286735, 1.5942844751415408, 1.59981261568192, 1.6049525008638266 ], [ 1.253554461127187, 1.2559995363351717, 1.258801985949506, 1.2619666580104256, 1.265497126923173, 1.2693956238188975, 1.2736629762010947, 1.27829855767288, 1.283300248292254, 1.2886644058529872, 1.294385848153362, 1.3004578461058571, 1.3068721273660673, 1.3136188900215287, 1.3206868257798408, 1.3280631520274833, 1.3357336520919936, 1.3436827230264397, 1.3518934302454553, 1.3603475683746336, 1.3690257277316982, 1.3779073659395509, 1.3869708842789623, 1.3961937085214258, 1.4055523741366944, 1.4150226159372523, 1.4245794623920494, 1.4341973349996846, 1.4438501532388377, 1.4535114456937552, 1.4631544679667239, 1.472752327924154, 1.482278118667577, 1.49170505937311, 1.5010066438047454, 1.5101567958889683, 1.5191300312569374, 1.527901623137765, 1.5364477704494814, 1.5447457654151326, 1.5527741575662757, 1.560512910625218, 1.5679435485241242, 1.5750492867655996, 1.5818151454921474, 1.5882280410320604, 1.5942768533254568, 1.5999524674750232, 1.6052477886488776, 1.6101577306021584 ], [ 1.26302170804182, 1.265600562559441, 1.2685291079716017, 1.2718117075060342, 1.2754514742868495, 1.2794502049293175, 1.2838083219957608, 1.2885248260568916, 1.2935972578775412, 1.2990216710187674, 1.3047926149341607, 1.3109031284472468, 1.3173447433372232, 1.3241074976341056, 1.3311799581322745, 1.3385492515706539, 1.3462011038942434, 1.354119887002816, 1.3622886724052254, 1.3706892912306456, 1.3793024001013152, 1.388107552444323, 1.3970832749131918, 1.4062071487013037, 1.4154558956547039, 1.4248054692253307, 1.4342311504373417, 1.443707649157035, 1.4532092110470471, 1.462709730633638, 1.472182870907919, 1.481602189807045, 1.4909412737716212, 1.500173878347921, 1.5092740755003748, 1.518216406928674, 1.5269760422576149, 1.5355289405044945, 1.5438520127510262, 1.5519232834821661, 1.5597220476355393, 1.5672290200699925, 1.5744264739509637, 1.5812983645057295, 1.5878304347577419, 1.5940103002294097, 1.5998275102053836, 1.6052735839458527, 1.6103420211725918, 1.6150282871382742 ], [ 1.2723156772901536, 1.2750205253320108, 1.2780672808608595, 1.28145983728917, 1.2852008618554511, 1.289291732336356, 1.2937324822120315, 1.2985217549838362, 1.303656768139426, 1.3091332870548562, 1.3149456089287963, 1.3210865566704633, 1.3275474825168339, 1.3343182810392777, 1.341387411115378, 1.3487419263861926, 1.3563675136894502, 1.364248538952256, 1.3723681000395929, 1.3807080860858671, 1.389249242884293, 1.3979712439727912, 1.4068527671336302, 1.4158715761156753, 1.4250046074884652, 1.434228062641699, 1.4435175050428182, 1.4528479629507878, 1.4621940378438425, 1.4715300188420892, 1.4808300033811332, 1.4900680243118507, 1.499218183457491, 1.508254791450256, 1.517152513396463, 1.5258865195885525, 1.5344326401035857, 1.5427675217158232, 1.5508687851254466, 1.558715180089693, 1.5662867356678614, 1.5735649024906087, 1.5805326837777292, 1.587174751794763, 1.5934775465926767, 1.599429354237175, 1.6050203623059132, 1.6102426911856795, 1.6150904005840223, 1.6195594716032908 ], [ 1.281425120062642, 1.2842480587044247, 1.2874050343493766, 1.2908994860391259, 1.29473365092741, 1.29890850400134, 1.3034237058665117, 1.3082775592547171, 1.3134669747290135, 1.3189874458752673, 1.3248330340935563, 1.3309963629450987, 1.3374686218770406, 1.3442395790417452, 1.3512976028492683, 1.3586296918401732, 1.3662215124384702, 1.3740574441373505, 1.3821206316817711, 1.3903930438389278, 1.3988555383887133, 1.4074879330200532, 1.4162690818837849, 1.425176957626238, 1.4341887388063408, 1.4432809026779307, 1.452429323391738, 1.4616093757296769, 1.4707960445196746, 1.4799640398826366, 1.489087918425832, 1.498142210412091, 1.5071015527967433, 1.5159408278315114, 1.5246353066881175, 1.5331607972584167, 1.5414937949500538, 1.5496116349301052, 1.5574926438893892, 1.5651162890295656, 1.5724633216403154, 1.5795159123674696, 1.5862577751110236, 1.5926742764718238, 1.5987525278192138, 1.604481457399165, 1.6098518604438619, 1.6148564259546947, 1.6194897396601162, 1.6237482635278364 ] ], "zauto": true, "zmax": 1.6237482635278364, "zmin": -1.6237482635278364 }, { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 1, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(255,247,251)" ], [ 0.14285714285714285, "rgb(236,231,242)" ], [ 0.2857142857142857, "rgb(208,209,230)" ], [ 0.42857142857142855, "rgb(166,189,219)" ], [ 0.5714285714285714, "rgb(116,169,207)" ], [ 0.7142857142857143, "rgb(54,144,192)" ], [ 0.8571428571428571, "rgb(5,112,176)" ], [ 1.0, "rgb(3,78,123)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x2", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y2", "z": [ [ 0.12187687237096104, 0.11757728567427822, 0.11324075971593664, 0.10887587501174958, 0.10449184348354704, 0.10009850832551656, 0.09570634911750894, 0.09132649937608384, 0.08697078690334602, 0.08265181115709591, 0.07838307630439686, 0.07417920327699815, 0.07005624823935065, 0.0660321568928557, 0.062127381220000194, 0.05836567285834658, 0.05477503749992638, 0.05138877586662694, 0.0482464342021392, 0.045394329622435496, 0.042885115102256295, 0.04077568062448182, 0.03912273619956967, 0.03797596210341872, 0.037369776859694316, 0.03731614104044248, 0.03780129434542936, 0.038788028977327166, 0.04022261319636818, 0.04204360826897858, 0.04418975722501058, 0.04660539013642064, 0.04924317227208987, 0.05206480026819217, 0.05504042494143626, 0.05814743738136817, 0.061369038701968574, 0.06469283416808319, 0.06810957287184316, 0.07161208347163796, 0.0751944174867852, 0.07885119095698474, 0.08257710473455504, 0.0863666187909223, 0.09021375434845691, 0.09411199814720304, 0.09805428498148913, 0.10203303728240493, 0.10604024358812367, 0.11006756093035273 ], [ 0.11975803542312595, 0.11540107627145034, 0.11100792269410689, 0.10658735217494186, 0.1021487871456099, 0.09770229037973495, 0.09325856251354757, 0.08882894815914417, 0.08442546039333057, 0.08006083763939374, 0.07574865211376491, 0.0715034948891729, 0.06734126864923022, 0.0632796240762431, 0.059338576923981735, 0.05554133530391182, 0.051915341909276894, 0.04849347956318573, 0.04531527994027132, 0.042427792314208845, 0.03988550904120508, 0.0377484771754373, 0.036077675074276346, 0.034927294708367015, 0.03433503825691289, 0.03431344363792996, 0.034846041629533, 0.03589042066406866, 0.03738686088996304, 0.03926880839272099, 0.04147168465159112, 0.043938409540599965, 0.04662177080764946, 0.049484579956247235, 0.05249859808614038, 0.05564294639129711, 0.058902427216684795, 0.062265974012297776, 0.0657253242268436, 0.06927394213750461, 0.07290618471789481, 0.07661668738385595, 0.08039993936247412, 0.08425001627182419, 0.08816043818639284, 0.0921241238695094, 0.09613341526717081, 0.1001801502587149, 0.10425576565764018, 0.10835141626582133 ], [ 0.11768985335636273, 0.11327995421039926, 0.1088348916608643, 0.10436366159305305, 0.09987592665328546, 0.09538200965172436, 0.09089288608794001, 0.08642018128721583, 0.0819761809548629, 0.0775738683741823, 0.0732270071174528, 0.06895029498798613, 0.06475962261679437, 0.060672477685301596, 0.056708540822840756, 0.05289051708777381, 0.049245228485616466, 0.04580494195314881, 0.04260879754894843, 0.039703999457014874, 0.037146116897751685, 0.03499746927407447, 0.03332239385142958, 0.03217874456236185, 0.03160674874541948, 0.031618875517120504, 0.03219552681774817, 0.03328909996442329, 0.034834464873139126, 0.03676101352532277, 0.03900214014394446, 0.04150061695541969, 0.044210410935216125, 0.04709623157176453, 0.05013196454363325, 0.05329874591906688, 0.0565830833773225, 0.05997520861879251, 0.06346772391789045, 0.0670545457412813, 0.07073012058678259, 0.07448887645251329, 0.07832486962814435, 0.08223158707764405, 0.08620186771883587, 0.09022791032995152, 0.09430134088514253, 0.09841331728850167, 0.10255465434811689, 0.10671595616229511 ], [ 0.11567325014614908, 0.11121480263368057, 0.10672248435264668, 0.10220552392624055, 0.0976738462663462, 0.09313806694549556, 0.08860948307857841, 0.08410006504633, 0.07962245657023219, 0.07518999505198215, 0.07081676996232684, 0.06651774455665149, 0.06230897520652504, 0.05820797247661416, 0.05423425680778289, 0.050410164852807283, 0.04676195094912376, 0.04332118426715816, 0.040126335227635694, 0.03722423032388084, 0.034670692426423795, 0.032529210847147154, 0.03086617606922914, 0.029741730049232893, 0.029197359409804197, 0.029244526701160928, 0.02986015257553886, 0.030991862138532895, 0.03257025784311244, 0.034522247860101135, 0.03678082196937694, 0.039290003538346496, 0.04200599204138012, 0.044896097901010616, 0.04793673585420301, 0.051111229368040335, 0.05440779372799914, 0.05781784231971086, 0.06133464832199643, 0.06495234232884115, 0.06866520444666832, 0.07246720165058555, 0.07635172057651683, 0.08031144924732661, 0.08433836675432682, 0.08842380649581952, 0.09255856536650083, 0.09673303769449625, 0.10093735836368088, 0.10516154426234348 ], [ 0.1137091174827524, 0.10920646847634877, 0.10467147694150439, 0.10011360971212271, 0.09554306577458095, 0.09097077482665177, 0.08640839037545885, 0.08186828046422572, 0.07736352202236371, 0.0729079090280421, 0.06851599049767049, 0.06420316208511917, 0.05998584492156568, 0.05588179689526157, 0.051910613335118316, 0.04809448199308697, 0.044459252240240804, 0.0410358419791735, 0.0378619038091489, 0.03498345095583093, 0.03245574621982323, 0.030342201536778128, 0.028709610332387895, 0.027618520543640074, 0.027109904619987968, 0.027193016848758203, 0.027841080425226216, 0.02899783260442851, 0.03059130202917509, 0.03254789670530321, 0.0348020199236497, 0.03730036027884031, 0.04000231647416966, 0.04287837898992861, 0.045907772133625374, 0.04907607095625212, 0.05237311203409499, 0.05579130445893675, 0.05932434635018548, 0.06296630786064676, 0.06671102407121288, 0.07055173656075621, 0.07448092473714255, 0.07849027423486245, 0.08257073794072183, 0.08671265411412529, 0.09090589461566842, 0.09514002380804396, 0.09940445493670047, 0.10368859567722484 ], [ 0.11179842008783983, 0.10725588486789704, 0.10268274744451496, 0.09808870850142039, 0.09348424094509794, 0.08888059586545839, 0.08428980190933222, 0.07972465992513601, 0.07519873726205129, 0.07072636991829717, 0.06632268624650302, 0.06200367358446764, 0.05778631933486227, 0.053688870619158245, 0.04973127055879059, 0.04593584089010231, 0.04232828114109573, 0.038939024896824825, 0.03580489702642456, 0.03297079190928828, 0.030490672102201927, 0.028426575144393524, 0.02684381872267903, 0.02580108896171527, 0.02533668228724445, 0.025456284331127666, 0.026129395162869218, 0.027297166362958068, 0.028887142004765536, 0.03082742201808484, 0.03305565418052125, 0.03552250140663966, 0.03819138450907002, 0.04103641735634274, 0.044039804125385176, 0.04718935243576709, 0.05047637350696941, 0.05389404424305942, 0.05743621505040439, 0.061096607476246026, 0.0648683307139771, 0.06874364389649722, 0.07271389642300065, 0.07676958809367317, 0.08090050218211534, 0.08509587597965568, 0.08934458362029966, 0.09363531452209127, 0.09795673738776926, 0.10229764451758981 ], [ 0.10994230642126634, 0.1053641996314172, 0.10075742641236668, 0.09613190719532916, 0.09149837620686174, 0.08686839777728737, 0.08225437591187998, 0.07766955785577219, 0.0731280344534772, 0.06864474339102761, 0.0642354863731101, 0.05991697846698089, 0.05570695775382678, 0.05162439627876483, 0.04768986831859647, 0.04392614597899927, 0.040359096451911526, 0.037018930407584846, 0.03394175838040617, 0.03117118720649314, 0.028759256224396068, 0.026765378891582224, 0.02525145185960774, 0.02427186573123064, 0.023859927558334208, 0.024016406164955244, 0.024707255446660782, 0.025872588013983903, 0.02744166628532914, 0.029346410465422735, 0.031529369933208366, 0.03394629555680292, 0.036565289862824236, 0.03936441784659516, 0.04232896021262482, 0.045448894718589386, 0.048716837426431264, 0.0521264960971428, 0.05567160265246668, 0.0593452530633404, 0.06313956895401954, 0.06704559550498573, 0.07105335922122515, 0.07515202267579885, 0.07933008824312084, 0.08357561686257173, 0.08787643974094073, 0.0922203501303091, 0.09659526897391815, 0.10098938266646522 ], [ 0.10814222067822578, 0.1035329046061486, 0.09889704812302219, 0.09424476891488906, 0.08958703853823154, 0.0849357115201616, 0.08030354859784115, 0.07570423388395907, 0.07115238732150597, 0.06666357645753232, 0.062254335789988256, 0.05794220830495051, 0.05374583293918122, 0.04968511396906183, 0.04578152324283194, 0.042058600824121085, 0.03854272552356999, 0.035264204156394786, 0.03225863750001385, 0.029568296069536017, 0.02724280685685437, 0.02533783495302576, 0.023910013131332855, 0.023007100838848177, 0.022655245553658738, 0.022849150417274932, 0.0235515609028449, 0.024703086467528425, 0.026236696262313456, 0.028089932459016087, 0.03021158401789795, 0.03256336250870909, 0.03511856268797046, 0.037859453031108534, 0.04077446015002237, 0.043855669622067474, 0.04709684735682603, 0.05049201837935955, 0.05403455492283398, 0.057716685229109534, 0.061529320762353304, 0.06546210310391536, 0.06950358566901695, 0.07364148389664153, 0.07786294646838922, 0.08215481676311699, 0.08650386693809214, 0.09089699656813294, 0.0953213940990013, 0.09976466315980677 ], [ 0.10640001187498858, 0.10176396033007518, 0.09710369515860613, 0.09242950311846851, 0.08775256048115636, 0.08308497670380735, 0.07843983411465202, 0.0738312226954565, 0.06927427012720741, 0.06478516926487013, 0.060381208560774675, 0.05608081622928466, 0.051903636770047806, 0.0478706693058492, 0.044004510672739576, 0.04032975956371164, 0.036873642867958814, 0.033666901724911664, 0.030744882994090828, 0.028148558284237103, 0.025924775756771, 0.024124493912051046, 0.02279747006363934, 0.021982821808884452, 0.021697765987558917, 0.021930131418445346, 0.02263987847927025, 0.023769397853886466, 0.025256878553587846, 0.02704678332918479, 0.029095084900286804, 0.03137008340261376, 0.03385065781350045, 0.03652349839070065, 0.03938026044589102, 0.04241511139783974, 0.045622858204997646, 0.048997680098865085, 0.052532401465719816, 0.05621819542109576, 0.06004459607482129, 0.06399970618909269, 0.06807050746231702, 0.07224320524273062, 0.07650356273850689, 0.08083719889891815, 0.08522983821126191, 0.08966751002781075, 0.09413670061248322, 0.09862446391392554 ], [ 0.10471803596014076, 0.1000599107617759, 0.09538012934507734, 0.0906891176653074, 0.08599821993900084, 0.08131975794589641, 0.07666708912361908, 0.072054662108561, 0.06749806899909955, 0.06301409495366884, 0.058620768155230915, 0.05433741715978721, 0.050184748746683425, 0.0461849679823852, 0.04236197285421608, 0.03874166570100072, 0.035352424312367854, 0.03222574723046775, 0.029396992322246126, 0.026905908656191857, 0.024796279699719214, 0.02311355179677007, 0.021899274453820887, 0.02118235889744699, 0.020969861865050614, 0.021242333989476767, 0.02195739939071966, 0.02306013554571398, 0.02449488212676434, 0.026213769197734257, 0.02818050188341926, 0.030370372774970168, 0.032768145299459296, 0.03536514149024758, 0.03815636506439924, 0.041138097520028526, 0.04430614503214936, 0.04765474803719296, 0.05117606554987573, 0.05486009771144093, 0.05869490078797215, 0.0626669654408227, 0.06676165842492303, 0.07096365960917564, 0.07525735403825776, 0.07962715997794531, 0.08405778829285245, 0.08853443716904692, 0.09304293060461065, 0.09756981066215062 ], [ 0.10309924723431006, 0.09842398316532475, 0.09372990256505226, 0.08902754410206182, 0.08432838496161235, 0.07964491617648306, 0.07499072030646417, 0.07038054996859416, 0.06583040594140291, 0.061357614283784764, 0.0569809033875892, 0.0527204844597866, 0.048598142947668364, 0.044637353985986235, 0.040863441271414995, 0.03730380265450939, 0.033988218527076224, 0.030949221771832118, 0.028222406714166117, 0.025846346831861988, 0.02386147226642714, 0.02230698473010578, 0.021215127214277475, 0.020603490365220814, 0.020468311592745148, 0.02078287833580371, 0.021502955943995195, 0.02257686221844561, 0.0239554948883632, 0.025598912733195638, 0.027478755930107075, 0.02957751520496802, 0.03188605560927184, 0.03440053448167489, 0.03711946311108426, 0.04004133409641663, 0.043162988458895844, 0.046478717376712844, 0.049979979657751215, 0.05365556380569683, 0.05749202050085832, 0.06147421909142659, 0.06558592213095292, 0.06981031194162557, 0.07413043563669007, 0.07852955792445665, 0.08299142516926895, 0.08750045162367162, 0.09204184162312967, 0.09660166164083944 ], [ 0.10154727585298616, 0.09686016896032071, 0.09215744184331351, 0.08744972856013304, 0.08274861303569069, 0.07806672033902214, 0.07341781450906393, 0.06881690154004734, 0.06428033602482823, 0.059825930115572815, 0.055473064023568115, 0.05124279836265483, 0.04715799024730175, 0.043243416789616095, 0.03952591002135508, 0.03603450231857515, 0.03280056213596615, 0.029857849094318243, 0.027242309794911313, 0.02499125292248274, 0.023141328008388095, 0.021724695130234433, 0.020763324834157208, 0.020262777012595795, 0.020208372687982, 0.02056659166626347, 0.021291923695675338, 0.02233626920931633, 0.023657129192821088, 0.025222392803780462, 0.02701155706816924, 0.02901433194410436, 0.03122780376315272, 0.03365314123061274, 0.036292547100056326, 0.039146882458285966, 0.04221414042346234, 0.045488743548403585, 0.04896150707025631, 0.05262005446431026, 0.05644947785552972, 0.060433078014213375, 0.0645530724584201, 0.0687912093235054, 0.07312926179336275, 0.0775494020317833, 0.08203446693722014, 0.08656813383081198, 0.09113502524854736, 0.09572076049883191 ], [ 0.100066488740267, 0.09537328215111691, 0.09066810423814627, 0.08596168217216935, 0.08126569636487528, 0.07659288738123764, 0.07195717413174356, 0.0673737822841187, 0.06285938144200894, 0.05843222928812475, 0.054112320535034536, 0.049921537986624985, 0.045883801795021335, 0.04202520992749008, 0.03837415537134361, 0.034961388558606046, 0.03181995773473792, 0.02898489240306046, 0.02649238556368379, 0.024378098349228283, 0.022674158449166287, 0.021404684023956597, 0.0205804864135865, 0.020194812603196017, 0.020222581150497732, 0.020624417232073176, 0.021354324612632914, 0.02236807235041168, 0.023629609802964406, 0.025114312906963414, 0.026809223096686714, 0.02871109847513638, 0.0308232344167929, 0.03315192295464114, 0.035703242153333745, 0.038480629976185794, 0.041483433124069706, 0.044706385745356854, 0.04813981640203105, 0.05177032094736353, 0.05558165562764094, 0.05955566375661601, 0.06367311848857793, 0.06791442361884234, 0.07226015642441176, 0.07669146178833362, 0.08119031916974824, 0.08573970785350041, 0.09032369498731543, 0.09492746770561736 ], [ 0.09866203176192609, 0.09396899277839509, 0.08926819831039225, 0.08457048668918395, 0.07988764707947495, 0.0752325417346396, 0.07061924470262243, 0.06606319640102985, 0.06158137281870249, 0.057192467216403114, 0.052917080816536476, 0.04877791650564237, 0.04479996484576735, 0.0410106624584111, 0.037439985108716545, 0.03412040519044699, 0.031086587649555415, 0.028374615136043033, 0.026020438205621665, 0.024057209731251736, 0.02251134011805039, 0.02139768712819496, 0.020715225183413736, 0.020445217011473508, 0.02055341965020529, 0.020996088747056964, 0.0217277657192194, 0.022708383585838404, 0.023908067544574706, 0.025309149881672675, 0.02690568396811772, 0.028701088197102324, 0.030704678739765765, 0.03292787541484717, 0.035380785897504985, 0.03806967261279521, 0.040995523971030116, 0.04415367543495901, 0.047534237105158375, 0.051123013495245444, 0.054902626743479795, 0.05885363119727355, 0.06295549344987514, 0.06718738291097621, 0.07152876580331846, 0.07595982211571928, 0.08046171636375045, 0.08501675493986127, 0.0896084598818321, 0.0942215839558163 ], [ 0.09733985140496822, 0.09265383356858473, 0.08796497014554935, 0.08328425284099836, 0.07862361908682886, 0.07399608949868805, 0.06941592727889656, 0.0648988194957161, 0.06046207916363494, 0.056124865465922165, 0.051908416717702625, 0.04783628563682934, 0.04393455710184563, 0.04023201128235296, 0.0367601643563364, 0.03355306819579678, 0.03064667554949218, 0.028077490346876257, 0.025880177737162252, 0.024083929513278004, 0.022707833711819156, 0.02175630553248678, 0.021216382018602407, 0.021058553629069613, 0.02124143382332686, 0.0217188201179287, 0.022446930255114905, 0.023390106918997317, 0.024524254040969293, 0.025837952733660078, 0.02733151482700655, 0.02901439245857147, 0.030901519839125417, 0.03300929872544854, 0.03535195653049954, 0.037938847523829124, 0.0407729725493441, 0.043850674265577545, 0.04716223520875704, 0.05069301496787605, 0.054424790931858945, 0.05833705932264916, 0.062408156997088494, 0.06661614873945057, 0.07093947982888774, 0.07535742276148706, 0.0798503579259792, 0.08439992831103205, 0.08898910345968601, 0.09360218126401376 ], [ 0.096106694421798, 0.09143517850321932, 0.08676655295823968, 0.08211203079439837, 0.07748376620905846, 0.07289500714452667, 0.06836027537811595, 0.06389557442174307, 0.05951862393975252, 0.05524911672857713, 0.05110898953758837, 0.047122690326746444, 0.04331740884824134, 0.03972320990421158, 0.03637296311055981, 0.0333018949770606, 0.03054650531008996, 0.028142528950368766, 0.026121683287048714, 0.024507274017312917, 0.023309422675551764, 0.022521486788412634, 0.022119474704347136, 0.022065306256990994, 0.02231304735221006, 0.022816076677647564, 0.023533312450729763, 0.024433585140370726, 0.025498021663245957, 0.0267205771736694, 0.028106867878215466, 0.029671522214963813, 0.03143446000286769, 0.03341673371831999, 0.0356366735106186, 0.03810697510360176, 0.040833081190018494, 0.043812854867664626, 0.04703726758368629, 0.050491700080856274, 0.05415747374976283, 0.058013331198128744, 0.06203670496712668, 0.06620471234189439, 0.07049487880506937, 0.07488562617032761, 0.07935657323403884, 0.08388869612386704, 0.08846438908388374, 0.09306745824020123 ], [ 0.09497008389503477, 0.09032119235021052, 0.08568188015211659, 0.08106367374284938, 0.07647903925384814, 0.07194154962646446, 0.06746608447699236, 0.06306906283570432, 0.05876870635736582, 0.054585326196154256, 0.05054161893726498, 0.04666294319249326, 0.04297752468236092, 0.03951649853980589, 0.036313638577894373, 0.033404547118382796, 0.03082501090940029, 0.028608239240065416, 0.026780914557170778, 0.02535851837411237, 0.024341156649965005, 0.023711610880973427, 0.02343691409610202, 0.023473320517232353, 0.023773062736320506, 0.02429089253792047, 0.02498913430563283, 0.025840948039030132, 0.026831980185126017, 0.02796057077678104, 0.029236552790457285, 0.030678698167449746, 0.03231107390219868, 0.034158850989462475, 0.036244291323002414, 0.038583603770985894, 0.041185105876715276, 0.04404876317109062, 0.04716685880852391, 0.05052537733636183, 0.05410567981789987, 0.05788614634868946, 0.06184359373342069, 0.06595439026123417, 0.07019526623925727, 0.07454385958390247, 0.07897905052274744, 0.08348113912841583, 0.0880319120381583, 0.09261463520687822 ], [ 0.09393826999413174, 0.08932075031593774, 0.08472056235355553, 0.0801496571983324, 0.07562092767610924, 0.07114838821954263, 0.06674739148868085, 0.0624348807910051, 0.05822967324741928, 0.05415276162105267, 0.050227610706993116, 0.04648040399796182, 0.04294016377437738, 0.039638618869639146, 0.03660962991342971, 0.03388791769324168, 0.03150682410169945, 0.02949495874538883, 0.027871954519244648, 0.026644174177590026, 0.025801797937830703, 0.02531873285067281, 0.025155870891354366, 0.025266815510404227, 0.025604303925282308, 0.026125748834603005, 0.026797201104256575, 0.02759578606698536, 0.02851089110964135, 0.029544232349768544, 0.030708744016025937, 0.03202623189865274, 0.03352393369580559, 0.03523042511460064, 0.03717154307321926, 0.03936703500706375, 0.04182844858355249, 0.04455842990182154, 0.04755125154812961, 0.05079417347509394, 0.05426919114714741, 0.057954805296845206, 0.06182758146552259, 0.06586339440000216, 0.07003834299693817, 0.07432937238040835, 0.07871466018005759, 0.08317382597980368, 0.08768801569753218, 0.09223990235181723 ], [ 0.09302015342175106, 0.08844332698884129, 0.08389272947495202, 0.07938085801029522, 0.07492115449346876, 0.07052819398167876, 0.06621791143653796, 0.06200786337942495, 0.05791751462242944, 0.053968529712771246, 0.050185031671051955, 0.04659376389517966, 0.04322405180333421, 0.04010740910207306, 0.037276579582334025, 0.03476378028020307, 0.03259797817111953, 0.03080127267378593, 0.029384906085902763, 0.028345951050617872, 0.027665967488336014, 0.0273125015071131, 0.02724325921453465, 0.027411755783258187, 0.02777291115116587, 0.02828753545748821, 0.028925407100126987, 0.029667141092768454, 0.030505107761423074, 0.03144347075164176, 0.0324972318872468, 0.03369015839884726, 0.03505164380637187, 0.036612834346260344, 0.03840260630357943, 0.04044407850778935, 0.042752224938130495, 0.045332855486084796, 0.04818288550557683, 0.05129155472383697, 0.054642155334463094, 0.05821387270067704, 0.06198346400150135, 0.065926633131603, 0.07001906411679228, 0.0742371389161775, 0.07855839475642369, 0.08296178275692269, 0.08742778415792432, 0.0919384302319529 ], [ 0.09222517934297829, 0.08769885381841834, 0.08320883945067543, 0.07876829861345605, 0.07439133607391656, 0.07009318808251389, 0.06589044764622919, 0.06180131829427415, 0.057845879407922705, 0.05404633177144468, 0.0504271702485369, 0.04701519946920976, 0.04383926840053722, 0.040929557450615446, 0.03831622764446069, 0.03602727615424162, 0.03408559303156951, 0.032505518939992636, 0.03128960991689828, 0.030426615720384603, 0.029891581324107557, 0.029648364226839113, 0.029653996315102786, 0.029863736222978728, 0.03023568573914688, 0.030734342410398876, 0.03133301455328786, 0.03201531560145535, 0.032775935374816656, 0.033620705986675825, 0.034565824879756, 0.03563608125766048, 0.03686207416330365, 0.03827665537998914, 0.03991107829668916, 0.04179147400890554, 0.04393623169197278, 0.046354634268236376, 0.04904678232668885, 0.05200455754275118, 0.055213224927374585, 0.05865326765789258, 0.06230214239599354, 0.06613577113468627, 0.07012969869570337, 0.07425992185510567, 0.0785034366929548, 0.0828385647970278, 0.0872451173295333, 0.09170444709806264 ], [ 0.0915631996579599, 0.08709754472038717, 0.0826794561166023, 0.07832286360778523, 0.07404262119425921, 0.06985468471532859, 0.06577631850057959, 0.061826317496460316, 0.05802521916210873, 0.054395461789160694, 0.05096142165373895, 0.047749231081637276, 0.04478624794493542, 0.04210002769602595, 0.03971666783174545, 0.03765848866504265, 0.0359412135139636, 0.03457109832548698, 0.033542726156566255, 0.03283823789952307, 0.03242847291381897, 0.03227590842372067, 0.0323387143319274, 0.03257500042673381, 0.03294651024704564, 0.033421422841537804, 0.033976287174749535, 0.034597269641639276, 0.03528084471748197, 0.03603390999575749, 0.036873183783925165, 0.037823726375127834, 0.038916534507827054, 0.040185359527707694, 0.04166312365643769, 0.04337846757930698, 0.04535298018699285, 0.04759951294191976, 0.05012171672638945, 0.05291466179687072, 0.05596621144312665, 0.0592587615520728, 0.06277101151555001, 0.06647954200112849, 0.07036008931079633, 0.07438849371937026, 0.07854135219303883, 0.08279642967319027, 0.08713288757286308, 0.09153138228681455 ], [ 0.09104430203939161, 0.08664969023711117, 0.08231499994377554, 0.07805499753962952, 0.07388532611719477, 0.06982265506824765, 0.06588484620237313, 0.062091116083051796, 0.0584621600766392, 0.055020184786681865, 0.051788772828794204, 0.0487924809252494, 0.04605605804075432, 0.04360318130980432, 0.041454667021187344, 0.03962624229684029, 0.03812615606933298, 0.03695311011594714, 0.036095092366927414, 0.035529583850550606, 0.035225270998964206, 0.03514496125682888, 0.0352490889552159, 0.03549915477058187, 0.035860640991778055, 0.03630523473576746, 0.03681241323348648, 0.03737052072287842, 0.03797741057870329, 0.03864061127093581, 0.039376881485437325, 0.040211003895183436, 0.04117374657313457, 0.042299078650066095, 0.04362091719208551, 0.0451698407951443, 0.04697026551771732, 0.049038501412928426, 0.05138190911567471, 0.05399912728940165, 0.05688113433380525, 0.06001280340154132, 0.06337461564757169, 0.06694427655039911, 0.07069808505383182, 0.07461199816237099, 0.07866239778148296, 0.082826601353013, 0.08708317038287271, 0.09141206995533001 ], [ 0.0906786054026167, 0.08636542217816524, 0.08212547707689513, 0.07797439460387123, 0.07392858396614144, 0.0700053409831992, 0.06622294946272696, 0.06260075563560523, 0.05915917478886306, 0.05591957237093264, 0.05290394537361746, 0.05013431985066916, 0.04763178758716483, 0.04541514346508527, 0.04349916775681713, 0.04189272411759377, 0.04059698630725123, 0.03960420341141527, 0.038897391624880664, 0.03845116545749356, 0.0382336396972529, 0.03820906517286659, 0.03834072627316951, 0.038593669292896024, 0.03893699613303857, 0.039345647516313996, 0.03980172788310861, 0.04029545493680307, 0.040825766027633874, 0.041400527774248685, 0.04203622657436841, 0.04275700398135699, 0.043592957619062386, 0.044577747841493445, 0.045745705125770204, 0.047128778808417336, 0.04875375130451339, 0.05064012094599029, 0.05279892390183249, 0.05523256177063373, 0.05793549849786543, 0.06089555466180385, 0.06409548754088064, 0.06751458737485791, 0.07113010545080133, 0.07491841989790284, 0.0788559166678424, 0.08291960845904144, 0.08708753620627692, 0.0913390032657361 ], [ 0.09047602351498041, 0.08625445287089575, 0.08212019431468781, 0.07808969269979472, 0.07418002694083232, 0.07040894382943791, 0.06679487204469418, 0.0633568864117188, 0.06011458014410039, 0.05708779117660867, 0.054296121997343606, 0.051758197414702445, 0.04949063015080043, 0.04750671766180169, 0.04581497549668983, 0.044417708049773096, 0.04330989311633833, 0.042478668449285516, 0.041903626503609424, 0.041557958306521786, 0.0414102962118313, 0.04142696478557206, 0.041574310773432044, 0.04182084628599816, 0.04213905877128453, 0.04250685784121572, 0.04290869850721261, 0.04333642766052773, 0.04378985807089676, 0.04427701129963904, 0.04481392097663088, 0.04542387657057388, 0.04613602736427447, 0.04698335478695817, 0.048000142967893414, 0.049219203653780325, 0.050669203412000985, 0.052372459483710554, 0.054343495894001365, 0.0565884989118721, 0.059105630047838746, 0.06188600569080938, 0.06491507622382095, 0.06817413981397355, 0.07164178369707927, 0.07529512495801281, 0.07911079618571121, 0.08306567488343634, 0.08713738675197988, 0.09130462614392974 ], [ 0.09044600124764142, 0.08632579594794931, 0.08230747007195303, 0.07840818549983727, 0.07464551853544305, 0.07103740768322642, 0.06760206373258615, 0.06435781292715796, 0.06132283606330677, 0.05851476208586387, 0.055950078505961974, 0.053643338025267384, 0.05160617547773673, 0.049846201699922356, 0.04836590300530988, 0.04716172798904724, 0.046223562274077354, 0.04553475617318479, 0.045072778945755204, 0.04481045143200146, 0.04471759877357946, 0.04476290512519607, 0.044915757737358085, 0.045147925371771744, 0.045434994814084605, 0.04575755678829539, 0.04610216708504292, 0.04646210427800005, 0.046837910939866056, 0.04723765938487958, 0.04767684681245325, 0.048177815485092174, 0.04876862066471701, 0.04948133319788774, 0.050349856948606074, 0.0514074463467769, 0.05268419913221095, 0.054204841981315526, 0.05598709757956606, 0.0580408191128704, 0.06036793005644158, 0.06296306100321147, 0.06581467520572046, 0.06890644119755114, 0.07221863700917755, 0.07572943133236805, 0.07941595563085213, 0.0832551390518468, 0.08722431732945357, 0.09130164809523447 ], [ 0.09059723130832704, 0.08658747867613449, 0.0826943535862823, 0.07893556653407165, 0.07532894974877963, 0.0718923068302894, 0.06864321226717603, 0.0655987374581006, 0.06277507754264339, 0.06018705642858841, 0.057847499011138344, 0.05576648208087802, 0.05395050857550633, 0.052401688768437864, 0.05111704625847074, 0.05008808212812132, 0.0493007151485758, 0.048735666370026326, 0.048369283479604216, 0.048174725737245176, 0.04812337767779587, 0.048186343583038915, 0.048335894769585816, 0.04854678516833807, 0.04879739900913911, 0.049070730860327164, 0.04935521251453948, 0.049645391445398306, 0.049942437981963794, 0.05025442467642687, 0.050596295002880425, 0.05098943089621544, 0.051460746717289486, 0.052041282961848, 0.052764343112686844, 0.053663301813534334, 0.054769294503481204, 0.05610905350876526, 0.05770315930112118, 0.05956491650976391, 0.06169995310501383, 0.06410651037156707, 0.06677628091025181, 0.06969559090036057, 0.07284671791190157, 0.07620917322366647, 0.07976083531784188, 0.08347887864329173, 0.08734048669756984, 0.09132336719469283 ], [ 0.09093736275654075, 0.08704625870320867, 0.08328636618145269, 0.07967571842519938, 0.07623210852198833, 0.07297283730765126, 0.06991440770487185, 0.0670721526734788, 0.06445978692300176, 0.06208888076376186, 0.059968269063305796, 0.058103428724543375, 0.056495881305181725, 0.05514269736499479, 0.054036188133668075, 0.05316386149212658, 0.052508691055837095, 0.052049704299195976, 0.05176284924233728, 0.05162206226179793, 0.05160044170050177, 0.05167143577146237, 0.05180997426738851, 0.051993502795645, 0.05220290563959397, 0.05242332074275732, 0.05264485318757905, 0.052863181810806716, 0.0530800315100491, 0.0533034587501778, 0.05354787827413322, 0.053833752525347854, 0.05418687686683751, 0.05463722563127714, 0.0552173757073346, 0.05596059114278827, 0.056898723633869865, 0.058060142537230935, 0.0594679333429493, 0.06113857926122729, 0.06308126538742186, 0.0652978369944634, 0.06778333457007714, 0.07052694927688524, 0.07351321035115159, 0.07672322855047291, 0.0801358616407266, 0.08372871994715578, 0.08747897724528048, 0.09136398703884342 ], [ 0.09147271563215542, 0.08770736018583272, 0.0840872787959939, 0.0806305581892954, 0.07735462588590249, 0.07427590247900963, 0.07140940792506523, 0.06876832261442638, 0.06636351044693484, 0.0642030208715099, 0.0622915991300757, 0.06063024662010876, 0.05921588284550623, 0.05804116279773965, 0.057094495699680045, 0.05636029239741882, 0.05581944240347752, 0.05544999372804001, 0.055227986099519254, 0.055128376189685316, 0.05512599379903139, 0.055196478775095086, 0.05531716537398162, 0.055467898552740216, 0.05563178042229303, 0.0557958512073602, 0.05595170584174643, 0.05609603534904642, 0.05623106432569934, 0.056364836838760486, 0.05651128823670164, 0.05669003459694442, 0.0569258184011932, 0.05724757075511498, 0.05768708782398641, 0.058277370665812615, 0.059050737765969454, 0.06003687693506315, 0.061261041226886796, 0.06274259529383061, 0.06449407535289667, 0.06652084411995954, 0.06882132339786957, 0.07138769981706662, 0.07420694592050948, 0.07726198713975618, 0.08053286817304392, 0.0839978144931718, 0.08763413053662224, 0.09141891480266098 ], [ 0.09220801800828916, 0.0885742450131993, 0.08509893890329202, 0.08179994607500334, 0.0786939963912374, 0.0757962751704497, 0.07311996773205476, 0.0706757915432452, 0.06847153820164663, 0.06651165491761817, 0.06479690112613175, 0.06332411819045403, 0.06208614686850077, 0.06107191737150502, 0.06026672131966603, 0.05965265646754402, 0.05920921769844336, 0.05891399530279433, 0.05874343635296212, 0.05867362735399266, 0.058681064672195485, 0.058743390798579626, 0.05884008634283829, 0.05895311718461967, 0.05906754144931181, 0.05917208066104785, 0.0592596531870322, 0.059327856686488156, 0.059379371705585555, 0.05942224378328199, 0.05946998981110966, 0.05954146903388204, 0.059660462504743515, 0.059854918971228216, 0.060155851517083844, 0.06059590821280247, 0.06120768933935886, 0.06202193663299144, 0.06306576416212842, 0.06436112042745297, 0.06592365451961173, 0.06776210343621947, 0.069878234896541, 0.0722672929277849, 0.07491882602153664, 0.0778177447056287, 0.08094545827172449, 0.08428096935566903, 0.08780184580155719, 0.09148502921930397 ], [ 0.09314618217673327, 0.08964843388454272, 0.08632115732643472, 0.08318166114554257, 0.08024566522033336, 0.07752681475692724, 0.07503619445755465, 0.07278187035075706, 0.0707684919912666, 0.06899698998326, 0.06746440159662048, 0.06616384972206604, 0.06508468787276459, 0.06421280821693028, 0.0635310937400689, 0.06301998292382646, 0.06265810834218527, 0.062422970267829704, 0.06229161194639509, 0.06224127256802208, 0.06225000464498997, 0.06229725228643732, 0.06236439419589444, 0.062435259195279966, 0.06249662224401953, 0.06253868513945016, 0.06255553858414296, 0.062545591836193, 0.0625119440861986, 0.06246265990366134, 0.06241090164322968, 0.06237486655917285, 0.06237747727240986, 0.062445782804166225, 0.06261004532805595, 0.06290251653253033, 0.06335594700556077, 0.06400191893923879, 0.06486913828120737, 0.06598185424445531, 0.06735857810300515, 0.06901124146649108, 0.07094487024839422, 0.07315777007615866, 0.07564214409771576, 0.07838501412335701, 0.08136929942647528, 0.08457492099118954, 0.0879798313896042, 0.09156090896634317 ], [ 0.0942881351816481, 0.0909293892581434, 0.08775166153457535, 0.08477144229312085, 0.08200317064019745, 0.07945871700480689, 0.07714689880579566, 0.07507306587392913, 0.07323879314523526, 0.07164171384389316, 0.07027551632708989, 0.06913011286914773, 0.06819197132596541, 0.0674445842570776, 0.06686903810557833, 0.0664446397611225, 0.06614955976484682, 0.06596145925258742, 0.0658580789855725, 0.06581778072967881, 0.06582004156460979, 0.06584590906606765, 0.06587842918664953, 0.06590305910506157, 0.06590807461165682, 0.06588497612544596, 0.06582888965579294, 0.06573894959126948, 0.06561864005456797, 0.06547606187876054, 0.06532408429212312, 0.06518033534826125, 0.06506698416631344, 0.0650102724750839, 0.06503976448651899, 0.0651873047048278, 0.06548570423312625, 0.06596721649031256, 0.06666190781443962, 0.06759606705619599, 0.06879081775262554, 0.07026108555362917, 0.07201502912160443, 0.07405397334892637, 0.0763728076882687, 0.07896075014590914, 0.08180234324470864, 0.08487854522694063, 0.08816780121933147, 0.09164701336981876 ], [ 0.09563271555853528, 0.09241446793437567, 0.08938611731230015, 0.08656308923172308, 0.0839583284970466, 0.08158177686115321, 0.07943991859568122, 0.0775354351303397, 0.07586700563040852, 0.0744292796856139, 0.07321303212620854, 0.07220549093312272, 0.07139081096950514, 0.07075065260577428, 0.07026481790301548, 0.06991189861025232, 0.06966989857530839, 0.06951680564078645, 0.06943110164797019, 0.06939221121041297, 0.06938089880552485, 0.06937962883925917, 0.06937290479429604, 0.06934760190006882, 0.06929330358249945, 0.06920264583130772, 0.06907166608401093, 0.06890014481743022, 0.06869191939886042, 0.06845514159728325, 0.06820244321839368, 0.06795096930653433, 0.06772223600743062, 0.06754177154928417, 0.06743850545986518, 0.06744388522975146, 0.06759072326165129, 0.06791181081574936, 0.0684383771751536, 0.06919851405367616, 0.07021571565185736, 0.07150769107876254, 0.0730855801923641, 0.0749536483365638, 0.07710946309057633, 0.07954448652369962, 0.08224496734982573, 0.08519299792782219, 0.08836760971856404, 0.09174580841749722 ], [ 0.09717664329111968, 0.09409894583630084, 0.09121821587991068, 0.08854861474665775, 0.08610144521746056, 0.0838846486477834, 0.08190240264556523, 0.08015486076287402, 0.07863806612934111, 0.07734405509739796, 0.07626114707610865, 0.07537439650202074, 0.07466616644323949, 0.07411677392691104, 0.07370515616111915, 0.0734095136947853, 0.07320789883845823, 0.07307873220330444, 0.07300124405157844, 0.07295584819065286, 0.07292446336017917, 0.0728908003582791, 0.0728406330182786, 0.07276206831366723, 0.07264582606044934, 0.07248553251382617, 0.0722780251191813, 0.07202365821900727, 0.07172659206784186, 0.07139504048816024, 0.07104144629918832, 0.07068254863878809, 0.07033930294181052, 0.07003661343668373, 0.06980284098461499, 0.06966905804381157, 0.06966803999882873, 0.06983300986970696, 0.07019619089946781, 0.0707872638753202, 0.0716318635613472, 0.0727502686056378, 0.07415643074440248, 0.0758574486035119, 0.07785352645602112, 0.08013838577687331, 0.08270003674879756, 0.08552178200309923, 0.0885833196910147, 0.0918618318237557 ], [ 0.09891456433668117, 0.09597611215209656, 0.09323981926082311, 0.09071843737825055, 0.0884215468992977, 0.08635509305632724, 0.08452105045613646, 0.08291725417376206, 0.08153742169280835, 0.08037137072840869, 0.0794054166549192, 0.07862291406712636, 0.07800489376876003, 0.07753074154505674, 0.07717886866259333, 0.07692733441461629, 0.07675439525690121, 0.07663897000451199, 0.07656102362231951, 0.07650188178601666, 0.0764444940796419, 0.07637366566205882, 0.07627627613771408, 0.07614150099268843, 0.075961046028031, 0.07572939932103344, 0.07544409881785727, 0.07510600705720072, 0.07471957802916848, 0.07429309501233866, 0.07383885257561165, 0.07337325093219794, 0.07291676675128304, 0.0724937619662991, 0.07213209228351533, 0.07186248200812566, 0.07171764412095286, 0.07173114677050635, 0.07193606036316505, 0.07236346056563206, 0.0730409042162012, 0.07399102552041213, 0.07523040632392107, 0.07676884892176333, 0.07860912492089649, 0.08074720214660268, 0.08317288274532884, 0.0858707370171107, 0.08882119814524557, 0.09200169144907251 ], [ 0.10083916539806273, 0.0980374251497954, 0.09544115344118365, 0.09306160282986523, 0.09090661401605578, 0.08898020493914215, 0.08728230953271433, 0.08580869862142913, 0.08455109849034201, 0.0834975018186884, 0.0826326447831506, 0.08193860731239205, 0.08139548388649277, 0.08098207125475385, 0.08067652625976136, 0.08045695927207196, 0.08030194350612051, 0.08019093482968304, 0.0801046085079413, 0.08002512755309636, 0.07993636178628483, 0.07982407777364635, 0.07967611818328219, 0.07948258558721051, 0.07923604097393144, 0.07893172176810423, 0.07856777835975397, 0.07814552229803075, 0.0776696735848794, 0.07714858901120644, 0.07659444824227615, 0.07602336939011656, 0.0754554212214794, 0.0749144953724527, 0.07442800000098214, 0.07402633805348736, 0.0737421413957832, 0.07360924936927951, 0.073661448809995, 0.07393103131906961, 0.07444726712470694, 0.07523493275977143, 0.07631304877725227, 0.07769397290805719, 0.07938295067618543, 0.08137815812837808, 0.08367119771148863, 0.08624794811239886, 0.0890896356759078, 0.09217399198522667 ], [ 0.10294134970636824, 0.10027271825525734, 0.09781103691131662, 0.09556602256396647, 0.09354381349646941, 0.09174661951566745, 0.09017253588603895, 0.08881554660896433, 0.08766572396832147, 0.08670961037686006, 0.08593074933664298, 0.08531031845177436, 0.08482781127044695, 0.0844617167470212, 0.0841901539348847, 0.08399143258231075, 0.08384452470705875, 0.08372944548727762, 0.08362755228203467, 0.08352177755875925, 0.08339681497770414, 0.08323927835713411, 0.08303785141234891, 0.0827834427295849, 0.08246935600387201, 0.08209148059991857, 0.08164850231303596, 0.08114212902238803, 0.08057732084942908, 0.07996250947629027, 0.079309786383389, 0.07863503484965303, 0.07795797563112135, 0.07730209159162885, 0.07669439305241464, 0.07616498491001522, 0.07574640118122025, 0.07547268565921703, 0.07537822145768464, 0.07549634790433987, 0.07585784695561831, 0.07648942423110501, 0.0774123389516037, 0.07864133953284122, 0.08018403043169435, 0.08204073508727854, 0.08420484450728101, 0.08666357167729202, 0.08939898586233222, 0.09238918577985226 ], [ 0.10521046099426488, 0.10267044273127228, 0.10033713154019022, 0.09821871901463997, 0.09631972207412677, 0.09464069703017239, 0.093178124752173, 0.09192448527917575, 0.09086852119012084, 0.08999566923244572, 0.08928862282186431, 0.0887279771376812, 0.08829290524834543, 0.08796181782073173, 0.08771296878551799, 0.08752498230535395, 0.08737728991328325, 0.08725047867450288, 0.08712656040281297, 0.08698917786362645, 0.08682376666102017, 0.08661769164261593, 0.0863603748078669, 0.08604342850131007, 0.08566080364111882, 0.0852089582744768, 0.0846870471388442, 0.08409712830104146, 0.08344437840195187, 0.08273730351509381, 0.08198792801911725, 0.08121193904502666, 0.08042875892397931, 0.07966151282064607, 0.07893685408354319, 0.07828460723553263, 0.07773719034160366, 0.07732878784901313, 0.0770942650085031, 0.077067847262666, 0.07728163062533007, 0.07776403500094634, 0.07853834947587585, 0.07962153277669709, 0.08102341313237674, 0.08274637933190714, 0.08478558055879588, 0.08712957663888118, 0.08976132273267887, 0.09265934532192241 ], [ 0.10763454087311662, 0.1052179325618064, 0.103006203239759, 0.10100606830136875, 0.09922053659910812, 0.09764868718408527, 0.09628561845652586, 0.09512258134725918, 0.09414728968277461, 0.09334438284557557, 0.09269600151329283, 0.09218242907373007, 0.09178275022990297, 0.09147548371149684, 0.09123915607601871, 0.09105279594158867, 0.09089634037352932, 0.09075095583346068, 0.09059928411130937, 0.09042562869861696, 0.09021609932523288, 0.0899587323526414, 0.08964360297465805, 0.08926294227220705, 0.08881126856279344, 0.08828553852073015, 0.08768531944922792, 0.08701297998151358, 0.08627389239599205, 0.08547663557908732, 0.08463318331196217, 0.08375905781587445, 0.08287342325012312, 0.08199908822232965, 0.08116238090104898, 0.08039285628813383, 0.07972279480191033, 0.07918645759855382, 0.07881908038747115, 0.07865561627812001, 0.07872927891773382, 0.07906998444738839, 0.079702833670504, 0.08064679988581099, 0.08191378046127826, 0.08350812710743484, 0.0854266989809294, 0.08765940281470976, 0.0901901169717009, 0.09299785753759747 ], [ 0.11020060447027896, 0.10790167775016744, 0.10580438123832873, 0.10391403301371287, 0.10223226839306175, 0.10075687508742646, 0.09948179725640051, 0.09839731426187992, 0.09749038269096576, 0.09674511428840453, 0.09614335059588892, 0.09566528917770176, 0.09529011679672009, 0.0949966109373993, 0.09476368087180383, 0.0945708309068441, 0.0943985396005634, 0.09422855818997895, 0.09404413847060933, 0.09383020471784628, 0.09357348615760754, 0.09326262641529941, 0.0928882848063483, 0.09244324175787438, 0.09192251746542018, 0.09132350938567387, 0.09064615053571015, 0.08989308690262665, 0.08906986856144522, 0.0881851452618186, 0.08725085311131744, 0.08628237435681997, 0.0852986469970213, 0.08432219509080359, 0.08337904460254843, 0.08249848455095457, 0.08171263109689007, 0.08105575594635578, 0.08056335353097434, 0.08027094680822425, 0.0802126697978502, 0.08041971227715684, 0.08091875881135617, 0.08173058635423062, 0.08286898780138188, 0.08434015547652458, 0.08614259288828334, 0.08826754163535346, 0.0906998354325254, 0.09341904383435735 ], [ 0.11289492019311351, 0.11070759385432086, 0.10871740667815617, 0.10692837935299039, 0.10534091974963215, 0.10395171035304898, 0.10275375749016706, 0.10173660343659385, 0.10088668688009263, 0.10018782347601414, 0.09962176862909165, 0.09916882051888477, 0.09880842289396603, 0.0985197333428486, 0.09828213195836559, 0.09807565569490258, 0.09788135364758681, 0.09768156681230618, 0.09746014201529171, 0.0972025935048974, 0.09689622738081749, 0.0965302439811793, 0.09609583199452218, 0.09558626582385234, 0.09499701494398183, 0.09432587091234768, 0.09357309447616974, 0.09274158193285229, 0.09183704652639758, 0.09086820709727661, 0.0898469722749291, 0.08878860400407504, 0.08771183895987872, 0.08663894042840951, 0.08559564686072556, 0.08461097750808352, 0.08371685211751087, 0.0829474833742699, 0.08233851108714382, 0.0819258693119083, 0.0817444131492547, 0.08182637830332173, 0.0821997954681269, 0.08288701977481766, 0.08390354781653771, 0.08525727091728741, 0.0869482541324733, 0.0889690497269648, 0.09130547362746312, 0.09393771476078978 ], [ 0.11570328148046824, 0.1136212778226005, 0.11173086338516733, 0.11003487453867494, 0.10853264142589104, 0.10721992058834104, 0.10608897984816626, 0.10512883292741067, 0.10432560747624518, 0.10366301852825029, 0.10312291172469178, 0.1026858378994661, 0.10233162271925077, 0.10203990107977073, 0.10179059439703474, 0.10156431821768554, 0.10134271634739288, 0.1011087250199395, 0.10084677602045711, 0.10054295104361533, 0.10018510109257074, 0.09976294473533255, 0.0992681579056028, 0.09869446601679363, 0.0980377467416042, 0.09729614910912282, 0.09647023171909941, 0.09556311991856992, 0.09458067869895029, 0.09353169474432453, 0.09242805732132924, 0.09128492334069106, 0.09012084676218772, 0.08895784652283892, 0.08782138062362, 0.08674018774460818, 0.08574595340190129, 0.08487275779134915, 0.08415627046273963, 0.08363267629361859, 0.08333734994445396, 0.08330334064410014, 0.08355977894935614, 0.08413035957263086, 0.08503207419518256, 0.08627435325450808, 0.08785872374185728, 0.0897790119569216, 0.09202203689135045, 0.09456867392259101 ], [ 0.11861126095669103, 0.11662824269501859, 0.11483038578946594, 0.11321946184404678, 0.11179387053567981, 0.11054861013884792, 0.10947538930873553, 0.10856287502943461, 0.10779705962438392, 0.1071617199679462, 0.106638935955367, 0.10620963353655806, 0.10585412000097562, 0.10555258482649832, 0.10528554699377952, 0.10503423788206177, 0.10478091657409244, 0.10450912083116334, 0.10420386175897116, 0.10385177319809309, 0.10344122829034191, 0.10296243576891964, 0.10240752761019553, 0.10177064806593415, 0.10104805201394039, 0.10023821820440254, 0.09934198044789666, 0.09836267712529445, 0.0973063165622396, 0.09618175269303884, 0.09500086187247235, 0.09377870747736566, 0.09253367389416163, 0.0912875455593166, 0.0900655001345228, 0.08889597838647356, 0.08781038837365164, 0.08684260051083154, 0.08602819622091071, 0.0854034496912264, 0.085004052182471, 0.0848636308233664, 0.08501216326140305, 0.0854744345841562, 0.08626870858736506, 0.08740577846611267, 0.08888851755483643, 0.0907119768700489, 0.09286399215873328, 0.09532619179843284 ], [ 0.12160444013111277, 0.1197141262041577, 0.11800184093666755, 0.11646841188518058, 0.11511144871901749, 0.11392534463504195, 0.11290140736168894, 0.11202811295835373, 0.11129146531156772, 0.11067543612956195, 0.11016245544345285, 0.10973392157472706, 0.10937070197051241, 0.10905360143987666, 0.10876378105326073, 0.1084831181747125, 0.10819450484653365, 0.10788208739502543, 0.1075314543431163, 0.1071297824343798, 0.10666595191363859, 0.10613064239663615, 0.1055164199563516, 0.10481782470619665, 0.10403146637976246, 0.10315613334626098, 0.10219291825089079, 0.10114536105516835, 0.1000196076319839, 0.09882457913834006, 0.0975721439840695, 0.09627728014576473, 0.09495821066878721, 0.09363648939401206, 0.09233700743101744, 0.09108788432207512, 0.08992020253507342, 0.08886754209436838, 0.08796527686058137, 0.08724960863610576, 0.08675634256736435, 0.08651944730405993, 0.08656949151535304, 0.08693209448646427, 0.08762655831334834, 0.08866484889956905, 0.09005105586021397, 0.09178139293996505, 0.09384471779588764, 0.09622347543595132 ], [ 0.12466861038613068, 0.12286487053853767, 0.1212314832205428, 0.11976844984000733, 0.1184727208678106, 0.11733822173759643, 0.11635599658105916, 0.11551446201037119, 0.11479975440508118, 0.11419614747636575, 0.11368651311016054, 0.11325279792005372, 0.11287649029982713, 0.11253905735565305, 0.1122223369992679, 0.11190887676727984, 0.11158221682140695, 0.11122711954360882, 0.11082975188607717, 0.11037782910391923, 0.10986072977876055, 0.10926959231441326, 0.10859740256556306, 0.10783908115476923, 0.10699157751744923, 0.106053975917403, 0.1050276166711546, 0.1039162336240197, 0.1027261064906752, 0.10146622390703745, 0.10014844978689008, 0.09878768165781839, 0.09740198490498247, 0.09601268121682123, 0.0946443631723407, 0.0933248004180945, 0.09208469746870007, 0.09095726085715392, 0.08997753701098582, 0.08918149512516207, 0.08860485416589203, 0.08828169046485843, 0.08824290847984767, 0.0885147031931822, 0.08911717492383492, 0.09006326232459093, 0.09135812909329996, 0.09299907754858584, 0.0949759825495523, 0.09727216362934812 ], [ 0.12778994326970458, 0.12606687240064424, 0.1245060818401324, 0.12310685912214799, 0.12186561505410559, 0.12077592846370164, 0.119828697357351, 0.11901238824993622, 0.118313368042319, 0.11771629732502165, 0.11720456101598967, 0.11676071198167082, 0.11636690548166292, 0.11600530632131717, 0.11565845572790105, 0.11530959041643958, 0.11494291143750218, 0.11454380475100795, 0.11409901880307871, 0.1135968066312005, 0.11302704125012014, 0.1123813134183068, 0.11165302052572286, 0.11083745444888059, 0.10993189493450486, 0.10893571350539707, 0.10785049109123339, 0.10668015058208745, 0.10543110323917444, 0.10411240528027173, 0.1027359178468502, 0.10131645979332794, 0.09987193817067193, 0.09842343585397993, 0.09699522964415327, 0.095614705893035, 0.09431213537229773, 0.09312026659193964, 0.09207369970970243, 0.09120801464290831, 0.09055864965972968, 0.09015956132913687, 0.09004174026751413, 0.09023170170420741, 0.09075010323666592, 0.09161065104913337, 0.09281943174343052, 0.09437475102951272, 0.09626748538080512, 0.09848187810672104 ], [ 0.1309551299499904, 0.12930710395460526, 0.12781302203341516, 0.12647156268726265, 0.12527870463106078, 0.1242277855722272, 0.12330965657806783, 0.12251292373811333, 0.1218242626320277, 0.12122878659796633, 0.12071044744832002, 0.12025244721489162, 0.11983764148458115, 0.11944891840790631, 0.11906954189381413, 0.11868345221255606, 0.11827552168028156, 0.11783176691557203, 0.11733952212568499, 0.11678757993124947, 0.1161663074133733, 0.11546774547445392, 0.1146856993811309, 0.11381582764382404, 0.11285573530157847, 0.11180507631127311, 0.11066566813419841, 0.10944161977363157, 0.10813947240090527, 0.10676834922559414, 0.10534010829152782, 0.10386948826866661, 0.1023742329359359, 0.10087517487290103, 0.09939625305516722, 0.09796443308062282, 0.09660949366779391, 0.09536364057088098, 0.0942609115624729, 0.09333634648671338, 0.09262491708825447, 0.09216024321782151, 0.0919731626476001, 0.09209026414868259, 0.09253252661721177, 0.09331421851856637, 0.09444219302730464, 0.09591566484217351, 0.09772648509761976, 0.0998598588461838 ], [ 0.13415149107437582, 0.13257320632126915, 0.13114038188574306, 0.12985118362269027, 0.12870125374902777, 0.12768377964285516, 0.12678964817068022, 0.1260076774730323, 0.12532491295736248, 0.12472697053806926, 0.12419840829739134, 0.12372310778843272, 0.12328464795237, 0.12286665765953625, 0.12245313668948703, 0.12202873901850324, 0.12157901614196386, 0.12109062150310274, 0.12055147974143529, 0.1199509263446126, 0.11927982440841567, 0.11853066566087746, 0.11769766279552496, 0.11677683959661996, 0.11576612442283712, 0.11466545141583274, 0.11347687235343114, 0.11220468037203057, 0.1108555447972717, 0.109438653964743, 0.10796586007065272, 0.10645181663977318, 0.10491409503011945, 0.10337326149123134, 0.10185289081659513, 0.10037948705808561, 0.09898227705258637, 0.09769284021005484, 0.0965445403194594, 0.09557173461855557, 0.09480875433003759, 0.09428868012018878, 0.09404197341332828, 0.09409506411712922, 0.09446902721626678, 0.0951784935734715, 0.0962309256891006, 0.09762634603434349, 0.09935754226939125, 0.10141070582492637 ], [ 0.13736705922983314, 0.13585355798185328, 0.13447698699242205, 0.1332350869832069, 0.1321232477392426, 0.13113458366070266, 0.13026008562194274, 0.12948884147486098, 0.1288083132087638, 0.12820465572864811, 0.12766306072040606, 0.12716810917704657, 0.12670411768452255, 0.1262554661667243, 0.12580689804266068, 0.12534378722849632, 0.12485236975599116, 0.12431994070583519, 0.12373501950379985, 0.12308748833053061, 0.12236870945876213, 0.12157162781092344, 0.12069086500770285, 0.11972281074127239, 0.11866571653255203, 0.11751979587608448, 0.11628733346635514, 0.11497280463032539, 0.1135830042225964, 0.1121271819990039, 0.11061717877296698, 0.10906755437028069, 0.10749569445125515, 0.10592187866575047, 0.10436928751791641, 0.10286392020284041, 0.10143439142179186, 0.10011157321044666, 0.09892805009619739, 0.09791736472924718, 0.09711304852967256, 0.09654745859701074, 0.09625047633731046, 0.096248159661193, 0.09656147050910474, 0.09720521275723636, 0.09818730437590932, 0.0995084704105329, 0.10116238661680783, 0.10313624089011744 ], [ 0.14059063678487638, 0.1391373208536395, 0.13781244551608246, 0.13661340500917812, 0.13553540995993604, 0.13457156707980514, 0.13371302680576552, 0.13294919174140976, 0.13226797514449312, 0.13165609619373803, 0.13109939756295944, 0.1305831709593682, 0.13009247759391276, 0.12961245276528385, 0.12912858651062817, 0.1286269752558709, 0.12809454228257602, 0.12751922738653787, 0.12689014818940653, 0.1261977371107681, 0.12543385900863047, 0.12459191498861427, 0.12366693792689401, 0.12265568491608761, 0.12155673118668839, 0.12037056912249718, 0.1190997147963466, 0.11774882299421452, 0.11632480993426336, 0.11483698075816662, 0.11329715629144206, 0.11171979045140311, 0.1101220659687641, 0.10852395180617865, 0.10694820098717453, 0.10542026293790498, 0.10396808071544145, 0.10262174194275457, 0.1014129546468905, 0.1003743275108555, 0.09953845003965424, 0.0989367924026716, 0.09859847563420947, 0.09854899580671149, 0.09880901316892643, 0.09939333019073203, 0.10031017387417501, 0.10156086568035823, 0.10313991225442014, 0.1050354932240776 ], [ 0.14381183217779278, 0.14241446696629728, 0.14113716626769734, 0.1399770479222216, 0.13892920677427448, 0.13798679646485798, 0.13714117165138717, 0.13638208408026223, 0.1356979229294941, 0.1350759877615292, 0.1345027814463217, 0.13396431054524666, 0.13344638176270804, 0.1329348849473711, 0.13241605547856905, 0.13187671141993942, 0.13130446330947687, 0.13068789668745048, 0.130016729312171, 0.12928194641226956, 0.1284759182584138, 0.1275925048295856, 0.12662715244188288, 0.12557698695148894, 0.124440907582995, 0.12321968460213063, 0.12191606296096132, 0.1205348726838247, 0.11908314509988073, 0.11757023200767605, 0.11600792240982102, 0.11441054851583077, 0.1127950692453772, 0.11118111551929957, 0.10959097739728747, 0.10804950904208517, 0.10658392432558163, 0.10522345480824581, 0.10399884436521818, 0.10294166262756425, 0.10208343410591442, 0.10145460179577649, 0.10108337174919155, 0.10099451447860254, 0.10120822360589932, 0.10173914422693897, 0.10259567679671619, 0.10377963502862926, 0.10528629247042613, 0.10710480158917751 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "Arm 0_0
l2norm: 1.65941 (SEM: 0)
x1: 0.200599
x2: 0.897084
x3: 0.848707
x4: 0.209322
x5: 0.859313
x6: 0.637275", "Arm 1_0
l2norm: 1.43727 (SEM: 0)
x1: 0.629618
x2: 0.764728
x3: 0.172874
x4: 0.612461
x5: 0.704196
x6: 0.428522", "Arm 2_0
l2norm: 1.29844 (SEM: 0)
x1: 0.711279
x2: 0.543044
x3: 0.0762402
x4: 0.681922
x5: 0.312368
x6: 0.562774", "Arm 3_0
l2norm: 1.39266 (SEM: 0)
x1: 0.291792
x2: 0.55315
x3: 0.704073
x4: 0.426226
x5: 0.910367
x6: 0.205464", "Arm 4_0
l2norm: 1.37614 (SEM: 0)
x1: 0.6894
x2: 0.153716
x3: 0.601733
x4: 0.160379
x5: 0.238299
x6: 0.974823", "Arm 5_0
l2norm: 0.712607 (SEM: 0)
x1: 0.285142
x2: 0.0991786
x3: 0.446902
x4: 0.199407
x5: 0.234221
x6: 0.349746", "Arm 6_0
l2norm: 1.42491 (SEM: 0)
x1: 0.758048
x2: 0.0818073
x3: 0.781391
x4: 0.00391702
x5: 0.290735
x6: 0.868292", "Arm 7_0
l2norm: 1.26663 (SEM: 0)
x1: 0.162421
x2: 0.103118
x3: 0.819247
x4: 0.580236
x5: 0.634186
x6: 0.396618", "Arm 8_0
l2norm: 1.85444 (SEM: 0)
x1: 0.950442
x2: 0.527969
x3: 0.79726
x4: 0.723166
x5: 0.559298
x6: 0.886257", "Arm 9_0
l2norm: 1.47973 (SEM: 0)
x1: 0.169179
x2: 0.387713
x3: 0.924425
x4: 0.899991
x5: 0.202584
x6: 0.552325", "Arm 10_0
l2norm: 1.7097 (SEM: 0)
x1: 0.824962
x2: 0.827101
x3: 0.640361
x4: 0.941036
x5: 0.382859
x6: 0.340897", "Arm 11_0
l2norm: 1.36657 (SEM: 0)
x1: 0.820812
x2: 0.531282
x3: 0.635689
x4: 0.223681
x5: 0.644599
x6: 0.204662", "Arm 12_0
l2norm: 0.771069 (SEM: 0)
x1: 0.338171
x2: 0.0855563
x3: 0.434027
x4: 0.153941
x5: 0.193153
x6: 0.47274", "Arm 13_0
l2norm: 0.793908 (SEM: 0)
x1: 0.354249
x2: 0.0650267
x3: 0.398692
x4: 0.116055
x5: 0.141862
x6: 0.554996", "Arm 14_0
l2norm: 0.851061 (SEM: 0)
x1: 0.388124
x2: 0.10186
x3: 0.494358
x4: 0.156622
x5: 0.23982
x6: 0.486678", "Arm 15_0
l2norm: 0.910152 (SEM: 0)
x1: 0.398833
x2: 0.162158
x3: 0.504719
x4: 0.168843
x5: 0.267244
x6: 0.536978", "Arm 16_0
l2norm: 0.921458 (SEM: 0)
x1: 0.394292
x2: 0.21005
x3: 0.495043
x4: 0.154286
x5: 0.274193
x6: 0.552671", "Arm 17_0
l2norm: 0.946896 (SEM: 0)
x1: 0.389528
x2: 0.189861
x3: 0.497334
x4: 0.213965
x5: 0.283014
x6: 0.579321", "Arm 18_0
l2norm: 0.989004 (SEM: 0)
x1: 0.378599
x2: 0.227907
x3: 0.491248
x4: 0.250552
x5: 0.301484
x6: 0.622782", "Arm 19_0
l2norm: 1.02488 (SEM: 0)
x1: 0.352721
x2: 0.192775
x3: 0.500576
x4: 0.2712
x5: 0.341242
x6: 0.6695", "Arm 20_0
l2norm: 1.01481 (SEM: 0)
x1: 0.377297
x2: 0.166268
x3: 0.43972
x4: 0.283297
x5: 0.382078
x6: 0.663507", "Arm 21_0
l2norm: 1.03147 (SEM: 0)
x1: 0.320357
x2: 0.182489
x3: 0.530249
x4: 0.287697
x5: 0.298639
x6: 0.68911", "Arm 22_0
l2norm: 1.08504 (SEM: 0)
x1: 0.334209
x2: 0.184745
x3: 0.613489
x4: 0.301072
x5: 0.306142
x6: 0.686116", "Arm 23_0
l2norm: 1.00502 (SEM: 0)
x1: 0.260404
x2: 0.205279
x3: 0.51118
x4: 0.277827
x5: 0.307814
x6: 0.683277" ], "type": "scatter", "x": [ 0.8487071394920349, 0.17287410888820887, 0.07624023500829935, 0.7040733937174082, 0.6017329515889287, 0.4469019612297416, 0.781390561722219, 0.8192467968910933, 0.7972601149231195, 0.9244250310584903, 0.6403606422245502, 0.6356885265558958, 0.43402671852179303, 0.398692302076312, 0.49435829857679753, 0.5047190266737901, 0.4950433567580375, 0.49733375449039324, 0.4912483092230478, 0.5005761203653908, 0.4397196029732562, 0.5302486751005436, 0.6134889947501926, 0.5111798972046122 ], "xaxis": "x", "y": [ 0.2093224972486496, 0.6124608749523759, 0.6819224748760462, 0.4262261064723134, 0.16037915740162134, 0.19940705131739378, 0.003917016088962555, 0.5802362123504281, 0.723165825009346, 0.899991293437779, 0.9410356087610126, 0.22368063870817423, 0.15394052538069375, 0.1160550235851016, 0.15662235153190598, 0.16884331730951782, 0.1542855828461143, 0.21396530564898164, 0.25055164984902073, 0.2712001114286377, 0.2832973382918206, 0.287696926730602, 0.3010719989025269, 0.277826636437754 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "Arm 0_0
l2norm: 1.65941 (SEM: 0)
x1: 0.200599
x2: 0.897084
x3: 0.848707
x4: 0.209322
x5: 0.859313
x6: 0.637275", "Arm 1_0
l2norm: 1.43727 (SEM: 0)
x1: 0.629618
x2: 0.764728
x3: 0.172874
x4: 0.612461
x5: 0.704196
x6: 0.428522", "Arm 2_0
l2norm: 1.29844 (SEM: 0)
x1: 0.711279
x2: 0.543044
x3: 0.0762402
x4: 0.681922
x5: 0.312368
x6: 0.562774", "Arm 3_0
l2norm: 1.39266 (SEM: 0)
x1: 0.291792
x2: 0.55315
x3: 0.704073
x4: 0.426226
x5: 0.910367
x6: 0.205464", "Arm 4_0
l2norm: 1.37614 (SEM: 0)
x1: 0.6894
x2: 0.153716
x3: 0.601733
x4: 0.160379
x5: 0.238299
x6: 0.974823", "Arm 5_0
l2norm: 0.712607 (SEM: 0)
x1: 0.285142
x2: 0.0991786
x3: 0.446902
x4: 0.199407
x5: 0.234221
x6: 0.349746", "Arm 6_0
l2norm: 1.42491 (SEM: 0)
x1: 0.758048
x2: 0.0818073
x3: 0.781391
x4: 0.00391702
x5: 0.290735
x6: 0.868292", "Arm 7_0
l2norm: 1.26663 (SEM: 0)
x1: 0.162421
x2: 0.103118
x3: 0.819247
x4: 0.580236
x5: 0.634186
x6: 0.396618", "Arm 8_0
l2norm: 1.85444 (SEM: 0)
x1: 0.950442
x2: 0.527969
x3: 0.79726
x4: 0.723166
x5: 0.559298
x6: 0.886257", "Arm 9_0
l2norm: 1.47973 (SEM: 0)
x1: 0.169179
x2: 0.387713
x3: 0.924425
x4: 0.899991
x5: 0.202584
x6: 0.552325", "Arm 10_0
l2norm: 1.7097 (SEM: 0)
x1: 0.824962
x2: 0.827101
x3: 0.640361
x4: 0.941036
x5: 0.382859
x6: 0.340897", "Arm 11_0
l2norm: 1.36657 (SEM: 0)
x1: 0.820812
x2: 0.531282
x3: 0.635689
x4: 0.223681
x5: 0.644599
x6: 0.204662", "Arm 12_0
l2norm: 0.771069 (SEM: 0)
x1: 0.338171
x2: 0.0855563
x3: 0.434027
x4: 0.153941
x5: 0.193153
x6: 0.47274", "Arm 13_0
l2norm: 0.793908 (SEM: 0)
x1: 0.354249
x2: 0.0650267
x3: 0.398692
x4: 0.116055
x5: 0.141862
x6: 0.554996", "Arm 14_0
l2norm: 0.851061 (SEM: 0)
x1: 0.388124
x2: 0.10186
x3: 0.494358
x4: 0.156622
x5: 0.23982
x6: 0.486678", "Arm 15_0
l2norm: 0.910152 (SEM: 0)
x1: 0.398833
x2: 0.162158
x3: 0.504719
x4: 0.168843
x5: 0.267244
x6: 0.536978", "Arm 16_0
l2norm: 0.921458 (SEM: 0)
x1: 0.394292
x2: 0.21005
x3: 0.495043
x4: 0.154286
x5: 0.274193
x6: 0.552671", "Arm 17_0
l2norm: 0.946896 (SEM: 0)
x1: 0.389528
x2: 0.189861
x3: 0.497334
x4: 0.213965
x5: 0.283014
x6: 0.579321", "Arm 18_0
l2norm: 0.989004 (SEM: 0)
x1: 0.378599
x2: 0.227907
x3: 0.491248
x4: 0.250552
x5: 0.301484
x6: 0.622782", "Arm 19_0
l2norm: 1.02488 (SEM: 0)
x1: 0.352721
x2: 0.192775
x3: 0.500576
x4: 0.2712
x5: 0.341242
x6: 0.6695", "Arm 20_0
l2norm: 1.01481 (SEM: 0)
x1: 0.377297
x2: 0.166268
x3: 0.43972
x4: 0.283297
x5: 0.382078
x6: 0.663507", "Arm 21_0
l2norm: 1.03147 (SEM: 0)
x1: 0.320357
x2: 0.182489
x3: 0.530249
x4: 0.287697
x5: 0.298639
x6: 0.68911", "Arm 22_0
l2norm: 1.08504 (SEM: 0)
x1: 0.334209
x2: 0.184745
x3: 0.613489
x4: 0.301072
x5: 0.306142
x6: 0.686116", "Arm 23_0
l2norm: 1.00502 (SEM: 0)
x1: 0.260404
x2: 0.205279
x3: 0.51118
x4: 0.277827
x5: 0.307814
x6: 0.683277" ], "type": "scatter", "x": [ 0.8487071394920349, 0.17287410888820887, 0.07624023500829935, 0.7040733937174082, 0.6017329515889287, 0.4469019612297416, 0.781390561722219, 0.8192467968910933, 0.7972601149231195, 0.9244250310584903, 0.6403606422245502, 0.6356885265558958, 0.43402671852179303, 0.398692302076312, 0.49435829857679753, 0.5047190266737901, 0.4950433567580375, 0.49733375449039324, 0.4912483092230478, 0.5005761203653908, 0.4397196029732562, 0.5302486751005436, 0.6134889947501926, 0.5111798972046122 ], "xaxis": "x2", "y": [ 0.2093224972486496, 0.6124608749523759, 0.6819224748760462, 0.4262261064723134, 0.16037915740162134, 0.19940705131739378, 0.003917016088962555, 0.5802362123504281, 0.723165825009346, 0.899991293437779, 0.9410356087610126, 0.22368063870817423, 0.15394052538069375, 0.1160550235851016, 0.15662235153190598, 0.16884331730951782, 0.1542855828461143, 0.21396530564898164, 0.25055164984902073, 0.2712001114286377, 0.2832973382918206, 0.287696926730602, 0.3010719989025269, 0.277826636437754 ], "yaxis": "y2" } ], "layout": { "annotations": [ { "font": { "size": 14 }, "showarrow": false, "text": "Mean", "x": 0.25, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 14 }, "showarrow": false, "text": "Standard Error", "x": 0.8, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" } ], "autosize": false, "height": 450, "hovermode": "closest", "legend": { "orientation": "h", "x": 0, "y": -0.25 }, "margin": { "b": 100, "l": 35, "pad": 0, "r": 35, "t": 35 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "width": 950, "xaxis": { "anchor": "y", "autorange": false, "domain": [ 0.05, 0.45 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x3" }, "type": "linear" }, "xaxis2": { "anchor": "y2", "autorange": false, "domain": [ 0.6, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x3" }, "type": "linear" }, "yaxis": { "anchor": "x", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x4" }, "type": "linear" }, "yaxis2": { "anchor": "x2", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "type": "linear" } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "render(ax_client.get_contour_plot(param_x=\"x3\", param_y=\"x4\", metric_name=\"l2norm\"))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Here we plot the optimization trace, showing the progression of finding the point with the optimal objective:" ] }, { "cell_type": "code", "execution_count": 13, "metadata": { "collapsed": true }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "hoverinfo": "none", "legendgroup": "", "line": { "width": 0 }, "mode": "lines", "showlegend": false, "type": "scatter", "x": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25 ], "y": [ -0.04329312881705499, -0.14048016956326692, -0.15428482705784152, -0.606925687776517, -0.7474363877383714, -1.3120228429069103, -1.3120228429069103, -1.3120228429069103, -1.3120228429069103, -1.3120228429069103, -1.3120228429069103, -1.3120228429069103, -1.6350839804138098, -1.6350839804138098, -1.8569913299996477, -2.2231044322361395, -2.2283187810687495, -2.6275722351732487, -2.853367804678096, -2.986169535713959, -2.986169535713959, -3.0847967814918906, -3.0847967814918906, -3.2184341288957667, -3.2184341288957667 ] }, { "fill": "tonexty", "fillcolor": "rgba(128,177,211,0.3)", "legendgroup": "objective value", "line": { "color": "rgba(128,177,211,1)" }, "mode": "lines", "name": "objective value", "text": [ "
Parameterization:
x1: 0.2005985677242279
x2: 0.8970836400985718
x3: 0.8487071394920349
x4: 0.2093224972486496
x5: 0.8593130111694336
x6: 0.6372746229171753", "
Parameterization:
x1: 0.6296183317899704
x2: 0.7647282825782895
x3: 0.17287410888820887
x4: 0.6124608749523759
x5: 0.70419632922858
x6: 0.4285218622535467", "
Parameterization:
x1: 0.7112790299579501
x2: 0.5430442057549953
x3: 0.07624023500829935
x4: 0.6819224748760462
x5: 0.3123683361336589
x6: 0.5627738060429692", "
Parameterization:
x1: 0.2917917026206851
x2: 0.5531500754877925
x3: 0.7040733937174082
x4: 0.4262261064723134
x5: 0.9103674488142133
x6: 0.20546409208327532", "
Parameterization:
x1: 0.689400383271277
x2: 0.15371624380350113
x3: 0.6017329515889287
x4: 0.16037915740162134
x5: 0.23829931858927011
x6: 0.9748230455443263", "
Parameterization:
x1: 0.2851419532671571
x2: 0.09917861130088568
x3: 0.4469019612297416
x4: 0.19940705131739378
x5: 0.23422083724290133
x6: 0.349745886400342", "
Parameterization:
x1: 0.7580483183264732
x2: 0.0818073321133852
x3: 0.781390561722219
x4: 0.003917016088962555
x5: 0.2907349979504943
x6: 0.8682915810495615", "
Parameterization:
x1: 0.16242068447172642
x2: 0.10311754606664181
x3: 0.8192467968910933
x4: 0.5802362123504281
x5: 0.634186171926558
x6: 0.39661751966923475", "
Parameterization:
x1: 0.950442255474627
x2: 0.527969186194241
x3: 0.7972601149231195
x4: 0.723165825009346
x5: 0.559297944419086
x6: 0.8862570747733116", "
Parameterization:
x1: 0.16917908657342196
x2: 0.3877127543091774
x3: 0.9244250310584903
x4: 0.899991293437779
x5: 0.20258428622037172
x6: 0.5523246172815561", "
Parameterization:
x1: 0.8249616520479321
x2: 0.8271006504073739
x3: 0.6403606422245502
x4: 0.9410356087610126
x5: 0.382858581840992
x6: 0.34089738689363003", "
Parameterization:
x1: 0.8208116525784135
x2: 0.5312817534431815
x3: 0.6356885265558958
x4: 0.22368063870817423
x5: 0.6445986609905958
x6: 0.20466242544353008", "
Parameterization:
x1: 0.3381711744821113
x2: 0.0855563340077027
x3: 0.43402671852179303
x4: 0.15394052538069375
x5: 0.19315260191408334
x6: 0.4727396737022306", "
Parameterization:
x1: 0.354249036049906
x2: 0.06502666229103642
x3: 0.398692302076312
x4: 0.1160550235851016
x5: 0.14186249987378954
x6: 0.5549957593933879", "
Parameterization:
x1: 0.3881241654510716
x2: 0.10186016458250943
x3: 0.49435829857679753
x4: 0.15662235153190598
x5: 0.2398195787988768
x6: 0.4866778771836455", "
Parameterization:
x1: 0.39883320074520684
x2: 0.1621577566555534
x3: 0.5047190266737901
x4: 0.16884331730951782
x5: 0.2672442925165869
x6: 0.536977694803906", "
Parameterization:
x1: 0.39429193387780154
x2: 0.21005003085505822
x3: 0.4950433567580375
x4: 0.1542855828461143
x5: 0.27419268850362044
x6: 0.5526706734899449", "
Parameterization:
x1: 0.3895275379703537
x2: 0.18986144166980778
x3: 0.49733375449039324
x4: 0.21396530564898164
x5: 0.28301378053228615
x6: 0.5793214047186809", "
Parameterization:
x1: 0.37859852549500916
x2: 0.22790746611728624
x3: 0.4912483092230478
x4: 0.25055164984902073
x5: 0.3014843128229958
x6: 0.6227815046426577", "
Parameterization:
x1: 0.3527206324502161
x2: 0.19277545404839663
x3: 0.5005761203653908
x4: 0.2712001114286377
x5: 0.3412422398334058
x6: 0.6694996617633375", "
Parameterization:
x1: 0.37729719305540915
x2: 0.16626768137659043
x3: 0.4397196029732562
x4: 0.2832973382918206
x5: 0.38207791851134765
x6: 0.6635070238252396", "
Parameterization:
x1: 0.3203570892220539
x2: 0.182489113651506
x3: 0.5302486751005436
x4: 0.287696926730602
x5: 0.29863949195588785
x6: 0.6891101949073918", "
Parameterization:
x1: 0.33420895914668164
x2: 0.18474530072997633
x3: 0.6134889947501926
x4: 0.3010719989025269
x5: 0.3061420722679797
x6: 0.6861163016218055", "
Parameterization:
x1: 0.2604038438549958
x2: 0.20527851575567252
x3: 0.5111798972046122
x4: 0.277826636437754
x5: 0.3078141666613247
x6: 0.6832769433314506", "
Parameterization:
x1: 0.20448133312565334
x2: 0.19255226657334729
x3: 0.5036725218542075
x4: 0.25458208371081215
x5: 0.310707904502391
x6: 0.7175034428316881" ], "type": "scatter", "x": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25 ], "y": [ -0.04329312881705499, -0.14048016956326692, -0.15428482705784152, -0.606925687776517, -0.7474363877383714, -1.3120228429069103, -1.3120228429069103, -1.3120228429069103, -1.3120228429069103, -1.3120228429069103, -1.3120228429069103, -1.3120228429069103, -1.6350839804138098, -1.6350839804138098, -1.8569913299996477, -2.2231044322361395, -2.2283187810687495, -2.6275722351732487, -2.853367804678096, -2.986169535713959, -2.986169535713959, -3.0847967814918906, -3.0847967814918906, -3.2184341288957667, -3.2184341288957667 ] }, { "fill": "tonexty", "fillcolor": "rgba(128,177,211,0.3)", "hoverinfo": "none", "legendgroup": "", "line": { "width": 0 }, "mode": "lines", "showlegend": false, "type": "scatter", "x": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25 ], "y": [ -0.04329312881705499, -0.14048016956326692, -0.15428482705784152, -0.606925687776517, -0.7474363877383714, -1.3120228429069103, -1.3120228429069103, -1.3120228429069103, -1.3120228429069103, -1.3120228429069103, -1.3120228429069103, -1.3120228429069103, -1.6350839804138098, -1.6350839804138098, -1.8569913299996477, -2.2231044322361395, -2.2283187810687495, -2.6275722351732487, -2.853367804678096, -2.986169535713959, -2.986169535713959, -3.0847967814918906, -3.0847967814918906, -3.2184341288957667, -3.2184341288957667 ] }, { "line": { "color": "rgba(253,180,98,1)", "dash": "dash" }, "mode": "lines", "name": "Optimum", "type": "scatter", "x": [ 1, 25 ], "y": [ -3.32237, -3.32237 ] }, { "line": { "color": "rgba(141,211,199,1)", "dash": "dash" }, "mode": "lines", "name": "model change", "type": "scatter", "x": [ 12, 12 ], "y": [ -3.32237, -0.04329312881705499 ] } ], "layout": { "showlegend": true, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "Model performance vs. # of iterations" }, "xaxis": { "title": { "text": "Iteration" } }, "yaxis": { "title": { "text": "Hartmann6" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "render(ax_client.get_optimization_trace(objective_optimum=hartmann6.fmin)) # Objective_optimum is optional." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 7. Save / reload optimization to JSON / SQL\n", "We can serialize the state of optimization to JSON and save it to a `.json` file or save it to the SQL backend. For the former:" ] }, { "cell_type": "code", "execution_count": 14, "metadata": { "collapsed": true }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:35:32] ax.service.ax_client: Saved JSON-serialized state of optimization to `ax_client_snapshot.json`.\n" ] } ], "source": [ "ax_client.save_to_json_file() # For custom filepath, pass `filepath` argument." ] }, { "cell_type": "code", "execution_count": 15, "metadata": { "collapsed": true }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:35:32] ax.service.ax_client: Starting optimization with verbose logging. To disable logging, set the `verbose_logging` argument to `False`. Note that float values in the logs are rounded to 2 decimal points.\n" ] } ], "source": [ "restored_ax_client = AxClient.load_from_json_file() # For custom filepath, pass `filepath` argument." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "To store state of optimization to an SQL backend, first follow [setup instructions](https://ax.dev/docs/storage.html#sql) on Ax website." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Having set up the SQL backend, pass `DBSettings` to `AxClient` on instantiation (note that `SQLAlchemy` dependency will have to be installed – for installation, refer to [optional dependencies](https://ax.dev/docs/installation.html#optional-dependencies) on Ax website):" ] }, { "cell_type": "code", "execution_count": 16, "metadata": { "collapsed": true }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:35:32] ax.service.ax_client: Starting optimization with verbose logging. To disable logging, set the `verbose_logging` argument to `False`. Note that float values in the logs are rounded to 2 decimal points.\n" ] } ], "source": [ "from ax.storage.sqa_store.structs import DBSettings\n", "\n", "# URL is of the form \"dialect+driver://username:password@host:port/database\".\n", "db_settings = DBSettings(url=\"sqlite:///foo.db\")\n", "# Instead of URL, can provide a `creator function`; can specify custom encoders/decoders if necessary.\n", "new_ax = AxClient(db_settings=db_settings)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "When valid `DBSettings` are passed into `AxClient`, a unique experiment name is a required argument (`name`) to `ax_client.create_experiment`. The **state of the optimization is auto-saved** any time it changes (i.e. a new trial is added or completed, etc). \n", "\n", "To reload an optimization state later, instantiate `AxClient` with the same `DBSettings` and use `ax_client.load_experiment_from_database(experiment_name=\"my_experiment\")`." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Special Cases" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Evaluation failure**: should any optimization iterations fail during evaluation, `log_trial_failure` will ensure that the same trial is not proposed again." ] }, { "cell_type": "code", "execution_count": 17, "metadata": { "collapsed": true }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:35:38] ax.service.ax_client: Generated new trial 25 with parameters {'x1': 0.21, 'x2': 0.17, 'x3': 0.5, 'x4': 0.28, 'x5': 0.31, 'x6': 0.67}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:35:38] ax.service.ax_client: Registered failure of trial 25.\n" ] } ], "source": [ "_, trial_index = ax_client.get_next_trial()\n", "ax_client.log_trial_failure(trial_index=trial_index)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Adding custom trials**: should there be need to evaluate a specific parameterization, `attach_trial` will add it to the experiment." ] }, { "cell_type": "code", "execution_count": 18, "metadata": { "collapsed": true }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:35:38] ax.service.ax_client: Attached custom parameterization {'x1': 0.9, 'x2': 0.9, 'x3': 0.9, 'x4': 0.9, 'x5': 0.9, 'x6': 0.9} as trial 26.\n" ] }, { "data": { "text/plain": [ "({'x1': 0.9, 'x2': 0.9, 'x3': 0.9, 'x4': 0.9, 'x5': 0.9, 'x6': 0.9}, 26)" ] }, "execution_count": 18, "metadata": {}, "output_type": "execute_result" } ], "source": [ "ax_client.attach_trial(parameters={\"x1\": 0.9, \"x2\": 0.9, \"x3\": 0.9, \"x4\": 0.9, \"x5\": 0.9, \"x6\": 0.9})" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Need to run many trials in parallel**: for optimal results and optimization efficiency, we strongly recommend sequential optimization (generating a few trials, then waiting for them to be completed with evaluation data). However, if your use case needs to dispatch many trials in parallel before they are updated with data and you are running into the *\"All trials for current model have been generated, but not enough data has been observed to fit next model\"* error, instantiate `AxClient` as `AxClient(enforce_sequential_optimization=False)`." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Service API Exceptions Meaning and Handling\n", "[**`DataRequiredError`**](https://ax.dev/api/exceptions.html#ax.exceptions.core.DataRequiredError): Ax generation strategy needs to be updated with more data to proceed to the next optimization model. When the optimization moves from initialization stage to the Bayesian optimization stage, the underlying BayesOpt model needs sufficient data to train. For optimal results and optimization efficiency (finding the optimal point in the least number of trials), we recommend sequential optimization (generating a few trials, then waiting for them to be completed with evaluation data). Therefore, the correct way to handle this exception is to wait until more trial evaluations complete and log their data via `ax_client.complete_trial(...)`. \n", "\n", "However, if there is strong need to generate more trials before more data is available, instantiate `AxClient` as `AxClient(enforce_sequential_optimization=False)`. With this setting, as many trials will be generated from the initialization stage as requested, and the optimization will move to the BayesOpt stage whenever enough trials are completed." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "[**`MaxParallelismReachedException`**](https://ax.dev/api/modelbridge.html#ax.modelbridge.generation_strategy.MaxParallelismReachedException): generation strategy restricts the number of trials that can be ran simultaneously (to encourage sequential optimization), and the parallelism limit has been reached. The correct way to handle this exception is the same as `DataRequiredError` – to wait until more trial evluations complete and log their data via `ax_client.complete_trial(...)`.\n", " \n", "In some cases higher parallelism is important, so `enforce_sequential_optimization=False` kwarg to AxClient allows to suppress limiting of parallelism. It's also possible to override the default parallelism setting for all stages of the optimization by passing `choose_generation_strategy_kwargs` to `ax_client.create_experiment`:" ] }, { "cell_type": "code", "execution_count": 19, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:35:38] ax.service.ax_client: Starting optimization with verbose logging. To disable logging, set the `verbose_logging` argument to `False`. Note that float values in the logs are rounded to 2 decimal points.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:35:38] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:35:38] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter y. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:35:38] ax.modelbridge.dispatch_utils: Using Bayesian optimization since there are more ordered parameters than there are categories for the unordered categorical parameters.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:35:38] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+GPEI', steps=[Sobol for 5 trials, GPEI for subsequent trials]). Iterations after 5 will take longer to generate due to model-fitting.\n" ] } ], "source": [ "ax_client = AxClient()\n", "ax_client.create_experiment(\n", " parameters=[\n", " {\"name\": \"x\", \"type\": \"range\", \"bounds\": [-5.0, 10.0]},\n", " {\"name\": \"y\", \"type\": \"range\", \"bounds\": [0.0, 15.0]},\n", " ],\n", " # Sets max parallelism to 10 for all steps of the generation strategy.\n", " choose_generation_strategy_kwargs={\"max_parallelism_override\": 10},\n", ")" ] }, { "cell_type": "code", "execution_count": 20, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[(5, 10), (-1, 10)]" ] }, "execution_count": 20, "metadata": {}, "output_type": "execute_result" } ], "source": [ "ax_client.get_max_parallelism() # Max parallelism is now 10 for all stages of the optimization." ] } ], "metadata": { "kernelspec": { "display_name": "python3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.11" } }, "nbformat": 4, "nbformat_minor": 2 }