From 01990dbe9fdc2f164846f359c9a9d0c713adce71 Mon Sep 17 00:00:00 2001 From: Sam Nolan Date: Wed, 12 Jan 2022 18:33:04 +1100 Subject: [PATCH] Change build system to Rescript --- .gitignore | 2 +- bsconfig.json | 5 +- foretold/components/.gitignore | 16 + foretold/components/.vscode/settings.json | 15 + foretold/components/README.md | 29 + foretold/components/bsconfig.json | 37 + foretold/components/example/App.re | 7 + .../example/Example/ExampleFullPage.re | 124 + .../Example/Example__AppGroupHeader.re | 59 + .../Example__CardMeasurableMeasurements.re | 143 + .../Example/Example__MeasurableIndexPage.re | 153 + .../Example/Example__MeasurableTopCard.re | 80 + .../Example/Example__MemberTableCard.re | 36 + foretold/components/example/ExampleCdfs.re | 4016 +++++ foretold/components/example/index.html | 17 + foretold/components/example/styles.css | 0 foretold/components/logo.png | Bin 0 -> 17215 bytes foretold/components/package.json | 48 + foretold/components/showcase/Entries.re | 23 + foretold/components/showcase/EntryTypes.re | 30 + foretold/components/showcase/Index.re | 7 + foretold/components/showcase/Lib.re | 201 + .../components/showcase/entries/Scoring.re | 104 + .../showcase/entries/Showcase_AgentLink.re | 48 + .../showcase/entries/Showcase_Alerts.re | 12 + .../showcase/entries/Showcase_Buttons.re | 36 + .../showcase/entries/Showcase_Charts.re | 18 + .../showcase/entries/Showcase_Colors.re | 109 + .../showcase/entries/Showcase_Dropdown.re | 46 + .../showcase/entries/Showcase_DropdownMenu.re | 39 + .../entries/Showcase_DropdownSelect.re | 60 + .../entries/Showcase_MeasurableForm.re | 11 + .../showcase/entries/Showcase_Menu.re | 33 + .../entries/Showcase_MyCommunities.re | 98 + .../showcase/entries/Showcase_NumberShower.re | 61 + .../showcase/entries/Showcase_PageCard.re | 19 + .../sample-measurements-aggregation.json | 37 + .../entries/samples/sample-measurements.json | 14051 ++++++++++++++++ foretold/components/showcase/index.html | 23 + foretold/components/src/AgentLink.re | 98 + foretold/components/src/AppHeader.re | 28 + foretold/components/src/Base/Alert.re | 35 + foretold/components/src/Base/Avatar.re | 25 + foretold/components/src/Base/Base.re | 19 + foretold/components/src/Base/BaseStyles.re | 8 + foretold/components/src/Base/Button.re | 135 + foretold/components/src/Base/Div.re | 48 + foretold/components/src/Base/Dropdown.re | 104 + foretold/components/src/Base/DropdownMenu.re | 58 + foretold/components/src/Base/E.re | 175 + foretold/components/src/Base/Globals.re | 17 + foretold/components/src/Base/Icon.re | 61 + foretold/components/src/Base/Link.re | 29 + foretold/components/src/Base/Menu.re | 375 + foretold/components/src/Base/ReactKitIcon.js | 127 + foretold/components/src/Base/ReactKitIcon.re | 15 + foretold/components/src/Base/Settings.re | 93 + foretold/components/src/Base/TabList.re | 20 + foretold/components/src/Base/Types.re | 78 + foretold/components/src/Base/stats.js | 69 + foretold/components/src/BotDefaultImage.re | 1 + .../components/src/Charts/CdfChart__Base.re | 45 + .../components/src/Charts/CdfChart__Large.re | 29 + .../components/src/Charts/CdfChart__Plain.re | 37 + .../components/src/Charts/CdfChart__Small.re | 46 + .../src/Charts/CdfChart__StatSummary.re | 31 + foretold/components/src/Charts/cdfChart.js | 65 + foretold/components/src/Charts/cdfChartd3.js | 303 + foretold/components/src/FC.re | 23 + foretold/components/src/Footer.re | 109 + .../components/src/Form/DropdownSelect.re | 60 + foretold/components/src/Form/FormStyles.re | 26 + foretold/components/src/Form/InputLabel.re | 5 + foretold/components/src/Form/TextArea.re | 5 + foretold/components/src/Form/TextInput.re | 7 + foretold/components/src/GroupHeader.re | 70 + foretold/components/src/HelpDropdown.re | 47 + foretold/components/src/MeasurableForm.re | 97 + foretold/components/src/MyCommunities.re | 117 + .../src/NumberShower/NumberShower.re | 32 + .../src/NumberShower/PercentageShower.re | 12 + .../src/NumberShower/numberShower.js | 65 + foretold/components/src/PageCard.re | 200 + foretold/components/src/StateStatus.re | 58 + .../src/SubmenuElements/PaginationButtons.re | 59 + .../components/src/SubmenuElements/Tab.re | 63 + .../components/src/SubmenuElements/Tab2.re | 51 + foretold/components/src/Table.re | 156 + .../src/lib/AutosizeTextareaInput.js | 39 + .../components/src/lib/GuesstimateInput.js | 112 + foretold/components/src/lib/Hooks.re | 15 + .../src/lib/ReAutosizeTextareaInput.re | 36 + .../components/src/lib/ReGuesstimateInput.re | 32 + foretold/components/src/lib/Title.re | 24 + .../src/lib/vega/PercentilesChart.js | 48 + .../src/lib/vega/RePercentilesChart.re | 11 + .../src/lib/vega/spec-percentiles.json | 109 + package.json | 15 +- shell.nix | 5 + showcase/Lib.re | 6 +- src/ExampleStyles.bs.js | 4 +- src/components/DistBuilder.re | 10 +- .../DistributionPlot/PercentilesChart.re | 5 +- src/index.html | 4 +- yarn.lock | 37 +- 105 files changed, 23759 insertions(+), 42 deletions(-) create mode 100644 foretold/components/.gitignore create mode 100644 foretold/components/.vscode/settings.json create mode 100644 foretold/components/README.md create mode 100644 foretold/components/bsconfig.json create mode 100644 foretold/components/example/App.re create mode 100644 foretold/components/example/Example/ExampleFullPage.re create mode 100644 foretold/components/example/Example/Example__AppGroupHeader.re create mode 100644 foretold/components/example/Example/Example__CardMeasurableMeasurements.re create mode 100644 foretold/components/example/Example/Example__MeasurableIndexPage.re create mode 100644 foretold/components/example/Example/Example__MeasurableTopCard.re create mode 100644 foretold/components/example/Example/Example__MemberTableCard.re create mode 100644 foretold/components/example/ExampleCdfs.re create mode 100644 foretold/components/example/index.html create mode 100644 foretold/components/example/styles.css create mode 100644 foretold/components/logo.png create mode 100644 foretold/components/package.json create mode 100644 foretold/components/showcase/Entries.re create mode 100644 foretold/components/showcase/EntryTypes.re create mode 100644 foretold/components/showcase/Index.re create mode 100644 foretold/components/showcase/Lib.re create mode 100644 foretold/components/showcase/entries/Scoring.re create mode 100644 foretold/components/showcase/entries/Showcase_AgentLink.re create mode 100644 foretold/components/showcase/entries/Showcase_Alerts.re create mode 100644 foretold/components/showcase/entries/Showcase_Buttons.re create mode 100644 foretold/components/showcase/entries/Showcase_Charts.re create mode 100644 foretold/components/showcase/entries/Showcase_Colors.re create mode 100644 foretold/components/showcase/entries/Showcase_Dropdown.re create mode 100644 foretold/components/showcase/entries/Showcase_DropdownMenu.re create mode 100644 foretold/components/showcase/entries/Showcase_DropdownSelect.re create mode 100644 foretold/components/showcase/entries/Showcase_MeasurableForm.re create mode 100644 foretold/components/showcase/entries/Showcase_Menu.re create mode 100644 foretold/components/showcase/entries/Showcase_MyCommunities.re create mode 100644 foretold/components/showcase/entries/Showcase_NumberShower.re create mode 100644 foretold/components/showcase/entries/Showcase_PageCard.re create mode 100644 foretold/components/showcase/entries/samples/sample-measurements-aggregation.json create mode 100644 foretold/components/showcase/entries/samples/sample-measurements.json create mode 100644 foretold/components/showcase/index.html create mode 100644 foretold/components/src/AgentLink.re create mode 100644 foretold/components/src/AppHeader.re create mode 100644 foretold/components/src/Base/Alert.re create mode 100644 foretold/components/src/Base/Avatar.re create mode 100644 foretold/components/src/Base/Base.re create mode 100644 foretold/components/src/Base/BaseStyles.re create mode 100644 foretold/components/src/Base/Button.re create mode 100644 foretold/components/src/Base/Div.re create mode 100644 foretold/components/src/Base/Dropdown.re create mode 100644 foretold/components/src/Base/DropdownMenu.re create mode 100644 foretold/components/src/Base/E.re create mode 100644 foretold/components/src/Base/Globals.re create mode 100644 foretold/components/src/Base/Icon.re create mode 100644 foretold/components/src/Base/Link.re create mode 100644 foretold/components/src/Base/Menu.re create mode 100644 foretold/components/src/Base/ReactKitIcon.js create mode 100644 foretold/components/src/Base/ReactKitIcon.re create mode 100644 foretold/components/src/Base/Settings.re create mode 100644 foretold/components/src/Base/TabList.re create mode 100644 foretold/components/src/Base/Types.re create mode 100644 foretold/components/src/Base/stats.js create mode 100644 foretold/components/src/BotDefaultImage.re create mode 100644 foretold/components/src/Charts/CdfChart__Base.re create mode 100644 foretold/components/src/Charts/CdfChart__Large.re create mode 100644 foretold/components/src/Charts/CdfChart__Plain.re create mode 100644 foretold/components/src/Charts/CdfChart__Small.re create mode 100644 foretold/components/src/Charts/CdfChart__StatSummary.re create mode 100644 foretold/components/src/Charts/cdfChart.js create mode 100644 foretold/components/src/Charts/cdfChartd3.js create mode 100644 foretold/components/src/FC.re create mode 100644 foretold/components/src/Footer.re create mode 100644 foretold/components/src/Form/DropdownSelect.re create mode 100644 foretold/components/src/Form/FormStyles.re create mode 100644 foretold/components/src/Form/InputLabel.re create mode 100644 foretold/components/src/Form/TextArea.re create mode 100644 foretold/components/src/Form/TextInput.re create mode 100644 foretold/components/src/GroupHeader.re create mode 100644 foretold/components/src/HelpDropdown.re create mode 100644 foretold/components/src/MeasurableForm.re create mode 100644 foretold/components/src/MyCommunities.re create mode 100644 foretold/components/src/NumberShower/NumberShower.re create mode 100644 foretold/components/src/NumberShower/PercentageShower.re create mode 100644 foretold/components/src/NumberShower/numberShower.js create mode 100644 foretold/components/src/PageCard.re create mode 100644 foretold/components/src/StateStatus.re create mode 100644 foretold/components/src/SubmenuElements/PaginationButtons.re create mode 100644 foretold/components/src/SubmenuElements/Tab.re create mode 100644 foretold/components/src/SubmenuElements/Tab2.re create mode 100644 foretold/components/src/Table.re create mode 100644 foretold/components/src/lib/AutosizeTextareaInput.js create mode 100644 foretold/components/src/lib/GuesstimateInput.js create mode 100644 foretold/components/src/lib/Hooks.re create mode 100644 foretold/components/src/lib/ReAutosizeTextareaInput.re create mode 100644 foretold/components/src/lib/ReGuesstimateInput.re create mode 100644 foretold/components/src/lib/Title.re create mode 100644 foretold/components/src/lib/vega/PercentilesChart.js create mode 100644 foretold/components/src/lib/vega/RePercentilesChart.re create mode 100644 foretold/components/src/lib/vega/spec-percentiles.json create mode 100644 shell.nix diff --git a/.gitignore b/.gitignore index 8a82efaa..a32fd439 100644 --- a/.gitignore +++ b/.gitignore @@ -13,4 +13,4 @@ yarn-error.log *.bs.js # Local Netlify folder .netlify -.idea \ No newline at end of file +.idea diff --git a/bsconfig.json b/bsconfig.json index c2566368..a5e2bd0b 100644 --- a/bsconfig.json +++ b/bsconfig.json @@ -45,7 +45,10 @@ "reschema" ], "refmt": 3, + "warnings": { + "number": "+A-42-48-9-30-4-102" + }, "ppx-flags": [ "lenses-ppx/ppx" ] -} \ No newline at end of file +} diff --git a/foretold/components/.gitignore b/foretold/components/.gitignore new file mode 100644 index 00000000..a32fd439 --- /dev/null +++ b/foretold/components/.gitignore @@ -0,0 +1,16 @@ +.DS_Store +.merlin +.bsb.lock +npm-debug.log +/node_modules/ +.cache +.cache/* +dist +lib/* +*.cache +build +yarn-error.log +*.bs.js +# Local Netlify folder +.netlify +.idea diff --git a/foretold/components/.vscode/settings.json b/foretold/components/.vscode/settings.json new file mode 100644 index 00000000..95d63906 --- /dev/null +++ b/foretold/components/.vscode/settings.json @@ -0,0 +1,15 @@ +{ + "spellright.language": [ + "en" + ], + "spellright.documentTypes": [ + "markdown", + "latex", + "plaintext" + ], + "spellright.parserByClass": { + "reason": { + "parser": "plain" + } + } +} \ No newline at end of file diff --git a/foretold/components/README.md b/foretold/components/README.md new file mode 100644 index 00000000..abfd363a --- /dev/null +++ b/foretold/components/README.md @@ -0,0 +1,29 @@ +# Components + +This repo has many of the relevant Foretold Components. + +There's an example page in the `example/App.re` file. To run this, do: + +```bash +yarn dev +``` + +in a separate terminal + +```bash +yarn dev +``` + +### Showcase component viewer + +To open the component viewer, run: + +```bash +yarn showcase +``` + +Showcase should then be available on `http://localhost:1234/showcase/index.html`, +while the example page is available on `http://localhost:1234/index.html` +(given no port conflict). + +Components included are specified through `showcase/Entries.re`. diff --git a/foretold/components/bsconfig.json b/foretold/components/bsconfig.json new file mode 100644 index 00000000..8a598d46 --- /dev/null +++ b/foretold/components/bsconfig.json @@ -0,0 +1,37 @@ +{ + "name": "@foretold/components", + "reason": { + "react-jsx": 3 + }, + "refmt": 3, + "bs-dependencies": [ + "bs-css", + "bs-moment", + "reason-react", + "rationale" + ], + "warnings": { + "error": "+5" + }, + "suffix": ".bs.js", + "package-specs": [{ + "module": "commonjs", + "in-source": true + }], + "namespace": true, + "sources": [{ + "dir": "src", + "subdirs": true + }, + { + "dir": "example", + "type": "dev", + "subdirs": true + }, + { + "dir": "showcase", + "type": "dev", + "subdirs": true + } + ] +} diff --git a/foretold/components/example/App.re b/foretold/components/example/App.re new file mode 100644 index 00000000..fe0e6aae --- /dev/null +++ b/foretold/components/example/App.re @@ -0,0 +1,7 @@ +FC.Base.Globals.load(); +ReactDOMRe.renderToElementWithId( +
+ ExampleFullPage.make +
, + "app", +); diff --git a/foretold/components/example/Example/ExampleFullPage.re b/foretold/components/example/Example/ExampleFullPage.re new file mode 100644 index 00000000..70bbc00d --- /dev/null +++ b/foretold/components/example/Example/ExampleFullPage.re @@ -0,0 +1,124 @@ +open Base; +open FC; +let make = +
+ + {"Public Groups" |> ReasonReact.string} + , + + {"Entity Explorer" |> ReasonReact.string} + , + |] + |> ReasonReact.array + } + /> + Example__AppGroupHeader.make +
+ Example__MeasurableIndexPage.make +
+
+
+
+
Example__MeasurableTopCard.make
+
+ Example__CardMeasurableMeasurements.make +
+
+
+ Example__MeasurableTopCard.make +
+ +
+
+
+
+
+
+
+
Example__MemberTableCard.make
+
+
+
+
+
; diff --git a/foretold/components/example/Example/Example__AppGroupHeader.re b/foretold/components/example/Example/Example__AppGroupHeader.re new file mode 100644 index 00000000..d044b45b --- /dev/null +++ b/foretold/components/example/Example/Example__AppGroupHeader.re @@ -0,0 +1,59 @@ +open FC; +open Base; + +let make = +
+ +
+
+ {"Great Community" |> ReasonReact.string} +
+

+ {"Lots of description for the group would be here" + |> ReasonReact.string} +

+
+
+ + + +
+
+ + {"Questions" |> ReasonReact.string} + {"Knowledge Graph" |> ReasonReact.string} + {"Leaderboard" |> ReasonReact.string} + {"Settings" |> ReasonReact.string} + +
; diff --git a/foretold/components/example/Example/Example__CardMeasurableMeasurements.re b/foretold/components/example/Example/Example__CardMeasurableMeasurements.re new file mode 100644 index 00000000..1f69b7a6 --- /dev/null +++ b/foretold/components/example/Example/Example__CardMeasurableMeasurements.re @@ -0,0 +1,143 @@ +open FC; +open Base; + +let pastTime = 1483232400; +let format_standard = "LLL"; + +let cdf = ExampleCdfs.Example1.cdf; + +let cellStyle = + Css.(style([paddingTop(`em(0.7)), paddingBottom(`em(0.4))])); + +let row = + ReasonReact.string, + )}> + + + + + + + + + + + + {MomentRe.momentWithUnix(pastTime) + |> MomentRe.Moment.format(format_standard) + |> ReasonReact.string} + + + ; + +let row2 = + + + + + + + + + + + + + {MomentRe.momentWithUnix(pastTime) + |> MomentRe.Moment.format(format_standard) + |> ReasonReact.string} + + + ; + +let make = + + +
+
+ {"Predictions" |> ReasonReact.string} + {"Settings" |> ReasonReact.string} +
+
+
+
+ {PaginationButtons.make({ + currentValue: Range(3, 10), + max: 100, + pageLeft: { + isDisabled: false, + onClick: _ => (), + }, + pageRight: { + isDisabled: true, + onClick: _ => (), + }, + })} +
+
+
+
+ + + + {"Prediction Distribution" |> ReasonReact.string} + + + {"Prediction Value" |> ReasonReact.string} + + + {"Agent" |> ReasonReact.string} + + + {"Time" |> ReasonReact.string} + + + row + row2 + row2 + row2 + row + row + row2 + row2 +
+
+
; \ No newline at end of file diff --git a/foretold/components/example/Example/Example__MeasurableIndexPage.re b/foretold/components/example/Example/Example__MeasurableIndexPage.re new file mode 100644 index 00000000..0a0c62f9 --- /dev/null +++ b/foretold/components/example/Example/Example__MeasurableIndexPage.re @@ -0,0 +1,153 @@ +open FC; +open Base; + +let cdf = ExampleCdfs.Example1.cdf; + +let futureTime = 1559005200; + +let row = + Js.log("Row Clicked")}> + + + {"What will be the " |> ReasonReact.string} + + {"GDP" |> ReasonReact.string} + + + {"GDP" |> ReasonReact.string} + + {" of " |> ReasonReact.string} + + {"China" |> ReasonReact.string} + + {" in " |> ReasonReact.string} + + {"2018" |> ReasonReact.string} + + + {StateStatus.make( + ~state=OPEN(MomentRe.momentWithUnix(futureTime)), + ~fontSize=`em(0.85), + (), + )} + + + + + +
+ + {"Series A" |> ReasonReact.string} + + + {"19" |> ReasonReact.string} + +
+
+ + {"Edit" |> ReasonReact.string} + + + {"Archive" |> ReasonReact.string} + +
+
+
; + +let make = + + +
+ {"Open" |> ReasonReact.string} + + {"Pending Resolution" |> ReasonReact.string} + + + {"Closed" |> ReasonReact.string} + +
+
+ {PaginationButtons.make({ + currentValue: Range(3, 10), + max: 100, + pageLeft: { + isDisabled: false, + onClick: _ => (), + }, + pageRight: { + isDisabled: true, + onClick: _ => (), + }, + })} +
+
+ + + + {"Name & Status" |> ReasonReact.string} + + + {"Aggregate Prediction" |> ReasonReact.string} + + + {"Details" |> ReasonReact.string} + + + row + row + row + row + row + row + row + row + row +
+
; diff --git a/foretold/components/example/Example/Example__MeasurableTopCard.re b/foretold/components/example/Example/Example__MeasurableTopCard.re new file mode 100644 index 00000000..33c77003 --- /dev/null +++ b/foretold/components/example/Example/Example__MeasurableTopCard.re @@ -0,0 +1,80 @@ +open FC; +open Base; + +let pastTime = 1483232400; +let futureTime = 1559005200; + +let make = + + +
+
+ +
+
+ {PaginationButtons.make({ + currentValue: Range(3, 10), + max: 100, + pageLeft: { + isDisabled: false, + onClick: _ => (), + }, + pageRight: { + isDisabled: true, + onClick: _ => (), + }, + })} +
+
+
+
+
+
+ + {"What would the US GDP Be in 2020?" |> ReasonReact.string} + + {StateStatus.make( + ~state=RESOLVED(MomentRe.momentWithUnix(pastTime)), + ~fontSize=`em(1.0), + (), + )} +
+ +
+
+ + {"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut vulputate tortor a sapien aliquet ullamcorper. Nunc non varius sapien, quis elementum sapien. Morbi ac tristique quam. Cras hendrerit accumsan pretium. Praesent id nisl sit amet eros imperdiet placerat. Vestibulum sodales posuere diam vel laoreet." + |> ReasonReact.string} + +
+
+
; diff --git a/foretold/components/example/Example/Example__MemberTableCard.re b/foretold/components/example/Example/Example__MemberTableCard.re new file mode 100644 index 00000000..73d37eeb --- /dev/null +++ b/foretold/components/example/Example/Example__MemberTableCard.re @@ -0,0 +1,36 @@ +open FC; +open Base; + +let make = + + +
+ + {"Pending Resolution" |> ReasonReact.string} + +
+
+ +
+
+ + + + {"Name & Status" |> ReasonReact.string} + + + {"Aggregate Prediction" |> ReasonReact.string} + + + {"Details" |> ReasonReact.string} + + +
+
; diff --git a/foretold/components/example/ExampleCdfs.re b/foretold/components/example/ExampleCdfs.re new file mode 100644 index 00000000..8b1ea360 --- /dev/null +++ b/foretold/components/example/ExampleCdfs.re @@ -0,0 +1,4016 @@ +module Example1 = { + let xs = [| + 2.97474297511, + 2.98327125899, + 2.99179954287, + 3.00032782675, + 3.00885611064, + 3.01738439452, + 3.0259126784, + 3.03444096228, + 3.04296924616, + 3.05149753005, + 3.06002581393, + 3.06855409781, + 3.07708238169, + 3.08561066558, + 3.09413894946, + 3.10266723334, + 3.11119551722, + 3.11972380111, + 3.12825208499, + 3.13678036887, + 3.14530865275, + 3.15383693664, + 3.16236522052, + 3.1708935044, + 3.17942178828, + 3.18795007216, + 3.19647835605, + 3.20500663993, + 3.21353492381, + 3.22206320769, + 3.23059149158, + 3.23911977546, + 3.24764805934, + 3.25617634322, + 3.26470462711, + 3.27323291099, + 3.28176119487, + 3.29028947875, + 3.29881776264, + 3.30734604652, + 3.3158743304, + 3.32440261428, + 3.33293089816, + 3.34145918205, + 3.34998746593, + 3.35851574981, + 3.36704403369, + 3.37557231758, + 3.38410060146, + 3.39262888534, + 3.40115716922, + 3.40968545311, + 3.41821373699, + 3.42674202087, + 3.43527030475, + 3.44379858863, + 3.45232687252, + 3.4608551564, + 3.46938344028, + 3.47791172416, + 3.48644000805, + 3.49496829193, + 3.50349657581, + 3.51202485969, + 3.52055314358, + 3.52908142746, + 3.53760971134, + 3.54613799522, + 3.55466627911, + 3.56319456299, + 3.57172284687, + 3.58025113075, + 3.58877941463, + 3.59730769852, + 3.6058359824, + 3.61436426628, + 3.62289255016, + 3.63142083405, + 3.63994911793, + 3.64847740181, + 3.65700568569, + 3.66553396958, + 3.67406225346, + 3.68259053734, + 3.69111882122, + 3.69964710511, + 3.70817538899, + 3.71670367287, + 3.72523195675, + 3.73376024063, + 3.74228852452, + 3.7508168084, + 3.75934509228, + 3.76787337616, + 3.77640166005, + 3.78492994393, + 3.79345822781, + 3.80198651169, + 3.81051479558, + 3.81904307946, + 3.82757136334, + 3.83609964722, + 3.84462793111, + 3.85315621499, + 3.86168449887, + 3.87021278275, + 3.87874106663, + 3.88726935052, + 3.8957976344, + 3.90432591828, + 3.91285420216, + 3.92138248605, + 3.92991076993, + 3.93843905381, + 3.94696733769, + 3.95549562158, + 3.96402390546, + 3.97255218934, + 3.98108047322, + 3.98960875711, + 3.99813704099, + 4.00666532487, + 4.01519360875, + 4.02372189263, + 4.03225017652, + 4.0407784604, + 4.04930674428, + 4.05783502816, + 4.06636331205, + 4.07489159593, + 4.08341987981, + 4.09194816369, + 4.10047644758, + 4.10900473146, + 4.11753301534, + 4.12606129922, + 4.1345895831, + 4.14311786699, + 4.15164615087, + 4.16017443475, + 4.16870271863, + 4.17723100252, + 4.1857592864, + 4.19428757028, + 4.20281585416, + 4.21134413805, + 4.21987242193, + 4.22840070581, + 4.23692898969, + 4.24545727358, + 4.25398555746, + 4.26251384134, + 4.27104212522, + 4.2795704091, + 4.28809869299, + 4.29662697687, + 4.30515526075, + 4.31368354463, + 4.32221182852, + 4.3307401124, + 4.33926839628, + 4.34779668016, + 4.35632496405, + 4.36485324793, + 4.37338153181, + 4.38190981569, + 4.39043809958, + 4.39896638346, + 4.40749466734, + 4.41602295122, + 4.4245512351, + 4.43307951899, + 4.44160780287, + 4.45013608675, + 4.45866437063, + 4.46719265452, + 4.4757209384, + 4.48424922228, + 4.49277750616, + 4.50130579005, + 4.50983407393, + 4.51836235781, + 4.52689064169, + 4.53541892558, + 4.54394720946, + 4.55247549334, + 4.56100377722, + 4.5695320611, + 4.57806034499, + 4.58658862887, + 4.59511691275, + 4.60364519663, + 4.61217348052, + 4.6207017644, + 4.62923004828, + 4.63775833216, + 4.64628661605, + 4.65481489993, + 4.66334318381, + 4.67187146769, + 4.68039975158, + 4.68892803546, + 4.69745631934, + 4.70598460322, + 4.7145128871, + 4.72304117099, + 4.73156945487, + 4.74009773875, + 4.74862602263, + 4.75715430652, + 4.7656825904, + 4.77421087428, + 4.78273915816, + 4.79126744205, + 4.79979572593, + 4.80832400981, + 4.81685229369, + 4.82538057758, + 4.83390886146, + 4.84243714534, + 4.85096542922, + 4.8594937131, + 4.86802199699, + 4.87655028087, + 4.88507856475, + 4.89360684863, + 4.90213513252, + 4.9106634164, + 4.91919170028, + 4.92771998416, + 4.93624826805, + 4.94477655193, + 4.95330483581, + 4.96183311969, + 4.97036140357, + 4.97888968746, + 4.98741797134, + 4.99594625522, + 5.0044745391, + 5.01300282299, + 5.02153110687, + 5.03005939075, + 5.03858767463, + 5.04711595852, + 5.0556442424, + 5.06417252628, + 5.07270081016, + 5.08122909405, + 5.08975737793, + 5.09828566181, + 5.10681394569, + 5.11534222957, + 5.12387051346, + 5.13239879734, + 5.14092708122, + 5.1494553651, + 5.15798364899, + 5.16651193287, + 5.17504021675, + 5.18356850063, + 5.19209678452, + 5.2006250684, + 5.20915335228, + 5.21768163616, + 5.22620992005, + 5.23473820393, + 5.24326648781, + 5.25179477169, + 5.26032305557, + 5.26885133946, + 5.27737962334, + 5.28590790722, + 5.2944361911, + 5.30296447499, + 5.31149275887, + 5.32002104275, + 5.32854932663, + 5.33707761052, + 5.3456058944, + 5.35413417828, + 5.36266246216, + 5.37119074605, + 5.37971902993, + 5.38824731381, + 5.39677559769, + 5.40530388157, + 5.41383216546, + 5.42236044934, + 5.43088873322, + 5.4394170171, + 5.44794530099, + 5.45647358487, + 5.46500186875, + 5.47353015263, + 5.48205843652, + 5.4905867204, + 5.49911500428, + 5.50764328816, + 5.51617157205, + 5.52469985593, + 5.53322813981, + 5.54175642369, + 5.55028470757, + 5.55881299146, + 5.56734127534, + 5.57586955922, + 5.5843978431, + 5.59292612699, + 5.60145441087, + 5.60998269475, + 5.61851097863, + 5.62703926252, + 5.6355675464, + 5.64409583028, + 5.65262411416, + 5.66115239804, + 5.66968068193, + 5.67820896581, + 5.68673724969, + 5.69526553357, + 5.70379381746, + 5.71232210134, + 5.72085038522, + 5.7293786691, + 5.73790695299, + 5.74643523687, + 5.75496352075, + 5.76349180463, + 5.77202008852, + 5.7805483724, + 5.78907665628, + 5.79760494016, + 5.80613322404, + 5.81466150793, + 5.82318979181, + 5.83171807569, + 5.84024635957, + 5.84877464346, + 5.85730292734, + 5.86583121122, + 5.8743594951, + 5.88288777899, + 5.89141606287, + 5.89994434675, + 5.90847263063, + 5.91700091452, + 5.9255291984, + 5.93405748228, + 5.94258576616, + 5.95111405004, + 5.95964233393, + 5.96817061781, + 5.97669890169, + 5.98522718557, + 5.99375546946, + 6.00228375334, + 6.01081203722, + 6.0193403211, + 6.02786860499, + 6.03639688887, + 6.04492517275, + 6.05345345663, + 6.06198174052, + 6.0705100244, + 6.07903830828, + 6.08756659216, + 6.09609487604, + 6.10462315993, + 6.11315144381, + 6.12167972769, + 6.13020801157, + 6.13873629546, + 6.14726457934, + 6.15579286322, + 6.1643211471, + 6.17284943099, + 6.18137771487, + 6.18990599875, + 6.19843428263, + 6.20696256652, + 6.2154908504, + 6.22401913428, + 6.23254741816, + 6.24107570204, + 6.24960398593, + 6.25813226981, + 6.26666055369, + 6.27518883757, + 6.28371712146, + 6.29224540534, + 6.30077368922, + 6.3093019731, + 6.31783025699, + 6.32635854087, + 6.33488682475, + 6.34341510863, + 6.35194339252, + 6.3604716764, + 6.36899996028, + 6.37752824416, + 6.38605652804, + 6.39458481193, + 6.40311309581, + 6.41164137969, + 6.42016966357, + 6.42869794746, + 6.43722623134, + 6.44575451522, + 6.4542827991, + 6.46281108299, + 6.47133936687, + 6.47986765075, + 6.48839593463, + 6.49692421851, + 6.5054525024, + 6.51398078628, + 6.52250907016, + 6.53103735404, + 6.53956563793, + 6.54809392181, + 6.55662220569, + 6.56515048957, + 6.57367877346, + 6.58220705734, + 6.59073534122, + 6.5992636251, + 6.60779190899, + 6.61632019287, + 6.62484847675, + 6.63337676063, + 6.64190504451, + 6.6504333284, + 6.65896161228, + 6.66748989616, + 6.67601818004, + 6.68454646393, + 6.69307474781, + 6.70160303169, + 6.71013131557, + 6.71865959946, + 6.72718788334, + 6.73571616722, + 6.7442444511, + 6.75277273499, + 6.76130101887, + 6.76982930275, + 6.77835758663, + 6.78688587051, + 6.7954141544, + 6.80394243828, + 6.81247072216, + 6.82099900604, + 6.82952728993, + 6.83805557381, + 6.84658385769, + 6.85511214157, + 6.86364042546, + 6.87216870934, + 6.88069699322, + 6.8892252771, + 6.89775356099, + 6.90628184487, + 6.91481012875, + 6.92333841263, + 6.93186669651, + 6.9403949804, + 6.94892326428, + 6.95745154816, + 6.96597983204, + 6.97450811593, + 6.98303639981, + 6.99156468369, + 7.00009296757, + 7.00862125146, + 7.01714953534, + 7.02567781922, + 7.0342061031, + 7.04273438699, + 7.05126267087, + 7.05979095475, + 7.06831923863, + 7.07684752251, + 7.0853758064, + 7.09390409028, + 7.10243237416, + 7.11096065804, + 7.11948894193, + 7.12801722581, + 7.13654550969, + 7.14507379357, + 7.15360207746, + 7.16213036134, + 7.17065864522, + 7.1791869291, + 7.18771521298, + 7.19624349687, + 7.20477178075, + 7.21330006463, + 7.22182834851, + 7.2303566324, + 7.23888491628, + 7.24741320016, + 7.25594148404, + 7.26446976793, + 7.27299805181, + 7.28152633569, + 7.29005461957, + 7.29858290346, + 7.30711118734, + 7.31563947122, + 7.3241677551, + 7.33269603898, + 7.34122432287, + 7.34975260675, + 7.35828089063, + 7.36680917451, + 7.3753374584, + 7.38386574228, + 7.39239402616, + 7.40092231004, + 7.40945059393, + 7.41797887781, + 7.42650716169, + 7.43503544557, + 7.44356372946, + 7.45209201334, + 7.46062029722, + 7.4691485811, + 7.47767686498, + 7.48620514887, + 7.49473343275, + 7.50326171663, + 7.51179000051, + 7.5203182844, + 7.52884656828, + 7.53737485216, + 7.54590313604, + 7.55443141993, + 7.56295970381, + 7.57148798769, + 7.58001627157, + 7.58854455546, + 7.59707283934, + 7.60560112322, + 7.6141294071, + 7.62265769098, + 7.63118597487, + 7.63971425875, + 7.64824254263, + 7.65677082651, + 7.6652991104, + 7.67382739428, + 7.68235567816, + 7.69088396204, + 7.69941224593, + 7.70794052981, + 7.71646881369, + 7.72499709757, + 7.73352538146, + 7.74205366534, + 7.75058194922, + 7.7591102331, + 7.76763851698, + 7.77616680087, + 7.78469508475, + 7.79322336863, + 7.80175165251, + 7.8102799364, + 7.81880822028, + 7.82733650416, + 7.83586478804, + 7.84439307193, + 7.85292135581, + 7.86144963969, + 7.86997792357, + 7.87850620745, + 7.88703449134, + 7.89556277522, + 7.9040910591, + 7.91261934298, + 7.92114762687, + 7.92967591075, + 7.93820419463, + 7.94673247851, + 7.9552607624, + 7.96378904628, + 7.97231733016, + 7.98084561404, + 7.98937389793, + 7.99790218181, + 8.00643046569, + 8.01495874957, + 8.02348703345, + 8.03201531734, + 8.04054360122, + 8.0490718851, + 8.05760016898, + 8.06612845287, + 8.07465673675, + 8.08318502063, + 8.09171330451, + 8.1002415884, + 8.10876987228, + 8.11729815616, + 8.12582644004, + 8.13435472393, + 8.14288300781, + 8.15141129169, + 8.15993957557, + 8.16846785945, + 8.17699614334, + 8.18552442722, + 8.1940527111, + 8.20258099498, + 8.21110927887, + 8.21963756275, + 8.22816584663, + 8.23669413051, + 8.2452224144, + 8.25375069828, + 8.26227898216, + 8.27080726604, + 8.27933554993, + 8.28786383381, + 8.29639211769, + 8.30492040157, + 8.31344868545, + 8.32197696934, + 8.33050525322, + 8.3390335371, + 8.34756182098, + 8.35609010487, + 8.36461838875, + 8.37314667263, + 8.38167495651, + 8.3902032404, + 8.39873152428, + 8.40725980816, + 8.41578809204, + 8.42431637593, + 8.43284465981, + 8.44137294369, + 8.44990122757, + 8.45842951145, + 8.46695779534, + 8.47548607922, + 8.4840143631, + 8.49254264698, + 8.50107093087, + 8.50959921475, + 8.51812749863, + 8.52665578251, + 8.5351840664, + 8.54371235028, + 8.55224063416, + 8.56076891804, + 8.56929720193, + 8.57782548581, + 8.58635376969, + 8.59488205357, + 8.60341033745, + 8.61193862134, + 8.62046690522, + 8.6289951891, + 8.63752347298, + 8.64605175687, + 8.65458004075, + 8.66310832463, + 8.67163660851, + 8.6801648924, + 8.68869317628, + 8.69722146016, + 8.70574974404, + 8.71427802792, + 8.72280631181, + 8.73133459569, + 8.73986287957, + 8.74839116345, + 8.75691944734, + 8.76544773122, + 8.7739760151, + 8.78250429898, + 8.79103258287, + 8.79956086675, + 8.80808915063, + 8.81661743451, + 8.8251457184, + 8.83367400228, + 8.84220228616, + 8.85073057004, + 8.85925885392, + 8.86778713781, + 8.87631542169, + 8.88484370557, + 8.89337198945, + 8.90190027334, + 8.91042855722, + 8.9189568411, + 8.92748512498, + 8.93601340887, + 8.94454169275, + 8.95306997663, + 8.96159826051, + 8.9701265444, + 8.97865482828, + 8.98718311216, + 8.99571139604, + 9.00423967992, + 9.01276796381, + 9.02129624769, + 9.02982453157, + 9.03835281545, + 9.04688109934, + 9.05540938322, + 9.0639376671, + 9.07246595098, + 9.08099423487, + 9.08952251875, + 9.09805080263, + 9.10657908651, + 9.1151073704, + 9.12363565428, + 9.13216393816, + 9.14069222204, + 9.14922050592, + 9.15774878981, + 9.16627707369, + 9.17480535757, + 9.18333364145, + 9.19186192534, + 9.20039020922, + 9.2089184931, + 9.21744677698, + 9.22597506087, + 9.23450334475, + 9.24303162863, + 9.25155991251, + 9.2600881964, + 9.26861648028, + 9.27714476416, + 9.28567304804, + 9.29420133192, + 9.30272961581, + 9.31125789969, + 9.31978618357, + 9.32831446745, + 9.33684275134, + 9.34537103522, + 9.3538993191, + 9.36242760298, + 9.37095588687, + 9.37948417075, + 9.38801245463, + 9.39654073851, + 9.40506902239, + 9.41359730628, + 9.42212559016, + 9.43065387404, + 9.43918215792, + 9.44771044181, + 9.45623872569, + 9.46476700957, + 9.47329529345, + 9.48182357734, + 9.49035186122, + 9.4988801451, + 9.50740842898, + 9.51593671287, + 9.52446499675, + 9.53299328063, + 9.54152156451, + 9.55004984839, + 9.55857813228, + 9.56710641616, + 9.57563470004, + 9.58416298392, + 9.59269126781, + 9.60121955169, + 9.60974783557, + 9.61827611945, + 9.62680440334, + 9.63533268722, + 9.6438609711, + 9.65238925498, + 9.66091753887, + 9.66944582275, + 9.67797410663, + 9.68650239051, + 9.69503067439, + 9.70355895828, + 9.71208724216, + 9.72061552604, + 9.72914380992, + 9.73767209381, + 9.74620037769, + 9.75472866157, + 9.76325694545, + 9.77178522934, + 9.78031351322, + 9.7888417971, + 9.79737008098, + 9.80589836487, + 9.81442664875, + 9.82295493263, + 9.83148321651, + 9.84001150039, + 9.84853978428, + 9.85706806816, + 9.86559635204, + 9.87412463592, + 9.88265291981, + 9.89118120369, + 9.89970948757, + 9.90823777145, + 9.91676605534, + 9.92529433922, + 9.9338226231, + 9.94235090698, + 9.95087919087, + 9.95940747475, + 9.96793575863, + 9.97646404251, + 9.98499232639, + 9.99352061028, + 10.0020488942, + 10.010577178, + 10.0191054619, + 10.0276337458, + 10.0361620297, + 10.0446903136, + 10.0532185975, + 10.0617468813, + 10.0702751652, + 10.0788034491, + 10.087331733, + 10.0958600169, + 10.1043883007, + 10.1129165846, + 10.1214448685, + 10.1299731524, + 10.1385014363, + 10.1470297202, + 10.155558004, + 10.1640862879, + 10.1726145718, + 10.1811428557, + 10.1896711396, + 10.1981994235, + 10.2067277073, + 10.2152559912, + 10.2237842751, + 10.232312559, + 10.2408408429, + 10.2493691267, + 10.2578974106, + 10.2664256945, + 10.2749539784, + 10.2834822623, + 10.2920105462, + 10.30053883, + 10.3090671139, + 10.3175953978, + 10.3261236817, + 10.3346519656, + 10.3431802495, + 10.3517085333, + 10.3602368172, + 10.3687651011, + 10.377293385, + 10.3858216689, + 10.3943499527, + 10.4028782366, + 10.4114065205, + 10.4199348044, + 10.4284630883, + 10.4369913722, + 10.445519656, + 10.4540479399, + 10.4625762238, + 10.4711045077, + 10.4796327916, + 10.4881610755, + 10.4966893593, + 10.5052176432, + 10.5137459271, + 10.522274211, + 10.5308024949, + 10.5393307787, + 10.5478590626, + 10.5563873465, + 10.5649156304, + 10.5734439143, + 10.5819721982, + 10.590500482, + 10.5990287659, + 10.6075570498, + 10.6160853337, + 10.6246136176, + 10.6331419015, + 10.6416701853, + 10.6501984692, + 10.6587267531, + 10.667255037, + 10.6757833209, + 10.6843116047, + 10.6928398886, + 10.7013681725, + 10.7098964564, + 10.7184247403, + 10.7269530242, + 10.735481308, + 10.7440095919, + 10.7525378758, + 10.7610661597, + 10.7695944436, + 10.7781227275, + 10.7866510113, + 10.7951792952, + 10.8037075791, + 10.812235863, + 10.8207641469, + 10.8292924307, + 10.8378207146, + 10.8463489985, + 10.8548772824, + 10.8634055663, + 10.8719338502, + 10.880462134, + 10.8889904179, + 10.8975187018, + 10.9060469857, + 10.9145752696, + 10.9231035535, + 10.9316318373, + 10.9401601212, + 10.9486884051, + 10.957216689, + 10.9657449729, + 10.9742732567, + 10.9828015406, + 10.9913298245, + 10.9998581084, + 11.0083863923, + 11.0169146762, + 11.02544296, + 11.0339712439, + 11.0424995278, + 11.0510278117, + 11.0595560956, + 11.0680843795, + 11.0766126633, + 11.0851409472, + 11.0936692311, + 11.102197515, + 11.1107257989, + 11.1192540827, + 11.1277823666, + 11.1363106505, + 11.1448389344, + 11.1533672183, + 11.1618955022, + 11.170423786, + 11.1789520699, + 11.1874803538, + 11.1960086377, + 11.2045369216, + 11.2130652055, + 11.2215934893, + 11.2301217732, + 11.2386500571, + 11.247178341, + 11.2557066249, + 11.2642349087, + 11.2727631926, + 11.2812914765, + 11.2898197604, + 11.2983480443, + 11.3068763282, + 11.315404612, + 11.3239328959, + 11.3324611798, + 11.3409894637, + 11.3495177476, + 11.3580460315, + 11.3665743153, + 11.3751025992, + 11.3836308831, + 11.392159167, + 11.4006874509, + 11.4092157347, + 11.4177440186, + 11.4262723025, + 11.4348005864, + 11.4433288703, + 11.4518571542, + 11.460385438, + 11.4689137219, + 11.4774420058, + 11.4859702897, + 11.4944985736, + |]; + let ys = [| + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0000012500000000000033, + 0.0000017500000000000044, + 0.0000023333333333333395, + 0.0000030000000000000077, + 0.00000375000000000001, + 0.000004583333333333345, + 0.000005500000000000014, + 0.0000065000000000000165, + 0.000007583333333333353, + 0.000008750000000000023, + 0.000010000000000000026, + 0.000011333333333333363, + 0.000012750000000000032, + 0.000014250000000000036, + 0.000015833333333333374, + 0.000017500000000000046, + 0.00001908333333333338, + 0.000020583333333333384, + 0.000022000000000000054, + 0.00002333333333333339, + 0.000024583333333333393, + 0.000025750000000000063, + 0.0000268333333333334, + 0.000027833333333333405, + 0.000028750000000000072, + 0.000029583333333333406, + 0.000030333333333333408, + 0.000031000000000000076, + 0.00003158333333333341, + 0.000032083333333333406, + 0.00003250000000000007, + 0.000032833333333333404, + 0.000033083333333333403, + 0.00003325000000000007, + 0.0000333333333333334, + 0.0000333333333333334, + 0.000033416666666666736, + 0.0000335833333333334, + 0.000033916666666666734, + 0.00003441666666666673, + 0.000035083333333333405, + 0.00003591666666666674, + 0.000036916666666666746, + 0.000038083333333333417, + 0.00003941666666666675, + 0.000040916666666666755, + 0.000042583333333333424, + 0.00004441666666666676, + 0.0000465000000000001, + 0.00004883333333333344, + 0.00005141666666666678, + 0.00005433333333333345, + 0.000057583333333333464, + 0.00006125000000000013, + 0.00006541666666666682, + 0.0000700833333333335, + 0.00007508333333333351, + 0.00008041666666666686, + 0.00008591666666666687, + 0.00009158333333333354, + 0.00009750000000000023, + 0.0001036666666666669, + 0.00011008333333333359, + 0.00011675000000000028, + 0.00012366666666666697, + 0.00013091666666666698, + 0.00013850000000000033, + 0.000146416666666667, + 0.00015450000000000037, + 0.00016291666666666706, + 0.00017183333333333373, + 0.00018108333333333377, + 0.00019066666666666714, + 0.00020041666666666716, + 0.00021016666666666718, + 0.00022000000000000052, + 0.0002301666666666672, + 0.00024066666666666724, + 0.0002516666666666673, + 0.0002632500000000007, + 0.00027541666666666735, + 0.0002884166666666674, + 0.00030225000000000076, + 0.0003170000000000008, + 0.0003326666666666675, + 0.0003492500000000009, + 0.00036675000000000097, + 0.00038516666666666766, + 0.00040483333333333436, + 0.00042550000000000107, + 0.0004470000000000011, + 0.00046950000000000117, + 0.0004930000000000012, + 0.0005177500000000013, + 0.0005440000000000013, + 0.000571666666666668, + 0.0006004166666666682, + 0.0006304166666666682, + 0.000661583333333335, + 0.000693833333333335, + 0.0007271666666666685, + 0.0007615000000000019, + 0.0007970000000000019, + 0.000833750000000002, + 0.0008720000000000021, + 0.0009116666666666689, + 0.000953166666666669, + 0.0009968333333333357, + 0.0010424166666666691, + 0.0010902500000000027, + 0.001140333333333336, + 0.0011926666666666696, + 0.0012475833333333364, + 0.0013050000000000032, + 0.0013647500000000033, + 0.0014270833333333368, + 0.001492583333333337, + 0.0015613333333333373, + 0.0016335833333333376, + 0.0017100000000000045, + 0.001790833333333338, + 0.0018759166666666716, + 0.001965666666666672, + 0.0020600000000000054, + 0.0021587500000000057, + 0.0022628333333333393, + 0.0023715833333333397, + 0.00248508333333334, + 0.0026038333333333404, + 0.002728166666666674, + 0.002858166666666674, + 0.0029938333333333414, + 0.0031350000000000084, + 0.0032821666666666754, + 0.0034359166666666757, + 0.003596333333333343, + 0.00376325000000001, + 0.003937083333333344, + 0.0041180000000000105, + 0.004304916666666677, + 0.004498083333333344, + 0.004697916666666678, + 0.004904083333333345, + 0.005117250000000012, + 0.005338166666666679, + 0.005565333333333347, + 0.005799833333333347, + 0.0060412500000000145, + 0.0062895000000000156, + 0.00654433333333335, + 0.00680658333333335, + 0.007077166666666684, + 0.007356916666666684, + 0.007645666666666685, + 0.007942833333333352, + 0.008249250000000019, + 0.00856575000000002, + 0.008892166666666687, + 0.009229000000000022, + 0.009577833333333357, + 0.009938000000000025, + 0.010309666666666693, + 0.010692750000000027, + 0.011087500000000028, + 0.011493333333333362, + 0.01191225000000003, + 0.012343333333333364, + 0.012787333333333366, + 0.013244583333333367, + 0.013715500000000035, + 0.01419933333333337, + 0.014695583333333371, + 0.015203583333333373, + 0.01572425000000004, + 0.016258833333333375, + 0.016806750000000044, + 0.01736733333333338, + 0.017941083333333382, + 0.018527833333333382, + 0.019126833333333385, + 0.019739583333333387, + 0.02036691666666672, + 0.021009500000000056, + 0.021667000000000058, + 0.022339916666666727, + 0.023027166666666727, + 0.023730833333333395, + 0.024450500000000062, + 0.025186500000000063, + 0.025939166666666732, + 0.026710166666666733, + 0.0275003333333334, + 0.02830975000000007, + 0.02913766666666674, + 0.029982750000000075, + 0.030844750000000077, + 0.03172441666666675, + 0.03262141666666675, + 0.03353583333333342, + 0.03446741666666675, + 0.03541633333333342, + 0.03638158333333342, + 0.03736341666666675, + 0.03836125000000009, + 0.03937475000000009, + 0.040405833333333425, + 0.04145291666666676, + 0.042517583333333435, + 0.043599750000000104, + 0.04469833333333344, + 0.04581208333333344, + 0.046940333333333445, + 0.04808416666666678, + 0.04924341666666678, + 0.05042058333333345, + 0.05161608333333345, + 0.05283016666666679, + 0.054062000000000124, + 0.055311916666666794, + 0.05658175000000013, + 0.05787008333333347, + 0.0591781666666668, + 0.060507083333333475, + 0.06185941666666681, + 0.06323700000000015, + 0.06463783333333349, + 0.0660625833333335, + 0.06751091666666684, + 0.06898350000000017, + 0.07048216666666685, + 0.07200825000000018, + 0.07356141666666685, + 0.07514175000000019, + 0.07675108333333353, + 0.07838716666666687, + 0.08005125000000021, + 0.08174250000000022, + 0.08346291666666689, + 0.08521233333333356, + 0.0869901666666669, + 0.0887979166666669, + 0.09063500000000024, + 0.09249950000000025, + 0.09438833333333359, + 0.09630091666666693, + 0.09823850000000027, + 0.10020158333333361, + 0.10219033333333362, + 0.10420275000000029, + 0.10623758333333362, + 0.1082937500000003, + 0.1103725000000003, + 0.11247358333333364, + 0.11459600000000031, + 0.11674091666666699, + 0.11890983333333366, + 0.12110350000000034, + 0.12332258333333368, + 0.12556875000000034, + 0.12784250000000036, + 0.1301443333333337, + 0.1324748333333337, + 0.13483508333333372, + 0.13722733333333373, + 0.1396515000000004, + 0.14210883333333374, + 0.1446002500000004, + 0.14712433333333375, + 0.14968208333333374, + 0.15227433333333376, + 0.1549014166666671, + 0.15756333333333378, + 0.16025900000000046, + 0.16298841666666714, + 0.1657523333333338, + 0.16854616666666714, + 0.17137050000000048, + 0.1742240000000005, + 0.17710383333333382, + 0.18000908333333382, + 0.1829372500000005, + 0.1858867500000005, + 0.18885850000000048, + 0.1918530833333338, + 0.19487041666666716, + 0.19790750000000049, + 0.20096183333333384, + 0.20403483333333386, + 0.20712775000000053, + 0.21024066666666721, + 0.21337416666666723, + 0.21652925000000056, + 0.21970775000000056, + 0.22290966666666723, + 0.2261330833333339, + 0.22937883333333392, + 0.2326460000000006, + 0.23593358333333395, + 0.2392426666666673, + 0.24257333333333397, + 0.24592725000000065, + 0.24930575000000066, + 0.25270616666666734, + 0.25612741666666733, + 0.259567083333334, + 0.263026083333334, + 0.2665055000000007, + 0.27000366666666736, + 0.27352116666666737, + 0.2770581666666674, + 0.28061308333333407, + 0.28418400000000077, + 0.2877698333333341, + 0.2913681666666674, + 0.2949802500000008, + 0.29860800000000076, + 0.3022498333333341, + 0.30590591666666744, + 0.3095769166666675, + 0.3132624166666675, + 0.3169601666666675, + 0.32066908333333416, + 0.32438950000000083, + 0.32811858333333416, + 0.3318561666666675, + 0.3356000833333342, + 0.3393483333333342, + 0.3431010833333342, + 0.3468550000000009, + 0.35060783333333423, + 0.35435983333333426, + 0.3581085833333343, + 0.3618528333333343, + 0.3655945833333343, + 0.3693325833333343, + 0.3730650833333343, + 0.37679433333333434, + 0.3805196666666677, + 0.384238750000001, + 0.3879509166666677, + 0.391658500000001, + 0.39535983333333435, + 0.3990546666666677, + 0.40274491666666773, + 0.40643441666666774, + 0.4101249166666677, + 0.41381766666666775, + 0.4175125833333344, + 0.42121025000000106, + 0.4249110833333344, + 0.42861466666666775, + 0.4323235000000011, + 0.4360380000000011, + 0.4397570000000011, + 0.4434792500000011, + 0.44720625000000114, + 0.4509346666666678, + 0.4546648333333345, + 0.45839766666666787, + 0.46213283333333455, + 0.4658686666666679, + 0.46960733333333454, + 0.47335208333333456, + 0.4771017500000012, + 0.4808524166666679, + 0.4846037500000012, + 0.4883549166666679, + 0.4921050833333346, + 0.49585541666666794, + 0.4996059166666679, + 0.503355666666668, + 0.507103166666668, + 0.5108490000000013, + 0.5145940000000013, + 0.5183388333333346, + 0.522080666666668, + 0.525819166666668, + 0.5295543333333346, + 0.5332844166666679, + 0.5370078333333346, + 0.5407238333333346, + 0.5444320000000012, + 0.5481266666666679, + 0.5518081666666679, + 0.5554762500000012, + 0.5591308333333346, + 0.5627725000000012, + 0.5664009166666679, + 0.5700127500000013, + 0.573607666666668, + 0.5771847500000014, + 0.580746166666668, + 0.5842905833333347, + 0.5878165833333348, + 0.5913237500000015, + 0.5948114166666681, + 0.5982831666666681, + 0.6017395833333348, + 0.6051825000000014, + 0.6086129166666681, + 0.612031416666668, + 0.6154353333333348, + 0.6188271666666681, + 0.6222060000000015, + 0.6255734166666681, + 0.6289285000000014, + 0.6322703333333348, + 0.6356006666666681, + 0.6389212500000014, + 0.6422321666666682, + 0.6455361666666681, + 0.6488298333333348, + 0.6521105000000015, + 0.6553778333333348, + 0.6586325000000014, + 0.6618762500000014, + 0.6651060000000014, + 0.6683181666666681, + 0.6715115833333348, + 0.6746861666666681, + 0.6778408333333348, + 0.6809770000000015, + 0.6840925833333349, + 0.6871887500000016, + 0.6902650000000016, + 0.6933218333333349, + 0.6963588333333348, + 0.6993745000000015, + 0.7023694166666681, + 0.7053427500000015, + 0.7082924166666681, + 0.7112195000000014, + 0.7141275833333348, + 0.7170169166666681, + 0.7198872500000014, + 0.7227399166666681, + 0.7255759166666682, + 0.7283977500000015, + 0.7312051666666681, + 0.7339986666666681, + 0.7367791666666681, + 0.7395480000000014, + 0.7423074166666681, + 0.7450578333333348, + 0.7477984166666681, + 0.7505290000000014, + 0.7532504166666681, + 0.7559629166666681, + 0.7586652500000015, + 0.7613570000000015, + 0.7640376666666682, + 0.7667066666666682, + 0.7693613333333349, + 0.7720020833333349, + 0.7746271666666682, + 0.7772333333333349, + 0.7798208333333349, + 0.7823892500000015, + 0.7849386666666681, + 0.7874702500000015, + 0.7899826666666682, + 0.7924730833333349, + 0.7949409166666682, + 0.7973827500000016, + 0.7997974166666683, + 0.8021850833333349, + 0.8045450000000016, + 0.8068743333333349, + 0.8091738333333349, + 0.8114439166666683, + 0.8136850833333349, + 0.8158970833333349, + 0.8180823333333349, + 0.8202419166666682, + 0.8223774166666682, + 0.8244907500000015, + 0.8265805000000015, + 0.8286467500000015, + 0.8306890000000016, + 0.8327043333333349, + 0.8346951666666683, + 0.836663083333335, + 0.838608583333335, + 0.840535083333335, + 0.8424446666666684, + 0.8443374166666684, + 0.8462140000000017, + 0.8480776666666684, + 0.8499292500000017, + 0.8517701666666684, + 0.8536015000000017, + 0.8554240000000016, + 0.8572355000000016, + 0.8590338333333349, + 0.8608187500000016, + 0.862589333333335, + 0.8643460000000016, + 0.8660885000000016, + 0.8678176666666683, + 0.8695352500000016, + 0.8712402500000016, + 0.8729343333333349, + 0.8746151666666683, + 0.8762820000000016, + 0.8779344166666683, + 0.8795720833333349, + 0.8811933333333349, + 0.8827981666666683, + 0.884383333333335, + 0.8859466666666683, + 0.887487583333335, + 0.8890070000000017, + 0.890506583333335, + 0.891985833333335, + 0.8934454166666683, + 0.8948855000000017, + 0.8963066666666684, + 0.897710083333335, + 0.8990967500000017, + 0.900466083333335, + 0.9018174166666684, + 0.903147583333335, + 0.904459083333335, + 0.9057509166666684, + 0.9070226666666684, + 0.9082748333333351, + 0.9095090833333351, + 0.9107239166666685, + 0.9119225833333352, + 0.9131067500000019, + 0.9142752500000019, + 0.9154277500000019, + 0.9165648333333352, + 0.9176889166666685, + 0.9187995833333352, + 0.9198970833333352, + 0.9209822500000019, + 0.9220545833333352, + 0.9231130833333352, + 0.9241583333333352, + 0.9251900000000018, + 0.9262095833333351, + 0.9272161666666685, + 0.9282102500000018, + 0.9291930833333352, + 0.9301634166666685, + 0.9311212500000018, + 0.9320676666666684, + 0.933001583333335, + 0.9339230000000017, + 0.9348343333333351, + 0.9357352500000018, + 0.9366250000000018, + 0.9375035000000018, + 0.9383707500000018, + 0.9392272500000018, + 0.9400714166666685, + 0.9409028333333351, + 0.9417214166666684, + 0.9425276666666684, + 0.9433233333333351, + 0.9441089166666684, + 0.944885583333335, + 0.9456545833333351, + 0.9464150000000018, + 0.9471680000000018, + 0.9479145833333351, + 0.9486545000000017, + 0.9493878333333351, + 0.9501142500000017, + 0.9508323333333351, + 0.9515425833333351, + 0.9522448333333351, + 0.9529385000000018, + 0.9536236666666684, + 0.9543004166666684, + 0.9549697500000017, + 0.9556322500000017, + 0.9562885000000018, + 0.9569385000000018, + 0.9575814166666685, + 0.9582172500000018, + 0.9588452500000018, + 0.9594650833333351, + 0.9600769166666685, + 0.9606809166666685, + 0.9612758333333352, + 0.9618621666666686, + 0.9624405833333353, + 0.9630126666666686, + 0.9635793333333353, + 0.9641403333333354, + 0.9646964166666687, + 0.965246750000002, + 0.9657911666666688, + 0.9663291666666688, + 0.9668614166666688, + 0.9673875833333355, + 0.9679079166666689, + 0.9684217500000022, + 0.9689295833333356, + 0.9694315000000022, + 0.9699276666666689, + 0.9704174166666688, + 0.9709015000000022, + 0.9713796666666689, + 0.9718523333333355, + 0.9723195000000022, + 0.9727807500000022, + 0.9732338333333356, + 0.9736779166666689, + 0.9741135833333355, + 0.9745400833333355, + 0.9749581666666689, + 0.9753685833333355, + 0.9757720833333355, + 0.9761677500000022, + 0.9765561666666689, + 0.9769363333333355, + 0.9773085000000021, + 0.9776730000000021, + 0.9780293333333354, + 0.9783773333333354, + 0.9787172500000021, + 0.9790485000000021, + 0.9793718333333354, + 0.9796876666666687, + 0.979996500000002, + 0.9802988333333353, + 0.9805963333333353, + 0.9808898333333352, + 0.9811786666666685, + 0.9814636666666685, + 0.9817455833333352, + 0.9820240833333351, + 0.9822991666666685, + 0.9825715000000018, + 0.9828406666666685, + 0.9831075833333351, + 0.9833724166666685, + 0.9836340833333352, + 0.9838936666666686, + 0.9841515833333352, + 0.9844086666666685, + 0.9846650833333351, + 0.9849202500000018, + 0.9851735000000018, + 0.9854244166666685, + 0.9856729166666685, + 0.9859183333333351, + 0.9861601666666685, + 0.9863990833333351, + 0.9866347500000018, + 0.9868667500000018, + 0.9870952500000018, + 0.9873197500000017, + 0.9875399166666684, + 0.9877560000000017, + 0.987967833333335, + 0.9881757500000017, + 0.9883807500000017, + 0.9885820000000017, + 0.9887794166666684, + 0.9889726666666684, + 0.9891617500000017, + 0.9893470000000018, + 0.989529333333335, + 0.9897086666666683, + 0.9898850000000017, + 0.9900584166666684, + 0.9902291666666684, + 0.9903966666666684, + 0.9905612500000017, + 0.9907229166666683, + 0.990881583333335, + 0.9910377500000016, + 0.9911919166666683, + 0.9913440000000017, + 0.9914945000000017, + 0.9916430000000017, + 0.9917894166666684, + 0.9919340000000018, + 0.9920771666666685, + 0.9922185833333351, + 0.9923587500000018, + 0.9924972500000019, + 0.9926336666666685, + 0.9927680000000019, + 0.9929003333333352, + 0.9930307500000018, + 0.9931592500000018, + 0.9932864166666685, + 0.9934120833333352, + 0.9935363333333352, + 0.9936590833333352, + 0.9937801666666686, + 0.9938990000000019, + 0.9940160000000019, + 0.9941306666666686, + 0.9942430833333352, + 0.9943527500000019, + 0.9944597500000019, + 0.9945637500000019, + 0.9946650833333351, + 0.9947631666666685, + 0.9948585000000019, + 0.9949509166666686, + 0.9950406666666686, + 0.9951275000000019, + 0.9952116666666686, + 0.9952935000000019, + 0.9953729166666686, + 0.9954498333333353, + 0.9955240833333353, + 0.9955960000000019, + 0.9956658333333352, + 0.9957339166666686, + 0.9957999166666686, + 0.9958641666666685, + 0.9959272500000019, + 0.9959897500000019, + 0.9960518333333352, + 0.996113250000002, + 0.996174000000002, + 0.9962348333333353, + 0.9962957500000019, + 0.9963570000000019, + 0.9964183333333353, + 0.9964800833333353, + 0.9965423333333353, + 0.9966048333333353, + 0.9966675000000019, + 0.996730500000002, + 0.996794000000002, + 0.9968580000000019, + 0.9969225000000019, + 0.9969876666666686, + 0.9970535833333353, + 0.9971200833333352, + 0.9971865000000019, + 0.9972524166666685, + 0.9973176666666685, + 0.9973825833333352, + 0.9974470000000019, + 0.9975100000000019, + 0.9975714166666686, + 0.9976311666666686, + 0.9976895833333352, + 0.9977464166666685, + 0.9978012500000019, + 0.9978541666666685, + 0.9979051666666685, + 0.9979540833333351, + 0.9980010833333351, + 0.9980459166666685, + 0.9980882500000019, + 0.9981279166666686, + 0.9981650000000019, + 0.9981995000000019, + 0.9982317500000019, + 0.9982620833333352, + 0.9982907500000019, + 0.9983178333333352, + 0.9983435000000019, + 0.998368250000002, + 0.998392250000002, + 0.9984155833333354, + 0.9984380833333354, + 0.998460000000002, + 0.9984815833333354, + 0.9985029166666687, + 0.9985240833333353, + 0.9985453333333353, + 0.9985664166666686, + 0.9985875833333352, + 0.9986090833333352, + 0.9986310000000018, + 0.9986532500000018, + 0.9986759166666684, + 0.9986990833333351, + 0.9987225833333351, + 0.998746083333335, + 0.9987694166666684, + 0.9987925833333351, + 0.9988155833333351, + 0.9988381666666685, + 0.9988602500000018, + 0.9988819166666685, + 0.9989030833333351, + 0.9989237500000018, + 0.9989436666666685, + 0.9989628333333351, + 0.9989812500000018, + 0.9989990833333352, + 0.9990162500000018, + 0.9990327500000018, + 0.9990485833333351, + 0.9990638333333351, + 0.9990785000000019, + 0.9990925000000018, + 0.9991059166666685, + 0.9991188333333352, + 0.9991315000000018, + 0.9991439166666685, + 0.9991560833333352, + 0.9991681666666685, + 0.9991802500000019, + 0.9991923333333352, + 0.9992043333333352, + 0.9992161666666686, + 0.9992280833333352, + 0.9992400833333352, + 0.9992519166666686, + 0.9992635833333352, + 0.9992750000000019, + 0.9992861666666686, + 0.9992971666666686, + 0.9993080000000019, + 0.9993186666666686, + 0.9993290833333353, + 0.9993392500000019, + 0.9993492500000019, + 0.9993587500000018, + 0.9993677500000019, + 0.9993762500000019, + 0.9993842500000019, + 0.9993917500000019, + 0.9993987500000019, + 0.9994053333333353, + 0.9994116666666686, + 0.9994176666666685, + 0.9994233333333352, + 0.9994289166666686, + 0.9994344166666685, + 0.9994399166666685, + 0.9994454166666685, + 0.9994507500000018, + 0.9994560833333351, + 0.9994615833333351, + 0.9994673333333352, + 0.9994733333333351, + 0.9994795833333351, + 0.9994862500000018, + 0.9994933333333351, + 0.9995008333333352, + 0.9995087500000018, + 0.9995171666666685, + 0.9995260833333351, + 0.9995355833333351, + 0.9995455000000019, + 0.9995557500000019, + 0.9995663333333352, + 0.9995770833333352, + 0.9995880833333352, + 0.9995993333333352, + 0.9996108333333352, + 0.9996226666666685, + 0.9996345000000019, + 0.9996460000000019, + 0.9996571666666686, + 0.9996680000000019, + 0.9996785000000019, + 0.9996886666666686, + 0.9996985000000019, + 0.9997080000000019, + 0.9997171666666685, + 0.9997258333333352, + 0.9997340000000019, + 0.9997415833333352, + 0.9997486666666685, + 0.9997553333333352, + 0.9997615833333352, + 0.9997675000000019, + 0.9997729166666686, + 0.9997778333333353, + 0.9997823333333352, + 0.9997864166666686, + 0.9997902500000019, + 0.9997940000000018, + 0.9997976666666685, + 0.9998012500000018, + 0.9998047500000018, + 0.9998081666666685, + 0.9998115000000019, + 0.9998147500000019, + 0.9998179166666685, + 0.9998210833333352, + 0.9998242500000019, + 0.9998273333333352, + 0.9998303333333352, + 0.9998332500000018, + 0.9998360833333351, + 0.9998388333333351, + 0.9998415833333352, + 0.9998443333333352, + 0.9998469166666686, + 0.9998494166666686, + 0.9998518333333353, + 0.9998541666666686, + 0.9998564166666686, + 0.9998585833333352, + 0.9998606666666685, + 0.9998626666666685, + 0.9998645833333352, + 0.9998664166666685, + 0.9998681666666686, + 0.9998698333333352, + 0.9998714166666686, + 0.9998730000000019, + 0.9998746666666686, + 0.9998764166666686, + 0.9998783333333353, + 0.9998804166666686, + 0.9998826666666686, + 0.9998850833333353, + 0.999887750000002, + 0.999890500000002, + 0.9998933333333353, + 0.9998962500000019, + 0.9998992500000019, + 0.9999024166666686, + 0.9999057500000019, + 0.999909250000002, + 0.9999129166666686, + 0.9999167500000019, + 0.9999207500000019, + 0.9999249166666686, + 0.999929250000002, + 0.999933750000002, + 0.9999382500000019, + 0.9999427500000019, + 0.9999470833333353, + 0.999951250000002, + 0.999955250000002, + 0.9999590833333353, + 0.9999627500000019, + 0.9999663333333352, + 0.9999698333333352, + 0.9999732500000019, + 0.9999765833333353, + 0.9999796666666686, + 0.9999825000000019, + 0.9999850833333352, + 0.9999874166666686, + 0.9999895000000019, + 0.9999913333333352, + 0.9999929166666686, + 0.9999942500000019, + 0.9999953333333352, + 0.9999962500000019, + 0.9999970000000019, + 0.9999976666666686, + 0.9999982500000019, + 0.9999987500000018, + 0.9999991666666684, + 0.9999995000000018, + 0.9999997500000019, + 0.9999999166666685, + 1.0000000000000018, + 1.0000000000000018, + 1.0000000000000018, + 1.0000000000000018, + 1.0000000000000018, + 1.0000000000000018, + 1.0000000000000018, + 1.0000000000000018, + 1.0000000000000018, + 1.0000000000000018, + 1.0000000000000018, + 1.0000000000000018, + 1.0000000000000018, + 1.0000000000000018, + 1.0000000000000018, + 1.0000000000000018, + 1.0000000000000018, + 1.0000000000000018, + 1.0000000000000018, + 1.0000000000000018, + 1.0000000000000018, + 1.0000000000000018, + 1.0000000000000018, + 1.0000000000000018, + 1.0000000000000018, + 1.0000000000000018, + 1.0000000000000018, + |]; + let cdf: Types.Dist.t = {xs, ys}; +}; + +module Example2 = { + let xs = [| + 2453132.22215, + 2469003.42279, + 2484874.62343, + 2500745.82407, + 2516617.02471, + 2532488.22536, + 2548359.426, + 2564230.62664, + 2580101.82728, + 2595973.02792, + 2611844.22856, + 2627715.42921, + 2643586.62985, + 2659457.83049, + 2675329.03113, + 2691200.23177, + 2707071.43242, + 2722942.63306, + 2738813.8337, + 2754685.03434, + 2770556.23498, + 2786427.43563, + 2802298.63627, + 2818169.83691, + 2834041.03755, + 2849912.23819, + 2865783.43883, + 2881654.63948, + 2897525.84012, + 2913397.04076, + 2929268.2414, + 2945139.44204, + 2961010.64269, + 2976881.84333, + 2992753.04397, + 3008624.24461, + 3024495.44525, + 3040366.6459, + 3056237.84654, + 3072109.04718, + 3087980.24782, + 3103851.44846, + 3119722.64911, + 3135593.84975, + 3151465.05039, + 3167336.25103, + 3183207.45167, + 3199078.65231, + 3214949.85296, + 3230821.0536, + 3246692.25424, + 3262563.45488, + 3278434.65552, + 3294305.85617, + 3310177.05681, + 3326048.25745, + 3341919.45809, + 3357790.65873, + 3373661.85938, + 3389533.06002, + 3405404.26066, + 3421275.4613, + 3437146.66194, + 3453017.86259, + 3468889.06323, + 3484760.26387, + 3500631.46451, + 3516502.66515, + 3532373.86579, + 3548245.06644, + 3564116.26708, + 3579987.46772, + 3595858.66836, + 3611729.869, + 3627601.06965, + 3643472.27029, + 3659343.47093, + 3675214.67157, + 3691085.87221, + 3706957.07286, + 3722828.2735, + 3738699.47414, + 3754570.67478, + 3770441.87542, + 3786313.07606, + 3802184.27671, + 3818055.47735, + 3833926.67799, + 3849797.87863, + 3865669.07927, + 3881540.27992, + 3897411.48056, + 3913282.6812, + 3929153.88184, + 3945025.08248, + 3960896.28313, + 3976767.48377, + 3992638.68441, + 4008509.88505, + 4024381.08569, + 4040252.28634, + 4056123.48698, + 4071994.68762, + 4087865.88826, + 4103737.0889, + 4119608.28954, + 4135479.49019, + 4151350.69083, + 4167221.89147, + 4183093.09211, + 4198964.29275, + 4214835.4934, + 4230706.69404, + 4246577.89468, + 4262449.09532, + 4278320.29596, + 4294191.49661, + 4310062.69725, + 4325933.89789, + 4341805.09853, + 4357676.29917, + 4373547.49982, + 4389418.70046, + 4405289.9011, + 4421161.10174, + 4437032.30238, + 4452903.50302, + 4468774.70367, + 4484645.90431, + 4500517.10495, + 4516388.30559, + 4532259.50623, + 4548130.70688, + 4564001.90752, + 4579873.10816, + 4595744.3088, + 4611615.50944, + 4627486.71009, + 4643357.91073, + 4659229.11137, + 4675100.31201, + 4690971.51265, + 4706842.71329, + 4722713.91394, + 4738585.11458, + 4754456.31522, + 4770327.51586, + 4786198.7165, + 4802069.91715, + 4817941.11779, + 4833812.31843, + 4849683.51907, + 4865554.71971, + 4881425.92036, + 4897297.121, + 4913168.32164, + 4929039.52228, + 4944910.72292, + 4960781.92357, + 4976653.12421, + 4992524.32485, + 5008395.52549, + 5024266.72613, + 5040137.92677, + 5056009.12742, + 5071880.32806, + 5087751.5287, + 5103622.72934, + 5119493.92998, + 5135365.13063, + 5151236.33127, + 5167107.53191, + 5182978.73255, + 5198849.93319, + 5214721.13384, + 5230592.33448, + 5246463.53512, + 5262334.73576, + 5278205.9364, + 5294077.13705, + 5309948.33769, + 5325819.53833, + 5341690.73897, + 5357561.93961, + 5373433.14025, + 5389304.3409, + 5405175.54154, + 5421046.74218, + 5436917.94282, + 5452789.14346, + 5468660.34411, + 5484531.54475, + 5500402.74539, + 5516273.94603, + 5532145.14667, + 5548016.34732, + 5563887.54796, + 5579758.7486, + 5595629.94924, + 5611501.14988, + 5627372.35053, + 5643243.55117, + 5659114.75181, + 5674985.95245, + 5690857.15309, + 5706728.35373, + 5722599.55438, + 5738470.75502, + 5754341.95566, + 5770213.1563, + 5786084.35694, + 5801955.55759, + 5817826.75823, + 5833697.95887, + 5849569.15951, + 5865440.36015, + 5881311.5608, + 5897182.76144, + 5913053.96208, + 5928925.16272, + 5944796.36336, + 5960667.564, + 5976538.76465, + 5992409.96529, + 6008281.16593, + 6024152.36657, + 6040023.56721, + 6055894.76786, + 6071765.9685, + 6087637.16914, + 6103508.36978, + 6119379.57042, + 6135250.77107, + 6151121.97171, + 6166993.17235, + 6182864.37299, + 6198735.57363, + 6214606.77428, + 6230477.97492, + 6246349.17556, + 6262220.3762, + 6278091.57684, + 6293962.77748, + 6309833.97813, + 6325705.17877, + 6341576.37941, + 6357447.58005, + 6373318.78069, + 6389189.98134, + 6405061.18198, + 6420932.38262, + 6436803.58326, + 6452674.7839, + 6468545.98455, + 6484417.18519, + 6500288.38583, + 6516159.58647, + 6532030.78711, + 6547901.98776, + 6563773.1884, + 6579644.38904, + 6595515.58968, + 6611386.79032, + 6627257.99096, + 6643129.19161, + 6659000.39225, + 6674871.59289, + 6690742.79353, + 6706613.99417, + 6722485.19482, + 6738356.39546, + 6754227.5961, + 6770098.79674, + 6785969.99738, + 6801841.19803, + 6817712.39867, + 6833583.59931, + 6849454.79995, + 6865326.00059, + 6881197.20123, + 6897068.40188, + 6912939.60252, + 6928810.80316, + 6944682.0038, + 6960553.20444, + 6976424.40509, + 6992295.60573, + 7008166.80637, + 7024038.00701, + 7039909.20765, + 7055780.4083, + 7071651.60894, + 7087522.80958, + 7103394.01022, + 7119265.21086, + 7135136.41151, + 7151007.61215, + 7166878.81279, + 7182750.01343, + 7198621.21407, + 7214492.41471, + 7230363.61536, + 7246234.816, + 7262106.01664, + 7277977.21728, + 7293848.41792, + 7309719.61857, + 7325590.81921, + 7341462.01985, + 7357333.22049, + 7373204.42113, + 7389075.62178, + 7404946.82242, + 7420818.02306, + 7436689.2237, + 7452560.42434, + 7468431.62499, + 7484302.82563, + 7500174.02627, + 7516045.22691, + 7531916.42755, + 7547787.62819, + 7563658.82884, + 7579530.02948, + 7595401.23012, + 7611272.43076, + 7627143.6314, + 7643014.83205, + 7658886.03269, + 7674757.23333, + 7690628.43397, + 7706499.63461, + 7722370.83526, + 7738242.0359, + 7754113.23654, + 7769984.43718, + 7785855.63782, + 7801726.83846, + 7817598.03911, + 7833469.23975, + 7849340.44039, + 7865211.64103, + 7881082.84167, + 7896954.04232, + 7912825.24296, + 7928696.4436, + 7944567.64424, + 7960438.84488, + 7976310.04553, + 7992181.24617, + 8008052.44681, + 8023923.64745, + 8039794.84809, + 8055666.04874, + 8071537.24938, + 8087408.45002, + 8103279.65066, + 8119150.8513, + 8135022.05194, + 8150893.25259, + 8166764.45323, + 8182635.65387, + 8198506.85451, + 8214378.05515, + 8230249.2558, + 8246120.45644, + 8261991.65708, + 8277862.85772, + 8293734.05836, + 8309605.25901, + 8325476.45965, + 8341347.66029, + 8357218.86093, + 8373090.06157, + 8388961.26222, + 8404832.46286, + 8420703.6635, + 8436574.86414, + 8452446.06478, + 8468317.26542, + 8484188.46607, + 8500059.66671, + 8515930.86735, + 8531802.06799, + 8547673.26863, + 8563544.46928, + 8579415.66992, + 8595286.87056, + 8611158.0712, + 8627029.27184, + 8642900.47249, + 8658771.67313, + 8674642.87377, + 8690514.07441, + 8706385.27505, + 8722256.4757, + 8738127.67634, + 8753998.87698, + 8769870.07762, + 8785741.27826, + 8801612.4789, + 8817483.67955, + 8833354.88019, + 8849226.08083, + 8865097.28147, + 8880968.48211, + 8896839.68276, + 8912710.8834, + 8928582.08404, + 8944453.28468, + 8960324.48532, + 8976195.68597, + 8992066.88661, + 9007938.08725, + 9023809.28789, + 9039680.48853, + 9055551.68917, + 9071422.88982, + 9087294.09046, + 9103165.2911, + 9119036.49174, + 9134907.69238, + 9150778.89303, + 9166650.09367, + 9182521.29431, + 9198392.49495, + 9214263.69559, + 9230134.89624, + 9246006.09688, + 9261877.29752, + 9277748.49816, + 9293619.6988, + 9309490.89945, + 9325362.10009, + 9341233.30073, + 9357104.50137, + 9372975.70201, + 9388846.90265, + 9404718.1033, + 9420589.30394, + 9436460.50458, + 9452331.70522, + 9468202.90586, + 9484074.10651, + 9499945.30715, + 9515816.50779, + 9531687.70843, + 9547558.90907, + 9563430.10972, + 9579301.31036, + 9595172.511, + 9611043.71164, + 9626914.91228, + 9642786.11293, + 9658657.31357, + 9674528.51421, + 9690399.71485, + 9706270.91549, + 9722142.11613, + 9738013.31678, + 9753884.51742, + 9769755.71806, + 9785626.9187, + 9801498.11934, + 9817369.31999, + 9833240.52063, + 9849111.72127, + 9864982.92191, + 9880854.12255, + 9896725.3232, + 9912596.52384, + 9928467.72448, + 9944338.92512, + 9960210.12576, + 9976081.3264, + 9991952.52705, + 10007823.7277, + 10023694.9283, + 10039566.129, + 10055437.3296, + 10071308.5303, + 10087179.7309, + 10103050.9315, + 10118922.1322, + 10134793.3328, + 10150664.5335, + 10166535.7341, + 10182406.9347, + 10198278.1354, + 10214149.336, + 10230020.5367, + 10245891.7373, + 10261762.938, + 10277634.1386, + 10293505.3392, + 10309376.5399, + 10325247.7405, + 10341118.9412, + 10356990.1418, + 10372861.3425, + 10388732.5431, + 10404603.7437, + 10420474.9444, + 10436346.145, + 10452217.3457, + 10468088.5463, + 10483959.7469, + 10499830.9476, + 10515702.1482, + 10531573.3489, + 10547444.5495, + 10563315.7502, + 10579186.9508, + 10595058.1514, + 10610929.3521, + 10626800.5527, + 10642671.7534, + 10658542.954, + 10674414.1546, + 10690285.3553, + 10706156.5559, + 10722027.7566, + 10737898.9572, + 10753770.1579, + 10769641.3585, + 10785512.5591, + 10801383.7598, + 10817254.9604, + 10833126.1611, + 10848997.3617, + 10864868.5624, + 10880739.763, + 10896610.9636, + 10912482.1643, + 10928353.3649, + 10944224.5656, + 10960095.7662, + 10975966.9668, + 10991838.1675, + 11007709.3681, + 11023580.5688, + 11039451.7694, + 11055322.9701, + 11071194.1707, + 11087065.3713, + 11102936.572, + 11118807.7726, + 11134678.9733, + 11150550.1739, + 11166421.3745, + 11182292.5752, + 11198163.7758, + 11214034.9765, + 11229906.1771, + 11245777.3778, + 11261648.5784, + 11277519.779, + 11293390.9797, + 11309262.1803, + 11325133.381, + 11341004.5816, + 11356875.7822, + 11372746.9829, + 11388618.1835, + 11404489.3842, + 11420360.5848, + 11436231.7855, + 11452102.9861, + 11467974.1867, + 11483845.3874, + 11499716.588, + 11515587.7887, + 11531458.9893, + 11547330.19, + 11563201.3906, + 11579072.5912, + 11594943.7919, + 11610814.9925, + 11626686.1932, + 11642557.3938, + 11658428.5944, + 11674299.7951, + 11690170.9957, + 11706042.1964, + 11721913.397, + 11737784.5977, + 11753655.7983, + 11769526.9989, + 11785398.1996, + 11801269.4002, + 11817140.6009, + 11833011.8015, + 11848883.0021, + 11864754.2028, + 11880625.4034, + 11896496.6041, + 11912367.8047, + 11928239.0054, + 11944110.206, + 11959981.4066, + 11975852.6073, + 11991723.8079, + 12007595.0086, + 12023466.2092, + 12039337.4099, + 12055208.6105, + 12071079.8111, + 12086951.0118, + 12102822.2124, + 12118693.4131, + 12134564.6137, + 12150435.8143, + 12166307.015, + 12182178.2156, + 12198049.4163, + 12213920.6169, + 12229791.8176, + 12245663.0182, + 12261534.2188, + 12277405.4195, + 12293276.6201, + 12309147.8208, + 12325019.0214, + 12340890.222, + 12356761.4227, + 12372632.6233, + 12388503.824, + 12404375.0246, + 12420246.2253, + 12436117.4259, + 12451988.6265, + 12467859.8272, + 12483731.0278, + 12499602.2285, + 12515473.4291, + 12531344.6298, + 12547215.8304, + 12563087.031, + 12578958.2317, + 12594829.4323, + 12610700.633, + 12626571.8336, + 12642443.0342, + 12658314.2349, + 12674185.4355, + 12690056.6362, + 12705927.8368, + 12721799.0375, + 12737670.2381, + 12753541.4387, + 12769412.6394, + 12785283.84, + 12801155.0407, + 12817026.2413, + 12832897.4419, + 12848768.6426, + 12864639.8432, + 12880511.0439, + 12896382.2445, + 12912253.4452, + 12928124.6458, + 12943995.8464, + 12959867.0471, + 12975738.2477, + 12991609.4484, + 13007480.649, + 13023351.8496, + 13039223.0503, + 13055094.2509, + 13070965.4516, + 13086836.6522, + 13102707.8529, + 13118579.0535, + 13134450.2541, + 13150321.4548, + 13166192.6554, + 13182063.8561, + 13197935.0567, + 13213806.2574, + 13229677.458, + 13245548.6586, + 13261419.8593, + 13277291.0599, + 13293162.2606, + 13309033.4612, + 13324904.6618, + 13340775.8625, + 13356647.0631, + 13372518.2638, + 13388389.4644, + 13404260.6651, + 13420131.8657, + 13436003.0663, + 13451874.267, + 13467745.4676, + 13483616.6683, + 13499487.8689, + 13515359.0695, + 13531230.2702, + 13547101.4708, + 13562972.6715, + 13578843.8721, + 13594715.0728, + 13610586.2734, + 13626457.474, + 13642328.6747, + 13658199.8753, + 13674071.076, + 13689942.2766, + 13705813.4773, + 13721684.6779, + 13737555.8785, + 13753427.0792, + 13769298.2798, + 13785169.4805, + 13801040.6811, + 13816911.8817, + 13832783.0824, + 13848654.283, + 13864525.4837, + 13880396.6843, + 13896267.885, + 13912139.0856, + 13928010.2862, + 13943881.4869, + 13959752.6875, + 13975623.8882, + 13991495.0888, + 14007366.2894, + 14023237.4901, + 14039108.6907, + 14054979.8914, + 14070851.092, + 14086722.2927, + 14102593.4933, + 14118464.6939, + 14134335.8946, + 14150207.0952, + 14166078.2959, + 14181949.4965, + 14197820.6971, + 14213691.8978, + 14229563.0984, + 14245434.2991, + 14261305.4997, + 14277176.7004, + 14293047.901, + 14308919.1016, + 14324790.3023, + 14340661.5029, + 14356532.7036, + 14372403.9042, + 14388275.1049, + 14404146.3055, + 14420017.5061, + 14435888.7068, + 14451759.9074, + 14467631.1081, + 14483502.3087, + 14499373.5093, + 14515244.71, + 14531115.9106, + 14546987.1113, + 14562858.3119, + 14578729.5126, + 14594600.7132, + 14610471.9138, + 14626343.1145, + 14642214.3151, + 14658085.5158, + 14673956.7164, + 14689827.917, + 14705699.1177, + 14721570.3183, + 14737441.519, + 14753312.7196, + 14769183.9203, + 14785055.1209, + 14800926.3215, + 14816797.5222, + 14832668.7228, + 14848539.9235, + 14864411.1241, + 14880282.3248, + 14896153.5254, + 14912024.726, + 14927895.9267, + 14943767.1273, + 14959638.328, + 14975509.5286, + 14991380.7292, + 15007251.9299, + 15023123.1305, + 15038994.3312, + 15054865.5318, + 15070736.7325, + 15086607.9331, + 15102479.1337, + 15118350.3344, + 15134221.535, + 15150092.7357, + 15165963.9363, + 15181835.1369, + 15197706.3376, + 15213577.5382, + 15229448.7389, + 15245319.9395, + 15261191.1402, + 15277062.3408, + 15292933.5414, + 15308804.7421, + 15324675.9427, + 15340547.1434, + 15356418.344, + 15372289.5447, + 15388160.7453, + 15404031.9459, + 15419903.1466, + 15435774.3472, + 15451645.5479, + 15467516.7485, + 15483387.9491, + 15499259.1498, + 15515130.3504, + 15531001.5511, + 15546872.7517, + 15562743.9524, + 15578615.153, + 15594486.3536, + 15610357.5543, + 15626228.7549, + 15642099.9556, + 15657971.1562, + 15673842.3568, + 15689713.5575, + 15705584.7581, + 15721455.9588, + 15737327.1594, + 15753198.3601, + 15769069.5607, + 15784940.7613, + 15800811.962, + 15816683.1626, + 15832554.3633, + 15848425.5639, + 15864296.7645, + 15880167.9652, + 15896039.1658, + 15911910.3665, + 15927781.5671, + 15943652.7678, + 15959523.9684, + 15975395.169, + 15991266.3697, + 16007137.5703, + 16023008.771, + 16038879.9716, + 16054751.1723, + 16070622.3729, + 16086493.5735, + 16102364.7742, + 16118235.9748, + 16134107.1755, + 16149978.3761, + 16165849.5767, + 16181720.7774, + 16197591.978, + 16213463.1787, + 16229334.3793, + 16245205.58, + 16261076.7806, + 16276947.9812, + 16292819.1819, + 16308690.3825, + 16324561.5832, + 16340432.7838, + 16356303.9844, + 16372175.1851, + 16388046.3857, + 16403917.5864, + 16419788.787, + 16435659.9877, + 16451531.1883, + 16467402.3889, + 16483273.5896, + 16499144.7902, + 16515015.9909, + 16530887.1915, + 16546758.3922, + 16562629.5928, + 16578500.7934, + 16594371.9941, + 16610243.1947, + 16626114.3954, + 16641985.596, + 16657856.7966, + 16673727.9973, + 16689599.1979, + 16705470.3986, + 16721341.5992, + 16737212.7999, + 16753084.0005, + 16768955.2011, + 16784826.4018, + 16800697.6024, + 16816568.8031, + 16832440.0037, + 16848311.2043, + 16864182.405, + 16880053.6056, + 16895924.8063, + 16911796.0069, + 16927667.2076, + 16943538.4082, + 16959409.6088, + 16975280.8095, + 16991152.0101, + 17007023.2108, + 17022894.4114, + 17038765.612, + 17054636.8127, + 17070508.0133, + 17086379.214, + 17102250.4146, + 17118121.6153, + 17133992.8159, + 17149864.0165, + 17165735.2172, + 17181606.4178, + 17197477.6185, + 17213348.8191, + 17229220.0198, + 17245091.2204, + 17260962.421, + 17276833.6217, + 17292704.8223, + 17308576.023, + 17324447.2236, + 17340318.4242, + 17356189.6249, + 17372060.8255, + 17387932.0262, + 17403803.2268, + 17419674.4275, + 17435545.6281, + 17451416.8287, + 17467288.0294, + 17483159.23, + 17499030.4307, + 17514901.6313, + 17530772.8319, + 17546644.0326, + 17562515.2332, + 17578386.4339, + 17594257.6345, + 17610128.8352, + 17626000.0358, + 17641871.2364, + 17657742.4371, + 17673613.6377, + 17689484.8384, + 17705356.039, + 17721227.2397, + 17737098.4403, + 17752969.6409, + 17768840.8416, + 17784712.0422, + 17800583.2429, + 17816454.4435, + 17832325.6441, + 17848196.8448, + 17864068.0454, + 17879939.2461, + 17895810.4467, + 17911681.6474, + 17927552.848, + 17943424.0486, + 17959295.2493, + 17975166.4499, + 17991037.6506, + 18006908.8512, + 18022780.0518, + 18038651.2525, + 18054522.4531, + 18070393.6538, + 18086264.8544, + 18102136.0551, + 18118007.2557, + 18133878.4563, + 18149749.657, + 18165620.8576, + 18181492.0583, + 18197363.2589, + 18213234.4595, + 18229105.6602, + 18244976.8608, + 18260848.0615, + 18276719.2621, + 18292590.4628, + 18308461.6634, + |]; + let ys = [| + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 8.333333333333334e-8, + 2.5000000000000004e-7, + 5.000000000000001e-7, + 9.166666666666667e-7, + 0.0000015, + 0.00000225, + 0.0000031666666666666667, + 0.00000425, + 0.000005583333333333333, + 0.000007166666666666666, + 0.000009, + 0.000011166666666666668, + 0.000013666666666666667, + 0.0000165, + 0.00001966666666666667, + 0.00002316666666666667, + 0.000027000000000000002, + 0.00003125, + 0.000036, + 0.00004125, + 0.00004683333333333333, + 0.000052833333333333335, + 0.000059250000000000004, + 0.00006591666666666667, + 0.000073, + 0.0000805, + 0.00008850000000000001, + 0.00009700000000000001, + 0.00010600000000000002, + 0.00011575000000000002, + 0.00012633333333333336, + 0.00013758333333333336, + 0.00014950000000000003, + 0.0001624166666666667, + 0.00017650000000000003, + 0.00019183333333333338, + 0.00020850000000000005, + 0.00022650000000000006, + 0.00024575000000000004, + 0.0002663333333333334, + 0.0002885, + 0.0003125, + 0.00033841666666666666, + 0.0003663333333333333, + 0.0003960833333333333, + 0.0004280833333333333, + 0.0004623333333333333, + 0.0004990833333333334, + 0.0005385, + 0.0005801666666666667, + 0.0006241666666666666, + 0.0006709166666666667, + 0.00072075, + 0.0007736666666666668, + 0.0008297500000000001, + 0.0008893333333333334, + 0.0009526666666666668, + 0.00102, + 0.0010913333333333335, + 0.0011667500000000003, + 0.0012467500000000002, + 0.0013315000000000002, + 0.0014215000000000002, + 0.0015173333333333336, + 0.0016192500000000002, + 0.001727416666666667, + 0.0018422500000000004, + 0.001963916666666667, + 0.002092583333333334, + 0.0022289166666666672, + 0.0023737500000000004, + 0.0025273333333333337, + 0.0026897500000000003, + 0.0028611666666666672, + 0.0030422500000000007, + 0.003233083333333334, + 0.003433833333333334, + 0.0036452500000000005, + 0.003868416666666667, + 0.004104833333333334, + 0.004354, + 0.004615833333333334, + 0.004890083333333334, + 0.005176750000000001, + 0.005476750000000001, + 0.005790083333333334, + 0.006116750000000001, + 0.006457000000000001, + 0.006810916666666667, + 0.0071790000000000005, + 0.007561000000000001, + 0.007957166666666668, + 0.008368083333333335, + 0.008794916666666668, + 0.009237666666666668, + 0.009696666666666668, + 0.010172750000000001, + 0.010664500000000002, + 0.011171500000000003, + 0.01169216666666667, + 0.01222741666666667, + 0.012777750000000003, + 0.013343666666666669, + 0.013926250000000001, + 0.014525583333333335, + 0.015141416666666668, + 0.0157745, + 0.01642591666666667, + 0.01709675, + 0.017787833333333333, + 0.018499583333333333, + 0.01923325, + 0.019989916666666666, + 0.020769, + 0.02157175, + 0.022398916666666668, + 0.02325041666666667, + 0.02412875, + 0.025034583333333336, + 0.025970000000000003, + 0.02693441666666667, + 0.027928666666666668, + 0.02895425, + 0.030010500000000002, + 0.031096416666666668, + 0.03221358333333334, + 0.033363000000000004, + 0.03454316666666667, + 0.03575375000000001, + 0.036992500000000005, + 0.03825925, + 0.039553000000000005, + 0.04087308333333334, + 0.04221833333333334, + 0.04358775, + 0.04498108333333334, + 0.04639741666666667, + 0.04783491666666667, + 0.049294666666666674, + 0.05077616666666667, + 0.052281, + 0.05380783333333333, + 0.05535525, + 0.05692283333333333, + 0.058513166666666665, + 0.06012683333333333, + 0.06176333333333333, + 0.06342525, + 0.06511391666666667, + 0.06683316666666668, + 0.06858383333333334, + 0.07036733333333334, + 0.07218366666666667, + 0.07403533333333334, + 0.07592166666666668, + 0.07784300000000001, + 0.07980191666666668, + 0.08180083333333335, + 0.08383925000000002, + 0.08591700000000002, + 0.08803416666666669, + 0.09019475000000002, + 0.09240000000000002, + 0.09465125000000002, + 0.09694825000000001, + 0.09928908333333335, + 0.10167350000000001, + 0.10409983333333335, + 0.10656591666666668, + 0.10907166666666668, + 0.11161700000000001, + 0.11420041666666668, + 0.11682208333333334, + 0.119483, + 0.12218583333333334, + 0.12493008333333334, + 0.1277155, + 0.13054058333333335, + 0.13340516666666669, + 0.13630858333333334, + 0.13925116666666668, + 0.1422285, + 0.14524075, + 0.14828875, + 0.1513705, + 0.154488, + 0.1576398333333333, + 0.16082616666666666, + 0.16404908333333332, + 0.16730383333333332, + 0.17059275, + 0.17391574999999998, + 0.17727191666666664, + 0.18065724999999996, + 0.1840683333333333, + 0.18750583333333332, + 0.19096966666666665, + 0.19445933333333332, + 0.1979735, + 0.20151466666666668, + 0.20508208333333333, + 0.208677, + 0.21229683333333332, + 0.21594091666666665, + 0.21961124999999998, + 0.22330574999999997, + 0.22702774999999997, + 0.23077749999999997, + 0.23455374999999998, + 0.23835949999999997, + 0.24218891666666664, + 0.24604099999999998, + 0.24991724999999998, + 0.25382, + 0.25775191666666664, + 0.2617113333333333, + 0.26569391666666664, + 0.26970041666666666, + 0.27373108333333335, + 0.27778058333333333, + 0.28184691666666667, + 0.28592958333333335, + 0.2900274166666667, + 0.2941389166666667, + 0.29826, + 0.3023915833333334, + 0.30653025000000006, + 0.31067500000000003, + 0.31482583333333336, + 0.3189839166666667, + 0.3231503333333334, + 0.32732808333333335, + 0.33151458333333333, + 0.33570875, + 0.33990875, + 0.34411766666666666, + 0.34833716666666664, + 0.35256516666666665, + 0.3568005833333333, + 0.36104691666666666, + 0.36530266666666666, + 0.36956866666666666, + 0.37385, + 0.3781460833333333, + 0.38245866666666667, + 0.38678525, + 0.3911255, + 0.39547808333333334, + 0.39984016666666666, + 0.40420591666666666, + 0.40857733333333335, + 0.4129506666666667, + 0.4173246666666667, + 0.4216984166666667, + 0.4260685, + 0.4304294166666667, + 0.43478158333333333, + 0.4391260833333333, + 0.44346549999999996, + 0.4477955833333333, + 0.45211824999999994, + 0.4564299166666666, + 0.46072474999999996, + 0.4650018333333333, + 0.4692614166666666, + 0.4735065833333333, + 0.47773741666666664, + 0.48195391666666665, + 0.48615691666666666, + 0.49035091666666664, + 0.4945325, + 0.4986994166666667, + 0.5028545833333333, + 0.50699625, + 0.51112775, + 0.5152511666666667, + 0.5193664166666667, + 0.5234734166666667, + 0.5275681666666667, + 0.5316550000000001, + 0.5357340000000002, + 0.5398057500000002, + 0.5438739166666668, + 0.5479384166666669, + 0.5519989166666669, + 0.5560506666666669, + 0.5600905833333336, + 0.5641193333333336, + 0.568136666666667, + 0.5721392500000003, + 0.576129416666667, + 0.5801105833333337, + 0.584080166666667, + 0.5880397500000003, + 0.5919887500000003, + 0.5959266666666669, + 0.5998500833333336, + 0.6037570833333336, + 0.6076490000000002, + 0.6115255833333335, + 0.6153849166666668, + 0.6192296666666668, + 0.6230549166666668, + 0.6268604166666668, + 0.6306440000000001, + 0.6344075833333335, + 0.6381557500000001, + 0.6418863333333334, + 0.6455996666666668, + 0.6492978333333335, + 0.6529792500000001, + 0.6566432500000001, + 0.6602899166666668, + 0.6639196666666668, + 0.6675304166666668, + 0.6711206666666668, + 0.6746910833333335, + 0.6782423333333335, + 0.6817734166666668, + 0.6852790000000001, + 0.6887614166666668, + 0.6922160833333335, + 0.6956450000000002, + 0.6990475000000002, + 0.7024229166666668, + 0.7057699166666668, + 0.7090868333333334, + 0.7123763333333335, + 0.7156383333333335, + 0.7188698333333335, + 0.7220708333333336, + 0.7252391666666669, + 0.7283739166666668, + 0.7314719166666669, + 0.7345358333333336, + 0.7375672500000002, + 0.7405709166666669, + 0.7435453333333335, + 0.7464895833333335, + 0.7494064166666669, + 0.7522931666666669, + 0.7551514166666669, + 0.7579828333333335, + 0.7607892500000002, + 0.7635733333333335, + 0.7663359166666669, + 0.7690760000000002, + 0.7717914166666668, + 0.7744814166666668, + 0.7771493333333335, + 0.7797958333333335, + 0.7824228333333335, + 0.7850325833333335, + 0.7876280833333335, + 0.7902055000000001, + 0.7927640000000001, + 0.7952992500000001, + 0.7978129166666668, + 0.8003073333333335, + 0.8027836666666668, + 0.8052420833333335, + 0.8076840833333335, + 0.8101099166666669, + 0.8125171666666668, + 0.8149048333333335, + 0.8172731666666668, + 0.8196217500000001, + 0.8219508333333335, + 0.8242605833333335, + 0.8265475833333336, + 0.8288114166666669, + 0.8310520833333336, + 0.8332685000000003, + 0.8354585000000003, + 0.837625166666667, + 0.839768916666667, + 0.8418907500000004, + 0.843990916666667, + 0.8460680833333337, + 0.8481213333333337, + 0.8501525833333338, + 0.8521615833333338, + 0.8541455833333338, + 0.8561071666666671, + 0.8580454166666671, + 0.8599623333333338, + 0.8618579166666671, + 0.8637331666666671, + 0.8655885000000004, + 0.8674278333333337, + 0.8692515833333337, + 0.8710590833333337, + 0.8728489166666671, + 0.8746244166666671, + 0.8763867500000004, + 0.8781358333333338, + 0.8798710000000004, + 0.8815903333333337, + 0.8832937500000003, + 0.8849805000000003, + 0.8866485833333336, + 0.8882988333333336, + 0.8899315833333336, + 0.8915450833333336, + 0.8931404166666669, + 0.8947151666666668, + 0.8962709166666668, + 0.8978074166666669, + 0.8993256666666669, + 0.9008225000000002, + 0.9022969166666669, + 0.9037493333333335, + 0.9051826666666668, + 0.9065940000000001, + 0.9079801666666668, + 0.9093416666666668, + 0.9106805000000001, + 0.9119991666666668, + 0.9132993333333335, + 0.9145823333333335, + 0.9158497500000001, + 0.9170982500000001, + 0.9183292500000001, + 0.9195440000000001, + 0.9207434166666668, + 0.9219279166666668, + 0.9230972500000002, + 0.9242509166666669, + 0.9253866666666669, + 0.9265056666666669, + 0.9276097500000002, + 0.9286995000000002, + 0.9297745000000003, + 0.9308370833333336, + 0.9318883333333335, + 0.9329284166666669, + 0.9339561666666669, + 0.9349711666666669, + 0.9359723333333336, + 0.9369595000000003, + 0.937932666666667, + 0.9388945000000003, + 0.9398453333333336, + 0.940784916666667, + 0.941711916666667, + 0.9426267500000003, + 0.943528416666667, + 0.944418666666667, + 0.9453003333333336, + 0.946174166666667, + 0.9470390000000003, + 0.9478943333333336, + 0.9487387500000003, + 0.9495710833333336, + 0.9503922500000003, + 0.9512018333333336, + 0.9520005833333336, + 0.9527876666666669, + 0.9535630833333336, + 0.9543270000000003, + 0.9550795833333336, + 0.9558210833333336, + 0.9565510000000003, + 0.9572700833333336, + 0.9579795833333337, + 0.9586792500000003, + 0.9593705833333337, + 0.9600520000000003, + 0.9607217500000004, + 0.9613793333333337, + 0.962025166666667, + 0.962658916666667, + 0.9632820000000004, + 0.9638938333333338, + 0.9644943333333338, + 0.9650836666666671, + 0.9656614166666672, + 0.9662284166666671, + 0.9667859166666671, + 0.9673334166666672, + 0.9678700833333338, + 0.9683953333333338, + 0.9689096666666671, + 0.9694130000000004, + 0.969905166666667, + 0.970387166666667, + 0.970858916666667, + 0.9713212500000004, + 0.9717745833333337, + 0.9722200000000003, + 0.9726582500000003, + 0.9730905833333336, + 0.973516166666667, + 0.9739370000000003, + 0.9743525000000003, + 0.9747630833333336, + 0.9751685833333336, + 0.9755691666666669, + 0.9759637500000002, + 0.9763535833333336, + 0.9767395000000002, + 0.9771219166666669, + 0.9775003333333336, + 0.9778742500000003, + 0.9782434166666669, + 0.9786075000000003, + 0.9789667500000003, + 0.979320916666667, + 0.9796707500000004, + 0.9800150000000004, + 0.9803535000000004, + 0.9806860833333337, + 0.9810135000000004, + 0.9813343333333338, + 0.9816495833333337, + 0.9819595833333338, + 0.9822651666666671, + 0.9825665833333338, + 0.9828647500000005, + 0.9831588333333339, + 0.9834485833333338, + 0.9837341666666671, + 0.9840164166666672, + 0.9842956666666671, + 0.9845716666666672, + 0.9848445833333338, + 0.9851135833333338, + 0.9853793333333337, + 0.9856415000000004, + 0.9859014166666671, + 0.9861582500000005, + 0.9864118333333338, + 0.9866619166666671, + 0.9869090000000005, + 0.9871526666666671, + 0.9873923333333338, + 0.987627916666667, + 0.9878586666666671, + 0.9880838333333338, + 0.9883035000000004, + 0.9885182500000005, + 0.9887282500000005, + 0.9889329166666672, + 0.9891317500000005, + 0.9893255833333339, + 0.9895138333333339, + 0.9896970000000005, + 0.9898750833333338, + 0.9900481666666672, + 0.9902155000000005, + 0.9903785000000005, + 0.9905371666666671, + 0.9906913333333338, + 0.9908414166666671, + 0.9909877500000005, + 0.9911308333333338, + 0.9912705833333338, + 0.9914075833333339, + 0.9915425833333339, + 0.9916760833333339, + 0.9918077500000005, + 0.9919373333333339, + 0.9920653333333339, + 0.9921923333333339, + 0.9923179166666672, + 0.9924428333333339, + 0.9925672500000006, + 0.9926905000000006, + 0.9928125833333339, + 0.9929338333333338, + 0.9930534166666671, + 0.9931713333333339, + 0.9932880833333338, + 0.9934031666666672, + 0.9935166666666672, + 0.9936286666666672, + 0.9937390833333338, + 0.9938475833333338, + 0.9939539166666671, + 0.9940581666666671, + 0.9941601666666672, + 0.9942599166666671, + 0.9943571666666672, + 0.9944522500000005, + 0.9945455000000005, + 0.9946368333333339, + 0.9947262500000005, + 0.9948141666666671, + 0.9949007500000004, + 0.9949857500000004, + 0.9950690833333338, + 0.9951510000000005, + 0.9952313333333338, + 0.9953106666666671, + 0.9953887500000005, + 0.9954652500000005, + 0.9955404166666671, + 0.9956145833333339, + 0.9956875000000005, + 0.9957587500000005, + 0.9958288333333338, + 0.9958978333333338, + 0.9959657500000005, + 0.9960325833333339, + 0.9960982500000005, + 0.9961626666666672, + 0.9962258333333338, + 0.9962878333333338, + 0.9963486666666671, + 0.9964085000000005, + 0.9964675833333339, + 0.9965257500000005, + 0.9965830833333339, + 0.9966391666666672, + 0.9966945000000005, + 0.9967492500000005, + 0.9968033333333338, + 0.9968569166666672, + 0.9969102500000006, + 0.9969634166666672, + 0.9970161666666673, + 0.9970686666666673, + 0.9971211666666673, + 0.997172833333334, + 0.9972234166666673, + 0.9972731666666672, + 0.9973218333333339, + 0.9973694166666672, + 0.9974160000000005, + 0.9974618333333338, + 0.9975070000000005, + 0.9975515000000005, + 0.9975953333333338, + 0.9976386666666671, + 0.9976809166666671, + 0.9977222500000005, + 0.9977625833333338, + 0.9978016666666671, + 0.9978397500000005, + 0.9978770000000005, + 0.9979135000000005, + 0.9979490833333338, + 0.997983666666667, + 0.9980178333333337, + 0.9980518333333337, + 0.9980855000000004, + 0.9981190833333338, + 0.9981525833333338, + 0.9981858333333338, + 0.9982185833333338, + 0.9982508333333338, + 0.9982828333333338, + 0.9983145833333338, + 0.9983460000000004, + 0.9983773333333338, + 0.9984083333333338, + 0.9984390000000004, + 0.9984695833333338, + 0.9984998333333338, + 0.9985298333333338, + 0.9985594166666671, + 0.9985886666666671, + 0.9986175000000005, + 0.9986459166666671, + 0.9986740833333339, + 0.9987019166666672, + 0.9987294166666671, + 0.9987565000000005, + 0.9987832500000005, + 0.9988097500000005, + 0.9988360833333338, + 0.9988619166666671, + 0.9988871666666671, + 0.9989118333333338, + 0.9989358333333338, + 0.9989594166666671, + 0.9989828333333338, + 0.9990056666666671, + 0.9990280000000005, + 0.9990496666666672, + 0.9990708333333338, + 0.9990916666666672, + 0.9991122500000005, + 0.9991325833333338, + 0.9991523333333338, + 0.9991715000000004, + 0.9991900833333338, + 0.9992081666666671, + 0.9992257500000005, + 0.9992428333333339, + 0.9992592500000005, + 0.9992751666666672, + 0.9992906666666672, + 0.9993058333333339, + 0.9993208333333339, + 0.9993355000000006, + 0.9993495833333339, + 0.9993633333333339, + 0.9993767500000006, + 0.9993899166666672, + 0.9994028333333339, + 0.9994151666666672, + 0.9994269166666672, + 0.9994380833333338, + 0.9994488333333338, + 0.9994593333333338, + 0.9994695833333338, + 0.9994795833333338, + 0.9994893333333338, + 0.9994987500000004, + 0.999507916666667, + 0.9995168333333337, + 0.9995255000000004, + 0.999533916666667, + 0.9995420000000004, + 0.9995498333333337, + 0.999557416666667, + 0.9995647500000003, + 0.9995717500000003, + 0.999578416666667, + 0.9995847500000004, + 0.9995910000000003, + 0.999597166666667, + 0.9996032500000003, + 0.9996092500000002, + 0.9996150833333336, + 0.9996207500000003, + 0.9996262500000003, + 0.9996315833333336, + 0.9996368333333335, + 0.9996420000000003, + 0.9996470833333336, + 0.9996520833333337, + 0.9996570000000004, + 0.9996617500000003, + 0.9996663333333337, + 0.9996708333333336, + 0.9996752500000002, + 0.9996796666666669, + 0.9996841666666668, + 0.9996887500000001, + 0.9996932500000001, + 0.9996976666666667, + 0.9997020000000001, + 0.9997062500000001, + 0.9997103333333335, + 0.9997143333333335, + 0.9997182500000001, + 0.9997220833333335, + 0.9997258333333334, + 0.9997295, + 0.9997330833333334, + 0.9997365833333335, + 0.9997400000000002, + 0.9997434166666669, + 0.9997468333333336, + 0.9997503333333336, + 0.999753916666667, + 0.9997575833333336, + 0.999761166666667, + 0.9997646666666671, + 0.9997681666666671, + 0.9997717500000005, + 0.9997754166666671, + 0.9997791666666671, + 0.9997830833333338, + 0.9997870000000004, + 0.9997909166666671, + 0.9997948333333337, + 0.9997987500000004, + 0.9998026666666671, + 0.9998065833333337, + 0.9998105000000004, + 0.999814416666667, + 0.9998183333333337, + 0.9998222500000004, + 0.9998260000000003, + 0.9998295833333337, + 0.9998330000000004, + 0.9998363333333338, + 0.9998395833333338, + 0.9998427500000004, + 0.9998456666666671, + 0.9998483333333338, + 0.9998507500000005, + 0.9998529166666671, + 0.9998549166666671, + 0.9998567500000005, + 0.9998584166666672, + 0.9998599166666672, + 0.9998612500000005, + 0.9998625000000004, + 0.9998636666666672, + 0.9998647500000005, + 0.9998657500000006, + 0.9998666666666672, + 0.9998675833333339, + 0.9998685000000006, + 0.9998694166666673, + 0.999870333333334, + 0.9998712500000007, + 0.9998721666666673, + 0.9998731666666674, + 0.9998743333333341, + 0.9998756666666674, + 0.9998771666666674, + 0.999878833333334, + 0.9998806666666674, + 0.9998826666666675, + 0.9998848333333341, + 0.9998871666666674, + 0.9998895000000008, + 0.9998918333333341, + 0.9998941666666674, + 0.9998965000000007, + 0.9998988333333341, + 0.9999011666666674, + 0.9999035000000007, + 0.999905833333334, + 0.9999081666666674, + 0.9999105000000007, + 0.999912833333334, + 0.9999151666666674, + 0.999917333333334, + 0.999919333333334, + 0.9999211666666674, + 0.9999228333333341, + 0.9999243333333341, + 0.9999256666666674, + 0.9999268333333341, + 0.9999278333333341, + 0.9999287500000008, + 0.9999295833333341, + 0.9999303333333341, + 0.9999310000000008, + 0.9999315833333341, + 0.999932083333334, + 0.9999325000000007, + 0.999932833333334, + 0.9999331666666674, + 0.9999335000000008, + 0.9999338333333342, + 0.9999341666666676, + 0.9999345833333342, + 0.9999350833333341, + 0.9999356666666674, + 0.9999363333333341, + 0.9999370833333341, + 0.9999379166666674, + 0.9999388333333341, + 0.9999398333333341, + 0.9999409166666675, + 0.9999420833333342, + 0.9999433333333342, + 0.9999446666666675, + 0.9999460833333341, + 0.9999475833333341, + 0.9999491666666674, + 0.9999508333333341, + 0.9999524166666675, + 0.9999539166666674, + 0.9999553333333341, + 0.9999566666666674, + 0.9999579166666673, + 0.999959083333334, + 0.9999601666666674, + 0.9999611666666675, + 0.9999620833333341, + 0.9999629166666675, + 0.9999636666666675, + 0.9999643333333341, + 0.9999649166666674, + 0.9999654166666674, + 0.999965833333334, + 0.9999661666666674, + 0.9999664166666674, + 0.9999665833333341, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999666666666674, + 0.9999667500000008, + 0.9999669166666675, + 0.9999671666666675, + 0.9999675000000009, + 0.9999679166666675, + 0.9999684166666675, + 0.9999690000000008, + 0.9999696666666674, + 0.9999704166666674, + 0.9999712500000008, + 0.9999721666666674, + 0.9999731666666675, + 0.9999742500000008, + 0.9999754166666676, + 0.9999766666666675, + 0.9999780000000008, + 0.9999794166666675, + 0.9999809166666674, + 0.9999825000000008, + 0.9999841666666675, + 0.9999857500000008, + 0.9999872500000008, + 0.9999886666666674, + 0.9999900000000007, + 0.9999912500000007, + 0.9999924166666674, + 0.9999935000000008, + 0.9999945000000008, + 0.9999954166666675, + 0.9999962500000008, + 0.9999970000000008, + 0.9999976666666675, + 0.9999982500000008, + 0.9999987500000007, + 0.9999991666666673, + 0.9999995000000007, + 0.9999997500000007, + 0.9999999166666674, + 1.0000000000000007, + 1.0000000000000007, + 1.0000000000000007, + 1.0000000000000007, + 1.0000000000000007, + 1.0000000000000007, + 1.0000000000000007, + 1.0000000000000007, + 1.0000000000000007, + 1.0000000000000007, + 1.0000000000000007, + 1.0000000000000007, + 1.0000000000000007, + 1.0000000000000007, + 1.0000000000000007, + 1.0000000000000007, + 1.0000000000000007, + 1.0000000000000007, + 1.0000000000000007, + 1.0000000000000007, + |]; + + let cdf: Types.Dist.t = {xs, ys}; +}; diff --git a/foretold/components/example/index.html b/foretold/components/example/index.html new file mode 100644 index 00000000..5d2507c7 --- /dev/null +++ b/foretold/components/example/index.html @@ -0,0 +1,17 @@ + + + + + + + + + Example + + + +
+ + + + \ No newline at end of file diff --git a/foretold/components/example/styles.css b/foretold/components/example/styles.css new file mode 100644 index 00000000..e69de29b diff --git a/foretold/components/logo.png b/foretold/components/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..4a612fcd984513c9337008bd84b71b95569d8988 GIT binary patch literal 17215 zcmYJ5b8seK_~m2Uwr$(S#MZ=~*tRCNZQHgdcHU%Sys@+M-QC~rAGhl1zE!txS66qR z{+!b{N<~Q;5e^Ry1Ox<8Rz~6n2ncA`znTXI>RDsUXoNKg#J>vkU&H&?KtR9>!2V|sXjcLF|I{En|8>^;m6wBnh=9mS zh^l*nUKv0KVy>*@Woo&f6%1T2i83_Or)dW>!LM_UiEw}gtHx4gRV>QLa}`oh1)#~B z4u&&usj!;DPKhx@{Y{{f3UNg#kxA~m?0dHO``yRyaD>+XYf zseUs=D&9!GzwY8&UQZFhIYe5Sug>)-^b-wwT`gKK6!J@vlK{wZ5=Ur+2C?R5pDTVa z5}{z1?%&_rV0tcS2-O-|dRA7r5jF9u%frC7emrV^Z?`N|yLstiD0>XwYs;QNWo+!q zhu&tk+d(t2>9|~W)TO%oIBK^0 z6Pmrms(H{9E+?(9PIq91BBaCPvRP~e8(s`WwBiaNi%NDss{ndJ&}mRBe%AU;49SYHEYb3 z%fbjLH+PM9IJhkYG?9u{cf>K^*-!{iS}s(;?tHTJ=i^?W#Jii0mDs8M+;^OF@*^%T@=qg5)oTcqT1cjSXa>iM_hbm-ueDyE|=5 zZN%#$^-<%TB}$<3CmT{UHx)PejD=(`>tkk@%)Sj{FK?oJ8bC6V=1fUX$9Jra%{)3o zgV6&PSC+6QVsMb~*|lYG801-2NBz9y@6$9RgV`qLx(Shr{Wje!V6Pba+h_p3STz_28o|owxi|T4=To5S?e> zON`kwXk4M%{nilFyX#e&FWm4DQUgO7Ri(@cPgfS{kQ7=~N@sFr=ZdjJ#bq)PR;6Y(Mc$nXX{T+dEm2Um{TMr2ff zN`UBg_-r0wlINxRs0H!~o@!p&aj2OEw^ib|s27kr2)EwN<009@@MM>zJX-(Bj?zT-x9VX2KVxxX1h&0*Bin3N7TZxD37Shl#o~x;8jt3G|jqom$7@c$x(ED-|3~7vO#Q zj8z${TBT|`HaKURK>zlVL}EnOUEDPDFGBI}cPtHsPgEd-#hT^3w)D(fHOW8#;)E(A>L6sNP<0x$)%%7N5zw09O?ioY2`e_0LPucN4T6^uw zrbhe|VsNnRW}v0(K}{t#+ijhMT|_=CT!$dM1Qr~9JV%;&sVl+9K?yP8L%06(a7*uQ zTJ59rK`TSRTTh3rY8iB7GwmSq|?k z%>?JDDu?97Bsjc9#8g49p$ckS?Vv<&EfOfC0AsX>*c?}+t2Z2-!WQxHuQ*o$7LeE0 zm~K+SIAWy5b%pf;TPmWmO*%sFTt}CqvLUuk`T9(b98dAJfV?Os7;1^umxSLXC>N-$ zA~G-m1Xqo+p^XP?i}9N^y!)`6B95K@s8UPGh*q%+eUR=4Spnh0QS;n+E-NQT$<-#< zUbmd+<6*HAF^)4d*l4M?>rJZ1<7RcXG8dW$&?kz_^*@GHZwgav7HWj@!H7A5P#p7m zDupf@o_yTl<7)-JLbW-pulfFXt}0NBH5p9{$j|S*tkJ5Ekg1qz0f6!2PiPrfkvlNU z(Pqkgwj|TH{fHojk@&ap|wNxO^#&bUKxph8PQWpkakE zzzA_?x9O|tUaN}3%L9-K@^A=fGfyBLA5t0(tKSQdN91S30aG`LDnq0~;XYSU?<)L; znWj-&EL{&O9HFHh22Uh-!mGT$yv5DJ`l>dk?gHEWiFtwm+M)(Ol&JR2R{X)97+(Jp z0e-X|Kcf7Tjm}c>HPcmIk1!VcfRYeSX!msq9qt5yc&^X0K-DMH+-xeL(zi$-27~_h zFqGUjKKspj#K3$aC^nK>)>Klod3>-`Yf((lnbl_NMcTp`OA&vKEizduzYSU=XWU>j ztEZD-JRw%iiqfGGin69AmB6s^su=~P@zykPVSQfq;KHCSq$MHh4iYvKUKK zMA0X#4K)rs`k!_kdNIaarHNW03x2y%H^m{s&TNTs_WVZm?Q_4;eRNdLmNF3Y+3f(w^_=`E+1M5D|7VCZPNyCoJ9k39)H zDy1s6+HJbgZsRHvG5Y${zBu2_#0vi*ekV`Rj}>()($W2U*ez-IAqE&{9Zdylv~n5N zT;?aeAc|dJ&s?0{Qt<+jgl~g=weWR39?%ux#IWC&;Cy`M^efG%g$g@1bG4MO&jTL# z)zPzozF(l$7plaY;+ly72bACE5Aw$dXR?;<%qQ(Ly2onz`GphcL-IR)&{bS$PMgJL zv(;4|@U4O&j5R|*&L(XMG?RBYG0x(o;&O8`3{S--Im-EJLR*FTv9|t6ywv&>mLqs} zKY|_>YR+y$b(-dX4$iGC&~MGNK99tyB2F5YpHCPzHUKss$z{0 zQGbVyd;Lf~=9qe>3OH29z#bh@#{e{4iT}iry=gb_r5;t2eOycNVHyjo1m@}7b?6Xo~8RDvS0G$5TOX%wDcwj3J4ziR4 z%vYVe(9?HRX>BD-7I=TJ(=vkC3@FA;tE>qZz+3ywouQoeTY^rUs+e4yN5_^o>2u&P5s;LT6FxN3aTrDb0Rc<~FXydLdES zidzo3`5Y1}yr*U!I+C3XG5-M%ot9CYV7YrNcM7ui4nxqM-*Visr=Hyl`{DA z0Al7tssa|dc|7@;fXkp|iL^H7wc7Fv=xtR6~%sFSs?R0d>tR^OxchV5n z);kOq&t^ts+Z7o9S8Fwg+L{l8=a*+uGcJbek+3KLPsBW1!Qa0$M41P~=TS>Z1(y=m~nYuC)KSmHA(;N03)P1^B}+J@KdZyCU~l zd`QCQwknQrkzx9RX zFoPYzS=(>yzh2xd2#antmlE8&1Aja+RMNe(E0Lu2Vnq>Wgf}d z3O@5N(G{O@U><3iJHQEfD9IP2d?FDt?3)?=j%drNF5cSS7&{^(@_DJ!;jnEgphS*! zkzYdt6cw-+!U$j@hw0q`7^K?vE?JS8U?iY3VKF{>yN2woHB-=qWL ztBqsu74^DX{nm9l=^U~%I`rQIKnMq07>{*Mpdzs*(8 z1Ud_ar@{{4hl%>$S36f#H9O-K)ZWl>xBx!QC&G<sd6S|lb*NQa9HJ#xEo=Fo5kKmZTPco04!B;t^$XfbN=DO~>Y;((}K@f)M~ z){{pkGdms^m%qE$nI&1^yPANOxCz+RTX8Rk2U^W| z;u#TN7RSjz9-Di$@5wlIp*KU{fEj~66*MFbHG!4uWR>TliT;cho5lt)>f9qW@|8KeTLzx$gFbOTtw@VANUWU*S{au z^FPIF5u>IM$P z1&t1^#rXxR-}Wj{ww5&(5UZ%Mxv}dt_^b#TtLlduB!AYNBlG!I9foXI4WQP;<=g^X zomD!oWux7VHPCfjRz-p5MGi(SBnQkqV3wNt#l%GaoO5F zrcirA+kCU#@UD5getn)F`%wmf$I^83EM3{zI%~_cbn68NdwlTpg5W9RoM5>4xl2>v za>v1MyfQ}vv?mSPXW91+89x2_FU zEs1&C7S>j52A%*RoLMqWtU#V(r;R`=v1u;%=^>Q$zy@Pt0213Edo#h*P3NWT13|^O zmb{dQB*?ulBh)RKprO3Mu~sic^jP;@Ki3l$kPS2&{Zq(eE`NGo>{&nUIujMvB0g+e z6D)*lSgSDNZ;Rd2J>beC`FZYewEifsmIk2+$pxQWB)Pw;(BW#!LksC&TE1P$rvNZf<%IRCg5H=+JC6U}6s)b?mhGb% z0Q0DHuC-|%%|tC6S)OyMur|A+ksH~Z7GC-Yo*s0@is$9p)5vOf)f&FPv%S>6gRR&Gv*_zHmrz2{*(4-@;29bi$#@S3)8*OuxdjCj z1CezU&O_uP+al8!t~mucE3Q_~q*1>Kli)J;M~Rs@0x|243lPDe#gK1*NhK#%>!M`u zH=;g!{AvoX9r@d2asvP_inQQ7_v%y_`5OG#Pekvx*wlPu%BbrNn|7Pi@DfuQp-iHi zxp^7~j01`v<~ClPAEaAP5AH2f>mL9tYVDwqOS8!3d&JaTb=z*LcoOp35(z}lQj(qA z4zn#hOkRKD$vYTy!-^^EXKB8Ngcn7H1d7I%l~BF}U%WTpyw;cr-KMK!n`!Mxg$|kU zov_Uqqs15xTp%Wch8aUcCQ(hvLqm-E+Dk|v#xS`Crx9;pF~jCjxujnLrR5~JQv^CM z3~+Ffh!TGc6><*0`SU+a3dVy_q0~FrGxgs2Q7e3L8-cx|O{9zTLFl@|?sK&l&Sr{K z{%9K0;jq*hRb{RdR!1|PUZd5Zi=DM%`E1Fd$B?mXUsWuRQ7!j+;#dRl&k4SP1rU zT~zLjoNrw|=#PA}HQiV@~V#`9ij?6ETH=KH= zHT7Xk0_UQ>s)$*mX0e@%Q8rL!vr{#vOj9cFY~L>pu^LJCic!iCAyu_Ne^hj8Xgz zqvt|!*+&;l=3a7$7b%uvEZO6E=985?i0E z0e(TzT03W+#^PS3-(qB(`oFXBF`jNV?m>knO#kfEE+{OAoc;XPALG3YQfvRYBi< zB-z)Vm~&VH4y1MAi1nxDiYFD>%o7BvDq9@CIm65xE6hhb`EAh238tdWAMC+RW^)U{ApCA|Ru)%~uR2FHkyia4?0oN^}$m!8g@zt}nv558u zM<=RcEpAFv31MCsLgoy2!&`8-|3T7XOw2I%O+}}-M~W;AM(^XdjB-H(D8MEMfmY@F z9|(DLlzP@y*&ixg*jN|C9@;xg44!a9%X}K%Y-qlkEuskfov4t+=Rng|Oo{H!UOn8^ zfwmgbY7G6hD&Bi^_J-G$n&u#UZTQjVan>a5Y0T5$cS#v9{qatX&;DrD`@L-J9}c_- zzk`Vw3P~1tcz#{-TQcI-nvG|+m_#9HUL?HIeqgabdL|keDXn;TM|9md@yGc*kg=)_ z9XD&VEamrmURs@Ze^M8l=;+Mc>XfiV6J9SH4e+MXx5|cfossRXcE!+N5F4c7i6M^UMleZ`PldmOBs!dh0H5j#M|duhXQ99EOowXx~qB@U_Q zA9q#NjA76Rebd~sSaUfadHE5(N$JVdCX9Ds-;6AG``-HWf)ry8D1VB*ET{6;4GHFd z)$N1N?OD~xEyd#b_w7GQawGt1_80m>*4=OJ#3psV^O){{q z8FyNE+k9*_e1(>{w8O}+jPOXWiV8O9Q}YqXU%{Ti#-{w} zf^j~J9}yG?pE>j7CRa7wc^O$txq~av*m`ZBAWNr&ghN?Bv^WXb{1dPVd_hFoYp7K& zYc+WEyk5nU;OZ0b0VmQ6x&2DvlAWK-<2*bDO;WBo6h%mFSgLuujB-RYn0%eEY&b&YU*`^5~q9j2I~ZWwlGovpg@J;y?Ct z!VI`;Ja=qvPoqwjjEshP)Pu;0M?CPlt)+rGyZU^AI}(3-WZQS?((DQ_{>~<9QFhhL zi4+dY@uY*Rh@=e-EPCp=!E|J-Hb$kQ*~rpwIir z@|Co)hgvHxCFt};SJuYLJm6r4cgs1O>Ro`@KN4_E3TqIw7-*f1L+gYgFIQui!CNz* zZ3?%ymCaf-O|D$?Lydf8P6~(!+KOcOJovU%{no)9pK8X;Ms_ zVULY&>3VpPCW1teg)s$LKKi(5Krh3X6fVXoH56nA+`@n&v^UOP=M5A+!aeG6bg!E& z%^+Zl0YA*xTFSg8$Z?DQ7{u%+;T=*MS4faW7It{~89B|mwq#j@IU zkB8x~cZA{~QucZ+7#@jo*eyg+ zt|eC13SuR$sVldl*Pe=p{B#6Ho?lfXo{<|P)LmsMtcvaq&c*RX<(r8SQQCdK5QVAn3 zWNYk;Y1u47QOUO^@#}9x;@dDG#?5&O%Ni#*`Yj4Y>}%Z!Y__16YghN#0m|Gga@ol}>WnGo%{pdnPy5QhFE&?~rn z-|Ta4wPodojfjx|tKQgA$ngd5z%iVd;ZNJR^vP%_qX_R6{R0?B5_mJ7vZZMlw&q1I zI61nJ`kVu1LO7RsN5LW3&UMHN8Z>D2ir{!e3p~49(h+?Ne#V-2iGbuO2{CzY9&xA` z3=uCKp0a~CR@P*cA_Fyy2?B9gb+79z902P{MYQPeZ)YTULk9Rk^r7=@kiS5zVCb(O zx7!ZXX>ompwx}?Kn%gFL_mD2sE13a_K`YTSq<-%8Go)EiF|C{)ZSB@CRWD(`bXL3;hEwr9U%;^c;bJQ?0(t~FDOaY9m#PX=9C$uDi zK1|+=7uP%{S=U-?n{$c>br*g=K0t{Sgw!De^~hvWBlaJhWePHsu!;L+fEI41CSSy~ z5^cNGqsq$n96uHF)^uN|K=)-JVSE&goMT^Z!wNdYsK!yq&gzUihK6tz90`>tP_etu z7Q}y9i^AZcgEs7+!sU_2f&};TluP5`;SyIg7QVp@+uXR>+AuVK0`E`Sonf+{)`Vq) zSq-Kzgw0NnpgA$Ec5XC3ADzXW)GX*5EBM(7iNDdp@{zJ3)GSd9z#b&8RjvQC6XVaZ z9n3A^KfmN%Z5Q7`{u$x3TA~X!>DB&SK-toid}8H*{{jfcAwzUEvb*@9^H8?&Jr?rf zD0xjJ3foQB7|m%v05S*Y!62ZC!P2n7+1&i_2f_Kt^dHP0Kh#KjP?!#=4c~HK2#7ff zB9T3rg?M&4W;~zq?Yl9FsGNsdM~?C?JgE);Psop@`NSNeL7RN6Ik5K`yn)--z(Wl#n)fP(0mybDH2OO_ zbwMHG=obe{QZjXFiOV2hU6Hygx4Sv8ysF$Fpu2P9HNlaHI1ku-)%pj^7myim8MTkb z7(A;c)8fY_Y;9uW0PGa_5B9lfiNrnBFeAaCY=w9lD80v_6p1KeS}2m9q!Jhc5wMVP zy1xxcGyWOwaP4>jm$&?g)hu+7H??8&`9k|4$O|_$-Gjh)8YHT|-)Kv1?{DoUsK}r= zb#+?yTV1u$$Zg^%t}Q(YWP>>xZm|yf6uC=d@v#Y|dYj_XN_+e5ey29PEwGW5x-&GPIcfSD&jmJRz(-8QyPFa_XEzLIgJ$ zyYG%A#t;m~==CAsRnV=(8HH(dS~9TB31mSCM*5lL6CT z7y16ka6xAP%yr&_>j`I?hE8`(dQE$qpn zXFs*Kj~5B!ro1PmTaPu4(KPcf4x5jsSssXQD~)j@)~hVGXtVwdp52(yui<{pF0c`B zBOnm+Hac#%Y0Be3G42_>9H}>g7S^3rC>xshD4N8~>+4rv!=gxn{2*mg(mQNV4ChRJ%$Ct|XdonTGx>b+HiuaM*qwwlA3QqSXgDAcYMD_?St({)lo!$OcIL z0iIdKt|168+=&2TZ_!AeCwg^ zk%W3}uD6_-<2*@PyL0ISTKZrwNB30!52Abtr-Ou-B@|N&Ly7NE;=Gk9*bpHcC$Sy; zSwL{h?L9&;fZqwD){!*&u_m6MXGSdKKj(B}Aw(p!Zle{z7!S(Loh@P4dp`5hr+nUp z@MppG@9>E{$^RXGnjTb1S~MWX&(q|_r%btja3gUYW-=xDH=>2c!}gsXOEVi0deSc? zi0PB3MaPTjytButO(nm-Oy|v#3553Wl;fvl8FcXN{`A||E$kNa4lDZ*N4Q7-GyVXm z9@w@}Nc9w!iP9%`{?#6#{Y)&!RAk-h86`KsA%t{}6^z5p|NX56hs8;!$_5J4CQ21l!GcL1Jpxzhue-6GY(-fJ@TsE(#rQluwc4lW&#-ezxgj__ z^}-hCz8jiM<)%O( zc4IK=qiV;-Dv)5l<4q)_88USG;t#yEf4;X}J&Pq8DhJTmr7&f%9@o3dhn)O%7@Ng; zUL;=RZ}lraMDj4EpiSbse(eRN1Hh1@c`5XQTn{ZCkG`WjUt+ZMBb|TR>q+~}W*hd^ zibmJHt4%A947(=h)|#ofELhU&v6U9N*xO}qV{mcJ78IeM3<7I%aaIQD?Uw6yZ)@+r z;viKUqY(CcCjUczca%;G=^#=>;RJrZn3)=w1`^1ApK;NXm6i)T62KNhra}KGLj+@{ z%6}*cvr9UGiCN!v%tHhftLQT?6p>L4<{4i=*B2fMIjXpEG5ECbo|xXlunXM803$cQ z{@kP87M?PS9(RnXCgV<~x18x+ps}n$u0C_Xtmax9DXsc)WF5(vVKa(WA^!Xp`2NgM%i^CJ&@fG^Sy@&H?D29Yvq}D-W7N|D%#_xmy1LUG5<#edT|YU zOs#iIa}0~@QU@U+0^bv7!3d% zE7?95i(Ht5KG|~hE9daD)9KwGWe#6|6diaUhz0%V`;*tpndVlZBDK1}(8+iA8Zm4c z+$G1}nM&4r+0J=hrWeydk>d+}$8?P4 z-4J`rGW$JJN=uxrpPPQ%so%jZbxY5xv*>a!{Ie9urQpwr72mio35d1h=PZ z=|MjY>ob~e<-2)_pZ5Jc+&?Z2JQvCH3zV5df7V~cBONLnzvUx@4ME8Y0 zSP$85i|ITxWN1<|9G{eu|9|0ArZ2pQiPd7$WCI24Ae%2q!%4_g)8#?A`drVF#D(}| z)`G4lZVzx8z}$*^K5D>LX#f#<#zlL5^p%vj?(cZ%1zY(uE0-|9mc_+;n!GUb6SI>a z46!0%cD%HUfC65;M83iZpaWv=8YcxwfAns0!;ie48AgnYu|{pu!Qz<{c+`-Fq_qV(BMP&Lvx^?+PQPHg0>3Q9kx2e$?92aThy@)(>3bs0OWo2(=a z23Z4-mT`7&e`Q$POj-*Wsfs6=>?!`GZX-~}b7^;yeE9fkTW;V_Yxg#imP(*91|{`v zST32z+NF}fZk1a$vys<+U9Lk2Dh3y_?GW02+J(K(A+d?Ua3&U-bCd^vH>XKU++0>P zG91*MU4Bx$SM7M(5-Jx;yu(+&c?jM}mC*byG;k8a=N@<$H{gNC|8y{sm4yfngi;Ys zQRIv_@}ncZdu)-Rl2Qz8M*F*!k>^`sU-FrIO+K{wUxL9{<0{V~yR4%O3p^|P=#3!x z_U*I%Phc6lRoa1GFBUd3l6ZE&IH~=x@+2Z-2>{$o8_+G*{;-=W+~ZjGC6gDVoe{vZ8buFeHSR^y@;aYaOR2M&HrOL&c7sbi!zx z?Yx(|1XjrP2wApjcQcaW+F_Y{O*@WGYMRXJ2b0ES-k49k@oB2Vi2?ERO*1l+E9m@J z6_8e@BmIY$6m#?9GPkzc-sb{;DRr%Jp>z}IxGY!v!w+!gCjvf;p&p6tFF~umetOjR zKJjAenk+y0#6F`#;2`Sy!!K$k;eNfc<@zKFfdwY7hvi*&icqbSRF9_9@L%Z5sSTq8 zv!iOjs0f*g^%5WkAto8o<098yJ+7xaU)-5}``fcmoM&Hr#M-R326neWOIL|nzanv7 zQH*m*Y@U|XP3^AAdRs&HhU36_7Vn#r+98sF_l!ngpM-iGNKH9Fs@$_AL{HH~--`dII$)c2LLzI=5M=cgV zHYlataW)HmUp5nZnFux>)Vqe3hNV`*r{&o>m(GIWJQt_wo$`j>K(U7Tryh9DG?u{R zc38Ad4<73`-twycz#2GYF1CmXHce}HTdr7|js3BPPKVi^5yn~ihClZHVI~n%wG&B% zmLlFji_Z%5?Kz0JXWc{{#Ly||>LV#SGux}kXre-=TtzS%T+_VBjVxeEbb7Gu$;`T8 zEqK};kq+;gw=3{GF`@h0qyX3PkQJ3~O7~^x`{2jsa&Pw7`?4M2KQT(ZoqgTK-*a&b ziJ_M${B!5??WPdIaUP?t^L!>hd`#2ToSaHOj?D)oTYmE$0QYe527g6%HGbLr{M>Tb zI2yzO!4*_wCLKeb(&7w7a$fb)U*(M`;~fKDT2Y};NuSy1OX48hDK5Z_1W8%OgsK~V zor6l~MuZtz4YIPBt)GwX=@Ci|)V-Yj-F6kC4wMx`w2T+Z5co#FvF;4&tW!sPCBgS{`yl{^SYR+g=CV#I072R><`KmYUaCpnp<)zMvzB^bCFg=z+Y)^f7EVIW#oO^4!`BzY( zKj&Dhf@Xf41e36br7g~pJ8sdB=$Hd}$Q=Uk~CN%JnPBHY?%&1{EG!#A1T)bN>_5N?_ew*0#dT=vb0 zV{^w~I(ZQMs=mt*9DQXdu&8rBjY>Uo_bLjr*=}|u`PnX|0B0nbq+xJS%^g%NRg5(n zkyh56%)=@gH4Q}EIs8e;c)gqO7`5To`XrZ-p+JwTV_VD9%l$dP%wqOu3A#ODrFqYi zyQoBG@e+nP&0j;_V?3ie$@E?oy$x1pPbQke8$<2~{+Lfhtc^B~<#n}m99I8OM>6fj z)3=Bd0<2fQvZS26pn4V_#&&wtZww>EvUeN&loLU1@cp{lSSag(Rnzz1u@YHr;2ta~ zOj(?-!X(kptio5L-h6=J0P=nbyT!eo8lbkCV@=0N_AecBodxw6jLS zu*5d$zONBaSC(MJ!_o>!yb?|T4L^;Fd`0t^ifhPNtnfy>Eiu&bVp#3C=n?v#kcp(U z;;O9kb!eLP8S)bi9Z8JfI4FlO3c z6}>(a?n$Yy$93T%o-7JYX`QV0L8b>D93pp=yyj(*djlv#gKPN%d@c0qi4y)K$NOKV zN7gv$w!rN`W5#lcj`!~-i-S!0Q6v_BiP%`e84}z6raRy0KOJErWu)A3NJ$35z3JbPCQM zRZ%y!&#pZ~)YO*pmCZS5*XJ~^vi?vWA}^Ba+lR@7 zReChG)QRVyBQFrDyGIYPU#UDabf!i?Q(`Tr_(dCOf04DF=3Npfr2_}c*ouKEM4w80 z0z1@J+89i8rE84EA!$5!7UX~XoUcnGx)94jIN5tB8edb)u;#I#8*nd;xkCE53%ScA z>SunB_fOU?;#zSm%s~13@!_eD&lfT@`)8jGp~uI$C2u$D)Ba3t_J5_yS4#^}aUx`0 z;bshjA=)Jh>Dj%EkQWvze>U=SB9MyBjQzZE)egN0w_cxKKEQ|fCt1;H6S#*o;$ZVz zUNqq{ChDslJ-ZFPCt>F!abaI1fawUSG|VpU*)X-_FuMM@^UnEyMycZPR$>MCd-a+0zMHBS{Mv4c*zP@ed^ z5e~{!f)6ldc_Lw_of2>bh6vTy0ns0HlFJM|Gm$Mjb=f}L@b+Y`g#OzpW3`?}0{dM7 z>5JV3bXecuTm&ubo(AMN1Bi7_%aI*tPyv-QFzILYtwPW_DxshU_QeYdA{&xv!p4-Q zoIlB38>%l`D#{!U+C4?S*9_m+rr?=fZ-Y-s-WMN*PF2fiG5EOi%O&4X)T33bEMEtz zo>@Gxssg(@hQk^K-3sd^ZSnm^+ST9>Kvdv9ZwL38Lu8HA$xzCy^~_;*cq+gv=9?pn_3b>W-J-!o~yZhMEuU$8e+$VGXLon~Fu*SnY}%iw|zgvgVSV z$z6%xBx_3GwHG4le0%3Y?ZD%o+gUZZ_s*;vfGGI_>=#k(yKrkJ|^DyQ}Bm0yaW ztvv2L?It5zm`B7_q95L4t#ElEHZGq$lRq?X_2! zo+q#^wSXKAs#~Ir(zVh8v6*#q-2JtG6JLosjH3pFwWF*Ls@Kn|me`GgE4D|Z=f=fc zB|J*;7ODQi_X~izxhUQ&1SQ0XSa%|Gx+U*v=Q=_0>hCd-v|_NcI|u~r_1kIMG_uu+ zKp6F@{xQM&*ROVnHtW-wm@Alwhpk$aLLUrB^2k1~*yL8C#Gx^U75KUnO^ zj2gm%7%_>K$YK@xZ$sg0w7>Nbs>Sd0(~1LfQHii%-LWt6ojyKZ?Q;g8H|p(w>VJ#q zJk9Zrx2>|HGq!~@Plr0%5Lm#b{fq`@$12UdWrXrTS;3w9xMw)d+IqGGE(L;b6G%L6 z5^##nYD^^vDE|iTUij{wm$8sbgDVb0ZIU%+5%+dv?$&ABE|DhE-= z!56D_8Tii#mq`y<^qjKy_5C4hweJ|tNaTT<{9-ceBilyc|#U# zSvtc9v=IP$E9NrV1h@zZ`S={~KMeSMT?U+y_vBx!gypfZmjbr;Rg;zEA{^y-`b0f; z$$S`~)p8FKXJh%9oDChUp3qPU&+c6cZ6`VYJ;vr86gTX=7^Aq>}&@yfew|1q_IZEo>ud*_dSO-0$zl7 zxTK*2y6#X5O#eRH*-Am|UQY&?Bu^+usp1O@sRQXBQ**=yyVU6vjGjHdoNz7NHnw^w zf_Onu9dlJ=i1COc)fEqoqMmmn_mqB3f_+gQkMYt1)DZVhg=zlQQocwNkeF&|p|Lb~ zcs+)ZQ0&oqy4-gpu6$wR>FLhRQ#cED(OZqPFGStO0`7PRxXC0;eTvGcF{8qGY~CMH z{&2hfXA!L_eB!<3y(dZ5N))CWeQLFLla;~)HA8!!UMc<)uf;q@Pbm-b+3biFAs!37 zUXd(+f|}=;U@`FbR$Kr5A;)!fH@vTkP90?N8*Rh|Y)_vzJrU=`X`SpAU?W;7)TH%vXy7|&H*bmVwUzBD|bPMPH(2G&#^xT@GQ#7!L$DtxyN zF-`cRlpT4SBGoKJ8ppKtLJ}feQ|KljVp~gV^?VMqJ(e%-mm6$L1MMO5S?~iN7B76n z!?}X%vCE5t?tJkfx9Rm9w~2`mH~DDNXHUELH%tHlBPk{MG|<9QVAy(Tp9oWB_DDx( zvQEDRizLI3?pP@C{#vRA?8(kE;J7G#Tfv;57=S94TG#Qp7|yIev$Yvv7k|8$l#w+f zyN$sQ2#fnE4`b}ai2ivQ>rZf`TRvr?!O6n&lhnTP{83>hTI7B5m$_*Qx~#sDtE08a z^!)5M;v(c&7!>z`-iw+s1ju1_0PYDpvl>v*fM`~u-X;%;qTOmNb074ct8Mq;^?H1< ztB@L?Wm@8d0cwypRIJDKCYFgBxuo{>Z@GZ7|JDK!0fbY>laoSWdeZv9F$Z{-L>3G9 zGoHgRS6(gw!IYaY$NpCUlmcu08P|!C9MU4dZahqZgbPw7U2^(UjtV_~qLh?06CtiZ zBL^4m(GZ4MLWxx&edBy96nw2&)T-H2)TzU&4^O$IiXj@y@SycuD`SCEi*=2IjRNku zJR+BHgGWs`8^V7x8mK|2!Ooe&pr|(ERfE6cNsvE6xxJf-R^rgG?L))XTKel_qoKMH z*NcfBeSN~qFnpNOPFOeM11-y}!0`=ZVN2ahW6W!s6# zsE2Q+>u}+FTa8ZjLxmlR@8i2^lF#7L6VEjh)*|W8Wcxc0;;_GEKM2j2oThZ{ApH$G zhd=l8YOeBNyiHlJ{(K!Me$hM+z({V>*7zfsigVBPprK~_?KR?VV=i(f8+Jhe2x;La zC-!#)N2(JVmsTn>f;`3I3r`$*0WYU7<>)S0;bF}WaXGYpUT*y0<&5r}bPy^>Y(l9a zyoYz)UYeO4rdud#C%lt4*Uh}q$u!g9 zxP6-yjji-#40$_W0{Ifim%#t$63|N?T6Kz^h~I=^6mBpvO!PeCx^2baj-jU%vpICZ zH4{)O3G|xG5L#_C?anX>rvRu3ppX#QM8}nz_FW|-OEulf6m@{q3A7a>m5*u*H0V+k z6@V!;LZOn literal 0 HcmV?d00001 diff --git a/foretold/components/package.json b/foretold/components/package.json new file mode 100644 index 00000000..6337ddc2 --- /dev/null +++ b/foretold/components/package.json @@ -0,0 +1,48 @@ +{ + "name": "@foretold/components", + "version": "0.0.6", + "description": "Kit-demo of UX components", + "private": false, + "scripts": { + "build": "bsb -make-world", + "clean": "bsb -clean-world", + "predev": "yarn build", + "dev": "PORT=12346 parcel example/index.html", + "showcase": "PORT=12345 parcel example/index.html showcase/index.html", + "start": "bsb -make-world -w" + }, + "keywords": [ + "foretold", + "bucklescript", + "reason", + "css" + ], + "author": "Ozzie Gooen ", + "license": "MIT", + "dependencies": { + "@foretold/cdf": "1.0.16", + "@foretold/guesstimator": "1.0.11", + "bs-css": "11.0.0", + "bs-moment": "0.4.5", + "bs-platform": "7.2.2", + "d3": "5.16.0", + "emotion": "10.0.27", + "lodash": "4.17.15", + "moment": "2.24.0", + "rationale": "0.2.0", + "rc-dropdown": "3.0.2", + "rc-menu": "8.0.3", + "react": "16.12.0", + "react-dom": "16.12.0", + "react-icons-kit": "1.3.1", + "vega-embed": "6.6.0", + "vega": "5.11.1", + "react-use": "14.2.0", + "reason-apollo": "0.20.0", + "reason-react": "0.7.1", + "react-textarea-autosize": "7.1.2" + }, + "devDependencies": { + "parcel-bundler": "1.12.3" + } +} \ No newline at end of file diff --git a/foretold/components/showcase/Entries.re b/foretold/components/showcase/Entries.re new file mode 100644 index 00000000..bca161aa --- /dev/null +++ b/foretold/components/showcase/Entries.re @@ -0,0 +1,23 @@ +let entries = + EntryTypes.[ + Showcase_Buttons.entry, + Showcase_PageCard.entry, + Showcase_NumberShower.entry, + Showcase_MeasurableForm.entry, + Showcase_Colors.entry, + Showcase_AgentLink.entry, + Showcase_MyCommunities.entry, + folder( + ~title="Link", + ~children=[ + entry(~title="Link1b", ~render=() => + "Test link"->React.string + ), + ], + ), + ] + @ Showcase_Charts.entries + @ Showcase_Dropdown.entries + @ Showcase_Menu.entries + @ Showcase_DropdownMenu.entries + @ Showcase_DropdownSelect.entries; \ No newline at end of file diff --git a/foretold/components/showcase/EntryTypes.re b/foretold/components/showcase/EntryTypes.re new file mode 100644 index 00000000..49a61a33 --- /dev/null +++ b/foretold/components/showcase/EntryTypes.re @@ -0,0 +1,30 @@ +type compEntry = { + mutable id: string, + title: string, + render: unit => React.element, + container: containerType, +} +and folderEntry = { + mutable id: string, + title: string, + children: list(navEntry), +} +and navEntry = + | CompEntry(compEntry) + | FolderEntry(folderEntry) +and containerType = + | FullWidth + | Sidebar; + +let entry = (~title, ~render): navEntry => { + CompEntry({id: "", title, render, container: FullWidth}); +}; + +// Maybe different api, this avoids breaking changes +let sidebar = (~title, ~render): navEntry => { + CompEntry({id: "", title, render, container: Sidebar}); +}; + +let folder = (~title, ~children): navEntry => { + FolderEntry({id: "", title, children}); +}; diff --git a/foretold/components/showcase/Index.re b/foretold/components/showcase/Index.re new file mode 100644 index 00000000..e8d35716 --- /dev/null +++ b/foretold/components/showcase/Index.re @@ -0,0 +1,7 @@ +ReactDOMRe.renderToElementWithId( +
+ +
, + "main", +); +ReasonReactRouter.push(""); diff --git a/foretold/components/showcase/Lib.re b/foretold/components/showcase/Lib.re new file mode 100644 index 00000000..db334d68 --- /dev/null +++ b/foretold/components/showcase/Lib.re @@ -0,0 +1,201 @@ +open FC.Base; +open EntryTypes; + +module HS = Belt.HashMap.String; + +let entriesByPath: HS.t(navEntry) = HS.make(~hintSize=100); + +/* Creates unique id's per scope based on title */ +let buildIds = entries => { + let genId = (title, path) => { + let noSpaces = Js.String.replaceByRe([%bs.re "/\\s+/g"], "-", title); + if (!HS.has(entriesByPath, path ++ "/" ++ noSpaces)) { + noSpaces; + } else { + let rec loop = num => { + let testId = noSpaces ++ "-" ++ string_of_int(num); + if (!HS.has(entriesByPath, path ++ "/" ++ testId)) { + testId; + } else { + loop(num + 1); + }; + }; + loop(2); + }; + }; + let rec processFolder = (f: folderEntry, curPath) => { + f.id = curPath ++ "/" ++ genId(f.title, curPath); + HS.set(entriesByPath, f.id, FolderEntry(f)); + f.children + |> E.L.iter(e => + switch (e) { + | CompEntry(c) => processEntry(c, f.id) + | FolderEntry(f) => processFolder(f, f.id) + } + ); + } + and processEntry = (c: compEntry, curPath) => { + c.id = curPath ++ "/" ++ genId(c.title, curPath); + HS.set(entriesByPath, c.id, CompEntry(c)); + }; + entries + |> E.L.iter(e => + switch (e) { + | CompEntry(c) => processEntry(c, "") + | FolderEntry(f) => processFolder(f, "") + } + ); +}; + +let entries = Entries.entries; +buildIds(entries); + +module Styles = { + open Css; + let pageContainer = style([display(`flex), height(`vh(100.))]); + let leftNav = + style([ + padding(`em(2.)), + flexBasis(`px(200)), + flexShrink(0.), + backgroundColor(`hex("eaeff3")), + boxShadows([ + Shadow.box( + ~x=px(-1), + ~blur=px(1), + ~inset=true, + rgba(0, 0, 0, 0.1), + ), + ]), + ]); + + let folderNav = + style([ + selector( + ">h4", + [ + cursor(`pointer), + margin2(~v=`em(0.3), ~h=`zero), + hover([color(`hex("7089ad"))]), + ], + ), + ]); + let folderChildren = style([paddingLeft(`px(7))]); + let compNav = + style([ + cursor(`pointer), + paddingBottom(`px(3)), + hover([color(`hex("7089ad"))]), + ]); + let compContainer = style([padding(`em(2.)), flexGrow(1.)]); + // Approximate sidebar container for entry + let sidebarContainer = style([maxWidth(`px(430))]); + let folderChildContainer = style([marginBottom(`em(2.))]); +}; + +let baseUrl = "/showcase/index.html"; + +module Index = { + type state = {route: ReasonReactRouter.url}; + + type action = + | ItemClick(string) + | ChangeRoute(ReasonReactRouter.url); + + let changeId = (id: string) => { + ReasonReactRouter.push(baseUrl ++ "#" ++ id); + (); + }; + + let buildNav = setRoute => { + let rec buildFolder = (f: folderEntry) => { +
+

changeId(f.id)}> f.title->React.string

+
+ {( + f.children + |> E.L.fmap(e => + switch (e) { + | FolderEntry(folder) => buildFolder(folder) + | CompEntry(entry) => buildEntry(entry) + } + ) + |> E.L.toArray + ) + ->React.array} +
+
; + } + and buildEntry = (e: compEntry) => { +
changeId(e.id)}> + e.title->React.string +
; + }; + ( + entries + |> E.L.fmap(e => + switch (e) { + | FolderEntry(folder) => buildFolder(folder) + | CompEntry(entry) => buildEntry(entry) + } + ) + |> E.L.toArray + ) + ->React.array; + }; + + let renderEntry = e => { + switch (e.container) { + | FullWidth => e.render() + | Sidebar =>
{e.render()}
+ }; + }; + + [@react.component] + let make = () => { + let (route, setRoute) = + React.useState(() => { + let url: ReasonReactRouter.url = {path: [], hash: "", search: ""}; + url; + }); + + React.useState(() => { + ReasonReactRouter.watchUrl(url => setRoute(_ => url)); + (); + }) + |> ignore; + +
+
{buildNav(setRoute)}
+
+ {if (route.hash == "") { + React.null; + } else { + switch (HS.get(entriesByPath, route.hash)) { + | Some(navEntry) => + switch (navEntry) { + | CompEntry(c) => renderEntry(c) + | FolderEntry(f) => + /* Rendering immediate children */ + ( + f.children + |> E.L.fmap(child => + switch (child) { + | CompEntry(c) => +
+ {renderEntry(c)} +
+ | _ => React.null + } + ) + |> E.L.toArray + ) + ->React.array + } + | None =>
"Component not found"->React.string
+ }; + }} +
+
; + }; +}; \ No newline at end of file diff --git a/foretold/components/showcase/entries/Scoring.re b/foretold/components/showcase/entries/Scoring.re new file mode 100644 index 00000000..d28227ee --- /dev/null +++ b/foretold/components/showcase/entries/Scoring.re @@ -0,0 +1,104 @@ +open FC.Base; + +let multimodal = "=mm(uniform(0,100), uniform(10,20), [.33,0.9])"; +let mm1 = "=mm(uniform(1,100), normal(50, 5), [.01, .99])"; +let mm2 = "=mm(uniform(1,100), normal(50, 8), [.01, .99])"; + +module Scoring = { + type dist = Types.Dist.t; + + [@react.component] + let make = () => { + let (varA, setVarA) = React.useState(() => None); + let (varB, setVarB) = React.useState(() => None); + let (varC, setVarC) = React.useState(() => None); + + let distributionScoreDistribution = + switch (varA, varB, varC) { + | (Some(a), Some(b), Some(c)) => + Types.Dist.distributionScoreDistribution([|a, b, c|]) + | _ => None + }; + + let distributionScoreNumber = + switch (varA, varB, varC) { + | (Some(a), Some(b), Some(c)) => + Some(Types.Dist.distributionScoreNumber([|a, b, c|])) + | _ => None + }; + + let minX = + [|varA, varB, varC, distributionScoreDistribution|] + |> E.A.O.concatSome + |> Types.Dists.minX(0.01); + let maxX = + [|varA, varB, varC, distributionScoreDistribution|] + |> E.A.O.concatSome + |> Types.Dists.maxX(0.99); + + Js.log2("MIN", min); + +
+

{"Variable A" |> ReasonReact.string}

+ + {let (ys, xs, hasLimitError) = event + setVarA(_ => Types.Dist.requireLength({ys, xs})) + Js.log2(xs, ys)} + |> ignore + } + /> + {varA + |> E.O.React.fmapOrNull(v => + + )} +

{"Variable B" |> ReasonReact.string}

+ + {let (ys, xs, hasLimitError) = event + setVarB(_ => Types.Dist.requireLength({ys, xs}))} + |> ignore + } + /> + {varB + |> E.O.React.fmapOrNull(v => + + )} +

{"Variable C" |> ReasonReact.string}

+ + {let (ys, xs, hasLimitError) = event + setVarC(_ => Types.Dist.requireLength({ys, xs}))} + |> ignore + } + /> + {varC + |> E.O.React.fmapOrNull(v => + + )} +

{"C * Log2(A / B)" |> ReasonReact.string}

+ {switch (distributionScoreDistribution) { + | None => ReasonReact.null + | Some(divideBy) => + + }} +

{"Final Score" |> ReasonReact.string}

+ {switch (distributionScoreNumber) { + | None => ReasonReact.null + | Some(scoreNumber) => + scoreNumber |> E.Float.with3DigitsPrecision |> ReasonReact.string + }} +
; + }; +}; + +let entry = EntryTypes.(entry(~title="Scoring", ~render=() => )); \ No newline at end of file diff --git a/foretold/components/showcase/entries/Showcase_AgentLink.re b/foretold/components/showcase/entries/Showcase_AgentLink.re new file mode 100644 index 00000000..cd7359d7 --- /dev/null +++ b/foretold/components/showcase/entries/Showcase_AgentLink.re @@ -0,0 +1,48 @@ +let image1 = "https://media1.popsugar-assets.com/files/thumbor/PqBqxo_cWMRP99nvp73HN0lSqr0/fit-in/1024x1024/filters:format_auto-!!-:strip_icc-!!-/2016/01/11/797/n/1922153/940d7f6ffea5ccb7_grid-cell-30798-1452255774-1/i/Photos-People-Freckles.jpg"; +let image2 = "https://www.w3schools.com/howto/img_avatar.png"; +let image3 = "https://secure.gravatar.com/avatar/d9032fc9ac4a2f815ae8f88a0bdd97f2?s=96&d=mm&r=g"; +let image4 = "https://avatars1.githubusercontent.com/u/377065?v=4"; +let bot1image = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBxITEhUQEhAVFRUXGBUVFhUVFxAWFRUVFRcWFhUVFRUYHSggGBolHRUWIjEhJSkrLi4uFx8zODMtNygtLisBCgoKDg0OFhAQFysgFR0rKysrKysrLSsrKy0tLS0tKystLS0tKy0tKy0tKystKy0tKy0rNy03LS03Ky0rNystLf/AABEIAOEA4QMBIgACEQEDEQH/xAAcAAABBQEBAQAAAAAAAAAAAAAAAQQFBgcDAgj/xABFEAABAwIDBQUFBgQEAwkAAAABAAIDBBEFITEGEkFRYQcTInGBMkJSkcEUYnKhsfAjNILRc5LC8RUzUzVDVGOisrPh4v/EABkBAQEBAQEBAAAAAAAAAAAAAAABAgMEBf/EACQRAQACAgICAgIDAQAAAAAAAAABAgMRITEEEhNBMmEiUXEU/9oADAMBAAIRAxEAPwDQkIQtIEBCEAQhCE0BCEKAQhCAQEIQIhC5zztY0ve5rWjVziAB5kpodEKp1PaDRjvBE50xjaXncB3SAcwHHI+YVak7S6l5/hUoa3gXHMjz0XWuK0/TM2iGoEJAsuPaDXcIIv8AMSpHB+0OR8jYZqXdLvea7IAZ3O9wW58e8Qe8NAQoDB9sqKpIayYNeb+CTwEkG3hvkdOCn1wmsx21sIQhQCSyVCBEJUisBUiEIBCEIOqRKkQCEIQCEIQCEEIUAhCEAhdIIXPNmhOmYYfed8kGd7ZbdNpXmmhiMk9r3OTGX0vxJWZ47ik9QQ+rnyGjATbpZugU92wxOp8QeQ3KRrC0+QsbKgxxuebnMr6PjYItES52to+hxLuzeBu6R7xzPqpCPEXP9uBruZaXsv6BdMLwMu1Ct+FbMl1gG3X0ow0pHLxZPJ51CrOkaBdtI0HnvylNajGJwCwBrGnVoGbhyc7Wy1duxY3MyN7gOCqOMbPFpIIzVr8d51Dn89q9wpIMT/aHdu5jS6s+C7W1tJZpPfwjgSSbfddqPXJQNfh9jovUEcsQBtdh+S4ZvFrL1Uzbbhs7jcdZCJ4wQLlpa6281w1GWRUmonssow6iL3NtvPJGgOQtfJWl+Fj3XWXxckRW0w9UcwjEL3NGWndOq8LChIlQqEQlRZQCRKhB0QhCoRCChAJUJFAqRKkQCEIQSuDjw+pT1yZYSfD806kcsyrPe2jZp1VSCeIXkgJdugZujOTreWtljmz1OHOX1CXcFRdouzClneZoJH00pzJjsWOPVp09F7vE8v4uJccuL3hG7M4IHAHQcTkr7Q0DGCzRb6qhU2xOLw5Q4nGW8N5hB+qkY8Ex/wD8fTerP/yumbyIydS82Pxpp9J2h2gpKiSSCGdr5IsntAcLcDYkeIcLhMNoaEPaTbxAfNVih7OcUgmfUQ1dNG+S+8WtNszc2FrD0TifYvGH5PxNlugI+iziy1rO9t5MM3jWlIxtoBK97Mu797acML3GzQByJz3uQAuVaYeyGR5vU17nDUhjc/mVfNm9l6WhbuwR2PF7s3u9V3zefWa6r2mLxvXtMYbRthjbEwANaLZCwPM26p0CuHeL02RfJmdzt7Ubiw8Y8vqmKe4ocx5JkqBCEIgQhCAQhCDohCFQhQlSFAJUiE0FSFCVQIhCEDygmsCOqcPlUPFPZzh5fourqlZlUiJVFYjWPys7dBO60N9t51NufHTkurZ1G7bbJnEqeJsE/czROLmG5t4m7rmm2Y0GaaNHWA4yJi7ckLw1xY9rvaY4ZkEcD6kKwNlVP2D2N/4ZDI2SbvJpXBzyL7o3RYAX11OasokTTMRo9dKuE01gTyF1x71eHSI0q1Vj4Ermvc67RvOs5rWxtOhO84KyYdUiSJkrZBIx43mPHEKnbXdmMdfKJ46ruXENbI0gua4N0IF/NW2iooqOlioonFwjaG7xIJ1JJPC5N8lWYro7MyUTqLfULx9rTTR3VPuVxXCnm3nH0TlUeUL0QvKIEpCRKECISoQe0IQqBIlQgRCEIBCEIFQkQoIHFK3cmIvwBXhuI34qK2naftR5FjbdVFGVwWZWFzhreqdxVfVUuGuKkIa9RVrbUrq2dVuOtThtX1QThqF5M6qlPUV32p4e2IUue44E94dLAtvkL31ClTMtIfvqU1kqkyklKZTzFahDuorbcVHzYpbimVTKVFyyDi4fNXRtdNlqrvO8PK31U+qnsQ9gEnjbckWBc0HIHgc1bFJgCEIUCWShCECoSIQe0IQqApEqRAiEqEHlKlXKonaxpe9wa1oJcToANSrrY9SPDQXOIAAuSSAAOZJVKxjtIp2Esp2OqHD3m5Rg/iOvoqJtrtZLWvLGkspgcm/EB7z+ZVTfUn2WZDpqvXi8Xfbn7/0uuLbdVcti5tNHbTIlw/quFwpdr5TYSCF/4Tuk+QUfs7sTNVjvD/DiHtSHj91g949dApWXCaemNmNLiPU+ZOgXPNFKcNREzym8LxFk3/dPaeRaR8jxUrFTNOh/f0Vew+vde4s0fP5G6tGHVgkNpA0/eGTgvNMNukdMncUC6YrE2CIzNcS0buR+8bXuqMzbaffIETS2+QOtvMLMi/sh/dkohKqUG2Upy7gDzJTqh2gmfKA7da3PIXzNss1BPSxKtYvi7GHu2eN/IZgKX2rrxT0vfAkvfZrByJvc/ILIKnEHNuAfEdT565r1+Pgm7FrRCcxLGXNduuIcfhBvbzAXGLE5j7LVF4RSF7hfiVr+yOxrCwTzjdj1A0L/AD5NX070xYa7s8nva1tQzSLDJqiTw00kj+cQcSPUaeRsrtgWEY3TW3InSR/9KeSG4H3SX3BU5tLt9T0Q7mBguNGMA+buXmVnVf2rVm9lHujqXfRfMyeTF+q6h6q45juWu0NU94tJA+GTix9rebXtu1w9U7ssv2b7TXSuEcwsTpc3F+XQlaVSVAkbvD/Y8l53TTtZCVCIRCVCD0EFKhUIkSoQIgpUiAVO7QHyTdzQxZmV13dWiwAPS+Z8lcVT8dre7qKiUZvjp7MGV7vLvEB0BPyC6Yu3PLOqsm2qEbJXQxZsjuze4vcMnO8ib26WXvYTZ01tS2LSNtnSu5M5Dq4+EeqhK+clxPUrZ+yPDRDh5nIAdM5zr/cb4W/nde3LlmlOPtnFXhYK2AOApoR3cbBY24N4NA+IqFxHBWkbrW2H748fNWmkjszMZu8R9cwPQWXl1PvaL5b0M1qcELdB8tV7wou3i1u84jWzH7t/hDrWJWlxYKD7Sf0uDxsFgwD5K7RSZxNLF3BidunM6aWyHzCZUuxjibmEjz/3Wox0rRwThkQUkZ5BsMTwA9SnjNhLeLfAt+JXsNTeobfJQY92mxlrY2OflEwkZW33vNmgcrBt8+ayk5m9wtI7asRvOynAsGMDnfec7LP0Cy9js7r7Hi8Vh5rczLRuzbCO/qGMI8Au+Q/daRl6mw9VpG3eNOYwU8A/iP8ABGBoBxd5BRHZlh32Wi+0SAh82beYj93+6ltmqP7VUOq3Dwt8Md+Q1PqV4vMze9/06Yqesfsx2Z7NowO9qbyPOZvpfrfVT1dsLRSMLHU7LEcAAfO6twsBZcXheV1fMu3mx7sOqG7lzDIT3bje4I1Y7qNRzWnbAV/eQMJOZFj1LePyP5Kz7Z4Iyqp3xPYHG28y/B4B3SCqNsGx0TRG8WO/pytlb9UF/QkCVaQIQhB7QhCoEiVIgEIQgQlZb2mF0b5tWmRsJ1sS3xeHyWoslAO8dG6DmVnnaVTOqGOcM5BoOY1ItxsfqumK0Rblm0bhi87s19FYOzuMNghOThCwEfee0X/NyxzZfZd007XTNLIWkOkLhYut7gvrf9FouL40XvYGjJrmuI/DoPLIJnye06hqkaXdktzYfuy54pjkFI27yXPtfcYLu9eDR1KhG4o5jLxDelee7iHIu9/0uFV9uZRAPswfvSGzp5D7T5Dq2/wjkmHF7Ty55Mvqe4h2wOaf4VGwD/zJHE/JoA/NN6PtrkDv41Cwt493I8OHkHXB8rrMKh/FNHvXv/5sfWnOuS0vqfZnaenro+9p33t7TDk9h5OH1U01y+V9kMekpKlk7HWzAeODmcQRx1X05RVYkY2RujhdeLyPH+PmOpdq23wkWppVmy7xvTfEHZLzNsd7Ttm5aqRs8ADntbuPjy3nNBJa5t9bXOXVQeynZ+/fbNX2jib4u6uDJKR7pt7LeZ9FdtrmuzcxxDhexCzDF8aqs295YdGgEet11jNaI1CerTMWxd1Q9tNDlvEMy9xmhsOGS0TBqZsMbYmiwAAWIdj1SXVD435loD2k8bmzr/NbdBIuSpbULk5eqd9xZc5dUHGZuSpNXQObXNsPA7+Jfo3UfOyu7io6rZmD+7FBwSoQtIEIQg9IQhUCRekhQIucz91pK6WTLFXWaBzI/K5QNZp8rKtY6N4ZGxGhHNSlVOoqc7yzLSIjlfbxG/ndey7LLXnxXSpZmubG5pCF2Qxpori1/sU0UkxPABl7Af1OChaTC6rFZXyxgNYXHelffdufdY0alR80jo21IyBmaYmkauBl0PJaZVTCgw7di8O4yxcLXBt43dXX/VembTTWu5cYrFp3Kty9jx3bisJd1YN2/ms62lwKajl7qYa5tcNHDopWi2nq4ZmVgkIaZC1zSb7wFi4OvrkdVpfaThjKyg75gu9gEzDxta5b5ELVb3pPM8NxET0wyMOzIaSBa5zsL6XPBbt2QbR97TmmcbviyGerOHyGXosJZUEAtBIBtvAZB1sxvDipfZXG5KSds7Dp7Q+JvELtMTekxP30zbidvqISrjPLcKKwvF46iJk8brtcL+XMHqCuss6+daNTqXWvKBx+K91nOMYYCSQP7+i0yvde6qeJ0+dwsqruw7HQV0br+F12H1Fx+YC26mkWNgbrgbaEH81qWEVe+0O55qostLKu0xUbBInbn3CBN5NKvRdrrjUaIGrTklXGmORHI2XZbhAlSIQegEqVCBEIQqFUVjb7Bp6O/wBKlCVB7StJDLaZ9Lk8B1yUkQEs1yvIC9xU54rq5iw0i5G3K8RR5p7UNsneB0HePFx4Rm7y5KooG0VI5stnNI3J4XD70cu7n/mDh6K/bZwGXDakNFyGtfbo14Jt8kx7WqXdhbO0fAx3QNeC39SrHQ1ALQbXDm2I4Frhoutra1LMQwnEZWmniiHdF43CC1njO/vXDn3ztZvDiFuuCUhbRQwvzIia11/w53UFR7E0TJ+/EeYN2tPsg/h0VsDwmXJ76arD5sxij7meWH4HuHpfL8rJmx5urn2q0Hd1veWylaHDzHhd+iqYzXopFrViYli0xCy7HbWS0T7e1C43fHwv8TeRWuYZj8FS3ehkB5tOTm9CFgbGqSoYy0iQOLSNC0kO+YW74Yt/rl8vq2qoeoWs4qF2a2oM38CUjvADunTfA59VK1D14LUms6eiLRMbR0rFaNlKrLcPDRVtyd4bU7kjeuqyrSIHp21+Sh6Oa4CfskQdi7NEq5tdcrpKgjYD4nD1TlNNJfMWTxahCIQlVR7QkQgEqEWQcnO8bW+adVlGyRpikbvN5cuoPAqLxBxa5jvMKZY+9jzCzKqRiuy1VGd6mmEjPgksH+j9D6qElqZospoJGcyWm3oRktWIXGVigy2DEGSGwcL9TbPkr9hlII4w0Zk5k8yfovcuGxXuYmXvrutvfzsukAytyuPzWoEHt/QmXD6hoF3CMvaBmbss7L0BUDs5Xb9NC++rG/lkr65oIsdDcHyORv6XVMGzn2SIsY7eYHuLMrFrXG4YedlZ5hDxlSnEc/VV37RbVdYa3qsabgy7ScINRTh7Bd8RLh1b74/RZA0Ld/tIIzVQxrZGORxkZ4SczbnzsvRhzevEud67UehgvmdE4rZ+AU+NmXgW3/yXuHZJt7vc53lYBeqc9NdvN8Vpnk02JpLudOeHhb9Va5SikpWxtDGiwHAJJGrwXt7WmXqrGocmtuV7w5u/PG06FwHpdem5Ncei67Mx3qYujr/LNZVaqZxjcY3ag2HUag/JS0UqYbRRWa2YatNieh0/NJhchfZSY0qbpRfNdZUQtyXieQDUgeoQRlQbSNPVP1GVcrS5tnA+IaEc1KLVUkiEJVWXtCWyRRSWQEqSyoZ4pHdlxq0h3yyP5FP6F14mn0XJ7bix8vSxuueCyhzBuuDmgkXBuLg2Oakqkw7of0Xl56fouwahzFkM39E1i0+f6p3URnUJtEMrfu61A9BeJ4g5padCuiFpFAxehdG8tPp1HNRguFoWNUAljPxDMH6KmnDpPhWJWJcIZCncb15ZhsnwJ3DhkvwrLTlupW05doFKw4UfePonf2cNFgERBGkDeFymdQ1TdS1RczFRGTMyspPY+n/jh3wtJTV8eSsmxtGbPfwJA9BmVUT76XvGlnAggnknOH4VHE0C1zxJ5+S6bwGQXh86kyGmLYAyc3M8zB8LHlrD52z/ADVbxDYal4w971c5zz67xurPLVKKr8TA4qKp1Bs3SR1kTmRmMh2jC5uYBIBHEZLRbKiVW0YZI2QsDy29jxHkVccMxBk8Ylj9k311BHArVSTqyRerIW9MPSEIWVIhKkQRO1tYYaOeUGxEbgD1dkP1TPspYBh0Nje5kuTqTvm5+aje1eq3aMM/6j//AEsG8fopvs3onRUEEbtbFx6b7i76rrNdY9/tmJ/lpbWpJMgvTQq5j1W+R3cRf1FcG0j/AMQicd0SNJ0tdc5hY+aqE1E6N1nef/3dTNDiBLdx5uRmDxPmkSJZCChbR4l9k+R/RRzIMk/mfla1z+9Ud3kFmVg2jhC7iJdo413bEopmY1xkjUoKY8lzkiYNXj9UFeqYlFVLFaZ2xnmfLJMhhxkNmtd+I2sOqghqDDXSvDAMtXHkFdaenbGwRtFgLeZ6nqkoaQRN3LWPEnRx/uusiqG8j02lkXSd9lC4jW7o1UaJiFbYaqoYrihJIBSYriZJsCmNHRPleGNG848P79ECYdh0lTKI28dTwaOJK1PDqJkMbYmCwaPmeJPVNcAwdtPHujN5zc7meQ6BSa3EaZ2T0HzKEqFdo9oQhQCEICDOe06r3qimpmt3nv3Q0cPE8Fzj/S23qtLpwGNaDyH5LMHNE2OyyHNtNGwDo5wt/f5KyYpj4bmTkOHPhYLV7cRCRXnax4zjLY4i4eQ81x2cY0M33G7neI8deaz/AGgxYPazduAbuseQyA+d1f8AZYMdRRucSN4E3BLTcnXLVcm3TEaWGZwuTe2Radb6KGGEysNyWlu9bI5gKIr62WOVxvaxIB4XIyOSlKHHC6Id80EC27kbEgZuHJWIRYSEWTWmn32GYyNtbesADZo68fSy7xShzd4HK11oJHM0PLHWzFx53Tl4bzVYrJiDv9bpzFW3Gqipo1DG6ZrjJih0AAUS+clcy9QSL6xx1JXqmjc/T5qLwuQzymOMXYwgSye6CcwxvxOtn0VxhiDQAAhs3p8PaNRc9U/ji/fJcK2uigYZZnhjRxPE8ABxKqGP7aOY3fc9tLH7pkbv1DxzbFo3+r5LePHa/UOdskV7Xh7W2zzURVyhumnA8uhWM4p2k5nupKtx+N0oaP8AI0WXnBO06Xf3JzvMdlc23m9bj2h0OfVdreNasdlb7+mmYlW2GqpeLYiXGwKc4xWEi7XXacweh0PkmuCYO+ofyaPaeeB5DqvNp1NcLw2Sd+4wXPE8GjmT9FomC4NHTts3Nx9p5AufLkE6oKCOFm5G2w4niTzJ4pytaZIhCFUCEIQe0IQoBHLzCEIM2wz/ALQxP/Ei/wDjemW0WiEJZqOjCp9ln4P9RWn4X/KU3+H9UIWBW8e/1N+if7R/8qm8ihCsI77Kf8r+s/qphvveR/VCFoQuKewVwo9EIWVOVyqfZPkUIUEn2efybfxz/wDvCtMegSoRFN21/nKH/EP0WPdo/wDOy/id+qEL6fhdPNm/OFNXhCFrP+Uu8dQ1yH+Xi/AFfNkP5VqEL5s9tJpIhCqBCEIBCEIP/9k="; + +let links = () => +
+

{"Bot" |> ReasonReact.string}

+ +

{"User Simple" |> ReasonReact.string}

+ +

{"User Ozzie" |> ReasonReact.string}

+ +

{"User with long name" |> ReasonReact.string}

+ +
; + +let entry = EntryTypes.(entry(~title="AgentLink", ~render=links)); diff --git a/foretold/components/showcase/entries/Showcase_Alerts.re b/foretold/components/showcase/entries/Showcase_Alerts.re new file mode 100644 index 00000000..66a54816 --- /dev/null +++ b/foretold/components/showcase/entries/Showcase_Alerts.re @@ -0,0 +1,12 @@ +open FC.Base; + +let alerts = () => +
+ "Primary alert"->React.string + "Info alert"->React.string + "Success alert"->React.string + "Warning alert"->React.string + "Error alert"->React.string +
; + +let entry = EntryTypes.(entry(~title="Alerts", ~render=alerts)); diff --git a/foretold/components/showcase/entries/Showcase_Buttons.re b/foretold/components/showcase/entries/Showcase_Buttons.re new file mode 100644 index 00000000..42c05d91 --- /dev/null +++ b/foretold/components/showcase/entries/Showcase_Buttons.re @@ -0,0 +1,36 @@ +open FC; +open Button; + +let clear = Css.(style([clear(`both)])); +let button = Css.(style([margin(`em(0.5))])); + +let render = () => + <> +
"Secondary"->React.string
+
+ + + +
+
+
"Primary"->React.string
+
+ + + +
+ ; + +let entry = EntryTypes.(entry(~title="Buttons", ~render)); \ No newline at end of file diff --git a/foretold/components/showcase/entries/Showcase_Charts.re b/foretold/components/showcase/entries/Showcase_Charts.re new file mode 100644 index 00000000..bdc51cd6 --- /dev/null +++ b/foretold/components/showcase/entries/Showcase_Charts.re @@ -0,0 +1,18 @@ +[@bs.module] external data1: Js.Json.t = "./samples/sample-measurements.json"; +[@bs.module] +external data2: Js.Json.t = "./samples/sample-measurements-aggregation.json"; + +let chart1 = () =>
; + +let chart2 = () =>
; + +let entries = + EntryTypes.[ + folder( + ~title="Charts", + ~children=[ + entry(~title="Chart 1", ~render=chart1), + entry(~title="Chart 2", ~render=chart2), + ], + ), + ]; \ No newline at end of file diff --git a/foretold/components/showcase/entries/Showcase_Colors.re b/foretold/components/showcase/entries/Showcase_Colors.re new file mode 100644 index 00000000..222b9d22 --- /dev/null +++ b/foretold/components/showcase/entries/Showcase_Colors.re @@ -0,0 +1,109 @@ +open FC; +open FC.Base; + +let colors = + Colors.[ + ("white", white), + ("black", black), + ("greyO4", greyO4), + ("whiteO2", whiteO2), + ("whiteOc", whiteOc), + ("clear", clear), + ("textDarker", textDarker), + ("textDark", textDark), + ("textMedium", textMedium), + ("smokeWhite", smokeWhite), + ("buttonHover", buttonHover), + ("lightGrayBackground", lightGrayBackground), + ("lighterGrayBackground", lighterGrayBackground), + ("grayBackground", grayBackground), + ("greydisabled", greydisabled), + ("accentBlue", accentBlue), + ("accentBlueO8", accentBlueO8), + ("accentBlue1a", accentBlue1a), + ("mainBlue", mainBlue), + ("link", link), + ("linkHover", linkHover), + ("linkAccent", linkAccent), + ("darkLink", darkLink), + ("darkAccentBlue", darkAccentBlue), + ("grey1", grey1), + ("border", border), + ("primary", primary), + ]; + +let colorBoxStyle = + Css.( + style([ + flexBasis(`px(220)), + flexGrow(1.), + height(`px(90)), + marginRight(`px(35)), + marginBottom(`px(35)), + textAlign(`center), + ]) + ); + +let colorContainer = bgColor => + Css.( + style([ + display(`flex), + flexWrap(`wrap), + padding(`em(1.5)), + backgroundColor(bgColor), + ]) + ); + +module ColorDisplay = { + [@react.component] + let make = () => { + let (bgColor, setBgColor) = React.useState(() => Colors.white); + let (bgName, setBgName) = React.useState(() => "white"); + + + + + "Colors"->React.string + + + + "Background: "->React.string + + +
+ {{colors + |> E.L.fmap(((name, c)) => +
+ name->React.string +
+ ) + |> E.L.toArray} + ->React.array} +
+
; + }; +}; + +let entry = + EntryTypes.(entry(~title="Colors", ~render=() => )); \ No newline at end of file diff --git a/foretold/components/showcase/entries/Showcase_Dropdown.re b/foretold/components/showcase/entries/Showcase_Dropdown.re new file mode 100644 index 00000000..fc7472f9 --- /dev/null +++ b/foretold/components/showcase/entries/Showcase_Dropdown.re @@ -0,0 +1,46 @@ +open FC.Base; + +let staticOverlay = +
+ {"Overlay" |> React.string} +
; + +let divAreaStyle = + Css.( + style([ + backgroundColor(Colors.smokeWhite), + width(`px(300)), + textAlign(`center), + padding2(~v=`em(1.), ~h=`em(1.)), + ]) + ); + +let simpleDropdown = () => + +
+ "Dropdown default trigger (hover)"->React.string +
+
; + +let menuDropdown = () => + +
"Submenu"->React.string
+
; + +let entries = + EntryTypes.[ + folder( + ~title="Dropdown", + ~children=[ + entry(~title="Dropdown1", ~render=simpleDropdown), + entry(~title="Menu dropdown", ~render=menuDropdown), + ], + ), + ]; diff --git a/foretold/components/showcase/entries/Showcase_DropdownMenu.re b/foretold/components/showcase/entries/Showcase_DropdownMenu.re new file mode 100644 index 00000000..70a4dde9 --- /dev/null +++ b/foretold/components/showcase/entries/Showcase_DropdownMenu.re @@ -0,0 +1,39 @@ +open FC.Base; + +let simpleMenu = () => + + Menu.( + Js.log(e.key)}> + "1st menu item"->React.string + "2nd menu item"->React.string + + "3nd menu item"->React.string + + ) + ; + +let subMenu = () => + + Menu.( + Js.log(e.key)}> + "Item1"->React.string + + "Item2"->React.string + + "Item3"->React.string + "Item4"->React.string + + + ) + ; + +let entries = + EntryTypes.[ + folder( + ~title="Dropdown menu", + ~children=[ + entry(~title="Simple", ~render=simpleMenu), + entry(~title="Submenu", ~render=subMenu), + ], + ), + ]; diff --git a/foretold/components/showcase/entries/Showcase_DropdownSelect.re b/foretold/components/showcase/entries/Showcase_DropdownSelect.re new file mode 100644 index 00000000..5c2c3fb5 --- /dev/null +++ b/foretold/components/showcase/entries/Showcase_DropdownSelect.re @@ -0,0 +1,60 @@ +open FC.Base; + +let stringSelect = () => + + switch (v) { + | Some(k) => Js.log2("Selected ", k) + | None => Js.log("Selected none") + } + } + />; + +let intSelect = () => + + switch (v) { + | Some(k) => Js.log2("Selected ", k) + | None => Js.log("Selected none") + } + } + />; + +type customType = + | Option1 + | Option2 + | Option3; + +let customSelect = () => + + switch (v) { + | Some(Option1) => Js.log("Option 1") + | Some(Option2) => Js.log("Option 2") + | Some(Option3) => Js.log("Option 3") + | None => Js.log("None") + } + } + />; + +let entries = + EntryTypes.[ + folder( + ~title="DropdownSelect", + ~children=[ + entry(~title="Select1", ~render=stringSelect), + entry(~title="Int select", ~render=intSelect), + entry(~title="Custom select", ~render=customSelect), + ], + ), + ]; diff --git a/foretold/components/showcase/entries/Showcase_MeasurableForm.re b/foretold/components/showcase/entries/Showcase_MeasurableForm.re new file mode 100644 index 00000000..66852666 --- /dev/null +++ b/foretold/components/showcase/entries/Showcase_MeasurableForm.re @@ -0,0 +1,11 @@ +open FC; + +let cdf: Types.Dist.t = { + xs: [|0.2, 0.4, 0.6, 0.8, 1.0|], + ys: [|0.2, 0.3, 0.5, 0.3, 0.2|], +}; + +let measurableForm = () => ; + +let entry = + EntryTypes.(sidebar(~title="Question form", ~render=measurableForm)); diff --git a/foretold/components/showcase/entries/Showcase_Menu.re b/foretold/components/showcase/entries/Showcase_Menu.re new file mode 100644 index 00000000..2d2653fc --- /dev/null +++ b/foretold/components/showcase/entries/Showcase_Menu.re @@ -0,0 +1,33 @@ +open FC.Base; + +let simpleMenu = () => + Menu.( + Js.log(e.key)}> + "Item1"->React.string + "Item2"->React.string + + ); + +let subMenu = () => + Menu.( + Js.log(e.key)}> + "Item1"->React.string + + "Item2"->React.string + + "Item3"->React.string + "Item3"->React.string + + + ); + +let entries = + EntryTypes.[ + folder( + ~title="Menu", + ~children=[ + entry(~title="Simple", ~render=simpleMenu), + entry(~title="Submenu", ~render=subMenu), + ], + ), + ]; diff --git a/foretold/components/showcase/entries/Showcase_MyCommunities.re b/foretold/components/showcase/entries/Showcase_MyCommunities.re new file mode 100644 index 00000000..ca54a854 --- /dev/null +++ b/foretold/components/showcase/entries/Showcase_MyCommunities.re @@ -0,0 +1,98 @@ +let makeItem = (name, icon, bookmark): MyCommunities.item => { + name, + icon, + bookmark, + href: "", + onClick: _ => (), + onBookmark: _ => (), +}; + +let backgroundBox = + Css.(style([background(`hex("ccc")), padding(`em(3.))])); + +let innerBox = + Css.( + style([ + fontSize(`rem(1.1)), + width(`em(20.)), + border(`px(1), `solid, `hex("d5d2d2")), + padding2(~v=`em(0.5), ~h=`em(0.)), + borderRadius(`px(5)), + background(`hex("fff")), + ]) + ); + +let myCommunities = () => +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+
; + +let entry = EntryTypes.(entry(~title="MyCommunities", ~render=myCommunities)); \ No newline at end of file diff --git a/foretold/components/showcase/entries/Showcase_NumberShower.re b/foretold/components/showcase/entries/Showcase_NumberShower.re new file mode 100644 index 00000000..98975acc --- /dev/null +++ b/foretold/components/showcase/entries/Showcase_NumberShower.re @@ -0,0 +1,61 @@ +open FC; +open FC.Base; + +let numbers = [ + 0.000000000000000000000000000001, + 0.00000000001, + 0.00000001, + (-0.00000001), + 0.00000001200332, + 0.00001, + 0.0000130300033, + 0.01, + (-0.01), + 0.010000303030, + 0.0, + 0.010001, + 1.0, + (-1.0), + 1.1000, + 1.0100, + 1.0010, + 1.0001, + 100.0, + 100.5, + (-100.5), + 1000000.0, + 1001001.0, + 100000000000.0, + 100000000000000000.0, + 10000000000000000000000.0, + 10000100000000000000000.0, + 1000000000000100000000000000000.0, +]; + +module NumbersDisplay = { + [@react.component] + let make = () => { + + + + "NumberShower"->React.string + + +
+ {( + numbers + |> E.L.fmap(n => +
Js.Float.toString}> + +
+ ) + |> E.L.toArray + ) + ->React.array} +
+
; + }; +}; + +let entry = + EntryTypes.(entry(~title="NumberShower", ~render=() => )); diff --git a/foretold/components/showcase/entries/Showcase_PageCard.re b/foretold/components/showcase/entries/Showcase_PageCard.re new file mode 100644 index 00000000..a2d5d78c --- /dev/null +++ b/foretold/components/showcase/entries/Showcase_PageCard.re @@ -0,0 +1,19 @@ +open FC; + +let render = () => + + + + "PageCard.HeaderRow.Title"->React.string + + + + "PageCard.H1"->React.string + "PageCard.P"->React.string + + + "Section, grey + borderTop"->React.string + + ; + +let entry = EntryTypes.(entry(~title="PageCard", ~render)); diff --git a/foretold/components/showcase/entries/samples/sample-measurements-aggregation.json b/foretold/components/showcase/entries/samples/sample-measurements-aggregation.json new file mode 100644 index 00000000..c80b0406 --- /dev/null +++ b/foretold/components/showcase/entries/samples/sample-measurements-aggregation.json @@ -0,0 +1,37 @@ +[ + { + "createdAt": "2019-10-11T13:56:00.272+00:00", + "xs": [-23.5844415721, -21.968442585241043, -20.352443598382084, -18.736444611523126, -17.120445624664168, -15.50444663780521, -13.888447650946251, -12.272448664087293, -10.656449677228334, -9.040450690369376, -7.4244517035104165, -5.808452716651457, -4.192453729792498, -2.5764547429335387, -0.9604557560745797, 0.6555432307843794, 2.271542217643338, 3.8875412045022975, 5.503540191361257, 7.119539178220216, 8.735538165079175, 10.351537151938134, 11.967536138797092, 13.58353512565605, 15.199534112515009, 16.81553309937397, 18.431532086232927, 20.047531073091886, 21.663530059950844, 23.279529046809802, 24.89552803366876, 26.51152702052772, 28.127526007386678, 29.743524994245636, 31.359523981104594, 32.975522967963556, 34.59152195482252, 36.20752094168148, 37.82351992854044, 39.439518915399404, 41.055517902258366, 42.67151688911733, 44.28751587597629, 45.90351486283525, 47.51951384969421, 49.135512836553175, 50.75151182341214, 52.3675108102711, 53.98350979713006, 55.59950878398902, 57.215507770847985, 58.83150675770695, 60.44750574456591, 62.06350473142487, 63.67950371828383, 65.2955027051428, 66.91150169200175, 68.5275006788607, 70.14349966571966, 71.75949865257861, 73.37549763943757, 74.99149662629652, 76.60749561315548, 78.22349460001443, 79.83949358687339, 81.45549257373234, 83.0714915605913, 84.68749054745025, 86.30348953430921, 87.91948852116816, 89.53548750802712, 91.15148649488607, 92.76748548174503, 94.38348446860398, 95.99948345546294, 97.61548244232189, 99.23148142918085, 100.8474804160398, 102.46347940289876, 104.07947838975771, 105.69547737661667, 107.31147636347562, 108.92747535033457, 110.54347433719353, 112.15947332405248, 113.77547231091144, 115.3914712977704, 117.00747028462935, 118.6234692714883, 120.23946825834726, 121.85546724520621, 123.47146623206517, 125.08746521892412, 126.70346420578308, 128.31946319264205, 129.935462179501, 131.55146116635996, 133.1674601532189, 134.78345914007787, 136.39945812693682, 138.01545711379578, 139.63145610065473, 141.24745508751369, 142.86345407437264, 144.4794530612316, 146.09545204809055, 147.7114510349495, 149.32745002180846, 150.94344900866741, 152.55944799552637, 154.17544698238532, 155.79144596924428, 157.40744495610323, 159.0234439429622, 160.63944292982114, 162.2554419166801, 163.87144090353905, 165.487439890398, 167.10343887725696, 168.71943786411592, 170.33543685097487, 171.95143583783383, 173.56743482469278, 175.18343381155174, 176.7994327984107, 178.41543178526965, 180.0314307721286, 181.64742975898756, 183.2634287458465, 184.87942773270547, 186.49542671956442, 188.11142570642338, 189.72742469328233, 191.34342368014129, 192.95942266700024, 194.5754216538592, 196.19142064071815, 197.8074196275771, 199.42341861443606, 201.039417601295, 202.65541658815397, 204.27141557501292, 205.88741456187188, 207.50341354873083, 209.1194125355898, 210.73541152244874, 212.3514105093077, 213.96740949616665, 215.5834084830256, 217.19940746988456, 218.81540645674352, 220.43140544360247, 222.04740443046143, 223.66340341732038, 225.27940240417934, 226.8954013910383, 228.51140037789725, 230.1273993647562, 231.74339835161516, 233.3593973384741, 234.97539632533307, 236.59139531219202, 238.20739429905097, 239.82339328590993, 241.43939227276888, 243.05539125962784, 244.6713902464868, 246.28738923334575, 247.9033882202047, 249.51938720706366, 251.1353861939226, 252.75138518078157, 254.36738416764052, 255.98338315449948, 257.59938214135843, 259.2153811282174, 260.8313801150764, 262.4473791019354, 264.06337808879437, 265.67937707565335, 267.29537606251233, 268.9113750493713, 270.5273740362303, 272.1433730230893, 273.75937200994827, 275.37537099680725, 276.99136998366623, 278.6073689705252, 280.2233679573842, 281.8393669442432, 283.45536593110216, 285.07136491796115, 286.68736390482013, 288.3033628916791, 289.9193618785381, 291.5353608653971, 293.15135985225606, 294.76735883911505, 296.38335782597403, 297.999356812833, 299.615355799692, 301.231354786551, 302.84735377340996, 304.46335276026895, 306.07935174712793, 307.6953507339869, 309.3113497208459, 310.9273487077049, 312.54334769456386, 314.15934668142285, 315.77534566828183, 317.3913446551408, 319.0073436419998, 320.6233426288588, 322.23934161571776, 323.85534060257675, 325.47133958943573, 327.0873385762947, 328.7033375631537, 330.3193365500127, 331.93533553687166, 333.55133452373065, 335.16733351058963, 336.7833324974486, 338.3993314843076, 340.0153304711666, 341.63132945802556, 343.24732844488454, 344.8633274317435, 346.4793264186025, 348.0953254054615, 349.7113243923205, 351.32732337917946, 352.94332236603844, 354.5593213528974, 356.1753203397564, 357.7913193266154, 359.4073183134744, 361.02331730033336, 362.63931628719234, 364.2553152740513, 365.8713142609103, 367.4873132477693, 369.1033122346283, 370.71931122148726, 372.33531020834624, 373.9513091952052, 375.5673081820642, 377.1833071689232, 378.7993061557822, 380.41530514264116, 382.03130412950014, 383.6473031163591, 385.2633021032181, 386.8793010900771, 388.4953000769361, 390.11129906379506, 391.72729805065404, 393.343297037513, 394.959296024372, 396.575295011231, 398.19129399809, 399.80729298494896, 401.42329197180794, 403.0392909586669, 404.6552899455259, 406.2712889323849, 407.8872879192439, 409.50328690610286, 411.11928589296184, 412.7352848798208, 414.3512838666798, 415.9672828535388, 417.5832818403978, 419.19928082725676, 420.81527981411574, 422.4312788009747, 424.0472777878337, 425.6632767746927, 427.2792757615517, 428.89527474841066, 430.51127373526964, 432.1272727221286, 433.7432717089876, 435.3592706958466, 436.9752696827056, 438.59126866956456, 440.20726765642354, 441.8232666432825, 443.4392656301415, 445.0552646170005, 446.6712636038595, 448.28726259071846, 449.90326157757744, 451.5192605644364, 453.1352595512954, 454.7512585381544, 456.3672575250134, 457.98325651187236, 459.59925549873134, 461.2152544855903, 462.8312534724493, 464.4472524593083, 466.06325144616727, 467.67925043302625, 469.29524941988524, 470.9112484067442, 472.5272473936032, 474.1432463804622, 475.75924536732117, 477.37524435418015, 478.99124334103914, 480.6072423278981, 482.2232413147571, 483.8392403016161, 485.45523928847507, 487.07123827533405, 488.68723726219304, 490.303236249052, 491.919235235911, 493.53523422277, 495.15123320962897, 496.76723219648795, 498.38323118334694, 499.9992301702059, 501.6152291570649, 503.2312281439239, 504.84722713078287, 506.46322611764185, 508.07922510450084, 509.6952240913598, 511.3112230782188, 512.9272220650778, 514.5432210519367, 516.1592200387956, 517.7752190256546, 519.3912180125135, 521.0072169993724, 522.6232159862313, 524.2392149730903, 525.8552139599492, 527.4712129468081, 529.087211933667, 530.703210920526, 532.3192099073849, 533.9352088942438, 535.5512078811028, 537.1672068679617, 538.7832058548206, 540.3992048416795, 542.0152038285385, 543.6312028153974, 545.2472018022563, 546.8632007891152, 548.4791997759742, 550.0951987628331, 551.711197749692, 553.327196736551, 554.9431957234099, 556.5591947102688, 558.1751936971277, 559.7911926839867, 561.4071916708456, 563.0231906577045, 564.6391896445634, 566.2551886314224, 567.8711876182813, 569.4871866051402, 571.1031855919991, 572.7191845788581, 574.335183565717, 575.9511825525759, 577.5671815394348, 579.1831805262938, 580.7991795131527, 582.4151785000116, 584.0311774868705, 585.6471764737295, 587.2631754605884, 588.8791744474473, 590.4951734343063, 592.1111724211652, 593.7271714080241, 595.343170394883, 596.959169381742, 598.5751683686009, 600.1911673554598, 601.8071663423187, 603.4231653291777, 605.0391643160366, 606.6551633028955, 608.2711622897544, 609.8871612766134, 611.5031602634723, 613.1191592503312, 614.7351582371901, 616.3511572240491, 617.967156210908, 619.5831551977669, 621.1991541846259, 622.8151531714848, 624.4311521583437, 626.0471511452026, 627.6631501320616, 629.2791491189205, 630.8951481057794, 632.5111470926383, 634.1271460794973, 635.7431450663562, 637.3591440532151, 638.975143040074, 640.591142026933, 642.2071410137919, 643.8231400006508, 645.4391389875098, 647.0551379743687, 648.6711369612276, 650.2871359480865, 651.9031349349455, 653.5191339218044, 655.1351329086633, 656.7511318955222, 658.3671308823812, 659.9831298692401, 661.599128856099, 663.2151278429579, 664.8311268298169, 666.4471258166758, 668.0631248035347, 669.6791237903936, 671.2951227772526, 672.9111217641115, 674.5271207509704, 676.1431197378294, 677.7591187246883, 679.3751177115472, 680.9911166984061, 682.6071156852651, 684.223114672124, 685.8391136589829, 687.4551126458418, 689.0711116327008, 690.6871106195597, 692.3031096064186, 693.9191085932775, 695.5351075801365, 697.1511065669954, 698.7671055538543, 700.3831045407132, 701.9991035275722, 703.6151025144311, 705.23110150129, 706.847100488149, 708.4630994750079, 710.0790984618668, 711.6950974487257, 713.3110964355847, 714.9270954224436, 716.5430944093025, 718.1590933961614, 719.7750923830204, 721.3910913698793, 723.0070903567382, 724.6230893435971, 726.2390883304561, 727.855087317315, 729.4710863041739, 731.0870852910328, 732.7030842778918, 734.3190832647507, 735.9350822516096, 737.5510812384686, 739.1670802253275, 740.7830792121864, 742.3990781990453, 744.0150771859043, 745.6310761727632, 747.2470751596221, 748.863074146481, 750.47907313334, 752.0950721201989, 753.7110711070578, 755.3270700939167, 756.9430690807757, 758.5590680676346, 760.1750670544935, 761.7910660413525, 763.4070650282114, 765.0230640150703, 766.6390630019292, 768.2550619887882, 769.8710609756471, 771.487059962506, 773.1030589493649, 774.7190579362239, 776.3350569230828, 777.9510559099417, 779.5670548968006, 781.1830538836596, 782.7990528705185, 784.4150518573774, 786.0310508442363, 787.6470498310953, 789.2630488179542, 790.8790478048131, 792.495046791672, 794.111045778531, 795.7270447653899, 797.3430437522488, 798.9590427391078, 800.5750417259667, 802.1910407128256, 803.8070396996845, 805.4230386865435, 807.0390376734024, 808.6550366602613, 810.2710356471202, 811.8870346339792, 813.5030336208381, 815.119032607697, 816.735031594556, 818.3510305814149, 819.9670295682738, 821.5830285551327, 823.1990275419917, 824.8150265288506, 826.4310255157095, 828.0470245025684, 829.6630234894274, 831.2790224762863, 832.8950214631452, 834.5110204500041, 836.1270194368631, 837.743018423722, 839.3590174105809, 840.9750163974398, 842.5910153842988, 844.2070143711577, 845.8230133580166, 847.4390123448756, 849.0550113317345, 850.6710103185934, 852.2870093054523, 853.9030082923113, 855.5190072791702, 857.1350062660291, 858.751005252888, 860.367004239747, 861.9830032266059, 863.5990022134648, 865.2150012003237, 866.8310001871827, 868.4469991740416, 870.0629981609005, 871.6789971477594, 873.2949961346184, 874.9109951214773, 876.5269941083362, 878.1429930951952, 879.7589920820541, 881.374991068913, 882.9909900557719, 884.6069890426309, 886.2229880294898, 887.8389870163487, 889.4549860032076, 891.0709849900666, 892.6869839769255, 894.3029829637844, 895.9189819506433, 897.5349809375023, 899.1509799243612, 900.7669789112201, 902.382977898079, 903.998976884938, 905.6149758717969, 907.2309748586558, 908.8469738455148, 910.4629728323737, 912.0789718192326, 913.6949708060915, 915.3109697929505, 916.9269687798094, 918.5429677666683, 920.1589667535272, 921.7749657403862, 923.3909647272451, 925.006963714104, 926.622962700963, 928.2389616878219, 929.8549606746808, 931.4709596615397, 933.0869586483986, 934.7029576352576, 936.3189566221165, 937.9349556089754, 939.5509545958344, 941.1669535826933, 942.7829525695522, 944.3989515564111, 946.0149505432701, 947.630949530129, 949.2469485169879, 950.8629475038468, 952.4789464907058, 954.0949454775647, 955.7109444644236, 957.3269434512825, 958.9429424381415, 960.5589414250004, 962.1749404118593, 963.7909393987183, 965.4069383855772, 967.0229373724361, 968.638936359295, 970.254935346154, 971.8709343330129, 973.4869333198718, 975.1029323067307, 976.7189312935897, 978.3349302804486, 979.9509292673075, 981.5669282541664, 983.1829272410254, 984.7989262278843, 986.4149252147432, 988.0309242016021, 989.6469231884611, 991.26292217532, 992.8789211621789, 994.4949201490379, 996.1109191358968, 997.7269181227557, 999.3429171096146, 1000.9589160964736, 1002.5749150833325, 1004.1909140701914, 1005.8069130570503, 1007.4229120439093, 1009.0389110307682, 1010.6549100176271, 1012.270909004486, 1013.886907991345, 1015.5029069782039, 1017.1189059650628, 1018.7349049519217, 1020.3509039387807, 1021.9669029256396, 1023.5829019124985, 1025.1989008993576, 1026.8148998862166, 1028.4308988730756, 1030.0468978599347, 1031.6628968467937, 1033.2788958336528, 1034.8948948205118, 1036.5108938073708, 1038.12689279423, 1039.742891781089, 1041.358890767948, 1042.974889754807, 1044.590888741666, 1046.206887728525, 1047.8228867153841, 1049.4388857022432, 1051.0548846891022, 1052.6708836759612, 1054.2868826628203, 1055.9028816496793, 1057.5188806365384, 1059.1348796233974, 1060.7508786102564, 1062.3668775971155, 1063.9828765839745, 1065.5988755708336, 1067.2148745576926, 1068.8308735445517, 1070.4468725314107, 1072.0628715182697, 1073.6788705051288, 1075.2948694919878, 1076.9108684788469, 1078.526867465706, 1080.142866452565, 1081.758865439424, 1083.374864426283, 1084.990863413142, 1086.606862400001, 1088.2228613868601, 1089.8388603737192, 1091.4548593605782, 1093.0708583474373, 1094.6868573342963, 1096.3028563211553, 1097.9188553080144, 1099.5348542948734, 1101.1508532817325, 1102.7668522685915, 1104.3828512554505, 1105.9988502423096, 1107.6148492291686, 1109.2308482160277, 1110.8468472028867, 1112.4628461897457, 1114.0788451766048, 1115.6948441634638, 1117.3108431503229, 1118.926842137182, 1120.542841124041, 1122.1588401109, 1123.774839097759, 1125.390838084618, 1127.006837071477, 1128.6228360583361, 1130.2388350451952, 1131.8548340320542, 1133.4708330189133, 1135.0868320057723, 1136.7028309926313, 1138.3188299794904, 1139.9348289663494, 1141.5508279532085, 1143.1668269400675, 1144.7828259269265, 1146.3988249137856, 1148.0148239006446, 1149.6308228875037, 1151.2468218743627, 1152.8628208612217, 1154.4788198480808, 1156.0948188349398, 1157.7108178217989, 1159.326816808658, 1160.942815795517, 1162.558814782376, 1164.174813769235, 1165.790812756094, 1167.406811742953, 1169.0228107298121, 1170.6388097166712, 1172.2548087035302, 1173.8708076903893, 1175.4868066772483, 1177.1028056641073, 1178.7188046509664, 1180.3348036378254, 1181.9508026246845, 1183.5668016115435, 1185.1828005984025, 1186.7987995852616, 1188.4147985721206, 1190.0307975589797, 1191.6467965458387, 1193.2627955326977, 1194.8787945195568, 1196.4947935064158, 1198.1107924932749, 1199.726791480134, 1201.342790466993, 1202.958789453852, 1204.574788440711, 1206.19078742757, 1207.806786414429, 1209.4227854012881, 1211.0387843881472, 1212.6547833750062, 1214.2707823618653, 1215.8867813487243, 1217.5027803355833, 1219.1187793224424, 1220.7347783093014, 1222.3507772961605, 1223.9667762830195, 1225.5827752698785, 1227.1987742567376, 1228.8147732435966, 1230.4307722304557, 1232.0467712173147, 1233.6627702041737, 1235.2787691910328, 1236.8947681778918, 1238.5107671647509, 1240.12676615161, 1241.742765138469, 1243.358764125328, 1244.974763112187, 1246.590762099046, 1248.206761085905, 1249.8227600727641, 1251.4387590596232, 1253.0547580464822, 1254.6707570333413, 1256.2867560202003, 1257.9027550070593, 1259.5187539939184, 1261.1347529807774, 1262.7507519676365, 1264.3667509544955, 1265.9827499413545, 1267.5987489282136, 1269.2147479150726, 1270.8307469019317, 1272.4467458887907, 1274.0627448756497, 1275.6787438625088, 1277.2947428493678, 1278.9107418362269, 1280.526740823086, 1282.142739809945, 1283.758738796804, 1285.374737783663, 1286.990736770522, 1288.606735757381, 1290.2227347442401, 1291.8387337310992, 1293.4547327179582, 1295.0707317048173, 1296.6867306916763, 1298.3027296785353, 1299.9187286653944, 1301.5347276522534, 1303.1507266391125, 1304.7667256259715, 1306.3827246128305, 1307.9987235996896, 1309.6147225865486, 1311.2307215734077, 1312.8467205602667, 1314.4627195471257, 1316.0787185339848, 1317.6947175208438, 1319.3107165077029, 1320.926715494562, 1322.542714481421, 1324.15871346828, 1325.774712455139, 1327.390711441998, 1329.006710428857, 1330.6227094157161, 1332.2387084025752, 1333.8547073894342, 1335.4707063762933, 1337.0867053631523, 1338.7027043500113, 1340.3187033368704, 1341.9347023237294, 1343.5507013105885, 1345.1667002974475, 1346.7826992843065, 1348.3986982711656, 1350.0146972580246, 1351.6306962448837, 1353.2466952317427, 1354.8626942186017, 1356.4786932054608, 1358.0946921923198, 1359.7106911791789, 1361.326690166038, 1362.942689152897, 1364.558688139756, 1366.174687126615, 1367.790686113474, 1369.406685100333, 1371.0226840871921, 1372.6386830740512, 1374.2546820609102, 1375.8706810477693, 1377.4866800346283, 1379.1026790214873, 1380.7186780083464, 1382.3346769952054, 1383.9506759820645, 1385.5666749689235, 1387.1826739557825, 1388.7986729426416, 1390.4146719295006, 1392.0306709163597, 1393.6466699032187, 1395.2626688900777, 1396.8786678769368, 1398.4946668637958, 1400.1106658506549, 1401.726664837514, 1403.342663824373, 1404.958662811232, 1406.574661798091, 1408.19066078495, 1409.806659771809, 1411.4226587586681, 1413.0386577455272, 1414.6546567323862, 1416.2706557192453, 1417.8866547061043, 1419.5026536929633, 1421.1186526798224, 1422.7346516666814, 1424.3506506535405, 1425.9666496403995, 1427.5826486272585, 1429.1986476141176, 1430.8146466009766, 1432.4306455878357, 1434.0466445746947, 1435.6626435615538, 1437.2786425484128, 1438.8946415352718, 1440.5106405221309, 1442.12663950899, 1443.742638495849, 1445.358637482708, 1446.974636469567, 1448.590635456426, 1450.206634443285, 1451.8226334301442, 1453.4386324170032, 1455.0546314038622, 1456.6706303907213, 1458.2866293775803, 1459.9026283644394, 1461.5186273512984, 1463.1346263381574, 1464.7506253250165, 1466.3666243118755, 1467.9826232987346, 1469.5986222855936, 1471.2146212724526, 1472.8306202593117, 1474.4466192461707, 1476.0626182330298, 1477.6786172198888, 1479.2946162067478, 1480.9106151936069, 1482.526614180466, 1484.142613167325, 1485.758612154184, 1487.374611141043, 1488.990610127902, 1490.606609114761, 1492.2226081016202, 1493.8386070884792, 1495.4546060753382, 1497.0706050621973, 1498.6866040490563, 1500.3026030359154, 1501.9186020227744, 1503.5346010096334, 1505.1505999964925, 1506.7665989833515, 1508.3825979702106, 1509.9985969570696, 1511.6145959439286, 1513.2305949307877, 1514.8465939176467, 1516.4625929045058, 1518.0785918913648, 1519.6945908782238, 1521.3105898650829, 1522.926588851942, 1524.542587838801, 1526.15858682566, 1527.774585812519, 1529.390584799378, 1531.0065837862371, 1532.6225827730962, 1534.2385817599552, 1535.8545807468142, 1537.4705797336733, 1539.0865787205323, 1540.7025777073914, 1542.3185766942504, 1543.9345756811094, 1545.5505746679685, 1547.1665736548275, 1548.7825726416866, 1550.3985716285456, 1552.0145706154046, 1553.6305696022637, 1555.2465685891227, 1556.8625675759818, 1558.4785665628408, 1560.0945655496998, 1561.7105645365589, 1563.326563523418, 1564.942562510277, 1566.558561497136, 1568.174560483995, 1569.790559470854, 1571.4065584577131, 1573.0225574445722, 1574.6385564314312, 1576.2545554182902, 1577.8705544051493, 1579.4865533920083, 1581.1025523788674, 1582.7185513657264, 1584.3345503525854, 1585.9505493394445, 1587.5665483263035, 1589.1825473131626, 1590.7985463], + "ys": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0000000000000000006341420183441587, 0.00000008333333333552572, 0.00000025000000000521263, 0.0000006666666666817121, 0.0000015000000000353971, 0.0000029999999999973035, 0.000006000000000170541, 0.000010916666666737106, 0.000018500000000511136, 0.000029666666666987602, 0.000045416666667865525, 0.0000665000000008679, 0.00009408333333354824, 0.00012950000000193254, 0.00017491666666765164, 0.00023233333333715523, 0.0003035833333358139, 0.0003914166666735764, 0.0004981666666717046, 0.0006262500000116067, 0.0007793333333424935, 0.0009610000000053544, 0.0011749166666821071, 0.0014259166666772587, 0.0017191666666914554, 0.00206058333335201, 0.0024561666667048407, 0.0029122500000304872, 0.0034351666667232503, 0.004032083333380367, 0.004709833333414518, 0.0054765833334027725, 0.00633933333338656, 0.007305416666765314, 0.008382583333412474, 0.00957833333346919, 0.010901500000112684, 0.012359666666849152, 0.013963750000155421, 0.01572258333357333, 0.017644833333541467, 0.019737583333501434, 0.02200766666693794, 0.024461833333558527, 0.027106833333678772, 0.029947250000292518, 0.032987333333763795, 0.03623125000037041, 0.03968333333386014, 0.04334716666712584, 0.04722591666704737, 0.051320250000558426, 0.05563341666713841, 0.0601665833340014, 0.06491975000057267, 0.06989266666745401, 0.07508508333401627, 0.0804948333342481, 0.08611641666746743, 0.09194783333400865, 0.09798158333348694, 0.10421499999960956, 0.11064808333236888, 0.11727516666926739, 0.12409025000205975, 0.1310882500014855, 0.13826250000087978, 0.1456084166669107, 0.1531207499995884, 0.16079041666557706, 0.16861375000310402, 0.17658358333578308, 0.18469033333510348, 0.1929273333344002, 0.20128666666700862, 0.2097620833329356, 0.21834316666551493, 0.2270258333368206, 0.2358025833360821, 0.24466841666866074, 0.25361950000122335, 0.26264891666710516, 0.27174424999964464, 0.2808995833378686, 0.290108833337084, 0.2993656666696233, 0.30866600000215333, 0.3180029166680092, 0.32736800000052646, 0.3367574999997069, 0.34615666667137274, 0.35556275000388576, 0.3649701666697299, 0.3743734166689075, 0.38376958333475214, 0.39315258333393205, 0.4025179166664481, 0.4118555833380617, 0.42116008333723054, 0.4304191666697392, 0.43962858333558835, 0.44878191666811335, 0.457876666667315, 0.4669087499998601, 0.4758725000045876, 0.48476233333711083, 0.4935726666696467, 0.5022993333355299, 0.5109401666680938, 0.5194900833340075, 0.5279534999999353, 0.5363271666710061, 0.5446098333369075, 0.5527957500028237, 0.5608780000020902, 0.568853833334709, 0.5767239166673461, 0.5844885000000016, 0.5921495000040203, 0.5997099166699827, 0.6071702500026298, 0.6145326666686274, 0.621796916667975, 0.6289600000006734, 0.6360220000000564, 0.6429864166703722, 0.6498533333363951, 0.6566219166691004, 0.6632885000018245, 0.6698557500012319, 0.676321500000657, 0.6826849166667666, 0.6889475000033768, 0.695115083336129, 0.7011899166688985, 0.7071745000016835, 0.713067916667818, 0.7188720000006347, 0.724584500000134, 0.7302056666697349, 0.7357303333358728, 0.7411558333353611, 0.7464808333348676, 0.7517075833343917, 0.7568385000005989, 0.7618722500001565, 0.7668111666693952, 0.7716555000022635, 0.7764110833351465, 0.7810760000013793, 0.7856522500009607, 0.7901390833338912, 0.7945374166668371, 0.7988470833357451, 0.8030700833353338, 0.8072050000016052, 0.8112534166678923, 0.815216916667528, 0.8190975833338451, 0.8228973333335101, 0.8266235833354492, 0.8302779166684306, 0.8338652500014249, 0.8373880833344303, 0.8408458333341138, 0.8442392500004748, 0.8475662500022001, 0.8508289166685439, 0.8540266666682341, 0.8571631666679347, 0.8602371666676468, 0.8632508333340363, 0.866204500000436, 0.8690975833352679, 0.8719330833349876, 0.8747132500013841, 0.8774388333344559, 0.8801083333342047, 0.8827230833339632, 0.8852837500003975, 0.8877874166683576, 0.8902370000014441, 0.892631666667874, 0.8949721666676477, 0.8972613333340979, 0.8995014166672237, 0.9016947500003581, 0.9038427500014701, 0.9059476666679274, 0.9080106666677275, 0.9100355833342014, 0.9120235833340147, 0.9139738333338351, 0.9158877500003281, 0.9177631666679658, 0.9196021666677835, 0.9214057500009423, 0.923177000000774, 0.9249173333339443, 0.9266266666671209, 0.928307916666969, 0.9299603333344932, 0.9315837500009997, 0.9331775833341772, 0.9347405000006929, 0.9362710000005485, 0.9377719166670762, 0.9392442500002752, 0.9406862500010185, 0.9420960833342087, 0.9434743333340714, 0.9448213333339408, 0.946140166667149, 0.9474315000003622, 0.948697416666913, 0.949935583334218, 0.951146750000761, 0.9523300000006419, 0.9534848333338618, 0.9546124166670857, 0.9557112500003151, 0.9567824166668828, 0.9578270833340862, 0.9588465000006484, 0.9598420833338822, 0.9608151666671193, 0.9617642500003603, 0.9626890000002725, 0.9635903333335226, 0.9644703333339729, 0.9653267500005499, 0.966160500000463, 0.9669697500003803, 0.9677540833336352, 0.968513333333562, 0.9692502500001595, 0.9699654166671907, 0.97065975000045, 0.9713338333337133, 0.9719885833336476, 0.9726259166669183, 0.9732460000001922, 0.973849333333469, 0.9744360833337685, 0.975006500000375, 0.9755614166669841, 0.9761010833335967, 0.9766265833335451, 0.9771382500001626, 0.9776360833337503, 0.9781218333336986, 0.9785957500003174, 0.9790599166669383, 0.9795152500002277, 0.9799620833335183, 0.9804002500001434, 0.980828750000363, 0.9812479166669862, 0.9816581666669442, 0.9820595000002365, 0.9824509166668642, 0.9828330833334936, 0.983206083333458, 0.9835702500003105, 0.98392566666694, 0.984273250000238, 0.9846138333335374, 0.9849473333335053, 0.9852750833334741, 0.9855970000001107, 0.9859135833336075, 0.9862245833335753, 0.986529416666878, 0.9868285000001816, 0.987121833333486, 0.987408750000125, 0.9876896666667649, 0.9879646666669055, 0.9882334166668769, 0.9884955833335168, 0.9887524166668243, 0.9890037500001327, 0.9892494166667755, 0.9894894166667527, 0.9897243333335388, 0.9899532500001806, 0.9901760833334898, 0.9903925000001335, 0.9906024166667785, 0.990806250000091, 0.9910036666667382, 0.9911952500001683, 0.9913810833334803, 0.9915608333334606, 0.9917349166667757, 0.9919044166667588, 0.9920698333334093, 0.9922315000000606, 0.9923899166668089, 0.9925455000001263, 0.9926981666667775, 0.9928480000000961, 0.9929953333334153, 0.9931404166667346, 0.9932829166667212, 0.9934227500001265, 0.9935598333334457, 0.9936944166667652, 0.9938260833334185, 0.9939551666667391, 0.9940817500000602, 0.9942057500000484, 0.9943273333334444, 0.9944466666667655, 0.9945640000000867, 0.9946787500000751, 0.9947912500000637, 0.994901250000053, 0.9950090000000427, 0.9951145833334294, 0.9952173333334184, 0.9953176666667413, 0.9954155000000643, 0.9955106666667212, 0.9956034166667121, 0.9956943333333702, 0.9957837500000831, 0.9958720000000745, 0.9959590833333987, 0.9960442500000567, 0.9961276666667152, 0.9962094166667071, 0.9962895833334151, 0.9963684166667399, 0.9964455000000655, 0.9965213333333909, 0.9965955833333832, 0.9966681666667089, 0.9967385833333682, 0.9968067500000694, 0.9968732500000613, 0.9969375000000541, 0.9969999166667141, 0.9970606666667072, 0.9971195000000345, 0.9971765000000284, 0.9972316666667224, 0.997284916666716, 0.9973364166667105, 0.9973867500000386, 0.997436083333367, 0.9974844166666954, 0.9975317500000239, 0.9975777500000473, 0.9976228333333756, 0.9976667500000376, 0.9977096666666998, 0.9977517500000291, 0.997793416666692, 0.9978347500000216, 0.997875833333377, 0.9979172500000403, 0.9979587500000366, 0.9980002500000332, 0.9980420000000294, 0.9980836666666926, 0.9981253333333553, 0.9981668333333773, 0.99820825000004, 0.9982493333333694, 0.9982899166666986, 0.9983299166666947, 0.9983691666666912, 0.9984082500000209, 0.9984468333333741, 0.998485000000037, 0.9985226666667001, 0.9985600000000298, 0.9985968333333596, 0.9986331666666893, 0.9986689166666858, 0.9987036666667031, 0.9987374166666991, 0.9987702500000288, 0.9988022500000254, 0.9988335833333554, 0.9988640833333524, 0.9988940000000162, 0.9989233333333646, 0.9989522500000285, 0.9989808333333589, 0.9990090833333563, 0.9990371666666866, 0.9990644166666838, 0.9990909166666809, 0.9991165833333605, 0.999141500000024, 0.9991655000000212, 0.9991887500000186, 0.9992111666666826, 0.9992326666666802, 0.9992533333333447, 0.9992732500000211, 0.9992924166666851, 0.9993106666666827, 0.9993280000000138, 0.9993445000000116, 0.9993600000000095, 0.9993745833333411, 0.9993883333333474, 0.9994012500000122, 0.9994134166666773, 0.9994248333333426, 0.9994359166666749, 0.999446750000007, 0.9994574166666792, 0.9994678333333448, 0.9994781666666769, 0.9994882500000093, 0.999498166666675, 0.9995080000000074, 0.99951783333334, 0.9995277500000119, 0.9995377500000112, 0.9995479166666771, 0.9995581666666764, 0.9995685833333424, 0.9995792500000081, 0.9995900000000072, 0.9996006666666795, 0.9996112500000116, 0.9996216666666773, 0.9996319166666761, 0.9996418333333416, 0.9996514166666737, 0.9996606666666727, 0.999669666666677, 0.9996782500000092, 0.9996865000000082, 0.9996944166666738, 0.9997020000000062, 0.9997092500000051, 0.999716000000004, 0.9997222500000069, 0.9997280833333393, 0.9997335833333383, 0.9997385833333375, 0.9997431666666702, 0.9997474166666696, 0.9997514166666691, 0.9997551666666707, 0.9997587500000036, 0.99976216666667, 0.9997655000000029, 0.9997687500000026, 0.9997720000000023, 0.9997752500000021, 0.9997786666666708, 0.9997822500000041, 0.999786000000004, 0.9997899166666703, 0.9997940000000035, 0.9997983333333367, 0.9998029166666696, 0.9998075833333389, 0.9998123333333387, 0.999817250000005, 0.9998221666666711, 0.9998270833333374, 0.9998320000000037, 0.9998369166666701, 0.9998418333333392, 0.9998467500000056, 0.9998516666666718, 0.9998565833333379, 0.9998613333333373, 0.9998659166666699, 0.9998701666666694, 0.9998740833333377, 0.9998776666666702, 0.9998809166666696, 0.9998838333333356, 0.9998864166666684, 0.9998886666666681, 0.9998906666666676, 0.9998924166666682, 0.9998939166666678, 0.9998952500000009, 0.9998964166666672, 0.999897416666667, 0.9998982500000001, 0.9998989166666666, 0.9998994166666666, 0.9998997499999998, 0.9998999166666662, 0.9998999999999996, 0.9998999999999996, 0.9998999999999997, 0.9998999999999996, 0.9998999999999996, 0.9998999999999996, 0.9998999999999996, 0.9998999999999996, 0.9998999999999996, 0.9998999999999996, 0.9998999999999996, 0.9998999999999996, 0.9998999999999996, 0.9998999999999995, 0.9998999999999997, 0.999900083333333, 0.9999002499999998, 0.9999005000000002, 0.9999008333333336, 0.9999012500000003, 0.9999017500000003, 0.9999023333333336, 0.9999030000000003, 0.9999037500000002, 0.9999045833333343, 0.9999055000000008, 0.9999065000000009, 0.9999075833333343, 0.9999087500000009, 0.9999100000000009, 0.999911333333334, 0.9999127500000017, 0.9999142500000016, 0.9999158333333349, 0.9999175000000013, 0.9999190833333345, 0.9999205833333342, 0.9999220000000006, 0.9999233333333346, 0.9999245833333341, 0.9999257500000006, 0.9999268333333339, 0.9999278333333338, 0.9999287500000003, 0.9999295833333334, 0.9999303333333337, 0.9999310000000001, 0.9999315833333332, 0.9999320833333332, 0.9999325833333332, 0.999933083333333, 0.9999335833333329, 0.9999340833333331, 0.9999345833333331, 0.9999350833333331, 0.9999356666666664, 0.9999363333333332, 0.9999370833333331, 0.9999379166666665, 0.9999388333333338, 0.9999398333333339, 0.9999409166666673, 0.9999420833333339, 0.9999433333333339, 0.999944666666667, 0.9999460833333336, 0.9999475833333344, 0.9999491666666679, 0.9999508333333343, 0.9999524166666673, 0.9999539166666672, 0.9999553333333335, 0.9999566666666667, 0.9999579166666672, 0.9999590833333336, 0.9999601666666668, 0.9999611666666666, 0.999962083333333, 0.9999629166666663, 0.9999636666666661, 0.999964333333333, 0.9999649166666661, 0.9999654166666659, 0.9999658333333323, 0.9999661666666655, 0.9999664166666655, 0.9999665833333321, 0.9999666666666653, 0.9999666666666653, 0.9999666666666654, 0.9999666666666652, 0.9999666666666653, 0.9999666666666653, 0.9999666666666652, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666652, 0.9999666666666653, 0.9999666666666653, 0.9999666666666654, 0.9999666666666653, 0.9999666666666652, 0.9999666666666653, 0.9999666666666653, 0.9999666666666654, 0.9999666666666653, 0.9999666666666653, 0.9999666666666654, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666652, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666652, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666654, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666652, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666652, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666652, 0.9999666666666654, 0.9999666666666654, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666654, 0.9999666666666653, 0.9999666666666654, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666654, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666652, 0.9999666666666653, 0.9999666666666653, 0.9999666666666652, 0.9999666666666652, 0.9999666666666652, 0.9999666666666654, 0.9999666666666653, 0.9999666666666652, 0.9999666666666654, 0.9999666666666653, 0.9999666666666654, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666652, 0.9999666666666653, 0.9999666666666652, 0.9999666666666654, 0.9999666666666653, 0.9999666666666652, 0.9999666666666654, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666654, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666654, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666652, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666652, 0.9999666666666653, 0.9999666666666652, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666652, 0.9999666666666653, 0.9999666666666653, 0.9999666666666654, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666652, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666654, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666652, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666652, 0.9999666666666653, 0.9999666666666653, 0.9999666666666652, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666654, 0.9999666666666653, 0.9999666666666652, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666654, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666652, 0.9999666666666653, 0.9999666666666652, 0.9999666666666653, 0.9999666666666653, 0.9999666666666652, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666652, 0.9999666666666654, 0.9999666666666653, 0.9999666666666653, 0.9999666666666654, 0.9999666666666653, 0.9999666666666654, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666652, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666652, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666654, 0.9999666666666653, 0.9999666666666654, 0.9999666666666653, 0.9999666666666653, 0.9999666666666654, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666652, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666652, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666652, 0.9999666666666654, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666652, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666652, 0.9999666666666653, 0.9999666666666652, 0.9999666666666653, 0.9999666666666654, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666654, 0.9999666666666653, 0.9999666666666652, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666654, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666652, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666654, 0.9999666666666652, 0.9999666666666653, 0.9999666666666654, 0.9999666666666653, 0.9999666666666652, 0.9999666666666654, 0.9999666666666653, 0.9999666666666652, 0.9999666666666654, 0.9999666666666653, 0.9999666666666654, 0.9999666666666653, 0.9999666666666653, 0.9999666666666653, 0.9999666666666654, 0.9999667499999987, 0.9999669166666663, 0.9999671666666661, 0.9999674999999986, 0.9999679166666673, 0.9999684166666665, 0.9999689999999987, 0.9999696666666685, 0.9999704166666672, 0.9999712499999989, 0.9999721666666699, 0.9999731666666682, 0.9999742499999996, 0.9999754166666717, 0.9999766666666694, 0.9999780000000003, 0.9999794166666641, 0.9999809166666707, 0.999982500000001, 0.9999841666666645, 0.9999857500000042, 0.9999872500000011, 0.999988666666665, 0.9999900000000036, 0.999991250000001, 0.9999924166666652, 0.999993500000003, 0.9999945000000008, 0.9999954166666656, 0.9999962500000021, 0.9999970000000004, 0.9999976666666656, 0.9999982499999978, 0.9999987499999997, 0.9999991666666654, 0.9999994999999979, 0.9999997499999987, 0.999999916666665, 0.9999999999999982, 0.9999999999999982, 0.9999999999999982, 0.9999999999999982, 0.9999999999999982, 0.9999999999999982, 0.9999999999999982, 0.9999999999999982, 0.9999999999999982, 0.9999999999999982, 0.9999999999999982, 0.9999999999999982, 0.9999999999999982, 0.9999999999999982, 0.9999999999999982, 0.9999999999999982, 0.9999999999999982, 0.9999999999999982, 0.9999999999999982, 0.9999999999999982] + }, + { + "createdAt": "2019-10-24T09:14:00.558+00:00", + "xs": [-35.9288300676, -34.300474335500304, -32.672118603400605, -31.043762871300906, -29.415407139201207, -27.787051407101508, -26.15869567500181, -24.53033994290211, -22.90198421080241, -21.27362847870271, -19.645272746603013, -18.016917014503314, -16.388561282403614, -14.760205550303915, -13.131849818204216, -11.503494086104517, -9.875138354004818, -8.246782621905119, -6.618426889805419, -4.990071157705719, -3.361715425606019, -1.7333596935063194, -0.1050039614066196, 1.5233517706930801, 3.15170750279278, 4.78006323489248, 6.40841896699218, 8.036774699091879, 9.665130431191578, 11.293486163291277, 12.921841895390976, 14.550197627490675, 16.178553359590374, 17.806909091690073, 19.435264823789772, 21.06362055588947, 22.69197628798917, 24.32033202008887, 25.94868775218857, 27.577043484288268, 29.205399216387967, 30.833754948487666, 32.462110680587365, 34.090466412687064, 35.71882214478676, 37.34717787688646, 38.97553360898616, 40.60388934108586, 42.23224507318556, 43.86060080528526, 45.48895653738496, 47.11731226948466, 48.745668001584356, 50.374023733684055, 52.002379465783754, 53.63073519788345, 55.25909092998315, 56.88744666208285, 58.51580239418255, 60.14415812628225, 61.77251385838195, 63.40086959048165, 65.02922532258135, 66.65758105468106, 68.28593678678077, 69.91429251888047, 71.54264825098018, 73.17100398307988, 74.79935971517959, 76.4277154472793, 78.056071179379, 79.68442691147871, 81.31278264357842, 82.94113837567812, 84.56949410777783, 86.19784983987753, 87.82620557197724, 89.45456130407695, 91.08291703617665, 92.71127276827636, 94.33962850037607, 95.96798423247577, 97.59633996457548, 99.22469569667518, 100.85305142877489, 102.4814071608746, 104.1097628929743, 105.73811862507401, 107.36647435717371, 108.99483008927342, 110.62318582137313, 112.25154155347283, 113.87989728557254, 115.50825301767225, 117.13660874977195, 118.76496448187166, 120.39332021397136, 122.02167594607107, 123.65003167817078, 125.27838741027048, 126.90674314237019, 128.5350988744699, 130.1634546065696, 131.79181033866928, 133.42016607076897, 135.04852180286866, 136.67687753496836, 138.30523326706805, 139.93358899916774, 141.56194473126743, 143.19030046336712, 144.81865619546682, 146.4470119275665, 148.0753676596662, 149.7037233917659, 151.33207912386558, 152.96043485596527, 154.58879058806497, 156.21714632016466, 157.84550205226435, 159.47385778436404, 161.10221351646373, 162.73056924856343, 164.35892498066312, 165.9872807127628, 167.6156364448625, 169.2439921769622, 170.8723479090619, 172.50070364116158, 174.12905937326127, 175.75741510536096, 177.38577083746065, 179.01412656956035, 180.64248230166004, 182.27083803375973, 183.89919376585942, 185.52754949795911, 187.1559052300588, 188.7842609621585, 190.4126166942582, 192.04097242635788, 193.66932815845757, 195.29768389055727, 196.92603962265696, 198.55439535475665, 200.18275108685634, 201.81110681895603, 203.43946255105573, 205.06781828315542, 206.6961740152551, 208.3245297473548, 209.9528854794545, 211.5812412115542, 213.20959694365388, 214.83795267575357, 216.46630840785326, 218.09466413995295, 219.72301987205265, 221.35137560415234, 222.97973133625203, 224.60808706835172, 226.2364428004514, 227.8647985325511, 229.4931542646508, 231.1215099967505, 232.74986572885018, 234.37822146094987, 236.00657719304957, 237.63493292514926, 239.26328865724895, 240.89164438934864, 242.52000012144833, 244.14835585354803, 245.77671158564772, 247.4050673177474, 249.0334230498471, 250.6617787819468, 252.29013451404649, 253.91849024614618, 255.54684597824587, 257.17520171034556, 258.80355744244525, 260.43191317454495, 262.06026890664464, 263.68862463874433, 265.316980370844, 266.9453361029437, 268.5736918350434, 270.2020475671431, 271.8304032992428, 273.4587590313425, 275.0871147634422, 276.71547049554187, 278.34382622764156, 279.97218195974125, 281.60053769184094, 283.22889342394063, 284.8572491560403, 286.48560488814, 288.1139606202397, 289.7423163523394, 291.3706720844391, 292.9990278165388, 294.6273835486385, 296.25573928073817, 297.88409501283786, 299.51245074493755, 301.14080647703724, 302.76916220913694, 304.39751794123663, 306.0258736733363, 307.654229405436, 309.2825851375357, 310.9109408696354, 312.5392966017351, 314.1676523338348, 315.7960080659345, 317.42436379803416, 319.05271953013386, 320.68107526223355, 322.30943099433324, 323.93778672643293, 325.5661424585326, 327.1944981906323, 328.822853922732, 330.4512096548317, 332.0795653869314, 333.7079211190311, 335.3362768511308, 336.96463258323047, 338.59298831533016, 340.22134404742985, 341.84969977952954, 343.47805551162924, 345.1064112437289, 346.7347669758286, 348.3631227079283, 349.991478440028, 351.6198341721277, 353.2481899042274, 354.8765456363271, 356.5049013684268, 358.13325710052646, 359.76161283262616, 361.38996856472585, 363.01832429682554, 364.64668002892523, 366.2750357610249, 367.9033914931246, 369.5317472252243, 371.160102957324, 372.7884586894237, 374.4168144215234, 376.0451701536231, 377.67352588572277, 379.30188161782246, 380.93023734992215, 382.55859308202184, 384.18694881412154, 385.8153045462212, 387.4436602783209, 389.0720160104206, 390.7003717425203, 392.32872747462, 393.9570832067197, 395.5854389388194, 397.21379467091907, 398.84215040301876, 400.47050613511846, 402.09886186721815, 403.72721759931784, 405.35557333141753, 406.9839290635172, 408.6122847956169, 410.2406405277166, 411.8689962598163, 413.497351991916, 415.1257077240157, 416.7540634561154, 418.38241918821507, 420.01077492031476, 421.63913065241445, 423.26748638451414, 424.89584211661384, 426.5241978487135, 428.1525535808132, 429.7809093129129, 431.4092650450126, 433.0376207771123, 434.665976509212, 436.2943322413117, 437.92268797341137, 439.55104370551106, 441.17939943761075, 442.80775516971045, 444.43611090181014, 446.06446663390983, 447.6928223660095, 449.3211780981092, 450.9495338302089, 452.5778895623086, 454.2062452944083, 455.834601026508, 457.4629567586077, 459.09131249070737, 460.71966822280706, 462.34802395490675, 463.97637968700644, 465.60473541910613, 467.2330911512058, 468.8614468833055, 470.4898026154052, 472.1181583475049, 473.7465140796046, 475.3748698117043, 477.003225543804, 478.63158127590367, 480.25993700800336, 481.88829274010305, 483.51664847220275, 485.14500420430244, 486.77335993640213, 488.4017156685018, 490.0300714006015, 491.6584271327012, 493.2867828648009, 494.9151385969006, 496.5434943290003, 498.1718500611, 499.80020579319967, 501.42856152529936, 503.05691725739905, 504.68527298949874, 506.31362872159843, 507.9419844536981, 509.5703401857978, 511.1986959178975, 512.8270516499972, 514.455407382097, 516.0837631141967, 517.7121188462964, 519.3404745783962, 520.968830310496, 522.5971860425957, 524.2255417746954, 525.8538975067952, 527.4822532388949, 529.1106089709947, 530.7389647030944, 532.3673204351942, 533.9956761672939, 535.6240318993937, 537.2523876314934, 538.8807433635932, 540.5090990956929, 542.1374548277927, 543.7658105598924, 545.3941662919922, 547.0225220240919, 548.6508777561917, 550.2792334882914, 551.9075892203912, 553.5359449524909, 555.1643006845907, 556.7926564166904, 558.4210121487902, 560.0493678808899, 561.6777236129897, 563.3060793450894, 564.9344350771892, 566.5627908092889, 568.1911465413887, 569.8195022734884, 571.4478580055882, 573.0762137376879, 574.7045694697877, 576.3329252018874, 577.9612809339872, 579.5896366660869, 581.2179923981867, 582.8463481302864, 584.4747038623861, 586.1030595944859, 587.7314153265856, 589.3597710586854, 590.9881267907851, 592.6164825228849, 594.2448382549846, 595.8731939870844, 597.5015497191841, 599.1299054512839, 600.7582611833836, 602.3866169154834, 604.0149726475831, 605.6433283796829, 607.2716841117826, 608.9000398438824, 610.5283955759821, 612.1567513080819, 613.7851070401816, 615.4134627722814, 617.0418185043811, 618.6701742364809, 620.2985299685806, 621.9268857006804, 623.5552414327801, 625.1835971648799, 626.8119528969796, 628.4403086290794, 630.0686643611791, 631.6970200932789, 633.3253758253786, 634.9537315574784, 636.5820872895781, 638.2104430216779, 639.8387987537776, 641.4671544858774, 643.0955102179771, 644.7238659500769, 646.3522216821766, 647.9805774142764, 649.6089331463761, 651.2372888784759, 652.8656446105756, 654.4940003426753, 656.1223560747751, 657.7507118068748, 659.3790675389746, 661.0074232710743, 662.6357790031741, 664.2641347352738, 665.8924904673736, 667.5208461994733, 669.1492019315731, 670.7775576636728, 672.4059133957726, 674.0342691278723, 675.6626248599721, 677.2909805920718, 678.9193363241716, 680.5476920562713, 682.1760477883711, 683.8044035204708, 685.4327592525706, 687.0611149846703, 688.6894707167701, 690.3178264488698, 691.9461821809696, 693.5745379130693, 695.2028936451691, 696.8312493772688, 698.4596051093686, 700.0879608414683, 701.7163165735681, 703.3446723056678, 704.9730280377676, 706.6013837698673, 708.2297395019671, 709.8580952340668, 711.4864509661666, 713.1148066982663, 714.743162430366, 716.3715181624658, 717.9998738945656, 719.6282296266653, 721.256585358765, 722.8849410908648, 724.5132968229645, 726.1416525550643, 727.770008287164, 729.3983640192638, 731.0267197513635, 732.6550754834633, 734.283431215563, 735.9117869476628, 737.5401426797625, 739.1684984118623, 740.796854143962, 742.4252098760618, 744.0535656081615, 745.6819213402613, 747.310277072361, 748.9386328044608, 750.5669885365605, 752.1953442686603, 753.82370000076, 755.4520557328598, 757.0804114649595, 758.7087671970593, 760.337122929159, 761.9654786612588, 763.5938343933585, 765.2221901254583, 766.850545857558, 768.4789015896578, 770.1072573217575, 771.7356130538573, 773.363968785957, 774.9923245180568, 776.6206802501565, 778.2490359822563, 779.877391714356, 781.5057474464558, 783.1341031785555, 784.7624589106553, 786.390814642755, 788.0191703748548, 789.6475261069545, 791.2758818390543, 792.904237571154, 794.5325933032537, 796.1609490353535, 797.7893047674532, 799.417660499553, 801.0460162316527, 802.6743719637525, 804.3027276958522, 805.931083427952, 807.5594391600517, 809.1877948921515, 810.8161506242512, 812.444506356351, 814.0728620884507, 815.7012178205505, 817.3295735526502, 818.95792928475, 820.5862850168497, 822.2146407489495, 823.8429964810492, 825.471352213149, 827.0997079452487, 828.7280636773485, 830.3564194094482, 831.984775141548, 833.6131308736477, 835.2414866057475, 836.8698423378472, 838.498198069947, 840.1265538020467, 841.7549095341465, 843.3832652662462, 845.011620998346, 846.6399767304457, 848.2683324625455, 849.8966881946452, 851.525043926745, 853.1533996588447, 854.7817553909445, 856.4101111230442, 858.038466855144, 859.6668225872437, 861.2951783193434, 862.9235340514432, 864.551889783543, 866.1802455156427, 867.8086012477424, 869.4369569798422, 871.0653127119419, 872.6936684440417, 874.3220241761414, 875.9503799082412, 877.5787356403409, 879.2070913724407, 880.8354471045404, 882.4638028366402, 884.0921585687399, 885.7205143008397, 887.3488700329394, 888.9772257650392, 890.6055814971389, 892.2339372292387, 893.8622929613384, 895.4906486934382, 897.1190044255379, 898.7473601576377, 900.3757158897374, 902.0040716218372, 903.6324273539369, 905.2607830860367, 906.8891388181364, 908.5174945502362, 910.1458502823359, 911.7742060144357, 913.4025617465354, 915.0309174786352, 916.6592732107349, 918.2876289428347, 919.9159846749344, 921.5443404070342, 923.1726961391339, 924.8010518712337, 926.4294076033334, 928.0577633354332, 929.6861190675329, 931.3144747996326, 932.9428305317324, 934.5711862638321, 936.1995419959319, 937.8278977280316, 939.4562534601314, 941.0846091922311, 942.7129649243309, 944.3413206564306, 945.9696763885304, 947.5980321206301, 949.2263878527299, 950.8547435848296, 952.4830993169294, 954.1114550490291, 955.7398107811289, 957.3681665132286, 958.9965222453284, 960.6248779774281, 962.2532337095279, 963.8815894416276, 965.5099451737274, 967.1383009058271, 968.7666566379269, 970.3950123700266, 972.0233681021264, 973.6517238342261, 975.2800795663259, 976.9084352984256, 978.5367910305254, 980.1651467626251, 981.7935024947249, 983.4218582268246, 985.0502139589244, 986.6785696910241, 988.3069254231239, 989.9352811552236, 991.5636368873234, 993.1919926194231, 994.8203483515229, 996.4487040836226, 998.0770598157224, 999.7054155478221, 1001.3337712799218, 1002.9621270120216, 1004.5904827441213, 1006.2188384762211, 1007.8471942083208, 1009.4755499404206, 1011.1039056725203, 1012.7322614046201, 1014.3606171367198, 1015.9889728688196, 1017.6173286009193, 1019.2456843330191, 1020.8740400651188, 1022.5023957972186, 1024.1307515293183, 1025.759107261418, 1027.3874629935176, 1029.0158187256172, 1030.6441744577169, 1032.2725301898165, 1033.9008859219161, 1035.5292416540158, 1037.1575973861154, 1038.785953118215, 1040.4143088503147, 1042.0426645824143, 1043.671020314514, 1045.2993760466136, 1046.9277317787132, 1048.5560875108129, 1050.1844432429125, 1051.8127989750121, 1053.4411547071118, 1055.0695104392114, 1056.697866171311, 1058.3262219034107, 1059.9545776355103, 1061.58293336761, 1063.2112890997096, 1064.8396448318092, 1066.4680005639088, 1068.0963562960085, 1069.7247120281081, 1071.3530677602078, 1072.9814234923074, 1074.609779224407, 1076.2381349565067, 1077.8664906886063, 1079.494846420706, 1081.1232021528056, 1082.7515578849052, 1084.3799136170048, 1086.0082693491045, 1087.636625081204, 1089.2649808133037, 1090.8933365454034, 1092.521692277503, 1094.1500480096026, 1095.7784037417023, 1097.406759473802, 1099.0351152059015, 1100.6634709380012, 1102.2918266701008, 1103.9201824022005, 1105.5485381343, 1107.1768938663997, 1108.8052495984994, 1110.433605330599, 1112.0619610626986, 1113.6903167947983, 1115.318672526898, 1116.9470282589975, 1118.5753839910972, 1120.2037397231968, 1121.8320954552964, 1123.460451187396, 1125.0888069194957, 1126.7171626515953, 1128.345518383695, 1129.9738741157946, 1131.6022298478943, 1133.2305855799939, 1134.8589413120935, 1136.4872970441932, 1138.1156527762928, 1139.7440085083924, 1141.372364240492, 1143.0007199725917, 1144.6290757046913, 1146.257431436791, 1147.8857871688906, 1149.5141429009902, 1151.1424986330899, 1152.7708543651895, 1154.3992100972891, 1156.0275658293888, 1157.6559215614884, 1159.284277293588, 1160.9126330256877, 1162.5409887577873, 1164.169344489887, 1165.7977002219866, 1167.4260559540862, 1169.0544116861859, 1170.6827674182855, 1172.3111231503851, 1173.9394788824848, 1175.5678346145844, 1177.196190346684, 1178.8245460787837, 1180.4529018108833, 1182.081257542983, 1183.7096132750826, 1185.3379690071822, 1186.9663247392818, 1188.5946804713815, 1190.2230362034811, 1191.8513919355808, 1193.4797476676804, 1195.10810339978, 1196.7364591318797, 1198.3648148639793, 1199.993170596079, 1201.6215263281786, 1203.2498820602782, 1204.8782377923778, 1206.5065935244775, 1208.134949256577, 1209.7633049886767, 1211.3916607207764, 1213.020016452876, 1214.6483721849756, 1216.2767279170753, 1217.905083649175, 1219.5334393812745, 1221.1617951133742, 1222.7901508454738, 1224.4185065775735, 1226.046862309673, 1227.6752180417727, 1229.3035737738724, 1230.931929505972, 1232.5602852380716, 1234.1886409701713, 1235.816996702271, 1237.4453524343705, 1239.0737081664702, 1240.7020638985698, 1242.3304196306694, 1243.958775362769, 1245.5871310948687, 1247.2154868269683, 1248.843842559068, 1250.4721982911676, 1252.1005540232673, 1253.7289097553669, 1255.3572654874665, 1256.9856212195662, 1258.6139769516658, 1260.2423326837654, 1261.870688415865, 1263.4990441479647, 1265.1273998800643, 1266.755755612164, 1268.3841113442636, 1270.0124670763632, 1271.6408228084629, 1273.2691785405625, 1274.8975342726621, 1276.5258900047618, 1278.1542457368614, 1279.782601468961, 1281.4109572010607, 1283.0393129331603, 1284.66766866526, 1286.2960243973596, 1287.9243801294592, 1289.5527358615589, 1291.1810915936585, 1292.8094473257581, 1294.4378030578578, 1296.0661587899574, 1297.694514522057, 1299.3228702541567, 1300.9512259862563, 1302.579581718356, 1304.2079374504556, 1305.8362931825552, 1307.4646489146548, 1309.0930046467545, 1310.7213603788541, 1312.3497161109538, 1313.9780718430534, 1315.606427575153, 1317.2347833072527, 1318.8631390393523, 1320.491494771452, 1322.1198505035516, 1323.7482062356512, 1325.3765619677508, 1327.0049176998505, 1328.63327343195, 1330.2616291640497, 1331.8899848961494, 1333.518340628249, 1335.1466963603486, 1336.7750520924483, 1338.403407824548, 1340.0317635566475, 1341.6601192887472, 1343.2884750208468, 1344.9168307529465, 1346.545186485046, 1348.1735422171457, 1349.8018979492454, 1351.430253681345, 1353.0586094134446, 1354.6869651455443, 1356.315320877644, 1357.9436766097435, 1359.5720323418432, 1361.2003880739428, 1362.8287438060424, 1364.457099538142, 1366.0854552702417, 1367.7138110023413, 1369.342166734441, 1370.9705224665406, 1372.5988781986403, 1374.2272339307399, 1375.8555896628395, 1377.4839453949392, 1379.1123011270388, 1380.7406568591384, 1382.369012591238, 1383.9973683233377, 1385.6257240554373, 1387.254079787537, 1388.8824355196366, 1390.5107912517362, 1392.1391469838359, 1393.7675027159355, 1395.3958584480351, 1397.0242141801348, 1398.6525699122344, 1400.280925644334, 1401.9092813764337, 1403.5376371085333, 1405.165992840633, 1406.7943485727326, 1408.4227043048322, 1410.0510600369319, 1411.6794157690315, 1413.3077715011311, 1414.9361272332308, 1416.5644829653304, 1418.19283869743, 1419.8211944295297, 1421.4495501616293, 1423.077905893729, 1424.7062616258286, 1426.3346173579282, 1427.9629730900278, 1429.5913288221275, 1431.2196845542271, 1432.8480402863267, 1434.4763960184264, 1436.104751750526, 1437.7331074826257, 1439.3614632147253, 1440.989818946825, 1442.6181746789246, 1444.2465304110242, 1445.8748861431238, 1447.5032418752235, 1449.131597607323, 1450.7599533394227, 1452.3883090715224, 1454.016664803622, 1455.6450205357216, 1457.2733762678213, 1458.901731999921, 1460.5300877320205, 1462.1584434641202, 1463.7867991962198, 1465.4151549283195, 1467.043510660419, 1468.6718663925187, 1470.3002221246184, 1471.928577856718, 1473.5569335888176, 1475.1852893209173, 1476.813645053017, 1478.4420007851165, 1480.0703565172162, 1481.6987122493158, 1483.3270679814154, 1484.955423713515, 1486.5837794456147, 1488.2121351777143, 1489.840490909814, 1491.4688466419136, 1493.0972023740132, 1494.7255581061129, 1496.3539138382125, 1497.9822695703122, 1499.6106253024118, 1501.2389810345114, 1502.867336766611, 1504.4956924987107, 1506.1240482308103, 1507.75240396291, 1509.3807596950096, 1511.0091154271092, 1512.6374711592089, 1514.2658268913085, 1515.8941826234081, 1517.5225383555078, 1519.1508940876074, 1520.779249819707, 1522.4076055518067, 1524.0359612839063, 1525.664317016006, 1527.2926727481056, 1528.9210284802052, 1530.5493842123049, 1532.1777399444045, 1533.8060956765041, 1535.4344514086038, 1537.0628071407034, 1538.691162872803, 1540.3195186049027, 1541.9478743370023, 1543.576230069102, 1545.2045858012016, 1546.8329415333012, 1548.4612972654008, 1550.0896529975005, 1551.7180087296001, 1553.3463644616997, 1554.9747201937994, 1556.603075925899, 1558.2314316579987, 1559.8597873900983, 1561.488143122198, 1563.1164988542976, 1564.7448545863972, 1566.3732103184968, 1568.0015660505965, 1569.629921782696, 1571.2582775147957, 1572.8866332468954, 1574.514988978995, 1576.1433447110946, 1577.7717004431943, 1579.400056175294, 1581.0284119073935, 1582.6567676394932, 1584.2851233715928, 1585.9134791036925, 1587.541834835792, 1589.1701905678917, 1590.7985462999914], + "ys": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0000058639034885375905, 0.000026844869484549124, 0.00007465527938127328, 0.00015996806458953505, 0.0002910940128377373, 0.00047977168054957957, 0.0007377542264736794, 0.0010718951036401139, 0.0014959622304012011, 0.0020245973816230803, 0.0026608250754464593, 0.003418668263695542, 0.00430507114105514, 0.005302236466787319, 0.006404777924383072, 0.007610463252485741, 0.00889882507399549, 0.010263848667882634, 0.011704342096197834, 0.013202046041211163, 0.014749025469257425, 0.016340546979134493, 0.017964145360986495, 0.019611716428677716, 0.021281832001202657, 0.02296957314577556, 0.024671729859985454, 0.026391693858943254, 0.028131933332431153, 0.02989130915524198, 0.03166993834558307, 0.03346742971214953, 0.03528460352364794, 0.037124592437449776, 0.038986498130658624, 0.04086880392957369, 0.04277107610691997, 0.044698493182335396, 0.046656264037538746, 0.048645576923762805, 0.050670731174670906, 0.052737003711237705, 0.05485069687279776, 0.05701865105838081, 0.05924289209345485, 0.06152665400324802, 0.0638767483506541, 0.06629607482170691, 0.06878981660698259, 0.07136291346507415, 0.07401752681040262, 0.07676095353664227, 0.07959742108715734, 0.08252766378741949, 0.08555389242764568, 0.08867855883876898, 0.0919026626939761, 0.09522674773133318, 0.0986531687763075, 0.10218688905766822, 0.10583032036537335, 0.10958633944581779, 0.1134555184614428, 0.11743899678653638, 0.12153819902604993, 0.12575691511088224, 0.1300930697807739, 0.13454604276302928, 0.13911570530326464, 0.1438036625747026, 0.14860811678782543, 0.15352679546167547, 0.15855778232117373, 0.16369766792262236, 0.16894777197556674, 0.17430603895376773, 0.17976887036758823, 0.18533165369487697, 0.19099514704299592, 0.19675993064558528, 0.20262761775746263, 0.2085927302754244, 0.21465063588813899, 0.22079756389247102, 0.22703175951909557, 0.23334785092090696, 0.23973990162891246, 0.2462022497675713, 0.252730526387261, 0.25931936480577167, 0.2659624467646415, 0.27265251381134303, 0.27938771244561467, 0.28616847258870315, 0.2929908284281947, 0.2998506311541004, 0.30674178132267993, 0.3136632421777576, 0.3206173732363592, 0.3276011428448129, 0.33460684137433966, 0.3416319345151963, 0.3486757040601167, 0.35572961099337663, 0.362787207395611, 0.369842771093486, 0.3768922297580797, 0.3839309806748822, 0.390954526641497, 0.39795419954673916, 0.4049181128356918, 0.4118426162532157, 0.4187291879281571, 0.4255736317737248, 0.4323706052579235, 0.43912156045485795, 0.4458278363195515, 0.45248619074060537, 0.4590974775993337, 0.4656618307200556, 0.47217647853988065, 0.47864741345860273, 0.4850798578603426, 0.49147547128054664, 0.49783018037703064, 0.5041443256475515, 0.5104156528493491, 0.5166451532136267, 0.5228318086542318, 0.528977820715336, 0.5350829544147389, 0.5411463474193432, 0.5471703024224981, 0.5531497715284482, 0.5590801985247787, 0.5649558720033616, 0.5707764401465241, 0.5765444875802539, 0.5822615048038629, 0.5879225255266194, 0.5935264730956444, 0.5990711464023672, 0.604554615487775, 0.6099784534951032, 0.6153425443200566, 0.620650187959361, 0.6259072423775824, 0.6311202764515567, 0.6362875504720911, 0.6414045537873859, 0.6464679502608573, 0.6514767528456933, 0.6564267396759147, 0.6613153156902059, 0.666140389206337, 0.6709000819933224, 0.6755967998192761, 0.6802304363692458, 0.6847992385456757, 0.6893030934096979, 0.6937460388315545, 0.698126971240699, 0.7024486143810678, 0.7067097473281572, 0.7109099002196293, 0.7150521591983721, 0.7191372426846416, 0.7231621788833182, 0.7271301495829962, 0.7310416982683396, 0.7348939958117024, 0.7386879924273078, 0.7424261794432381, 0.7461116888626762, 0.7497507611344534, 0.7533492925886176, 0.7569087398868615, 0.7604305429744275, 0.7639146464815947, 0.767360657165388, 0.770763775352358, 0.7741260709805046, 0.7774496476728049, 0.7807372241068877, 0.7839900290662809, 0.7872060387912045, 0.790382217299184, 0.7935154602883716, 0.796604156441391, 0.7996446400507622, 0.8026402801874126, 0.8055935402000112, 0.8085047807105659, 0.8113777666054736, 0.8142114457445563, 0.8170033635164691, 0.8197563089290392, 0.8224719894779998, 0.8251514218750913, 0.8278008267954855, 0.8304216310891496, 0.8330139411031613, 0.8355798017674549, 0.8381188939963665, 0.8406307800540465, 0.8431147042368285, 0.845569726306336, 0.8479959321899599, 0.8503934305652598, 0.8527655425137056, 0.8551134549465336, 0.8574327930138316, 0.8597243247553479, 0.861988378053397, 0.8642239579437128, 0.8664347587916744, 0.8686184788941842, 0.8707739020520149, 0.8729058830300627, 0.8750156558239226, 0.8771027558532569, 0.8791646780790863, 0.8812014024005994, 0.8832157059616392, 0.8852135571598495, 0.8871928166353986, 0.8891526748226366, 0.8910873518564673, 0.8929975417078067, 0.8948807514592031, 0.896731728556066, 0.8985494426140006, 0.900329766280764, 0.9020752747975693, 0.90378821516815, 0.9054666305022494, 0.9071068013908483, 0.9087128869145351, 0.9102840613129357, 0.9118221893990315, 0.9133306920275425, 0.9148106287251094, 0.9162660946287626, 0.9177014946531176, 0.9191158701174634, 0.9205087913266747, 0.9218800897615652, 0.9232305149567719, 0.9245600763565202, 0.9258684931121466, 0.9271550142444007, 0.9284199937624746, 0.9296650346412783, 0.9308908487910466, 0.9320924010133304, 0.9332681439038344, 0.9344193260280361, 0.9355435827183933, 0.9366419151406351, 0.9377175684623127, 0.9387725189083684, 0.9398080690198092, 0.9408270645752504, 0.9418280911101755, 0.9428110331073033, 0.9437765728379807, 0.9447266380554021, 0.9456621806031127, 0.9465849328697185, 0.9474965559302133, 0.9483979049962385, 0.9492859313101403, 0.9501582903534272, 0.9510161323563816, 0.9518597604105674, 0.9526906429750274, 0.9535090230561226, 0.9543173064324979, 0.9551166447262938, 0.955907283137148, 0.9566891849758226, 0.9574621355848689, 0.9582262371110177, 0.9589851871185131, 0.959739440928364, 0.9604885631490497, 0.9612328137145668, 0.9619715618704927, 0.9627040472187778, 0.9634278232111693, 0.9641413209510389, 0.9648439541913754, 0.9655370886867625, 0.9662205549793212, 0.9668927312628083, 0.9675518758642123, 0.9682000564955537, 0.9688370478519894, 0.969462123632097, 0.9700756066990286, 0.9706783801252936, 0.9712726521424212, 0.9718609771803917, 0.9724440691017348, 0.9730199827384578, 0.9735891584228331, 0.974153379653486, 0.9747131301374681, 0.9752676627296862, 0.975817134268971, 0.9763622231597998, 0.976903673573072, 0.9774411443286597, 0.9779730495124551, 0.9784971298861722, 0.9790128275142074, 0.9795200650965669, 0.9800188693575107, 0.9805087942113209, 0.9809892595108565, 0.9814601542146479, 0.9819212155891942, 0.9823712880740728, 0.9828099644233732, 0.9832370911642858, 0.983653194250303, 0.9840590544851395, 0.9844556502746455, 0.9848426521428946, 0.9852211720435325, 0.9855933508500765, 0.9859591745114553, 0.9863178190271272, 0.9866704085715317, 0.9870176871098435, 0.9873603638662669, 0.9877009530021739, 0.9880392303424821, 0.9883754968099431, 0.9887094890445762, 0.9890411106759098, 0.9893687690539847, 0.9896897753191776, 0.9900033642909656, 0.9903096358833243, 0.9906073212799159, 0.9908955692419267, 0.9911725516445214, 0.9914369334468824, 0.9916889579710371, 0.9919264807540876, 0.9921501251433529, 0.9923603069995686, 0.9925577784914806, 0.9927448552781775, 0.9929232575796526, 0.9930938871069723, 0.9932582880514961, 0.9934178362087016, 0.9935734136018605, 0.9937253618945496, 0.9938741896540326, 0.994021662558249, 0.9941680905078083, 0.9943135827633043, 0.9944581181084645, 0.9946012960243337, 0.9947425189636695, 0.99488059934008, 0.9950149700838113, 0.9951457492781854, 0.995273090542244, 0.995397035145878, 0.9955182250471903, 0.9956360289545133, 0.9957506752557714, 0.9958621120090592, 0.9959697972332443, 0.9960728345755505, 0.9961723032949896, 0.9962689023639243, 0.9963627270976265, 0.9964540200433823, 0.9965430297561589, 0.9966301381393221, 0.9967151323438059, 0.9967986846910124, 0.9968799884240054, 0.996959217964055, 0.9970371472297819, 0.9971141437537979, 0.9971894162454331, 0.9972635124107363, 0.9973362571632425, 0.9974075973454755, 0.9974774319991906, 0.9975460766809108, 0.997613113765375, 0.9976781694340224, 0.9977416359351314, 0.9978037400201154, 0.9978647250388898, 0.9979247024671949, 0.997983480266661, 0.9980403962445283, 0.9980955932050732, 0.9981487444745684, 0.9982002376030373, 0.9982497551852199, 0.9982975756328794, 0.9983440930951536, 0.9983895475131741, 0.9984333348938661, 0.9984751673637854, 0.998515001342793, 0.9985528907599948, 0.9985890620160596, 0.9986236213103536, 0.9986570239393862, 0.9986891408151031, 0.998720321471549, 0.9987503459812908, 0.9987788951614223, 0.998806141336052, 0.9988326989120768, 0.9988590166006301, 0.9988852881881265, 0.9989114415067024, 0.9989371967562138, 0.9989625838161691, 0.9989873547889283, 0.9990115685429571, 0.9990350585960457, 0.9990579773831126, 0.999080565423696, 0.9991028634016761, 0.9991246761710924, 0.999145614250184, 0.9991656141634262, 0.9991850503830866, 0.9992042280220763, 0.9992233077696102, 0.9992424083024418, 0.9992614010931549, 0.9992805130954205, 0.9992999870075003, 0.9993196836087098, 0.9993394448224703, 0.9993593994142331, 0.9993796602550495, 0.9994000714948246, 0.9994201437827914, 0.9994394902641088, 0.9994576436296405, 0.9994745541542421, 0.9994902217117985, 0.9995043808023902, 0.9995167741706341, 0.9995275512902817, 0.9995367321803413, 0.9995443808117956, 0.9995506506482839, 0.9995556125697169, 0.9995598311256573, 0.9995639764425355, 0.9995684244518781, 0.9995733314479749, 0.9995788576878228, 0.9995850784873651, 0.9995922185653011, 0.9996002566632711, 0.9996092655287785, 0.9996194336707795, 0.9996306725346009, 0.999642919688803, 0.9996557294259587, 0.9996681986471976, 0.9996801228221461, 0.9996915595509733, 0.9997025895736589, 0.9997132128902031, 0.9997234193338295, 0.9997333525527452, 0.9997429035736367, 0.9997518469487754, 0.9997601523207468, 0.9997678173555944, 0.9997748398817394, 0.9997816477390049, 0.99978827387449, 0.9997944952857254, 0.9998002638377504, 0.9998055920368458, 0.9998103889004653, 0.9998144846190484, 0.9998179805734442, 0.9998209337682694, 0.9998233664707881, 0.9998253307846892, 0.9998270254478411, 0.9998285177488673, 0.9998299340260773, 0.9998313834499114, 0.9998328970338453, 0.99983447404088, 0.999836194282771, 0.9998381863288337, 0.9998404495123241, 0.9998429838332441, 0.9998458202586766, 0.9998489106014945, 0.9998521519965694, 0.9998554702614537, 0.999858670771963, 0.9998618575354286, 0.9998650442988941, 0.9998682310623596, 0.9998714178258251, 0.9998746045892906, 0.99987780859396, 0.9998810549025048, 0.9998843435149252, 0.999887649076588, 0.9998908699109579, 0.9998940338484151, 0.999897185907483, 0.9999001227350908, 0.9999028206000542, 0.9999053752301601, 0.9999078365954276, 0.9999102013678092, 0.9999124601255601, 0.9999146256184726, 0.9999166962549988, 0.9999186914410256, 0.9999207273393803, 0.9999228055416105, 0.9999249600848463, 0.9999272926456232, 0.9999297520895033, 0.9999320834858605, 0.9999342351281769, 0.9999362088979044, 0.9999379923351533, 0.9999395942818623, 0.999941018355982, 0.9999422538341232, 0.9999433060852245, 0.9999441804637365, 0.9999448679827694, 0.9999453954435515, 0.9999458804410173, 0.9999464408889825, 0.9999471315029886, 0.9999479576857085, 0.9999489249510335, 0.9999500383490209, 0.9999512873157219, 0.9999526756285286, 0.9999542417958769, 0.9999559858358145, 0.9999579097892337, 0.999959961949617, 0.9999619249269465, 0.9999637943350456, 0.9999655547048584, 0.9999672218098329, 0.9999687956499688, 0.9999702615795334, 0.9999716328121531, 0.9999729107799346, 0.9999740825736442, 0.9999751579339089, 0.9999760711376526, 0.999976834093357, 0.9999775547451859, 0.9999782330931393, 0.9999788691372177, 0.9999794628774202, 0.9999800143137474, 0.999980523446199, 0.9999809902747752, 0.9999814147994759, 0.9999817970203011, 0.9999821369372511, 0.9999824345503254, 0.9999826898595243, 0.9999829028648477, 0.9999830735662956, 0.9999832019638681, 0.9999832880575652, 0.9999833318473867, 0.9999833333333329, 0.9999833333333329, 0.999983333333333, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333328, 0.9999833333333329, 0.999983333333333, 0.9999833333333328, 0.9999833333333329, 0.999983333333333, 0.9999833333333329, 0.9999833333333328, 0.9999833333333329, 0.999983333333333, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.999983333333333, 0.9999833333333328, 0.9999833333333329, 0.9999833333333328, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.999983333333333, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.999983333333333, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.999983333333333, 0.999983333333333, 0.9999833333333329, 0.999983333333333, 0.9999833333333328, 0.9999833333333329, 0.9999833333333328, 0.9999833333333329, 0.999983333333333, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333328, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333328, 0.999983333333333, 0.9999833333333329, 0.9999833333333329, 0.9999833333333328, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.999983333333333, 0.9999833333333328, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333328, 0.999983333333333, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333328, 0.9999833333333329, 0.9999833333333329, 0.999983333333333, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333328, 0.9999833333333329, 0.9999833333333329, 0.999983333333333, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333328, 0.9999833333333329, 0.9999833333333328, 0.9999833333333329, 0.9999833333333329, 0.999983333333333, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333328, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.999983333333333, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.999983333333333, 0.9999833333333328, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333328, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333328, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.999983333333333, 0.9999833333333329, 0.999983333333333, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333328, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333328, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.999983333333333, 0.9999833333333329, 0.9999833333333329, 0.9999833333333328, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333328, 0.9999833333333329, 0.9999833333333329, 0.999983333333333, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.999983333333333, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.999983333333333, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.999983333333333, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.999983333333333, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333328, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.999983333333333, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333328, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333328, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.999983333333333, 0.9999833333333329, 0.999983333333333, 0.9999833333333328, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333328, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833333333329, 0.9999833568395489, 0.9999834226496405, 0.9999835307636075, 0.9999836811814496, 0.9999838739031678, 0.9999841089287613, 0.9999843862582295, 0.9999847058915743, 0.9999850678287943, 0.9999854720698887, 0.9999859186148603, 0.9999864074637067, 0.9999869386164273, 0.9999875120730256, 0.9999881278334982, 0.9999887858978449, 0.999989486266067, 0.9999902289381676, 0.9999910139141419, 0.9999918411939901, 0.9999926510211095, 0.9999934185443511, 0.9999941437637161, 0.9999948266792088, 0.9999954672908239, 0.9999960655985627, 0.9999966216024287, 0.9999971353024175, 0.9999976066985301, 0.9999980357907696, 0.9999984225791319, 0.9999987670636183, 0.9999990692442295, 0.9999993291209666, 0.9999995466938272, 0.9999997219628122, 0.9999998549279226, 0.9999999455891568, 0.9999999939465157, 0.9999999999999993, 0.9999999999999993, 0.9999999999999993, 0.9999999999999993, 0.9999999999999993, 0.9999999999999993, 0.9999999999999993, 0.9999999999999993, 0.9999999999999993, 0.9999999999999993, 0.9999999999999993, 0.9999999999999993, 0.9999999999999993, 0.9999999999999993, 0.9999999999999993, 0.9999999999999993, 0.9999999999999993, 0.9999999999999993, 0.9999999999999993] + }, + { + "createdAt": "2019-10-24T13:00:00.227+00:00", + "xs": [-57.9263510276, -55.81315236935416, -53.699953711108314, -51.58675505286247, -49.47355639461663, -47.36035773637079, -45.247159078124945, -43.1339604198791, -41.02076176163326, -38.90756310338742, -36.794364445141575, -34.68116578689573, -32.56796712864989, -30.454768470404044, -28.3415698121582, -26.228371153912352, -24.115172495666506, -22.00197383742066, -19.888775179174814, -17.77557652092897, -15.662377862683122, -13.549179204437277, -11.43598054619143, -9.322781887945585, -7.209583229699739, -5.096384571453893, -2.983185913208047, -0.8699872549622016, 1.2432114032836439, 3.3564100615294894, 5.469608719775335, 7.582807378021181, 9.696006036267027, 11.809204694512873, 13.92240335275872, 16.035602011004563, 18.14880066925041, 20.261999327496255, 22.3751979857421, 24.488396643987947, 26.601595302233793, 28.71479396047964, 30.827992618725485, 32.94119127697133, 35.05438993521717, 37.167588593463016, 39.28078725170886, 41.3939859099547, 43.50718456820054, 45.620383226446386, 47.73358188469223, 49.84678054293807, 51.95997920118391, 54.073177859429755, 56.1863765176756, 58.29957517592144, 60.41277383416728, 62.525972492413125, 64.63917115065897, 66.75236980890482, 68.86556846715067, 70.97876712539652, 73.09196578364237, 75.20516444188821, 77.31836310013406, 79.43156175837991, 81.54476041662576, 83.65795907487161, 85.77115773311746, 87.88435639136331, 89.99755504960916, 92.11075370785501, 94.22395236610086, 96.33715102434671, 98.45034968259256, 100.56354834083841, 102.67674699908426, 104.78994565733011, 106.90314431557596, 109.0163429738218, 111.12954163206766, 113.2427402903135, 115.35593894855936, 117.4691376068052, 119.58233626505105, 121.6955349232969, 123.80873358154275, 125.9219322397886, 128.03513089803445, 130.1483295562803, 132.26152821452612, 134.37472687277196, 136.4879255310178, 138.60112418926363, 140.71432284750946, 142.8275215057553, 144.94072016400114, 147.05391882224697, 149.1671174804928, 151.28031613873864, 153.39351479698448, 155.5067134552303, 157.61991211347615, 159.73311077172198, 161.84630942996782, 163.95950808821365, 166.0727067464595, 168.18590540470532, 170.29910406295116, 172.412302721197, 174.52550137944283, 176.63870003768866, 178.7518986959345, 180.86509735418034, 182.97829601242617, 185.091494670672, 187.20469332891784, 189.31789198716368, 191.4310906454095, 193.54428930365535, 195.65748796190118, 197.77068662014702, 199.88388527839285, 201.9970839366387, 204.11028259488452, 206.22348125313036, 208.3366799113762, 210.44987856962203, 212.56307722786786, 214.6762758861137, 216.78947454435954, 218.90267320260537, 221.0158718608512, 223.12907051909704, 225.24226917734288, 227.3554678355887, 229.46866649383455, 231.58186515208038, 233.69506381032622, 235.80826246857205, 237.9214611268179, 240.03465978506372, 242.14785844330956, 244.2610571015554, 246.37425575980123, 248.48745441804707, 250.6006530762929, 252.71385173453874, 254.82705039278457, 256.94024905103043, 259.05344770927627, 261.1666463675221, 263.27984502576794, 265.3930436840138, 267.5062423422596, 269.61944100050545, 271.7326396587513, 273.8458383169971, 275.95903697524295, 278.0722356334888, 280.1854342917346, 282.29863294998046, 284.4118316082263, 286.52503026647213, 288.63822892471796, 290.7514275829638, 292.86462624120963, 294.97782489945547, 297.0910235577013, 299.20422221594714, 301.317420874193, 303.4306195324388, 305.54381819068465, 307.6570168489305, 309.7702155071763, 311.88341416542215, 313.996612823668, 316.1098114819138, 318.22301014015966, 320.3362087984055, 322.44940745665133, 324.56260611489716, 326.675804773143, 328.78900343138883, 330.90220208963467, 333.0154007478805, 335.12859940612634, 337.2417980643722, 339.354996722618, 341.46819538086385, 343.5813940391097, 345.6945926973555, 347.80779135560135, 349.9209900138472, 352.034188672093, 354.14738733033886, 356.2605859885847, 358.37378464683053, 360.48698330507636, 362.6001819633222, 364.71338062156804, 366.82657927981387, 368.9397779380597, 371.05297659630554, 373.1661752545514, 375.2793739127972, 377.39257257104305, 379.5057712292889, 381.6189698875347, 383.73216854578055, 385.8453672040264, 387.9585658622722, 390.07176452051806, 392.1849631787639, 394.29816183700973, 396.41136049525556, 398.5245591535014, 400.63775781174724, 402.75095646999307, 404.8641551282389, 406.97735378648474, 409.0905524447306, 411.2037511029764, 413.31694976122225, 415.4301484194681, 417.5433470777139, 419.65654573595975, 421.7697443942056, 423.8829430524514, 425.99614171069726, 428.1093403689431, 430.22253902718893, 432.33573768543476, 434.4489363436806, 436.56213500192644, 438.67533366017227, 440.7885323184181, 442.90173097666394, 445.0149296349098, 447.1281282931556, 449.24132695140145, 451.3545256096473, 453.4677242678931, 455.58092292613895, 457.6941215843848, 459.8073202426306, 461.92051890087646, 464.0337175591223, 466.14691621736813, 468.26011487561397, 470.3733135338598, 472.48651219210564, 474.59971085035147, 476.7129095085973, 478.82610816684314, 480.939306825089, 483.0525054833348, 485.16570414158065, 487.2789027998265, 489.3921014580723, 491.50530011631815, 493.618498774564, 495.7316974328098, 497.84489609105566, 499.9580947493015, 502.07129340754733, 504.18449206579317, 506.297690724039, 508.41088938228484, 510.52408804053067, 512.6372866987765, 514.7504853570224, 516.8636840152683, 518.9768826735142, 521.0900813317601, 523.203279990006, 525.3164786482519, 527.4296773064978, 529.5428759647436, 531.6560746229895, 533.7692732812354, 535.8824719394813, 537.9956705977272, 540.1088692559731, 542.222067914219, 544.3352665724649, 546.4484652307108, 548.5616638889567, 550.6748625472026, 552.7880612054485, 554.9012598636943, 557.0144585219402, 559.1276571801861, 561.240855838432, 563.3540544966779, 565.4672531549238, 567.5804518131697, 569.6936504714156, 571.8068491296615, 573.9200477879074, 576.0332464461533, 578.1464451043992, 580.259643762645, 582.372842420891, 584.4860410791368, 586.5992397373827, 588.7124383956286, 590.8256370538745, 592.9388357121204, 595.0520343703663, 597.1652330286122, 599.2784316868581, 601.391630345104, 603.5048290033499, 605.6180276615958, 607.7312263198417, 609.8444249780875, 611.9576236363334, 614.0708222945793, 616.1840209528252, 618.2972196110711, 620.410418269317, 622.5236169275629, 624.6368155858088, 626.7500142440547, 628.8632129023006, 630.9764115605465, 633.0896102187924, 635.2028088770383, 637.3160075352841, 639.42920619353, 641.5424048517759, 643.6556035100218, 645.7688021682677, 647.8820008265136, 649.9951994847595, 652.1083981430054, 654.2215968012513, 656.3347954594972, 658.4479941177431, 660.561192775989, 662.6743914342348, 664.7875900924807, 666.9007887507266, 669.0139874089725, 671.1271860672184, 673.2403847254643, 675.3535833837102, 677.4667820419561, 679.579980700202, 681.6931793584479, 683.8063780166938, 685.9195766749397, 688.0327753331856, 690.1459739914314, 692.2591726496773, 694.3723713079232, 696.4855699661691, 698.598768624415, 700.7119672826609, 702.8251659409068, 704.9383645991527, 707.0515632573986, 709.1647619156445, 711.2779605738904, 713.3911592321363, 715.5043578903822, 717.617556548628, 719.7307552068739, 721.8439538651198, 723.9571525233657, 726.0703511816116, 728.1835498398575, 730.2967484981034, 732.4099471563493, 734.5231458145952, 736.6363444728411, 738.749543131087, 740.8627417893329, 742.9759404475788, 745.0891391058246, 747.2023377640705, 749.3155364223164, 751.4287350805623, 753.5419337388082, 755.6551323970541, 757.7683310553, 759.8815297135459, 761.9947283717918, 764.1079270300377, 766.2211256882836, 768.3343243465295, 770.4475230047753, 772.5607216630212, 774.6739203212671, 776.787118979513, 778.9003176377589, 781.0135162960048, 783.1267149542507, 785.2399136124966, 787.3531122707425, 789.4663109289884, 791.5795095872343, 793.6927082454802, 795.805906903726, 797.919105561972, 800.0323042202178, 802.1455028784637, 804.2587015367096, 806.3719001949555, 808.4850988532014, 810.5982975114473, 812.7114961696932, 814.8246948279391, 816.937893486185, 819.0510921444309, 821.1642908026768, 823.2774894609227, 825.3906881191685, 827.5038867774144, 829.6170854356603, 831.7302840939062, 833.8434827521521, 835.956681410398, 838.0698800686439, 840.1830787268898, 842.2962773851357, 844.4094760433816, 846.5226747016275, 848.6358733598734, 850.7490720181193, 852.8622706763651, 854.975469334611, 857.0886679928569, 859.2018666511028, 861.3150653093487, 863.4282639675946, 865.5414626258405, 867.6546612840864, 869.7678599423323, 871.8810586005782, 873.9942572588241, 876.10745591707, 878.2206545753158, 880.3338532335617, 882.4470518918076, 884.5602505500535, 886.6734492082994, 888.7866478665453, 890.8998465247912, 893.0130451830371, 895.126243841283, 897.2394424995289, 899.3526411577748, 901.4658398160207, 903.5790384742666, 905.6922371325124, 907.8054357907583, 909.9186344490042, 912.0318331072501, 914.145031765496, 916.2582304237419, 918.3714290819878, 920.4846277402337, 922.5978263984796, 924.7110250567255, 926.8242237149714, 928.9374223732173, 931.0506210314632, 933.163819689709, 935.2770183479549, 937.3902170062008, 939.5034156644467, 941.6166143226926, 943.7298129809385, 945.8430116391844, 947.9562102974303, 950.0694089556762, 952.1826076139221, 954.295806272168, 956.4090049304139, 958.5222035886597, 960.6354022469056, 962.7486009051515, 964.8617995633974, 966.9749982216433, 969.0881968798892, 971.2013955381351, 973.314594196381, 975.4277928546269, 977.5409915128728, 979.6541901711187, 981.7673888293646, 983.8805874876105, 985.9937861458563, 988.1069848041022, 990.2201834623481, 992.333382120594, 994.4465807788399, 996.5597794370858, 998.6729780953317, 1000.7861767535776, 1002.8993754118235, 1005.0125740700694, 1007.1257727283153, 1009.2389713865612, 1011.352170044807, 1013.465368703053, 1015.5785673612988, 1017.6917660195447, 1019.8049646777906, 1021.9181633360365, 1024.0313619942824, 1026.1445606525283, 1028.2577593107742, 1030.37095796902, 1032.484156627266, 1034.5973552855119, 1036.7105539437578, 1038.8237526020037, 1040.9369512602495, 1043.0501499184954, 1045.1633485767413, 1047.2765472349872, 1049.389745893233, 1051.502944551479, 1053.616143209725, 1055.7293418679708, 1057.8425405262167, 1059.9557391844626, 1062.0689378427085, 1064.1821365009544, 1066.2953351592002, 1068.4085338174461, 1070.521732475692, 1072.634931133938, 1074.7481297921838, 1076.8613284504297, 1078.9745271086756, 1081.0877257669215, 1083.2009244251674, 1085.3141230834133, 1087.4273217416592, 1089.540520399905, 1091.653719058151, 1093.7669177163968, 1095.8801163746427, 1097.9933150328886, 1100.1065136911345, 1102.2197123493804, 1104.3329110076263, 1106.4461096658722, 1108.559308324118, 1110.672506982364, 1112.7857056406099, 1114.8989042988558, 1117.0121029571017, 1119.1253016153476, 1121.2385002735934, 1123.3516989318393, 1125.4648975900852, 1127.5780962483311, 1129.691294906577, 1131.804493564823, 1133.9176922230688, 1136.0308908813147, 1138.1440895395606, 1140.2572881978065, 1142.3704868560524, 1144.4836855142983, 1146.5968841725442, 1148.71008283079, 1150.823281489036, 1152.9364801472818, 1155.0496788055277, 1157.1628774637736, 1159.2760761220195, 1161.3892747802654, 1163.5024734385113, 1165.6156720967572, 1167.728870755003, 1169.842069413249, 1171.9552680714949, 1174.0684667297407, 1176.1816653879866, 1178.2948640462325, 1180.4080627044784, 1182.5212613627243, 1184.6344600209702, 1186.747658679216, 1188.860857337462, 1190.9740559957079, 1193.0872546539538, 1195.2004533121997, 1197.3136519704456, 1199.4268506286915, 1201.5400492869373, 1203.6532479451832, 1205.7664466034291, 1207.879645261675, 1209.992843919921, 1212.1060425781668, 1214.2192412364127, 1216.3324398946586, 1218.4456385529045, 1220.5588372111504, 1222.6720358693963, 1224.7852345276422, 1226.898433185888, 1229.011631844134, 1231.1248305023798, 1233.2380291606257, 1235.3512278188716, 1237.4644264771175, 1239.5776251353634, 1241.6908237936093, 1243.8040224518552, 1245.917221110101, 1248.030419768347, 1250.1436184265929, 1252.2568170848388, 1254.3700157430847, 1256.4832144013305, 1258.5964130595764, 1260.7096117178223, 1262.8228103760682, 1264.936009034314, 1267.04920769256, 1269.162406350806, 1271.2756050090518, 1273.3888036672977, 1275.5020023255436, 1277.6152009837895, 1279.7283996420354, 1281.8415983002812, 1283.9547969585271, 1286.067995616773, 1288.181194275019, 1290.2943929332648, 1292.4075915915107, 1294.5207902497566, 1296.6339889080025, 1298.7471875662484, 1300.8603862244943, 1302.9735848827402, 1305.086783540986, 1307.199982199232, 1309.3131808574778, 1311.4263795157237, 1313.5395781739696, 1315.6527768322155, 1317.7659754904614, 1319.8791741487073, 1321.9923728069532, 1324.105571465199, 1326.218770123445, 1328.3319687816909, 1330.4451674399368, 1332.5583660981827, 1334.6715647564286, 1336.7847634146744, 1338.8979620729203, 1341.0111607311662, 1343.1243593894121, 1345.237558047658, 1347.350756705904, 1349.4639553641498, 1351.5771540223957, 1353.6903526806416, 1355.8035513388875, 1357.9167499971334, 1360.0299486553793, 1362.1431473136251, 1364.256345971871, 1366.369544630117, 1368.4827432883628, 1370.5959419466087, 1372.7091406048546, 1374.8223392631005, 1376.9355379213464, 1379.0487365795923, 1381.1619352378382, 1383.275133896084, 1385.38833255433, 1387.5015312125759, 1389.6147298708217, 1391.7279285290676, 1393.8411271873135, 1395.9543258455594, 1398.0675245038053, 1400.1807231620512, 1402.293921820297, 1404.407120478543, 1406.5203191367889, 1408.6335177950348, 1410.7467164532807, 1412.8599151115266, 1414.9731137697725, 1417.0863124280183, 1419.1995110862642, 1421.3127097445101, 1423.425908402756, 1425.539107061002, 1427.6523057192478, 1429.7655043774937, 1431.8787030357396, 1433.9919016939855, 1436.1051003522314, 1438.2182990104773, 1440.3314976687232, 1442.444696326969, 1444.557894985215, 1446.6710936434608, 1448.7842923017067, 1450.8974909599526, 1453.0106896181985, 1455.1238882764444, 1457.2370869346903, 1459.3502855929362, 1461.463484251182, 1463.576682909428, 1465.6898815676739, 1467.8030802259198, 1469.9162788841656, 1472.0294775424115, 1474.1426762006574, 1476.2558748589033, 1478.3690735171492, 1480.482272175395, 1482.595470833641, 1484.708669491887, 1486.8218681501328, 1488.9350668083787, 1491.0482654666246, 1493.1614641248705, 1495.2746627831164, 1497.3878614413622, 1499.5010600996081, 1501.614258757854, 1503.7274574161, 1505.8406560743458, 1507.9538547325917, 1510.0670533908376, 1512.1802520490835, 1514.2934507073294, 1516.4066493655753, 1518.5198480238212, 1520.633046682067, 1522.746245340313, 1524.8594439985588, 1526.9726426568047, 1529.0858413150506, 1531.1990399732965, 1533.3122386315424, 1535.4254372897883, 1537.5386359480342, 1539.65183460628, 1541.765033264526, 1543.8782319227719, 1545.9914305810178, 1548.1046292392637, 1550.2178278975096, 1552.3310265557554, 1554.4442252140013, 1556.5574238722472, 1558.6706225304931, 1560.783821188739, 1562.897019846985, 1565.0102185052308, 1567.1234171634767, 1569.2366158217226, 1571.3498144799685, 1573.4630131382144, 1575.5762117964603, 1577.6894104547061, 1579.802609112952, 1581.915807771198, 1584.0290064294438, 1586.1422050876897, 1588.2554037459356, 1590.3686024041815, 1592.4818010624274, 1594.5949997206733, 1596.7081983789192, 1598.821397037165, 1600.934595695411, 1603.0477943536569, 1605.1609930119027, 1607.2741916701486, 1609.3873903283945, 1611.5005889866404, 1613.6137876448863, 1615.7269863031322, 1617.840184961378, 1619.953383619624, 1622.0665822778699, 1624.1797809361158, 1626.2929795943617, 1628.4061782526076, 1630.5193769108535, 1632.6325755690993, 1634.7457742273452, 1636.8589728855911, 1638.972171543837, 1641.085370202083, 1643.1985688603288, 1645.3117675185747, 1647.4249661768206, 1649.5381648350665, 1651.6513634933124, 1653.7645621515583, 1655.8777608098042, 1657.99095946805, 1660.104158126296, 1662.2173567845418, 1664.3305554427877, 1666.4437541010336, 1668.5569527592795, 1670.6701514175254, 1672.7833500757713, 1674.8965487340172, 1677.009747392263, 1679.122946050509, 1681.2361447087549, 1683.3493433670008, 1685.4625420252466, 1687.5757406834925, 1689.6889393417384, 1691.8021379999843, 1693.9153366582302, 1696.028535316476, 1698.141733974722, 1700.254932632968, 1702.3681312912138, 1704.4813299494597, 1706.5945286077056, 1708.7077272659515, 1710.8209259241974, 1712.9341245824432, 1715.0473232406891, 1717.160521898935, 1719.273720557181, 1721.3869192154268, 1723.5001178736727, 1725.6133165319186, 1727.7265151901645, 1729.8397138484104, 1731.9529125066563, 1734.0661111649022, 1736.179309823148, 1738.292508481394, 1740.4057071396398, 1742.5189057978857, 1744.6321044561316, 1746.7453031143775, 1748.8585017726234, 1750.9717004308693, 1753.0848990891152, 1755.198097747361, 1757.311296405607, 1759.4244950638529, 1761.5376937220988, 1763.6508923803447, 1765.7640910385905, 1767.8772896968364, 1769.9904883550823, 1772.1036870133282, 1774.2168856715741, 1776.33008432982, 1778.443282988066, 1780.5564816463118, 1782.6696803045577, 1784.7828789628036, 1786.8960776210495, 1789.0092762792954, 1791.1224749375413, 1793.2356735957871, 1795.348872254033, 1797.462070912279, 1799.5752695705248, 1801.6884682287707, 1803.8016668870166, 1805.9148655452625, 1808.0280642035084, 1810.1412628617543, 1812.2544615200002, 1814.367660178246, 1816.480858836492, 1818.5940574947379, 1820.7072561529837, 1822.8204548112296, 1824.9336534694755, 1827.0468521277214, 1829.1600507859673, 1831.2732494442132, 1833.386448102459, 1835.499646760705, 1837.6128454189509, 1839.7260440771968, 1841.8392427354427, 1843.9524413936886, 1846.0656400519345, 1848.1788387101803, 1850.2920373684262, 1852.4052360266721, 1854.518434684918, 1856.631633343164, 1858.7448320014098, 1860.8580306596557, 1862.9712293179016, 1865.0844279761475, 1867.1976266343934, 1869.3108252926393, 1871.4240239508852, 1873.537222609131, 1875.650421267377, 1877.7636199256228, 1879.8768185838687, 1881.9900172421146, 1884.1032159003605, 1886.2164145586064, 1888.3296132168523, 1890.4428118750982, 1892.556010533344, 1894.66920919159, 1896.7824078498359, 1898.8956065080818, 1901.0088051663276, 1903.1220038245735, 1905.2352024828194, 1907.3484011410653, 1909.4615997993112, 1911.574798457557, 1913.687997115803, 1915.801195774049, 1917.9143944322948, 1920.0275930905407, 1922.1407917487866, 1924.2539904070325, 1926.3671890652784, 1928.4803877235242, 1930.5935863817701, 1932.706785040016, 1934.819983698262, 1936.9331823565078, 1939.0463810147537, 1941.1595796729996, 1943.2727783312455, 1945.3859769894914, 1947.4991756477373, 1949.6123743059832, 1951.725572964229, 1953.838771622475, 1955.9519702807208, 1958.0651689389667, 1960.1783675972126, 1962.2915662554585, 1964.4047649137044, 1966.5179635719503, 1968.6311622301962, 1970.744360888442, 1972.857559546688, 1974.9707582049339, 1977.0839568631798, 1979.1971555214257, 1981.3103541796715, 1983.4235528379174, 1985.5367514961633, 1987.6499501544092, 1989.7631488126551, 1991.876347470901, 1993.989546129147, 1996.1027447873928, 1998.2159434456387, 2000.3291421038846, 2002.4423407621305, 2004.5555394203764, 2006.6687380786223, 2008.7819367368681, 2010.895135395114, 2013.00833405336, 2015.1215327116058, 2017.2347313698517, 2019.3479300280976, 2021.4611286863435, 2023.5743273445894, 2025.6875260028353, 2027.8007246610812, 2029.913923319327, 2032.027121977573, 2034.1403206358189, 2036.2535192940647, 2038.3667179523106, 2040.4799166105565, 2042.5931152688024, 2044.7063139270483, 2046.8195125852942, 2048.93271124354, 2051.0459099017858, 2053.15910856], + "ys": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.000000027777777779102054, 0.000005241371977387483, 0.000029860003220995125, 0.00008944713744066605, 0.00020076361315683448, 0.0003770412710034071, 0.0006338974163138755, 0.0009879625876866988, 0.0014550983873225173, 0.0020559881008965514, 0.0028002940852734984, 0.0036788354592417953, 0.004681778325441667, 0.005795816425903277, 0.0070108240759468475, 0.008318903824656226, 0.0097051386888108, 0.011159533541187464, 0.012673243638070006, 0.014239005639395652, 0.015856926628370474, 0.017525571545862297, 0.01925238150859265, 0.021045458340361797, 0.022907915695546607, 0.02484512606810214, 0.026868205717480723, 0.028981746670959988, 0.031189074571426344, 0.03349858783606674, 0.03592292601339963, 0.038469263339199575, 0.04115100308747458, 0.04398255622738926, 0.04697211954046846, 0.050130704236344685, 0.05347459622239618, 0.05700561927791872, 0.06073125876677501, 0.06467003450190349, 0.06881922389748317, 0.07318573392391468, 0.07778330648748917, 0.0826094265183274, 0.08765874410574935, 0.09293916341618445, 0.09845329757434991, 0.10419353062152518, 0.11016408147882151, 0.11637685768115985, 0.12281165939055709, 0.12946778928056904, 0.13635980199288023, 0.14346163101925088, 0.1507681342769642, 0.15828732212374694, 0.16600092247612155, 0.1738943776915111, 0.18197234317552521, 0.19023074666376164, 0.19864715297134086, 0.2072172051732104, 0.21594864263316596, 0.22481969292143736, 0.23381890774849848, 0.24294886193364373, 0.2521894426211162, 0.2615269140107165, 0.2709558375919096, 0.28046076485122456, 0.2900258941608714, 0.29964321077522715, 0.3093059101435178, 0.3190046780821684, 0.3287333974053091, 0.33848517410589923, 0.3482515078330664, 0.35803152384848375, 0.3678147432196128, 0.3775927604860167, 0.38735769056105446, 0.3970983591368718, 0.4068020849836274, 0.4164628164862716, 0.4260720776417511, 0.43561645783162123, 0.44508166015481887, 0.4544633259616371, 0.4637542656507012, 0.47295229282331713, 0.4820577133403596, 0.49106047881947434, 0.4999652180371322, 0.5087727002644394, 0.517477045995356, 0.5260891569166292, 0.5346129260041627, 0.5430392038057874, 0.5513650168115599, 0.5595931507005608, 0.5677217404464621, 0.5757433295514167, 0.58366843591198, 0.5914952184735863, 0.599209311899776, 0.6068121728272933, 0.6143018654821247, 0.6216764015888077, 0.6289354659044908, 0.6360790904300859, 0.6431002548487386, 0.6499989279474757, 0.6567818666002117, 0.6634526763225513, 0.6700145988099958, 0.6764793282721472, 0.6828406582833789, 0.6890879424410823, 0.6952272472624036, 0.7012568915606502, 0.7071696639564329, 0.7129701177232978, 0.718662605527571, 0.7242440984663728, 0.7297134565758512, 0.7350814039253318, 0.7403478014723994, 0.7455056965691583, 0.7505666016434485, 0.7555331080529633, 0.7603965568937402, 0.7651668764274439, 0.769844712122658, 0.7744239091054284, 0.7789124283466659, 0.7833200812987432, 0.7876528494255398, 0.7919121216892814, 0.7961023522951084, 0.8002213838020046, 0.8042610160752224, 0.808230646111323, 0.8121346112155514, 0.8159681407265902, 0.8197341311272505, 0.8234281188029318, 0.8270448395807607, 0.8305852920931193, 0.8340549817650224, 0.8374544643447507, 0.8407860233521313, 0.8440516408887183, 0.8472500735423459, 0.8503808385714464, 0.8534543274359735, 0.8564747932767908, 0.8594403465674785, 0.8623573032366637, 0.8652270052487356, 0.8680463433014428, 0.8708161370024463, 0.873536983381221, 0.8762112814343553, 0.8788413052646259, 0.881426112140801, 0.8839654422574746, 0.8864572031951955, 0.8889064104415979, 0.8913109272631594, 0.8936726165757415, 0.8959967660763754, 0.8982827550923295, 0.9005273229157088, 0.9027372778058557, 0.9049181134365769, 0.9070675000822268, 0.9091793736395216, 0.9112545140341802, 0.9132868356348318, 0.9152701868197163, 0.9172039614706291, 0.9190916076071024, 0.9209308476504141, 0.9227191192280678, 0.924459371687948, 0.9261520818636827, 0.9278024268939319, 0.9294143267918406, 0.9309937524721105, 0.9325408441078622, 0.9340573874592867, 0.9355423763697551, 0.9369953943836148, 0.9384171510237667, 0.9398075619758354, 0.9411660615175469, 0.9424953329336655, 0.9437909011780258, 0.9450500983668143, 0.9462738042640719, 0.9474627078968738, 0.9486207965779183, 0.9497505880267944, 0.9508562936324813, 0.951937055235622, 0.9529924998049181, 0.954025008390517, 0.9550372213378462, 0.9560303061233428, 0.9570076686274053, 0.9579654652986864, 0.9589019307667502, 0.9598183844796552, 0.9607172134698377, 0.9615995560606588, 0.9624678096032611, 0.9633231854670411, 0.9641651391467737, 0.9649937589909628, 0.9658127373369031, 0.9666232591025419, 0.9674250114134203, 0.9682177814075351, 0.9690004495695987, 0.9697696708167243, 0.9705238504440573, 0.9712645891901578, 0.9719914598084672, 0.9727016185605719, 0.9733958522703658, 0.9740747778780111, 0.9747376245684145, 0.9753851263321756, 0.9760205064037794, 0.9766460179656534, 0.9772617525310858, 0.9778674706197847, 0.9784650541346971, 0.9790546724398211, 0.9796362523721496, 0.9802105980430994, 0.9807783204693417, 0.9813383380322726, 0.9818876949530891, 0.9824249168409311, 0.9829502584647557, 0.9834633500671602, 0.9839636952148793, 0.9844510734581148, 0.9849246898826864, 0.9853837373592146, 0.9858272482183891, 0.9862574247724911, 0.9866747035705853, 0.9870797393212989, 0.9874750660725978, 0.9878615199715278, 0.9882383333310277, 0.9886068032349238, 0.9889680480225334, 0.9893246256342012, 0.9896771638836054, 0.9900257228697376, 0.9903700239555139, 0.990708001708002, 0.9910365410339425, 0.9913555679877089, 0.9916633143145158, 0.991957850147723, 0.9922372587482515, 0.9925004745296063, 0.992746428366177, 0.9929756606832605, 0.993188831992164, 0.9933893461557762, 0.9935788220553659, 0.9937595621053178, 0.9939334876499318, 0.9941020504915418, 0.9942656587309298, 0.9944263943424243, 0.9945848776941748, 0.9947413166828487, 0.994895309498569, 0.9950460796609354, 0.9951921992309917, 0.9953335413961467, 0.9954704237670867, 0.9956034073892382, 0.9957324759929599, 0.9958576344885306, 0.9959787416231128, 0.9960945517796781, 0.9962055339139045, 0.9963127165786233, 0.9964166775554174, 0.9965173335942353, 0.9966154306603761, 0.9967111094270201, 0.9968041422945454, 0.9968944967277705, 0.9969832484353275, 0.9970703283894577, 0.9971555909665207, 0.9972391034709011, 0.9973206921833913, 0.997400415647831, 0.9974780704873397, 0.9975532391559795, 0.9976264544942458, 0.9976980186221982, 0.9977681047065063, 0.9978360890691987, 0.9979018854394379, 0.9979653694258883, 0.9980266053917569, 0.9980855837062164, 0.9981428451708156, 0.9981984276808088, 0.9982517589231197, 0.9983026868145081, 0.9983511143256094, 0.9983971668213062, 0.99844137030362, 0.9984837685229332, 0.9985245265933919, 0.9985634647666309, 0.9986005139232782, 0.9986364811641316, 0.9986720037151694, 0.99870707660726, 0.9987415132502573, 0.9987750663543459, 0.9988075928669135, 0.9988389132743026, 0.9988692266835205, 0.9988989092658631, 0.9989277761868042, 0.998955444453197, 0.9989819717957231, 0.9990079374938285, 0.9990337578146433, 0.9990594204371122, 0.999085041060745, 0.9991110107995129, 0.9991371423701095, 0.9991633426371559, 0.9991898196975249, 0.999216137538559, 0.9992416382729944, 0.9992658126520125, 0.9992883904528851, 0.9993093351341037, 0.9993283738617875, 0.9993454909922824, 0.9993608644736689, 0.9993744746788428, 0.999386407531313, 0.9993974084440795, 0.9994084430972769, 0.9994196957456308, 0.9994314242991189, 0.9994438041876362, 0.9994570945141842, 0.999471364616868, 0.9994866751854067, 0.999503030496489, 0.999519994293509, 0.9995365162643294, 0.9995524352038666, 0.9995677999128906, 0.9995826381691769, 0.9995970318355822, 0.9996109956092889, 0.9996242629535006, 0.9996367724735397, 0.9996485821844495, 0.9996601085116295, 0.9996714269702617, 0.9996821941041628, 0.9996923795935558, 0.9997018507385652, 0.9997104374484999, 0.9997181949042583, 0.9997251821192359, 0.9997315378332025, 0.9997374989831305, 0.9997431984634148, 0.9997488002936511, 0.9997543582370286, 0.9997599588893852, 0.9997657043498939, 0.9997716571768814, 0.9997777850464343, 0.9997840665192754, 0.9997903283155525, 0.9997963528246144, 0.9998021376839251, 0.9998077836543485, 0.9998133462914381, 0.9998188811507503, 0.9998244344517198, 0.9998300604012047, 0.9998357863684543, 0.9998414876619727, 0.9998471502169259, 0.999852692835916, 0.9998579693221696, 0.9998630811801942, 0.9998680274322004, 0.9998727833222002, 0.9998773715616545, 0.9998817379368273, 0.9998860176674547, 0.9998902589354843, 0.9998945481834717, 0.9998989759624073, 0.9999032963230534, 0.9999073037361236, 0.9999109895152829, 0.9999143010030824, 0.9999172439877512, 0.9999198149960077, 0.9999220124279354, 0.9999238413567326, 0.9999253946462491, 0.9999268399734814, 0.999928304712494, 0.9999298153061232, 0.9999313995321465, 0.9999330868253189, 0.9999348797997727, 0.9999368409494359, 0.9999389790995238, 0.9999412405696497, 0.9999433933776247, 0.9999454074807574, 0.9999472796951859, 0.9999490411426848, 0.9999506977136104, 0.9999522699673231, 0.9999537576645833, 0.9999551476195814, 0.9999563764215837, 0.9999575609846078, 0.9999586673012559, 0.999959698020772, 0.999960656091774, 0.9999615380547398, 0.9999623422822338, 0.9999630738612133, 0.9999637314704968, 0.9999643092059686, 0.9999648142929262, 0.9999652467313692, 0.9999655987919764, 0.999965877386912, 0.9999660833333331, 0.9999662499999996, 0.9999663888888884, 0.9999664999999996, 0.999966583333333, 0.9999666388888887, 0.9999666666666664, 0.9999666666666664, 0.9999666666666664, 0.9999666666666664, 0.9999666666666664, 0.9999666666666664, 0.9999666666666664, 0.9999666666666664, 0.9999666666666664, 0.9999666666666664, 0.9999666666666664, 0.9999666666666664, 0.9999666666666664, 0.9999666666666664, 0.9999666666666664, 0.9999666944444443, 0.9999667499999997, 0.999966833333333, 0.9999669444444441, 0.999967083333333, 0.9999672500000001, 0.9999674444444443, 0.9999676666666665, 0.9999679166666663, 0.9999681944444437, 0.999968499999999, 0.9999688333333335, 0.9999691944444443, 0.9999695833333332, 0.9999699999999994, 0.9999704444444433, 0.9999709166666652, 0.9999714166666672, 0.9999719444444445, 0.9999724999999994, 0.9999730277777769, 0.9999735277777765, 0.9999739999999985, 0.9999744444444446, 0.9999748611111109, 0.9999752499999994, 0.9999756111111102, 0.9999759444444435, 0.9999762500000001, 0.9999765277777778, 0.9999767777777775, 0.9999769999999996, 0.999977194444444, 0.9999773611111106, 0.9999775, 0.9999776111111109, 0.9999776944444442, 0.9999777499999998, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777775, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777775, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777775, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777775, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777775, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777775, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777775, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777775, 0.9999777777777776, 0.9999777777777775, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777775, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777775, 0.9999777777777775, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777775, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777775, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777775, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777775, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777777777775, 0.9999777777777776, 0.9999777777777776, 0.9999777777777776, 0.9999777832311705, 0.9999778335552998, 0.9999779287501656, 0.9999780721308208, 0.9999782656136394, 0.9999785039671935, 0.9999787883681989, 0.9999791250097051, 0.9999795065219491, 0.9999799329049291, 0.9999804117434983, 0.9999809364144315, 0.9999815059560992, 0.9999821258150172, 0.9999827936446395, 0.9999835063449959, 0.9999841984360153, 0.9999848404179895, 0.9999854375292293, 0.9999859885998973, 0.9999864874231837, 0.9999869413757345, 0.999987350457547, 0.9999877070906517, 0.9999880178845123, 0.9999882838076366, 0.9999884994203915, 0.9999886670555637, 0.9999887898199997, 0.9999888644124049, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999888888888885, 0.9999889166666663, 0.9999889722222219, 0.9999890555555551, 0.9999891666666662, 0.9999893055555548, 0.9999894722222221, 0.9999896666666664, 0.9999898888888884, 0.999990138888888, 0.9999904166666657, 0.9999907222222224, 0.9999910555555553, 0.9999914166666661, 0.9999918055555548, 0.9999922222222212, 0.9999926666666651, 0.9999931388888892, 0.9999936388888887, 0.999994166666666, 0.9999947222222212, 0.9999952499999986, 0.9999957499999982, 0.9999962222222223, 0.9999966666666663, 0.9999970833333327, 0.9999974722222214, 0.9999978333333321, 0.9999981666666654, 0.9999984722222223, 0.9999987499999997, 0.9999989999999995, 0.9999992222222215, 0.9999994166666659, 0.9999995833333332, 0.999999722222222, 0.9999998333333332, 0.9999999166666664, 0.999999972222222, 0.9999999999999999, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1] + }, + { + "createdAt": "2019-10-25T16:14:00.502+00:00", + "xs": [-57.9263510276, -55.81315236935416, -53.699953711108314, -51.58675505286247, -49.47355639461663, -47.36035773637079, -45.247159078124945, -43.1339604198791, -41.02076176163326, -38.90756310338742, -36.794364445141575, -34.68116578689573, -32.56796712864989, -30.454768470404044, -28.3415698121582, -26.228371153912352, -24.115172495666506, -22.00197383742066, -19.888775179174814, -17.77557652092897, -15.662377862683122, -13.549179204437277, -11.43598054619143, -9.322781887945585, -7.209583229699739, -5.096384571453893, -2.983185913208047, -0.8699872549622016, 1.2432114032836439, 3.3564100615294894, 5.469608719775335, 7.582807378021181, 9.696006036267027, 11.809204694512873, 13.92240335275872, 16.035602011004563, 18.14880066925041, 20.261999327496255, 22.3751979857421, 24.488396643987947, 26.601595302233793, 28.71479396047964, 30.827992618725485, 32.94119127697133, 35.05438993521717, 37.167588593463016, 39.28078725170886, 41.3939859099547, 43.50718456820054, 45.620383226446386, 47.73358188469223, 49.84678054293807, 51.95997920118391, 54.073177859429755, 56.1863765176756, 58.29957517592144, 60.41277383416728, 62.525972492413125, 64.63917115065897, 66.75236980890482, 68.86556846715067, 70.97876712539652, 73.09196578364237, 75.20516444188821, 77.31836310013406, 79.43156175837991, 81.54476041662576, 83.65795907487161, 85.77115773311746, 87.88435639136331, 89.99755504960916, 92.11075370785501, 94.22395236610086, 96.33715102434671, 98.45034968259256, 100.56354834083841, 102.67674699908426, 104.78994565733011, 106.90314431557596, 109.0163429738218, 111.12954163206766, 113.2427402903135, 115.35593894855936, 117.4691376068052, 119.58233626505105, 121.6955349232969, 123.80873358154275, 125.9219322397886, 128.03513089803445, 130.1483295562803, 132.26152821452612, 134.37472687277196, 136.4879255310178, 138.60112418926363, 140.71432284750946, 142.8275215057553, 144.94072016400114, 147.05391882224697, 149.1671174804928, 151.28031613873864, 153.39351479698448, 155.5067134552303, 157.61991211347615, 159.73311077172198, 161.84630942996782, 163.95950808821365, 166.0727067464595, 168.18590540470532, 170.29910406295116, 172.412302721197, 174.52550137944283, 176.63870003768866, 178.7518986959345, 180.86509735418034, 182.97829601242617, 185.091494670672, 187.20469332891784, 189.31789198716368, 191.4310906454095, 193.54428930365535, 195.65748796190118, 197.77068662014702, 199.88388527839285, 201.9970839366387, 204.11028259488452, 206.22348125313036, 208.3366799113762, 210.44987856962203, 212.56307722786786, 214.6762758861137, 216.78947454435954, 218.90267320260537, 221.0158718608512, 223.12907051909704, 225.24226917734288, 227.3554678355887, 229.46866649383455, 231.58186515208038, 233.69506381032622, 235.80826246857205, 237.9214611268179, 240.03465978506372, 242.14785844330956, 244.2610571015554, 246.37425575980123, 248.48745441804707, 250.6006530762929, 252.71385173453874, 254.82705039278457, 256.94024905103043, 259.05344770927627, 261.1666463675221, 263.27984502576794, 265.3930436840138, 267.5062423422596, 269.61944100050545, 271.7326396587513, 273.8458383169971, 275.95903697524295, 278.0722356334888, 280.1854342917346, 282.29863294998046, 284.4118316082263, 286.52503026647213, 288.63822892471796, 290.7514275829638, 292.86462624120963, 294.97782489945547, 297.0910235577013, 299.20422221594714, 301.317420874193, 303.4306195324388, 305.54381819068465, 307.6570168489305, 309.7702155071763, 311.88341416542215, 313.996612823668, 316.1098114819138, 318.22301014015966, 320.3362087984055, 322.44940745665133, 324.56260611489716, 326.675804773143, 328.78900343138883, 330.90220208963467, 333.0154007478805, 335.12859940612634, 337.2417980643722, 339.354996722618, 341.46819538086385, 343.5813940391097, 345.6945926973555, 347.80779135560135, 349.9209900138472, 352.034188672093, 354.14738733033886, 356.2605859885847, 358.37378464683053, 360.48698330507636, 362.6001819633222, 364.71338062156804, 366.82657927981387, 368.9397779380597, 371.05297659630554, 373.1661752545514, 375.2793739127972, 377.39257257104305, 379.5057712292889, 381.6189698875347, 383.73216854578055, 385.8453672040264, 387.9585658622722, 390.07176452051806, 392.1849631787639, 394.29816183700973, 396.41136049525556, 398.5245591535014, 400.63775781174724, 402.75095646999307, 404.8641551282389, 406.97735378648474, 409.0905524447306, 411.2037511029764, 413.31694976122225, 415.4301484194681, 417.5433470777139, 419.65654573595975, 421.7697443942056, 423.8829430524514, 425.99614171069726, 428.1093403689431, 430.22253902718893, 432.33573768543476, 434.4489363436806, 436.56213500192644, 438.67533366017227, 440.7885323184181, 442.90173097666394, 445.0149296349098, 447.1281282931556, 449.24132695140145, 451.3545256096473, 453.4677242678931, 455.58092292613895, 457.6941215843848, 459.8073202426306, 461.92051890087646, 464.0337175591223, 466.14691621736813, 468.26011487561397, 470.3733135338598, 472.48651219210564, 474.59971085035147, 476.7129095085973, 478.82610816684314, 480.939306825089, 483.0525054833348, 485.16570414158065, 487.2789027998265, 489.3921014580723, 491.50530011631815, 493.618498774564, 495.7316974328098, 497.84489609105566, 499.9580947493015, 502.07129340754733, 504.18449206579317, 506.297690724039, 508.41088938228484, 510.52408804053067, 512.6372866987765, 514.7504853570224, 516.8636840152683, 518.9768826735142, 521.0900813317601, 523.203279990006, 525.3164786482519, 527.4296773064978, 529.5428759647436, 531.6560746229895, 533.7692732812354, 535.8824719394813, 537.9956705977272, 540.1088692559731, 542.222067914219, 544.3352665724649, 546.4484652307108, 548.5616638889567, 550.6748625472026, 552.7880612054485, 554.9012598636943, 557.0144585219402, 559.1276571801861, 561.240855838432, 563.3540544966779, 565.4672531549238, 567.5804518131697, 569.6936504714156, 571.8068491296615, 573.9200477879074, 576.0332464461533, 578.1464451043992, 580.259643762645, 582.372842420891, 584.4860410791368, 586.5992397373827, 588.7124383956286, 590.8256370538745, 592.9388357121204, 595.0520343703663, 597.1652330286122, 599.2784316868581, 601.391630345104, 603.5048290033499, 605.6180276615958, 607.7312263198417, 609.8444249780875, 611.9576236363334, 614.0708222945793, 616.1840209528252, 618.2972196110711, 620.410418269317, 622.5236169275629, 624.6368155858088, 626.7500142440547, 628.8632129023006, 630.9764115605465, 633.0896102187924, 635.2028088770383, 637.3160075352841, 639.42920619353, 641.5424048517759, 643.6556035100218, 645.7688021682677, 647.8820008265136, 649.9951994847595, 652.1083981430054, 654.2215968012513, 656.3347954594972, 658.4479941177431, 660.561192775989, 662.6743914342348, 664.7875900924807, 666.9007887507266, 669.0139874089725, 671.1271860672184, 673.2403847254643, 675.3535833837102, 677.4667820419561, 679.579980700202, 681.6931793584479, 683.8063780166938, 685.9195766749397, 688.0327753331856, 690.1459739914314, 692.2591726496773, 694.3723713079232, 696.4855699661691, 698.598768624415, 700.7119672826609, 702.8251659409068, 704.9383645991527, 707.0515632573986, 709.1647619156445, 711.2779605738904, 713.3911592321363, 715.5043578903822, 717.617556548628, 719.7307552068739, 721.8439538651198, 723.9571525233657, 726.0703511816116, 728.1835498398575, 730.2967484981034, 732.4099471563493, 734.5231458145952, 736.6363444728411, 738.749543131087, 740.8627417893329, 742.9759404475788, 745.0891391058246, 747.2023377640705, 749.3155364223164, 751.4287350805623, 753.5419337388082, 755.6551323970541, 757.7683310553, 759.8815297135459, 761.9947283717918, 764.1079270300377, 766.2211256882836, 768.3343243465295, 770.4475230047753, 772.5607216630212, 774.6739203212671, 776.787118979513, 778.9003176377589, 781.0135162960048, 783.1267149542507, 785.2399136124966, 787.3531122707425, 789.4663109289884, 791.5795095872343, 793.6927082454802, 795.805906903726, 797.919105561972, 800.0323042202178, 802.1455028784637, 804.2587015367096, 806.3719001949555, 808.4850988532014, 810.5982975114473, 812.7114961696932, 814.8246948279391, 816.937893486185, 819.0510921444309, 821.1642908026768, 823.2774894609227, 825.3906881191685, 827.5038867774144, 829.6170854356603, 831.7302840939062, 833.8434827521521, 835.956681410398, 838.0698800686439, 840.1830787268898, 842.2962773851357, 844.4094760433816, 846.5226747016275, 848.6358733598734, 850.7490720181193, 852.8622706763651, 854.975469334611, 857.0886679928569, 859.2018666511028, 861.3150653093487, 863.4282639675946, 865.5414626258405, 867.6546612840864, 869.7678599423323, 871.8810586005782, 873.9942572588241, 876.10745591707, 878.2206545753158, 880.3338532335617, 882.4470518918076, 884.5602505500535, 886.6734492082994, 888.7866478665453, 890.8998465247912, 893.0130451830371, 895.126243841283, 897.2394424995289, 899.3526411577748, 901.4658398160207, 903.5790384742666, 905.6922371325124, 907.8054357907583, 909.9186344490042, 912.0318331072501, 914.145031765496, 916.2582304237419, 918.3714290819878, 920.4846277402337, 922.5978263984796, 924.7110250567255, 926.8242237149714, 928.9374223732173, 931.0506210314632, 933.163819689709, 935.2770183479549, 937.3902170062008, 939.5034156644467, 941.6166143226926, 943.7298129809385, 945.8430116391844, 947.9562102974303, 950.0694089556762, 952.1826076139221, 954.295806272168, 956.4090049304139, 958.5222035886597, 960.6354022469056, 962.7486009051515, 964.8617995633974, 966.9749982216433, 969.0881968798892, 971.2013955381351, 973.314594196381, 975.4277928546269, 977.5409915128728, 979.6541901711187, 981.7673888293646, 983.8805874876105, 985.9937861458563, 988.1069848041022, 990.2201834623481, 992.333382120594, 994.4465807788399, 996.5597794370858, 998.6729780953317, 1000.7861767535776, 1002.8993754118235, 1005.0125740700694, 1007.1257727283153, 1009.2389713865612, 1011.352170044807, 1013.465368703053, 1015.5785673612988, 1017.6917660195447, 1019.8049646777906, 1021.9181633360365, 1024.0313619942824, 1026.1445606525283, 1028.2577593107742, 1030.37095796902, 1032.484156627266, 1034.5973552855119, 1036.7105539437578, 1038.8237526020037, 1040.9369512602495, 1043.0501499184954, 1045.1633485767413, 1047.2765472349872, 1049.389745893233, 1051.502944551479, 1053.616143209725, 1055.7293418679708, 1057.8425405262167, 1059.9557391844626, 1062.0689378427085, 1064.1821365009544, 1066.2953351592002, 1068.4085338174461, 1070.521732475692, 1072.634931133938, 1074.7481297921838, 1076.8613284504297, 1078.9745271086756, 1081.0877257669215, 1083.2009244251674, 1085.3141230834133, 1087.4273217416592, 1089.540520399905, 1091.653719058151, 1093.7669177163968, 1095.8801163746427, 1097.9933150328886, 1100.1065136911345, 1102.2197123493804, 1104.3329110076263, 1106.4461096658722, 1108.559308324118, 1110.672506982364, 1112.7857056406099, 1114.8989042988558, 1117.0121029571017, 1119.1253016153476, 1121.2385002735934, 1123.3516989318393, 1125.4648975900852, 1127.5780962483311, 1129.691294906577, 1131.804493564823, 1133.9176922230688, 1136.0308908813147, 1138.1440895395606, 1140.2572881978065, 1142.3704868560524, 1144.4836855142983, 1146.5968841725442, 1148.71008283079, 1150.823281489036, 1152.9364801472818, 1155.0496788055277, 1157.1628774637736, 1159.2760761220195, 1161.3892747802654, 1163.5024734385113, 1165.6156720967572, 1167.728870755003, 1169.842069413249, 1171.9552680714949, 1174.0684667297407, 1176.1816653879866, 1178.2948640462325, 1180.4080627044784, 1182.5212613627243, 1184.6344600209702, 1186.747658679216, 1188.860857337462, 1190.9740559957079, 1193.0872546539538, 1195.2004533121997, 1197.3136519704456, 1199.4268506286915, 1201.5400492869373, 1203.6532479451832, 1205.7664466034291, 1207.879645261675, 1209.992843919921, 1212.1060425781668, 1214.2192412364127, 1216.3324398946586, 1218.4456385529045, 1220.5588372111504, 1222.6720358693963, 1224.7852345276422, 1226.898433185888, 1229.011631844134, 1231.1248305023798, 1233.2380291606257, 1235.3512278188716, 1237.4644264771175, 1239.5776251353634, 1241.6908237936093, 1243.8040224518552, 1245.917221110101, 1248.030419768347, 1250.1436184265929, 1252.2568170848388, 1254.3700157430847, 1256.4832144013305, 1258.5964130595764, 1260.7096117178223, 1262.8228103760682, 1264.936009034314, 1267.04920769256, 1269.162406350806, 1271.2756050090518, 1273.3888036672977, 1275.5020023255436, 1277.6152009837895, 1279.7283996420354, 1281.8415983002812, 1283.9547969585271, 1286.067995616773, 1288.181194275019, 1290.2943929332648, 1292.4075915915107, 1294.5207902497566, 1296.6339889080025, 1298.7471875662484, 1300.8603862244943, 1302.9735848827402, 1305.086783540986, 1307.199982199232, 1309.3131808574778, 1311.4263795157237, 1313.5395781739696, 1315.6527768322155, 1317.7659754904614, 1319.8791741487073, 1321.9923728069532, 1324.105571465199, 1326.218770123445, 1328.3319687816909, 1330.4451674399368, 1332.5583660981827, 1334.6715647564286, 1336.7847634146744, 1338.8979620729203, 1341.0111607311662, 1343.1243593894121, 1345.237558047658, 1347.350756705904, 1349.4639553641498, 1351.5771540223957, 1353.6903526806416, 1355.8035513388875, 1357.9167499971334, 1360.0299486553793, 1362.1431473136251, 1364.256345971871, 1366.369544630117, 1368.4827432883628, 1370.5959419466087, 1372.7091406048546, 1374.8223392631005, 1376.9355379213464, 1379.0487365795923, 1381.1619352378382, 1383.275133896084, 1385.38833255433, 1387.5015312125759, 1389.6147298708217, 1391.7279285290676, 1393.8411271873135, 1395.9543258455594, 1398.0675245038053, 1400.1807231620512, 1402.293921820297, 1404.407120478543, 1406.5203191367889, 1408.6335177950348, 1410.7467164532807, 1412.8599151115266, 1414.9731137697725, 1417.0863124280183, 1419.1995110862642, 1421.3127097445101, 1423.425908402756, 1425.539107061002, 1427.6523057192478, 1429.7655043774937, 1431.8787030357396, 1433.9919016939855, 1436.1051003522314, 1438.2182990104773, 1440.3314976687232, 1442.444696326969, 1444.557894985215, 1446.6710936434608, 1448.7842923017067, 1450.8974909599526, 1453.0106896181985, 1455.1238882764444, 1457.2370869346903, 1459.3502855929362, 1461.463484251182, 1463.576682909428, 1465.6898815676739, 1467.8030802259198, 1469.9162788841656, 1472.0294775424115, 1474.1426762006574, 1476.2558748589033, 1478.3690735171492, 1480.482272175395, 1482.595470833641, 1484.708669491887, 1486.8218681501328, 1488.9350668083787, 1491.0482654666246, 1493.1614641248705, 1495.2746627831164, 1497.3878614413622, 1499.5010600996081, 1501.614258757854, 1503.7274574161, 1505.8406560743458, 1507.9538547325917, 1510.0670533908376, 1512.1802520490835, 1514.2934507073294, 1516.4066493655753, 1518.5198480238212, 1520.633046682067, 1522.746245340313, 1524.8594439985588, 1526.9726426568047, 1529.0858413150506, 1531.1990399732965, 1533.3122386315424, 1535.4254372897883, 1537.5386359480342, 1539.65183460628, 1541.765033264526, 1543.8782319227719, 1545.9914305810178, 1548.1046292392637, 1550.2178278975096, 1552.3310265557554, 1554.4442252140013, 1556.5574238722472, 1558.6706225304931, 1560.783821188739, 1562.897019846985, 1565.0102185052308, 1567.1234171634767, 1569.2366158217226, 1571.3498144799685, 1573.4630131382144, 1575.5762117964603, 1577.6894104547061, 1579.802609112952, 1581.915807771198, 1584.0290064294438, 1586.1422050876897, 1588.2554037459356, 1590.3686024041815, 1592.4818010624274, 1594.5949997206733, 1596.7081983789192, 1598.821397037165, 1600.934595695411, 1603.0477943536569, 1605.1609930119027, 1607.2741916701486, 1609.3873903283945, 1611.5005889866404, 1613.6137876448863, 1615.7269863031322, 1617.840184961378, 1619.953383619624, 1622.0665822778699, 1624.1797809361158, 1626.2929795943617, 1628.4061782526076, 1630.5193769108535, 1632.6325755690993, 1634.7457742273452, 1636.8589728855911, 1638.972171543837, 1641.085370202083, 1643.1985688603288, 1645.3117675185747, 1647.4249661768206, 1649.5381648350665, 1651.6513634933124, 1653.7645621515583, 1655.8777608098042, 1657.99095946805, 1660.104158126296, 1662.2173567845418, 1664.3305554427877, 1666.4437541010336, 1668.5569527592795, 1670.6701514175254, 1672.7833500757713, 1674.8965487340172, 1677.009747392263, 1679.122946050509, 1681.2361447087549, 1683.3493433670008, 1685.4625420252466, 1687.5757406834925, 1689.6889393417384, 1691.8021379999843, 1693.9153366582302, 1696.028535316476, 1698.141733974722, 1700.254932632968, 1702.3681312912138, 1704.4813299494597, 1706.5945286077056, 1708.7077272659515, 1710.8209259241974, 1712.9341245824432, 1715.0473232406891, 1717.160521898935, 1719.273720557181, 1721.3869192154268, 1723.5001178736727, 1725.6133165319186, 1727.7265151901645, 1729.8397138484104, 1731.9529125066563, 1734.0661111649022, 1736.179309823148, 1738.292508481394, 1740.4057071396398, 1742.5189057978857, 1744.6321044561316, 1746.7453031143775, 1748.8585017726234, 1750.9717004308693, 1753.0848990891152, 1755.198097747361, 1757.311296405607, 1759.4244950638529, 1761.5376937220988, 1763.6508923803447, 1765.7640910385905, 1767.8772896968364, 1769.9904883550823, 1772.1036870133282, 1774.2168856715741, 1776.33008432982, 1778.443282988066, 1780.5564816463118, 1782.6696803045577, 1784.7828789628036, 1786.8960776210495, 1789.0092762792954, 1791.1224749375413, 1793.2356735957871, 1795.348872254033, 1797.462070912279, 1799.5752695705248, 1801.6884682287707, 1803.8016668870166, 1805.9148655452625, 1808.0280642035084, 1810.1412628617543, 1812.2544615200002, 1814.367660178246, 1816.480858836492, 1818.5940574947379, 1820.7072561529837, 1822.8204548112296, 1824.9336534694755, 1827.0468521277214, 1829.1600507859673, 1831.2732494442132, 1833.386448102459, 1835.499646760705, 1837.6128454189509, 1839.7260440771968, 1841.8392427354427, 1843.9524413936886, 1846.0656400519345, 1848.1788387101803, 1850.2920373684262, 1852.4052360266721, 1854.518434684918, 1856.631633343164, 1858.7448320014098, 1860.8580306596557, 1862.9712293179016, 1865.0844279761475, 1867.1976266343934, 1869.3108252926393, 1871.4240239508852, 1873.537222609131, 1875.650421267377, 1877.7636199256228, 1879.8768185838687, 1881.9900172421146, 1884.1032159003605, 1886.2164145586064, 1888.3296132168523, 1890.4428118750982, 1892.556010533344, 1894.66920919159, 1896.7824078498359, 1898.8956065080818, 1901.0088051663276, 1903.1220038245735, 1905.2352024828194, 1907.3484011410653, 1909.4615997993112, 1911.574798457557, 1913.687997115803, 1915.801195774049, 1917.9143944322948, 1920.0275930905407, 1922.1407917487866, 1924.2539904070325, 1926.3671890652784, 1928.4803877235242, 1930.5935863817701, 1932.706785040016, 1934.819983698262, 1936.9331823565078, 1939.0463810147537, 1941.1595796729996, 1943.2727783312455, 1945.3859769894914, 1947.4991756477373, 1949.6123743059832, 1951.725572964229, 1953.838771622475, 1955.9519702807208, 1958.0651689389667, 1960.1783675972126, 1962.2915662554585, 1964.4047649137044, 1966.5179635719503, 1968.6311622301962, 1970.744360888442, 1972.857559546688, 1974.9707582049339, 1977.0839568631798, 1979.1971555214257, 1981.3103541796715, 1983.4235528379174, 1985.5367514961633, 1987.6499501544092, 1989.7631488126551, 1991.876347470901, 1993.989546129147, 1996.1027447873928, 1998.2159434456387, 2000.3291421038846, 2002.4423407621305, 2004.5555394203764, 2006.6687380786223, 2008.7819367368681, 2010.895135395114, 2013.00833405336, 2015.1215327116058, 2017.2347313698517, 2019.3479300280976, 2021.4611286863435, 2023.5743273445894, 2025.6875260028353, 2027.8007246610812, 2029.913923319327, 2032.027121977573, 2034.1403206358189, 2036.2535192940647, 2038.3667179523106, 2040.4799166105565, 2042.5931152688024, 2044.7063139270483, 2046.8195125852942, 2048.93271124354, 2051.0459099017858, 2053.15910856], + "ys": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0000017387014973501776, 0.000008224669438007135, 0.00002565127775308897, 0.00006765493414100804, 0.00014966401110410717, 0.0002868623179186901, 0.0004924192487549605, 0.0007814075514417943, 0.0011718613583386313, 0.0016774482935127547, 0.0023168014047843044, 0.0030992421357492663, 0.0040169976497941625, 0.00506016829554865, 0.006216124758005477, 0.0074753254547523795, 0.008830294640565936, 0.01026673644154867, 0.011773294167594513, 0.01333978093953239, 0.014958090779578635, 0.016625358009628527, 0.018336557438683995, 0.02009627537513565, 0.021909856032905524, 0.023780186586774166, 0.025710429020842016, 0.0277078903541607, 0.02977623779196844, 0.03191748936879393, 0.034138707517548786, 0.036450206317074116, 0.03885789188148689, 0.04137328769056436, 0.0440085071909367, 0.04677103958288847, 0.04966819341898709, 0.05271207016191974, 0.05590540995812478, 0.05925292101770533, 0.0627687061271188, 0.0664515687663365, 0.0703065616548418, 0.0743428165930979, 0.0785576503032407, 0.08294707315672231, 0.08751606630868176, 0.0922662916521834, 0.09719275740295205, 0.10229784800625394, 0.10759137401982448, 0.11305873608091832, 0.11869791886671029, 0.12451942229246699, 0.13050479488468875, 0.13665106327304544, 0.14296455026692428, 0.14943147392816564, 0.15604250771426048, 0.16280190409025264, 0.1697055160962467, 0.17673642544702534, 0.18389114593919287, 0.1911773590906412, 0.19857764563513797, 0.206081204047181, 0.21368811475323796, 0.22138137864851937, 0.2291500695456443, 0.236988301011478, 0.24488385055218678, 0.25282490615324893, 0.2608050925556289, 0.2688186767364362, 0.2768574171090831, 0.28491793859740355, 0.2929969678700293, 0.3010893146787949, 0.30919511101201125, 0.31730795466456263, 0.3254221283700227, 0.3335313378696076, 0.34162645187492535, 0.3496989570394085, 0.35774686376098913, 0.365765093063822, 0.37374270235019086, 0.38166847426948025, 0.3895406116315437, 0.3973556449164375, 0.4051110120041672, 0.41280726079566055, 0.4204359677882319, 0.42800215016313525, 0.4355061591395477, 0.4429416026203402, 0.45031456624336935, 0.45762852053691383, 0.4648772623931808, 0.4720557253211076, 0.47916336669614246, 0.48619728425304776, 0.4931498208411254, 0.5000301099601834, 0.506837887224426, 0.5135631281184221, 0.5202068625843144, 0.5267682317663742, 0.5332446778498434, 0.5396347519973723, 0.5459402103719957, 0.552159264654571, 0.5582920035759508, 0.5643441228109966, 0.5703186360383907, 0.5762158710736782, 0.5820424529329442, 0.5877924837354437, 0.5934581008083613, 0.5990443888953315, 0.6045510330186394, 0.6099722526076505, 0.6153080822436794, 0.6205625923771533, 0.6257354772269866, 0.6308268241219481, 0.6358452956116769, 0.640792135901633, 0.645661950293726, 0.6504639997132959, 0.6552023991207551, 0.6598704431266954, 0.6644745938345611, 0.6690151572652863, 0.6734861572281514, 0.677890941779777, 0.6822356821087885, 0.6865254664381933, 0.6907604161149028, 0.6949451744849002, 0.6990776476776606, 0.7031486228111258, 0.7071637031586091, 0.7111249894485834, 0.7150307070130932, 0.7188843948769871, 0.7226841840770919, 0.7264262161219804, 0.7301096628642338, 0.7337380775134473, 0.7373113994880542, 0.7408314240915641, 0.7443011580345653, 0.747720931161911, 0.7510920717416558, 0.7544220604519287, 0.7577138575699446, 0.7609670367732545, 0.7641876064429081, 0.7673774895026476, 0.7705349295558447, 0.7736585974305893, 0.7767490939793277, 0.7798083597299391, 0.7828372805082378, 0.7858353918323003, 0.7888011991038931, 0.7917328505626529, 0.7946322995773769, 0.7974947618141841, 0.8003210087707937, 0.8031141318830709, 0.8058761755551672, 0.8086046446044922, 0.8113007988839885, 0.813968809626014, 0.8166057851252051, 0.8192069536729419, 0.8217728343763532, 0.8243000199845645, 0.826785018904385, 0.829226677353236, 0.8316281810597738, 0.8339864687393741, 0.8362996773103364, 0.838573097689099, 0.8408089405027881, 0.8430126131832496, 0.8451879267247445, 0.8473399331942424, 0.8494685523421245, 0.8515754257072632, 0.8536599668786069, 0.855722015451867, 0.8577631710297391, 0.8597837251976237, 0.8617806155940848, 0.8637557043165836, 0.8657032188701813, 0.8676181020799744, 0.8694991278790836, 0.8713451756265683, 0.873158418297313, 0.8749394670582368, 0.8766925805879688, 0.8784158800735377, 0.880107856440421, 0.881770972835304, 0.8834069437227872, 0.8850171568300468, 0.8866066172108484, 0.8881752152716873, 0.8897239687502494, 0.8912539542047243, 0.8927664621260112, 0.8942616697321224, 0.8957402447073144, 0.8972045607211196, 0.898654011790243, 0.9000885174690811, 0.9015105519163241, 0.9029196481523547, 0.9043145233986669, 0.9056928698246831, 0.9070526865776405, 0.9083945808804033, 0.9097181977376945, 0.9110261331109327, 0.9123175124762131, 0.9135888506505573, 0.9148410855234643, 0.9160751431753618, 0.9172918600867895, 0.9184923832315326, 0.9196795620551568, 0.9208571737433784, 0.9220247797129142, 0.9231803851259095, 0.924326034553752, 0.9254624426962313, 0.9265916571032659, 0.9277144722379325, 0.9288303697259697, 0.9299379581801613, 0.9310346772767935, 0.9321195101000108, 0.9331913016951418, 0.934248855969847, 0.9352920830513882, 0.9363203415131895, 0.9373326230284706, 0.9383273641452945, 0.9393031361510461, 0.9402625591222773, 0.9412056156417378, 0.9421330247224824, 0.9430467259187256, 0.9439479940273077, 0.944836999858214, 0.94571497786182, 0.9465814767955609, 0.9474370331554584, 0.9482813918136994, 0.9491156558064898, 0.9499397223692805, 0.9507520668263362, 0.9515501548759697, 0.9523330549144005, 0.9530997567926011, 0.953847919594444, 0.9545753228673278, 0.9552825859543415, 0.9559724232437732, 0.9566457658640429, 0.9573020310814735, 0.9579427958877, 0.9585700123732329, 0.9591852066315977, 0.9597905067322962, 0.9603864480219592, 0.9609736221563414, 0.9615544584913367, 0.9621295198225663, 0.9626959361095717, 0.9632523888544281, 0.9637995001418727, 0.9643368075866003, 0.9648635138873288, 0.9653788186000276, 0.9658832258154109, 0.9663764882326319, 0.9668585696044986, 0.9673291285513768, 0.9677872760437141, 0.9682350009779287, 0.9686742331125551, 0.9691053178371192, 0.969527618113379, 0.9699429649734421, 0.9703522757746328, 0.9707563783722917, 0.9711553646392961, 0.9715504152551558, 0.9719417920268398, 0.9723283021218703, 0.9727091948559472, 0.9730844976430497, 0.9734541075715812, 0.9738187926212527, 0.974177413650674, 0.974530018879824, 0.9748768615123252, 0.9752185075433957, 0.9755551925621877, 0.9758862832962774, 0.9762130541523847, 0.9765368127756788, 0.9768562968525702, 0.9771718052819609, 0.9774831159089946, 0.977789988277184, 0.9780929655043809, 0.9783921609981187, 0.9786871158638877, 0.9789780064767983, 0.9792651975188615, 0.9795480102646106, 0.9798256704650036, 0.9800987293504209, 0.9803685964162457, 0.9806359858713499, 0.9809005815206424, 0.9811617323011315, 0.9814187317381143, 0.9816716252171359, 0.9819203078519331, 0.9821647398800607, 0.9824058426144384, 0.9826434586550473, 0.9828775262543323, 0.9831079748631004, 0.9833348379212443, 0.9835590729624999, 0.9837815372968561, 0.9840027038891606, 0.9842229626430502, 0.9844419959738411, 0.9846595506440092, 0.9848757843965973, 0.9850901201900364, 0.9853016992815723, 0.9855096057283868, 0.9857139968818585, 0.9859144550935364, 0.9861099278796257, 0.9863000391680091, 0.9864851699105153, 0.9866652667274436, 0.9868404163480686, 0.9870115464844063, 0.9871795867301335, 0.987345285190581, 0.9875089342591872, 0.9876701780152455, 0.9878289521825685, 0.9879864228795385, 0.9881433391281055, 0.9882990721950049, 0.9884537744853127, 0.9886074604277901, 0.9887594842606691, 0.9889091597983293, 0.989056412802072, 0.9892018218716734, 0.9893459579901757, 0.9894886027995884, 0.9896291664262773, 0.9897663166201346, 0.989900522493184, 0.990031842650474, 0.990159565584213, 0.990283337618105, 0.9904040839739546, 0.9905216259920918, 0.9906358425940336, 0.9907466710509389, 0.9908547269702281, 0.9909607131468053, 0.9910652615599109, 0.9911690661677082, 0.9912722929399528, 0.9913747599901128, 0.9914766550672371, 0.9915778084202302, 0.9916786866763538, 0.9917793346069661, 0.9918794252376033, 0.9919788426942924, 0.9920776184808229, 0.9921761500666471, 0.9922743922336081, 0.9923724362489359, 0.9924708682081282, 0.992570167939379, 0.9926703916968265, 0.9927712529442367, 0.992872639129711, 0.992974743788188, 0.9930777515509135, 0.9931816196735143, 0.9932855839217216, 0.9933898742803511, 0.9934945775267077, 0.9935990642218664, 0.9937030048033304, 0.9938064535191286, 0.9939095096038177, 0.9940122642303905, 0.9941145929695855, 0.9942155737834022, 0.9943151272546231, 0.9944136841381928, 0.9945113507557448, 0.9946079272512786, 0.9947041479018712, 0.9948004815010931, 0.994897013750168, 0.9949938795277677, 0.9950912926910902, 0.9951891314114037, 0.9952879271295894, 0.9953875340911434, 0.9954877333002792, 0.9955881252518838, 0.9956884649034057, 0.9957878059653673, 0.9958855832400291, 0.9959815688579176, 0.9960757573143273, 0.9961682365409761, 0.9962589597345598, 0.996347846483462, 0.9964351963154546, 0.996521313505932, 0.9966062753667364, 0.9966908086361614, 0.9967755532365106, 0.9968607339606481, 0.9969467237076137, 0.9970339946738187, 0.9971223864387203, 0.9972116365113007, 0.9973017096760055, 0.9973926894319459, 0.9974841511989867, 0.9975760434571417, 0.9976678131478891, 0.9977590941158387, 0.9978501536221591, 0.9979407671781035, 0.9980304089787866, 0.9981185906467265, 0.9982052449464309, 0.998290432075388, 0.9983738336863639, 0.9984559183433452, 0.9985371551284659, 0.9986182715198493, 0.9986995095257226, 0.9987805150582207, 0.9988608933350018, 0.9989409122104347, 0.9990209759254844, 0.9991012802527399, 0.9991817568264421, 0.9992617920690325, 0.9993405801032589, 0.9994168692258343, 0.9994895626622549, 0.9995574782054554, 0.9996204950318001, 0.9996783995355066, 0.9997306480887898, 0.9997760268273443, 0.9998146721293908, 0.9998467182600594, 0.9998727850802958, 0.9998931851682775, 0.999909135655616, 0.9999213472343251, 0.9999305469379516, 0.9999371818493878, 0.9999418380876974, 0.9999451397792696, 0.9999477930436447, 0.9999501692885364, 0.9999525076160292, 0.999954605905629, 0.9999564598235128, 0.9999580755018473, 0.999959455359529, 0.9999606557732827, 0.999961700606705, 0.9999625898597968, 0.999963313803486, 0.9999638814971783, 0.9999642936105415, 0.9999645533037673, 0.9999647616371006, 0.9999649491371003, 0.9999651158037668, 0.9999652616371002, 0.9999653866370999, 0.9999654908037672, 0.9999655741371003, 0.9999656668210846, 0.9999658071739848, 0.9999659981376687, 0.9999662356415182, 0.9999665405188647, 0.9999669127697088, 0.9999673574769126, 0.9999678696741239, 0.9999684558059762, 0.999969166402593, 0.9999700194214054, 0.9999709838992026, 0.9999719560521956, 0.9999729282051932, 0.9999739003581862, 0.9999748725111794, 0.9999758446641742, 0.9999768168171701, 0.9999777889701631, 0.9999787611231561, 0.9999796480029417, 0.9999804001357315, 0.9999810173179, 0.9999815450838254, 0.9999820054762552, 0.9999823984951848, 0.9999827241406165, 0.999982978356631, 0.9999831640556964, 0.9999832823812638, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333336, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333336, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333336, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333336, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333336, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333336, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333336, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333336, 0.9999833333333337, 0.9999833333333336, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333336, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333336, 0.9999833333333336, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333336, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333336, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333336, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333336, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333336, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833333333336, 0.9999833333333337, 0.9999833333333337, 0.9999833333333337, 0.9999833374233782, 0.9999833751664753, 0.9999834465626246, 0.999983554098116, 0.99998369921023, 0.9999838779753956, 0.9999840912761496, 0.9999843437572793, 0.9999846298914623, 0.9999849496786972, 0.9999853088076242, 0.9999857023108241, 0.9999861294670749, 0.9999865943612634, 0.9999870952334801, 0.9999876297587473, 0.9999881488270119, 0.9999886303134926, 0.9999890781469224, 0.9999894914499234, 0.9999898655673882, 0.9999902060318012, 0.9999905128431608, 0.9999907803179892, 0.9999910134133847, 0.9999912128557278, 0.9999913745652941, 0.9999915002916732, 0.9999915923650002, 0.9999916483093041, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916666666668, 0.9999916875000001, 0.9999917291666668, 0.9999917916666667, 0.999991875, 0.9999919791666665, 0.999992104166667, 0.9999922500000001, 0.9999924166666667, 0.9999926041666665, 0.9999928124999996, 0.9999930416666671, 0.999993291666667, 0.9999935625, 0.9999938541666665, 0.9999941666666663, 0.9999944999999992, 0.9999948541666672, 0.9999952291666669, 0.9999956249999999, 0.9999960416666662, 0.9999964374999992, 0.999996812499999, 0.9999971666666672, 0.9999975000000001, 0.9999978125, 0.9999981041666663, 0.9999983749999996, 0.9999986249999994, 0.999998854166667, 0.9999990625000001, 0.99999925, 0.9999994166666666, 0.9999995624999998, 0.9999996875000003, 0.999999791666667, 0.9999998750000002, 0.9999999375000002, 0.9999999791666669, 1.0000000000000004, 1.0000000000000004, 1.0000000000000004, 1.0000000000000004, 1.0000000000000004, 1.0000000000000004, 1.0000000000000004, 1.0000000000000004, 1.0000000000000004, 1.0000000000000004, 1.0000000000000004, 1.0000000000000004, 1.0000000000000004, 1.0000000000000004, 1.0000000000000004, 1.0000000000000004, 1.0000000000000004, 1.0000000000000004, 1.0000000000000004, 1.0000000000000004] + }, + { + "createdAt": "2019-10-26T20:45:01.258+00:00", + "xs": [-112.793432444, -109.36609107782984, -105.93874971165967, -102.5114083454895, -99.08406697931933, -95.65672561314916, -92.229384246979, -88.80204288080883, -85.37470151463866, -81.94736014846849, -78.52001878229832, -75.09267741612815, -71.66533604995799, -68.23799468378782, -64.81065331761765, -61.38331195144748, -57.95597058527731, -54.528629219107145, -51.10128785293698, -47.67394648676681, -44.24660512059664, -40.81926375442647, -37.391922388256305, -33.964581022086136, -30.53723965591597, -27.1098982897458, -23.682556923575632, -20.255215557405464, -16.827874191235296, -13.400532825065126, -9.973191458894956, -6.545850092724786, -3.118508726554616, 0.30883263961555407, 3.736174005785724, 7.163515371955894, 10.590856738126064, 14.018198104296234, 17.445539470466404, 20.872880836636575, 24.300222202806744, 27.72756356897691, 31.15490493514708, 34.58224630131725, 38.009587667487416, 41.436929033657584, 44.86427039982775, 48.29161176599792, 51.71895313216809, 55.14629449833826, 58.573635864508425, 62.00097723067859, 65.42831859684877, 68.85565996301894, 72.2830013291891, 75.71034269535927, 79.13768406152944, 82.56502542769961, 85.99236679386978, 89.41970816003995, 92.84704952621011, 96.27439089238028, 99.70173225855045, 103.12907362472062, 106.55641499089079, 109.98375635706095, 113.41109772323112, 116.83843908940129, 120.26578045557146, 123.69312182174163, 127.1204631879118, 130.54780455408198, 133.97514592025215, 137.4024872864223, 140.82982865259248, 144.25717001876265, 147.68451138493282, 151.111852751103, 154.53919411727315, 157.96653548344332, 161.3938768496135, 164.82121821578366, 168.24855958195383, 171.675900948124, 175.10324231429416, 178.53058368046433, 181.9579250466345, 185.38526641280467, 188.81260777897484, 192.239949145145, 195.66729051131517, 199.09463187748534, 202.5219732436555, 205.94931460982568, 209.37665597599585, 212.803997342166, 216.23133870833618, 219.65868007450635, 223.08602144067652, 226.5133628068467, 229.94070417301685, 233.36804553918702, 236.7953869053572, 240.22272827152736, 243.65006963769753, 247.0774110038677, 250.50475237003786, 253.93209373620803, 257.3594351023782, 260.7867764685484, 264.2141178347186, 267.6414592008888, 271.068800567059, 274.4961419332292, 277.9234832993994, 281.3508246655696, 284.7781660317398, 288.20550739790997, 291.63284876408017, 295.06019013025036, 298.48753149642056, 301.91487286259076, 305.34221422876095, 308.76955559493115, 312.19689696110134, 315.62423832727154, 319.05157969344174, 322.47892105961193, 325.90626242578213, 329.3336037919523, 332.7609451581225, 336.1882865242927, 339.6156278904629, 343.0429692566331, 346.4703106228033, 349.8976519889735, 353.3249933551437, 356.7523347213139, 360.1796760874841, 363.6070174536543, 367.0343588198245, 370.4617001859947, 373.8890415521649, 377.3163829183351, 380.7437242845053, 384.1710656506755, 387.59840701684567, 391.02574838301587, 394.45308974918606, 397.88043111535626, 401.30777248152646, 404.73511384769665, 408.16245521386685, 411.58979658003705, 415.01713794620724, 418.44447931237744, 421.87182067854764, 425.29916204471783, 428.72650341088803, 432.1538447770582, 435.5811861432284, 439.0085275093986, 442.4358688755688, 445.863210241739, 449.2905516079092, 452.7178929740794, 456.1452343402496, 459.5725757064198, 462.99991707259, 466.4272584387602, 469.8545998049304, 473.2819411711006, 476.7092825372708, 480.136623903441, 483.5639652696112, 486.99130663578137, 490.41864800195157, 493.84598936812176, 497.27333073429196, 500.70067210046216, 504.12801346663235, 507.55535483280255, 510.98269619897275, 514.4100375651429, 517.8373789313131, 521.2647202974832, 524.6920616636534, 528.1194030298235, 531.5467443959936, 534.9740857621638, 538.4014271283339, 541.8287684945041, 545.2561098606742, 548.6834512268443, 552.1107925930145, 555.5381339591846, 558.9654753253548, 562.3928166915249, 565.820158057695, 569.2474994238652, 572.6748407900353, 576.1021821562055, 579.5295235223756, 582.9568648885457, 586.3842062547159, 589.811547620886, 593.2388889870562, 596.6662303532263, 600.0935717193964, 603.5209130855666, 606.9482544517367, 610.3755958179069, 613.802937184077, 617.2302785502471, 620.6576199164173, 624.0849612825874, 627.5123026487576, 630.9396440149277, 634.3669853810978, 637.794326747268, 641.2216681134381, 644.6490094796083, 648.0763508457784, 651.5036922119485, 654.9310335781187, 658.3583749442888, 661.785716310459, 665.2130576766291, 668.6403990427992, 672.0677404089694, 675.4950817751395, 678.9224231413097, 682.3497645074798, 685.7771058736499, 689.2044472398201, 692.6317886059902, 696.0591299721603, 699.4864713383305, 702.9138127045006, 706.3411540706708, 709.7684954368409, 713.195836803011, 716.6231781691812, 720.0505195353513, 723.4778609015215, 726.9052022676916, 730.3325436338617, 733.7598850000319, 737.187226366202, 740.6145677323722, 744.0419090985423, 747.4692504647124, 750.8965918308826, 754.3239331970527, 757.7512745632229, 761.178615929393, 764.6059572955631, 768.0332986617333, 771.4606400279034, 774.8879813940736, 778.3153227602437, 781.7426641264138, 785.170005492584, 788.5973468587541, 792.0246882249243, 795.4520295910944, 798.8793709572645, 802.3067123234347, 805.7340536896048, 809.161395055775, 812.5887364219451, 816.0160777881152, 819.4434191542854, 822.8707605204555, 826.2981018866257, 829.7254432527958, 833.1527846189659, 836.5801259851361, 840.0074673513062, 843.4348087174764, 846.8621500836465, 850.2894914498166, 853.7168328159868, 857.1441741821569, 860.571515548327, 863.9988569144972, 867.4261982806673, 870.8535396468375, 874.2808810130076, 877.7082223791778, 881.1355637453479, 884.562905111518, 887.9902464776882, 891.4175878438583, 894.8449292100285, 898.2722705761986, 901.6996119423687, 905.1269533085389, 908.554294674709, 911.9816360408792, 915.4089774070493, 918.8363187732194, 922.2636601393896, 925.6910015055597, 929.1183428717299, 932.5456842379, 935.9730256040701, 939.4003669702403, 942.8277083364104, 946.2550497025805, 949.6823910687507, 953.1097324349208, 956.537073801091, 959.9644151672611, 963.3917565334312, 966.8190978996014, 970.2464392657715, 973.6737806319417, 977.1011219981118, 980.528463364282, 983.9558047304521, 987.3831460966222, 990.8104874627924, 994.2378288289625, 997.6651701951326, 1001.0925115613028, 1004.5198529274729, 1007.9471942936431, 1011.3745356598132, 1014.8018770259833, 1018.2292183921535, 1021.6565597583236, 1025.0839011244939, 1028.511242490664, 1031.9385838568342, 1035.3659252230043, 1038.7932665891744, 1042.2206079553446, 1045.6479493215147, 1049.0752906876849, 1052.502632053855, 1055.9299734200251, 1059.3573147861953, 1062.7846561523654, 1066.2119975185356, 1069.6393388847057, 1073.0666802508758, 1076.494021617046, 1079.921362983216, 1083.3487043493863, 1086.7760457155564, 1090.2033870817265, 1093.6307284478967, 1097.0580698140668, 1100.485411180237, 1103.912752546407, 1107.3400939125772, 1110.7674352787474, 1114.1947766449175, 1117.6221180110877, 1121.0494593772578, 1124.476800743428, 1127.904142109598, 1131.3314834757682, 1134.7588248419383, 1138.1861662081085, 1141.6135075742786, 1145.0408489404488, 1148.468190306619, 1151.895531672789, 1155.3228730389592, 1158.7502144051293, 1162.1775557712995, 1165.6048971374696, 1169.0322385036397, 1172.4595798698099, 1175.88692123598, 1179.3142626021502, 1182.7416039683203, 1186.1689453344904, 1189.5962867006606, 1193.0236280668307, 1196.4509694330009, 1199.878310799171, 1203.3056521653411, 1206.7329935315113, 1210.1603348976814, 1213.5876762638516, 1217.0150176300217, 1220.4423589961918, 1223.869700362362, 1227.2970417285321, 1230.7243830947023, 1234.1517244608724, 1237.5790658270425, 1241.0064071932127, 1244.4337485593828, 1247.861089925553, 1251.288431291723, 1254.7157726578932, 1258.1431140240634, 1261.5704553902335, 1264.9977967564037, 1268.4251381225738, 1271.852479488744, 1275.279820854914, 1278.7071622210842, 1282.1345035872544, 1285.5618449534245, 1288.9891863195946, 1292.4165276857648, 1295.843869051935, 1299.271210418105, 1302.6985517842752, 1306.1258931504453, 1309.5532345166155, 1312.9805758827856, 1316.4079172489558, 1319.835258615126, 1323.262599981296, 1326.6899413474662, 1330.1172827136363, 1333.5446240798065, 1336.9719654459766, 1340.3993068121467, 1343.8266481783169, 1347.253989544487, 1350.6813309106572, 1354.1086722768273, 1357.5360136429974, 1360.9633550091676, 1364.3906963753377, 1367.8180377415079, 1371.245379107678, 1374.6727204738481, 1378.1000618400183, 1381.5274032061884, 1384.9547445723585, 1388.3820859385287, 1391.8094273046988, 1395.236768670869, 1398.664110037039, 1402.0914514032092, 1405.5187927693794, 1408.9461341355495, 1412.3734755017197, 1415.8008168678898, 1419.22815823406, 1422.65549960023, 1426.0828409664002, 1429.5101823325704, 1432.9375236987405, 1436.3648650649106, 1439.7922064310808, 1443.219547797251, 1446.646889163421, 1450.0742305295912, 1453.5015718957613, 1456.9289132619315, 1460.3562546281016, 1463.7835959942718, 1467.210937360442, 1470.638278726612, 1474.0656200927822, 1477.4929614589523, 1480.9203028251225, 1484.3476441912926, 1487.7749855574627, 1491.2023269236329, 1494.629668289803, 1498.0570096559732, 1501.4843510221433, 1504.9116923883134, 1508.3390337544836, 1511.7663751206537, 1515.1937164868239, 1518.621057852994, 1522.0483992191641, 1525.4757405853343, 1528.9030819515044, 1532.3304233176746, 1535.7577646838447, 1539.1851060500148, 1542.612447416185, 1546.0397887823551, 1549.4671301485253, 1552.8944715146954, 1556.3218128808655, 1559.7491542470357, 1563.1764956132058, 1566.603836979376, 1570.031178345546, 1573.4585197117162, 1576.8858610778864, 1580.3132024440565, 1583.7405438102267, 1587.1678851763968, 1590.595226542567, 1594.022567908737, 1597.4499092749072, 1600.8772506410774, 1604.3045920072475, 1607.7319333734176, 1611.1592747395878, 1614.586616105758, 1618.013957471928, 1621.4412988380982, 1624.8686402042683, 1628.2959815704385, 1631.7233229366086, 1635.1506643027788, 1638.578005668949, 1642.005347035119, 1645.4326884012892, 1648.8600297674593, 1652.2873711336294, 1655.7147124997996, 1659.1420538659697, 1662.5693952321399, 1665.99673659831, 1669.4240779644801, 1672.8514193306503, 1676.2787606968204, 1679.7061020629906, 1683.1334434291607, 1686.5607847953308, 1689.988126161501, 1693.4154675276711, 1696.8428088938413, 1700.2701502600114, 1703.6974916261815, 1707.1248329923517, 1710.5521743585218, 1713.979515724692, 1717.406857090862, 1720.8341984570322, 1724.2615398232024, 1727.6888811893725, 1731.1162225555427, 1734.5435639217128, 1737.970905287883, 1741.398246654053, 1744.8255880202232, 1748.2529293863934, 1751.6802707525635, 1755.1076121187336, 1758.5349534849038, 1761.962294851074, 1765.389636217244, 1768.8169775834142, 1772.2443189495843, 1775.6716603157545, 1779.0990016819246, 1782.5263430480948, 1785.953684414265, 1789.381025780435, 1792.8083671466052, 1796.2357085127753, 1799.6630498789455, 1803.0903912451156, 1806.5177326112857, 1809.9450739774559, 1813.372415343626, 1816.7997567097962, 1820.2270980759663, 1823.6544394421364, 1827.0817808083066, 1830.5091221744767, 1833.9364635406469, 1837.363804906817, 1840.7911462729871, 1844.2184876391573, 1847.6458290053274, 1851.0731703714976, 1854.5005117376677, 1857.9278531038378, 1861.355194470008, 1864.782535836178, 1868.2098772023483, 1871.6372185685184, 1875.0645599346885, 1878.4919013008587, 1881.9192426670288, 1885.346584033199, 1888.773925399369, 1892.2012667655392, 1895.6286081317094, 1899.0559494978795, 1902.4832908640496, 1905.9106322302198, 1909.33797359639, 1912.76531496256, 1916.1926563287302, 1919.6199976949003, 1923.0473390610705, 1926.4746804272406, 1929.9020217934108, 1933.329363159581, 1936.756704525751, 1940.1840458919212, 1943.6113872580913, 1947.0387286242615, 1950.4660699904316, 1953.8934113566017, 1957.3207527227719, 1960.748094088942, 1964.1754354551122, 1967.6027768212823, 1971.0301181874524, 1974.4574595536226, 1977.8848009197927, 1981.3121422859629, 1984.739483652133, 1988.1668250183031, 1991.5941663844733, 1995.0215077506434, 1998.4488491168136, 2001.8761904829837, 2005.3035318491538, 2008.730873215324, 2012.1582145814941, 2015.5855559476643, 2019.0128973138344, 2022.4402386800045, 2025.8675800461747, 2029.2949214123448, 2032.722262778515, 2036.149604144685, 2039.5769455108552, 2043.0042868770254, 2046.4316282431955, 2049.858969609366, 2053.2863109755363, 2056.7136523417066, 2060.140993707877, 2063.5683350740474, 2066.9956764402177, 2070.423017806388, 2073.8503591725585, 2077.277700538729, 2080.705041904899, 2084.1323832710696, 2087.55972463724, 2090.9870660034103, 2094.4144073695807, 2097.841748735751, 2101.2690901019214, 2104.6964314680918, 2108.123772834262, 2111.5511142004325, 2114.978455566603, 2118.4057969327732, 2121.8331382989436, 2125.260479665114, 2128.6878210312843, 2132.1151623974547, 2135.542503763625, 2138.9698451297954, 2142.397186495966, 2145.824527862136, 2149.2518692283065, 2152.679210594477, 2156.1065519606473, 2159.5338933268176, 2162.961234692988, 2166.3885760591584, 2169.8159174253287, 2173.243258791499, 2176.6706001576695, 2180.09794152384, 2183.52528289001, 2186.9526242561806, 2190.379965622351, 2193.8073069885213, 2197.2346483546917, 2200.661989720862, 2204.0893310870324, 2207.516672453203, 2210.944013819373, 2214.3713551855435, 2217.798696551714, 2221.2260379178842, 2224.6533792840546, 2228.080720650225, 2231.5080620163953, 2234.9354033825657, 2238.362744748736, 2241.7900861149064, 2245.217427481077, 2248.644768847247, 2252.0721102134175, 2255.499451579588, 2258.9267929457583, 2262.3541343119286, 2265.781475678099, 2269.2088170442694, 2272.6361584104397, 2276.06349977661, 2279.4908411427805, 2282.918182508951, 2286.345523875121, 2289.7728652412916, 2293.200206607462, 2296.6275479736323, 2300.0548893398027, 2303.482230705973, 2306.9095720721434, 2310.336913438314, 2313.764254804484, 2317.1915961706545, 2320.618937536825, 2324.0462789029953, 2327.4736202691656, 2330.900961635336, 2334.3283030015064, 2337.7556443676767, 2341.182985733847, 2344.6103271000175, 2348.037668466188, 2351.465009832358, 2354.8923511985286, 2358.319692564699, 2361.7470339308693, 2365.1743752970397, 2368.60171666321, 2372.0290580293804, 2375.4563993955508, 2378.883740761721, 2382.3110821278915, 2385.738423494062, 2389.1657648602322, 2392.5931062264026, 2396.020447592573, 2399.4477889587433, 2402.8751303249137, 2406.302471691084, 2409.7298130572544, 2413.157154423425, 2416.584495789595, 2420.0118371557655, 2423.439178521936, 2426.8665198881063, 2430.2938612542766, 2433.721202620447, 2437.1485439866174, 2440.5758853527877, 2444.003226718958, 2447.4305680851285, 2450.857909451299, 2454.285250817469, 2457.7125921836396, 2461.13993354981, 2464.5672749159803, 2467.9946162821507, 2471.421957648321, 2474.8492990144914, 2478.276640380662, 2481.703981746832, 2485.1313231130025, 2488.558664479173, 2491.9860058453432, 2495.4133472115136, 2498.840688577684, 2502.2680299438543, 2505.6953713100247, 2509.122712676195, 2512.5500540423654, 2515.977395408536, 2519.404736774706, 2522.8320781408765, 2526.259419507047, 2529.6867608732173, 2533.1141022393876, 2536.541443605558, 2539.9687849717284, 2543.3961263378987, 2546.823467704069, 2550.2508090702395, 2553.67815043641, 2557.10549180258, 2560.5328331687506, 2563.960174534921, 2567.3875159010913, 2570.8148572672617, 2574.242198633432, 2577.6695399996024, 2581.096881365773, 2584.524222731943, 2587.9515640981135, 2591.378905464284, 2594.8062468304543, 2598.2335881966246, 2601.660929562795, 2605.0882709289654, 2608.5156122951357, 2611.942953661306, 2615.3702950274765, 2618.797636393647, 2622.224977759817, 2625.6523191259876, 2629.079660492158, 2632.5070018583283, 2635.9343432244987, 2639.361684590669, 2642.7890259568394, 2646.2163673230098, 2649.64370868918, 2653.0710500553505, 2656.498391421521, 2659.9257327876912, 2663.3530741538616, 2666.780415520032, 2670.2077568862023, 2673.6350982523727, 2677.062439618543, 2680.4897809847134, 2683.917122350884, 2687.344463717054, 2690.7718050832245, 2694.199146449395, 2697.6264878155653, 2701.0538291817356, 2704.481170547906, 2707.9085119140764, 2711.3358532802467, 2714.763194646417, 2718.1905360125875, 2721.617877378758, 2725.045218744928, 2728.4725601110986, 2731.899901477269, 2735.3272428434393, 2738.7545842096097, 2742.18192557578, 2745.6092669419504, 2749.036608308121, 2752.463949674291, 2755.8912910404615, 2759.318632406632, 2762.7459737728022, 2766.1733151389726, 2769.600656505143, 2773.0279978713133, 2776.4553392374837, 2779.882680603654, 2783.3100219698244, 2786.737363335995, 2790.164704702165, 2793.5920460683355, 2797.019387434506, 2800.4467288006763, 2803.8740701668466, 2807.301411533017, 2810.7287528991874, 2814.1560942653578, 2817.583435631528, 2821.0107769976985, 2824.438118363869, 2827.865459730039, 2831.2928010962096, 2834.72014246238, 2838.1474838285503, 2841.5748251947207, 2845.002166560891, 2848.4295079270614, 2851.856849293232, 2855.284190659402, 2858.7115320255725, 2862.138873391743, 2865.5662147579133, 2868.9935561240836, 2872.420897490254, 2875.8482388564244, 2879.2755802225947, 2882.702921588765, 2886.1302629549355, 2889.557604321106, 2892.984945687276, 2896.4122870534466, 2899.839628419617, 2903.2669697857873, 2906.6943111519577, 2910.121652518128, 2913.5489938842984, 2916.9763352504688, 2920.403676616639, 2923.8310179828095, 2927.25835934898, 2930.6857007151502, 2934.1130420813206, 2937.540383447491, 2940.9677248136613, 2944.3950661798317, 2947.822407546002, 2951.2497489121724, 2954.677090278343, 2958.104431644513, 2961.5317730106835, 2964.959114376854, 2968.3864557430243, 2971.8137971091946, 2975.241138475365, 2978.6684798415354, 2982.0958212077057, 2985.523162573876, 2988.9505039400465, 2992.377845306217, 2995.805186672387, 2999.2325280385576, 3002.659869404728, 3006.0872107708983, 3009.5145521370687, 3012.941893503239, 3016.3692348694094, 3019.79657623558, 3023.22391760175, 3026.6512589679205, 3030.078600334091, 3033.5059417002612, 3036.9332830664316, 3040.360624432602, 3043.7879657987723, 3047.2153071649427, 3050.642648531113, 3054.0699898972834, 3057.497331263454, 3060.924672629624, 3064.3520139957946, 3067.779355361965, 3071.2066967281353, 3074.6340380943057, 3078.061379460476, 3081.4887208266464, 3084.9160621928168, 3088.343403558987, 3091.7707449251575, 3095.198086291328, 3098.625427657498, 3102.0527690236686, 3105.480110389839, 3108.9074517560093, 3112.3347931221797, 3115.76213448835, 3119.1894758545204, 3122.616817220691, 3126.044158586861, 3129.4714999530315, 3132.898841319202, 3136.3261826853723, 3139.7535240515426, 3143.180865417713, 3146.6082067838834, 3150.0355481500537, 3153.462889516224, 3156.8902308823945, 3160.317572248565, 3163.744913614735, 3167.1722549809056, 3170.599596347076, 3174.0269377132463, 3177.4542790794167, 3180.881620445587, 3184.3089618117574, 3187.7363031779278, 3191.163644544098, 3194.5909859102685, 3198.018327276439, 3201.4456686426092, 3204.8730100087796, 3208.30035137495, 3211.7276927411203, 3215.1550341072907, 3218.582375473461, 3222.0097168396314, 3225.437058205802, 3228.864399571972, 3232.2917409381425, 3235.719082304313, 3239.1464236704833, 3242.5737650366536, 3246.001106402824, 3249.4284477689944, 3252.8557891351647, 3256.283130501335, 3259.7104718675055, 3263.137813233676, 3266.565154599846, 3269.9924959660166, 3273.419837332187, 3276.8471786983573, 3280.2745200645277, 3283.701861430698, 3287.1292027968684, 3290.556544163039, 3293.983885529209, 3297.4112268953795, 3300.83856826155, 3304.2659096277202, 3307.6932509938906, 3311.12059236], + "ys": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.000000000000000007641529905368766, 0.00000006666666669819052, 0.00000030000000006320114, 0.0000008000000001255486, 0.000001866666666886482, 0.000003883333333799448, 0.000007483333334098228, 0.000013816666667802325, 0.000023950000001609135, 0.000039625949715031906, 0.00006736744274390134, 0.000126406887396367, 0.0002636845257489438, 0.0005320306090216696, 0.0009851086228715544, 0.0016798157011850647, 0.0026751858264150467, 0.00398698726417754, 0.005591462615462497, 0.007452899501785119, 0.009540218588389588, 0.011820087766121293, 0.01426356834149958, 0.01685704767722255, 0.01961318707498116, 0.022543360648648602, 0.025670945407606255, 0.029015576340239664, 0.032584523918129216, 0.03642691675294841, 0.04055725438410279, 0.045018846315674814, 0.0498515558491518, 0.05506412753117179, 0.0606947540844151, 0.06675754640244831, 0.07325802332916043, 0.08022643905214356, 0.08763378258243029, 0.09548808656118482, 0.10379721081156386, 0.11254015239242157, 0.1217219612790118, 0.13131592036628162, 0.14130671417867924, 0.15167856252892142, 0.1623987559379248, 0.17345195325244367, 0.1848103134496949, 0.1964533954877277, 0.2083507097354323, 0.22045987121005034, 0.23274615622007838, 0.2451660116459078, 0.2576855003732549, 0.2702787454481011, 0.28292436485902706, 0.2956054818977777, 0.3083088655983803, 0.3210150220965427, 0.33369957108541715, 0.34632805278081535, 0.3588909940480257, 0.37134962152558154, 0.3836800830900577, 0.39587679460241354, 0.4079222930381337, 0.4198169969198557, 0.43155654952764466, 0.4431382198923598, 0.4545696970762007, 0.4658324253104354, 0.4769172889193025, 0.4878268767278918, 0.4985482402882823, 0.5090789992103868, 0.5194098117626333, 0.5295320887421363, 0.5394524794089742, 0.549167658223104, 0.5586905795627664, 0.5680377134586034, 0.5771895693874753, 0.5861514202849829, 0.5949143391441829, 0.6034700200879806, 0.6118282813666982, 0.6199905783578722, 0.6279712411250447, 0.6357759562663146, 0.6434099981798358, 0.6508820457934911, 0.6581875344889181, 0.6653246139564979, 0.6723162985648244, 0.6791688882871767, 0.6858870922897213, 0.6924601397565245, 0.698890757102953, 0.705188357174811, 0.7113461267186281, 0.7173578564723974, 0.7232315099449249, 0.7289700433372219, 0.7345811462038808, 0.7400763404750658, 0.7454668109360633, 0.7507660141921897, 0.7559779123943994, 0.7611003686781458, 0.7661351657900793, 0.7710850380897352, 0.7759481189025245, 0.7807232988204877, 0.7854013913714645, 0.7899892090221031, 0.7944895760872661, 0.7989045591742336, 0.8032383826907623, 0.8074805892926399, 0.8116270730992472, 0.8156680261272639, 0.8196036714459753, 0.8234312351240576, 0.8271571932895571, 0.8307963061823946, 0.8343638920587578, 0.8378678860480822, 0.8413108649791312, 0.844693498026842, 0.8480176485381875, 0.8512815915998034, 0.8544732787989016, 0.8575822213526598, 0.8606069495603823, 0.8635527351999082, 0.8664246588036952, 0.8692201080266291, 0.8719460178384415, 0.8746110040390039, 0.8772207101068676, 0.8797797071846581, 0.8822903042443455, 0.8847555993030746, 0.8871795112682435, 0.8895625910602615, 0.8919077531037173, 0.8942107898251368, 0.8964653538933218, 0.8986720726458532, 0.900835255112639, 0.902949629727891, 0.9050161343736193, 0.9070382307913322, 0.909022379553311, 0.9109787424053897, 0.9129035648627021, 0.9148016349198059, 0.916677557521622, 0.9185316651649261, 0.9203586881427629, 0.9221537148225927, 0.9239133405788247, 0.9256359105753347, 0.9273182105952671, 0.9289561472342104, 0.9305532620185378, 0.9321113439247395, 0.9336362478957041, 0.9351312032762784, 0.9365964207992814, 0.9380326718251769, 0.9394410014037191, 0.9408202853979899, 0.9421635210150029, 0.9434675584662868, 0.9447246183643105, 0.945934555365034, 0.9471027572437674, 0.948231689538515, 0.9493260360858221, 0.9503918594828633, 0.9514331438049062, 0.9524546714973272, 0.953456603348271, 0.9544334749004028, 0.9553854044399174, 0.9563099565294124, 0.9572063742040633, 0.9580739820926025, 0.9589127517882122, 0.9597234627818947, 0.9605123884362643, 0.9612796989926077, 0.9620297188765374, 0.9627649156711946, 0.9634875045540647, 0.9641977374454891, 0.9648932179268694, 0.9655732454266358, 0.9662387872094561, 0.9668887149438277, 0.9675241202614819, 0.9681456981242578, 0.9687545698139353, 0.9693527380809694, 0.9699393216883735, 0.9705139591311097, 0.9710775962910143, 0.9716297552553627, 0.9721711478123174, 0.9727008862113411, 0.9732181716358614, 0.9737270300279868, 0.9742270226147653, 0.9747161412572364, 0.9751941371260443, 0.9756607069653109, 0.976117544980208, 0.9765645648411081, 0.9770017370090585, 0.9774319451147944, 0.9778570663331696, 0.9782775804604527, 0.978693023546993, 0.979102525841886, 0.9795031459933179, 0.9798941290332415, 0.9802732781736747, 0.9806396686809569, 0.9809932711645161, 0.9813351176569721, 0.981668683269054, 0.9819954072606631, 0.9823151534259681, 0.9826302277055271, 0.9829413487219825, 0.9832486964746019, 0.983550906811977, 0.9838465952004019, 0.9841371111455425, 0.9844228208992147, 0.9847014412474244, 0.9849722289987891, 0.9852344838551762, 0.9854880436833617, 0.9857336736847333, 0.9859713053225072, 0.9862023557725903, 0.9864292777646805, 0.9866540683880688, 0.9868770524905516, 0.9870982881619877, 0.9873184500702988, 0.9875370341726404, 0.9877536114463533, 0.9879689088990306, 0.9881829585969679, 0.9883972579381222, 0.9886122593579613, 0.9888273264521963, 0.9890428222501025, 0.9892586885099037, 0.9894737440350043, 0.989687994200368, 0.9898999605567219, 0.9901094178360303, 0.9903164841930808, 0.9905197860393642, 0.9907187196241696, 0.9909141323760439, 0.9911063117046087, 0.9912969404752164, 0.9914865024684119, 0.9916752872055152, 0.9918642004546492, 0.9920529211692035, 0.9922405950485904, 0.9924251349878638, 0.9926048454244134, 0.9927795692175401, 0.992949652237041, 0.9931152774411715, 0.9932772976111648, 0.9934369635605684, 0.993596206218929, 0.9937564209818228, 0.993918562974495, 0.994081915153896, 0.994246387548667, 0.9944109952913932, 0.994574703700437, 0.9947370391610576, 0.9948975472586016, 0.9950546319530866, 0.9952079840702563, 0.9953570654474513, 0.9955033846957816, 0.9956489488990965, 0.9957934908486656, 0.9959363284562123, 0.996078521244914, 0.9962201221499587, 0.9963592864724875, 0.9964923814354728, 0.996615905023304, 0.9967281202858225, 0.9968275094633059, 0.9969122268089634, 0.996982548188365, 0.9970409812195624, 0.9970901145213356, 0.9971324517372201, 0.9971699081751375, 0.9972045593337932, 0.9972383905775682, 0.9972718739720621, 0.9973048710345506, 0.9973372760261956, 0.9973690994576303, 0.9974004373282774, 0.9974312438654819, 0.997461515362021, 0.9974914136033091, 0.9975208870529301, 0.9975499309912343, 0.9975785818890062, 0.9976068123646895, 0.99763471035265, 0.9976622330043883, 0.9976892760504334, 0.9977158464503271, 0.9977419849616656, 0.9977678116892387, 0.9977931810747952, 0.9978178591089513, 0.9978417704765036, 0.997864915177327, 0.9978872765448165, 0.9979090053989047, 0.9979298938654321, 0.9979501179805208, 0.9979698192498769, 0.9979890412972496, 0.998007868744508, 0.9980262855046078, 0.9980442833333143, 0.998062050000013, 0.9980796499999934, 0.9980971166666915, 0.9981145333333388, 0.9981319333333192, 0.9981492833333505, 0.9981664833333312, 0.9981836499999787, 0.9982008166666763, 0.998218066666657, 0.9982353666666883, 0.9982528500000021, 0.9982704333333159, 0.9982881000000141, 0.9983056499999945, 0.9983231666666417, 0.9983406833333397, 0.9983582166666535, 0.9983758333333519, 0.9983934999999988, 0.9984110999999791, 0.9984285833333442, 0.9984459499999913, 0.9984631666666889, 0.9984802666666699, 0.9984972333333175, 0.9985142000000147, 0.9985311166666625, 0.9985479666666437, 0.9985646666666739, 0.9985812333333222, 0.9985975000000181, 0.9986136000000002, 0.9986295499999823, 0.9986454666666778, 0.9986612499999934, 0.9986768166666881, 0.9986922833333374, 0.9987075833333204, 0.9987227666666811, 0.9987379166666642, 0.9987530499999806, 0.9987682000000078, 0.9987833833333243, 0.9987985333333516, 0.9988137166666679, 0.9988288499999843, 0.9988440166666782, 0.9988591666666613, 0.9988742999999778, 0.9988893833333382, 0.9989045166666546, 0.998919500000015, 0.9989342999999984, 0.998948816666649, 0.9989631166666749, 0.9989772333333258, 0.9989909833333506, 0.9990044000000022, 0.9990174999999877, 0.9990302333333441, 0.9990426166666635, 0.9990546333333169, 0.999066250000005, 0.9990774999999925, 0.9990883333333453, 0.9990987833333337, 0.999108816666656, 0.9991184333333404, 0.9991276999999966, 0.999136633333346, 0.999145250000003, 0.9991536333333271, 0.9991618500000085, 0.9991699666666662, 0.9991779666666571, 0.999185900000005, 0.9991937666666628, 0.9992015666666768, 0.9992092666666682, 0.9992169166666596, 0.9992245000000066, 0.9992319833333317, 0.9992394333333234, 0.9992468666666701, 0.9992542833333283, 0.9992616833333416, 0.9992689833333335, 0.9992762166666587, 0.9992833333333383, 0.9992903499999972, 0.999297233333343, 0.999304000000002, 0.9993105666666613, 0.999316916666673, 0.9993230333333327, 0.9993288833333264, 0.9993345333333368, 0.9993399833333309, 0.999345250000007, 0.9993503000000012, 0.9993551666666626, 0.9993599000000046, 0.9993644499999995, 0.999368766666674, 0.9993729000000027, 0.9993768435066526, 0.9993807198973462, 0.9993845376800881, 0.9993883135215554, 0.9993920656538066, 0.9993958262940748, 0.9993996116597446, 0.9994034717507974, 0.9994074232339092, 0.9994114994424231, 0.9994155790957777, 0.999419617357083, 0.9994236132101522, 0.9994276000059807, 0.9994315954097603, 0.9994355660881359, 0.9994394787077866, 0.9994433499353883, 0.9994472131042536, 0.9994510166666728, 0.9994548333333352, 0.9994586666666645, 0.9994625166666712, 0.999466366666667, 0.9994701999999961, 0.9994739833333363, 0.9994776999999988, 0.9994813500000053, 0.9994849500000015, 0.9994884999999976, 0.999492033333337, 0.9994955166666666, 0.9994989333333393, 0.9995022166666689, 0.9995053666666653, 0.9995084166666709, 0.9995114000000009, 0.9995142999999977, 0.9995171333333364, 0.9995199499999998, 0.9995227500000048, 0.999525533333335, 0.9995283166666653, 0.9995311333333369, 0.9995339666666672, 0.9995368666666724, 0.9995398166666689, 0.9995428333333323, 0.9995458833333377, 0.9995489333333344, 0.999551983333331, 0.9995550500000032, 0.9995581499999997, 0.9995613166666721, 0.9995645666666684, 0.9995678833333315, 0.9995712333333373, 0.9995746333333336, 0.9995780499999963, 0.9995814500000026, 0.9995848499999986, 0.9995882500000048, 0.9995916333333345, 0.9995949666666639, 0.9995982833333367, 0.9996015166666663, 0.9996046833333387, 0.999607750000002, 0.9996107333333321, 0.9996136500000038, 0.9996165000000007, 0.999619283333331, 0.9996220000000026, 0.9996246499999997, 0.9996272000000042, 0.9996296333333348, 0.9996319833333323, 0.9996342666666698, 0.9996365000000005, 0.9996387000000044, 0.999640850000002, 0.9996429666666664, 0.9996450500000036, 0.9996471166666678, 0.9996491666666657, 0.999651233333336, 0.9996533333333335, 0.9996554833333373, 0.999657683333335, 0.9996599166666659, 0.9996621833333365, 0.999664483333334, 0.9996668166666716, 0.999669200000002, 0.9996716499999995, 0.9996741833333372, 0.9996767666666677, 0.9996793833333314, 0.999682033333336, 0.9996847166666665, 0.9996874166666714, 0.9996901166666683, 0.9996927999999986, 0.9996954666666701, 0.9996980666666673, 0.9997005999999977, 0.9997030500000023, 0.9997054333333331, 0.9997077500000039, 0.999710016666668, 0.9997122333333323, 0.9997144000000027, 0.999716516666667, 0.9997185666666708, 0.9997205500000017, 0.9997224666666664, 0.9997243333333365, 0.9997261500000011, 0.9997279333333324, 0.9997296833333358, 0.9997314166666669, 0.9997331166666701, 0.9997348166666683, 0.9997365166666663, 0.9997382666666695, 0.9997400833333341, 0.9997419500000042, 0.999743859820472, 0.9997458291577239, 0.9997478615301312, 0.9997499520274478, 0.9997521042811954, 0.9997543339971176, 0.9997566218379493, 0.9997589736748654, 0.9997613840676302, 0.9997638543940166, 0.9997663706720555, 0.9997688950750021, 0.9997714397479267, 0.9997739407088602, 0.9997764168782066, 0.9997788286346416, 0.9997811989187202, 0.9997834921856738, 0.9997856732511577, 0.9997877628583882, 0.9997897732088511, 0.9997917069308144, 0.999793565458462, 0.9997953432951633, 0.9997970500000012, 0.9997986833333325, 0.999800266666669, 0.9998018000000005, 0.9998033000000032, 0.9998047666666683, 0.9998062333333333, 0.9998077166666693, 0.9998091500000008, 0.9998105333333367, 0.9998118833333353, 0.9998132166666671, 0.9998145000000027, 0.9998157500000012, 0.9998169833333332, 0.9998182000000021, 0.9998194000000009, 0.9998205833333362, 0.9998217500000017, 0.9998229000000004, 0.9998240333333357, 0.9998251666666679, 0.9998262999999998, 0.9998274333333352, 0.9998285333333341, 0.9998296000000026, 0.9998306000000013, 0.9998315500000003, 0.9998324833333356, 0.9998334000000011, 0.9998342666666694, 0.9998350833333352, 0.9998358666666676, 0.999836616666669, 0.9998373333333348, 0.9998380166666674, 0.9998386666666687, 0.9998392833333346, 0.9998398666666691, 0.9998404166666685, 0.9998409333333346, 0.9998414166666688, 0.999841883333335, 0.9998423333333356, 0.9998427833333352, 0.9998432500000014, 0.9998437500000023, 0.9998442666666684, 0.9998448000000011, 0.9998453666666688, 0.9998459833333346, 0.9998466500000024, 0.999847383333335, 0.999848183333334, 0.999849050000002, 0.9998499833333344, 0.9998509833333362, 0.9998520500000015, 0.9998531833333338, 0.9998543833333358, 0.999855650000001, 0.9998569999999996, 0.9998584000000019, 0.9998598500000003, 0.999861350000003, 0.9998628666666679, 0.9998644166666661, 0.9998659833333357, 0.9998675666666672, 0.9998691333333323, 0.9998706833333351, 0.9998722166666667, 0.9998737166666694, 0.9998751833333344, 0.999876616666666, 0.9998780333333354, 0.9998794333333336, 0.9998808166666695, 0.9998821833333349, 0.9998835333333332, 0.9998848666666689, 0.9998861500000007, 0.9998873999999993, 0.9998886166666683, 0.9998898000000004, 0.9998909666666691, 0.9998920833333343, 0.9998931666666667, 0.9998942166666687, 0.9998952500000009, 0.9998962666666692, 0.9998972666666681, 0.9998982333333337, 0.9998991666666687, 0.9999000666666678, 0.9999009000000001, 0.9999016666666684, 0.9999023666666677, 0.9999030000000019, 0.9999035833333348, 0.9999041166666676, 0.9999046166666684, 0.9999050833333346, 0.9999055166666675, 0.9999059166666683, 0.999906300000001, 0.9999066833333352, 0.9999070666666678, 0.9999074500000009, 0.9999078500000016, 0.9999082833333344, 0.9999087500000019, 0.999909266666668, 0.9999098333333339, 0.9999104500000018, 0.9999111333333343, 0.9999118833333334, 0.9999127000000012, 0.9999135833333337, 0.999914500000002, 0.999915450000001, 0.9999164333333332, 0.9999174500000017, 0.9999185000000004, 0.9999195833333356, 0.9999206666666677, 0.99992175, 0.9999228333333352, 0.9999239166666672, 0.9999249833333327, 0.9999260000000014, 0.9999270000000002, 0.9999279833333354, 0.999928950000001, 0.9999298999999997, 0.999930833333335, 0.9999317500000006, 0.999932650000002, 0.9999335333333346, 0.9999344166666667, 0.9999353000000017, 0.9999361833333342, 0.9999370666666664, 0.9999379500000014, 0.9999388333333336, 0.9999397333333352, 0.999940650000001, 0.999941583333333, 0.9999425333333349, 0.9999434833333339, 0.9999444499999994, 0.9999453666666678, 0.9999462333333333, 0.9999470500000015, 0.9999478166666673, 0.9999485333333332, 0.9999492000000014, 0.9999498166666673, 0.9999504000000016, 0.9999509500000009, 0.999951466666667, 0.9999519500000013, 0.9999524000000009, 0.9999528166666671, 0.9999532000000013, 0.9999535500000007, 0.9999538833333347, 0.9999542000000009, 0.9999545000000006, 0.9999548000000011, 0.9999551000000008, 0.9999554333333347, 0.9999558000000011, 0.9999562000000004, 0.9999566333333346, 0.9999571000000007, 0.9999576000000001, 0.9999581333333346, 0.9999586666666673, 0.9999592000000014, 0.9999597333333341, 0.9999602666666668, 0.9999608000000013, 0.9999613500000006, 0.9999619166666666, 0.9999625000000009, 0.9999630666666668, 0.9999636166666679, 0.9999641500000006, 0.9999646666666667, 0.9999651666666676, 0.9999656500000004, 0.999966116666668, 0.9999665666666676, 0.9999670000000002, 0.9999674166666676, 0.9999678166666672, 0.9999682000000002, 0.9999685833333342, 0.9999689666666672, 0.999969350000001, 0.999969733333334, 0.9999701166666668, 0.9999704666666677, 0.9999707833333339, 0.9999710666666676, 0.9999713500000006, 0.9999716333333339, 0.9999719166666676, 0.9999722000000005, 0.9999724833333336, 0.9999727666666676, 0.9999730500000006, 0.9999733333333343, 0.9999736166666672, 0.9999739000000002, 0.9999741833333342, 0.9999744666666672, 0.9999747500000001, 0.999975033333334, 0.9999753166666672, 0.9999756000000009, 0.9999758833333339, 0.9999761833333334, 0.9999765000000007, 0.9999768333333335, 0.9999771500000009, 0.9999774500000006, 0.9999777333333337, 0.9999780000000008, 0.9999782500000005, 0.9999785000000003, 0.9999787500000007, 0.9999790000000004, 0.9999792500000009, 0.9999795000000006, 0.9999797500000003, 0.9999800000000008, 0.9999802500000005, 0.9999805000000009, 0.9999807500000006, 0.9999810000000003, 0.9999812500000008, 0.9999815000000005, 0.9999817500000002, 0.9999820000000007, 0.999982266666667, 0.9999825500000007, 0.9999828500000003, 0.9999831666666665, 0.9999835000000005, 0.999983816666667, 0.9999841166666673, 0.9999844000000003, 0.9999846666666669, 0.9999849166666674, 0.9999851500000003, 0.9999853666666667, 0.9999855666666673, 0.9999857500000002, 0.9999859166666673, 0.999986066666667, 0.9999862000000004, 0.9999863166666672, 0.9999864166666672, 0.9999865000000003, 0.9999865666666672, 0.9999866166666671, 0.9999866500000003, 0.9999866666666669, 0.9999866666666671, 0.9999866666666669, 0.9999866666666669, 0.999986683333334, 0.9999867166666672, 0.9999867666666671, 0.9999868333333339, 0.9999869166666671, 0.9999870166666668, 0.9999871333333337, 0.9999872666666668, 0.9999874166666671, 0.9999875833333334, 0.9999877666666667, 0.9999879666666669, 0.9999881833333333, 0.9999884166666672, 0.9999886666666669, 0.9999889333333332, 0.9999892166666668, 0.9999895166666668, 0.999989833333333, 0.999990166666667, 0.9999904833333332, 0.9999907833333339, 0.9999910666666668, 0.9999913333333332, 0.9999915833333336, 0.9999918166666667, 0.9999920333333332, 0.9999922333333334, 0.9999924166666666, 0.9999925833333336, 0.9999927333333334, 0.9999928666666665, 0.9999929833333336, 0.9999930833333334, 0.9999931666666668, 0.9999932333333333, 0.9999932833333333, 0.9999933166666668, 0.9999933333333335, 0.9999933333333335, 0.9999933333333335, 0.9999933333333335, 0.9999933333333335, 0.9999933333333335, 0.9999933333333335, 0.9999933333333335, 0.9999933333333335, 0.9999933333333335, 0.9999933500000001, 0.9999933833333333, 0.9999934333333333, 0.9999935000000001, 0.9999935833333332, 0.9999936833333333, 0.9999937999999998, 0.9999939333333334, 0.9999940833333334, 0.9999942499999996, 0.9999944333333332, 0.999994633333333, 0.9999948500000002, 0.9999950833333333, 0.999995333333333, 0.9999956000000001, 0.9999958833333331, 0.9999961833333326, 0.9999965, 0.9999968333333328, 0.9999971500000001, 0.9999974499999997, 0.9999977333333326, 0.9999979999999999, 0.9999982499999996, 0.9999984833333325, 0.9999986999999997, 0.9999988999999996, 0.9999990833333332, 0.9999992499999998, 0.9999993999999994, 0.9999995333333331, 0.9999996499999997, 0.99999975, 0.9999998333333331, 0.9999998999999995, 0.9999999499999997, 0.9999999833333331, 0.9999999999999997, 0.9999999999999997, 0.9999999999999997, 0.9999999999999997, 0.9999999999999997, 0.9999999999999997, 0.9999999999999997, 0.9999999999999997, 0.9999999999999997, 0.9999999999999997, 0.9999999999999997, 0.9999999999999997, 0.9999999999999997, 0.9999999999999997, 0.9999999999999997, 0.9999999999999997, 0.9999999999999997, 0.9999999999999997, 0.9999999999999997, 0.9999999999999997] + }, + { + "createdAt": "2019-11-18T02:36:00.637+00:00", + "xs": [-112.793432444, -109.36609107782984, -105.93874971165967, -102.5114083454895, -99.08406697931933, -95.65672561314916, -92.229384246979, -88.80204288080883, -85.37470151463866, -81.94736014846849, -78.52001878229832, -75.09267741612815, -71.66533604995799, -68.23799468378782, -64.81065331761765, -61.38331195144748, -57.95597058527731, -54.528629219107145, -51.10128785293698, -47.67394648676681, -44.24660512059664, -40.81926375442647, -37.391922388256305, -33.964581022086136, -30.53723965591597, -27.1098982897458, -23.682556923575632, -20.255215557405464, -16.827874191235296, -13.400532825065126, -9.973191458894956, -6.545850092724786, -3.118508726554616, 0.30883263961555407, 3.736174005785724, 7.163515371955894, 10.590856738126064, 14.018198104296234, 17.445539470466404, 20.872880836636575, 24.300222202806744, 27.72756356897691, 31.15490493514708, 34.58224630131725, 38.009587667487416, 41.436929033657584, 44.86427039982775, 48.29161176599792, 51.71895313216809, 55.14629449833826, 58.573635864508425, 62.00097723067859, 65.42831859684877, 68.85565996301894, 72.2830013291891, 75.71034269535927, 79.13768406152944, 82.56502542769961, 85.99236679386978, 89.41970816003995, 92.84704952621011, 96.27439089238028, 99.70173225855045, 103.12907362472062, 106.55641499089079, 109.98375635706095, 113.41109772323112, 116.83843908940129, 120.26578045557146, 123.69312182174163, 127.1204631879118, 130.54780455408198, 133.97514592025215, 137.4024872864223, 140.82982865259248, 144.25717001876265, 147.68451138493282, 151.111852751103, 154.53919411727315, 157.96653548344332, 161.3938768496135, 164.82121821578366, 168.24855958195383, 171.675900948124, 175.10324231429416, 178.53058368046433, 181.9579250466345, 185.38526641280467, 188.81260777897484, 192.239949145145, 195.66729051131517, 199.09463187748534, 202.5219732436555, 205.94931460982568, 209.37665597599585, 212.803997342166, 216.23133870833618, 219.65868007450635, 223.08602144067652, 226.5133628068467, 229.94070417301685, 233.36804553918702, 236.7953869053572, 240.22272827152736, 243.65006963769753, 247.0774110038677, 250.50475237003786, 253.93209373620803, 257.3594351023782, 260.7867764685484, 264.2141178347186, 267.6414592008888, 271.068800567059, 274.4961419332292, 277.9234832993994, 281.3508246655696, 284.7781660317398, 288.20550739790997, 291.63284876408017, 295.06019013025036, 298.48753149642056, 301.91487286259076, 305.34221422876095, 308.76955559493115, 312.19689696110134, 315.62423832727154, 319.05157969344174, 322.47892105961193, 325.90626242578213, 329.3336037919523, 332.7609451581225, 336.1882865242927, 339.6156278904629, 343.0429692566331, 346.4703106228033, 349.8976519889735, 353.3249933551437, 356.7523347213139, 360.1796760874841, 363.6070174536543, 367.0343588198245, 370.4617001859947, 373.8890415521649, 377.3163829183351, 380.7437242845053, 384.1710656506755, 387.59840701684567, 391.02574838301587, 394.45308974918606, 397.88043111535626, 401.30777248152646, 404.73511384769665, 408.16245521386685, 411.58979658003705, 415.01713794620724, 418.44447931237744, 421.87182067854764, 425.29916204471783, 428.72650341088803, 432.1538447770582, 435.5811861432284, 439.0085275093986, 442.4358688755688, 445.863210241739, 449.2905516079092, 452.7178929740794, 456.1452343402496, 459.5725757064198, 462.99991707259, 466.4272584387602, 469.8545998049304, 473.2819411711006, 476.7092825372708, 480.136623903441, 483.5639652696112, 486.99130663578137, 490.41864800195157, 493.84598936812176, 497.27333073429196, 500.70067210046216, 504.12801346663235, 507.55535483280255, 510.98269619897275, 514.4100375651429, 517.8373789313131, 521.2647202974832, 524.6920616636534, 528.1194030298235, 531.5467443959936, 534.9740857621638, 538.4014271283339, 541.8287684945041, 545.2561098606742, 548.6834512268443, 552.1107925930145, 555.5381339591846, 558.9654753253548, 562.3928166915249, 565.820158057695, 569.2474994238652, 572.6748407900353, 576.1021821562055, 579.5295235223756, 582.9568648885457, 586.3842062547159, 589.811547620886, 593.2388889870562, 596.6662303532263, 600.0935717193964, 603.5209130855666, 606.9482544517367, 610.3755958179069, 613.802937184077, 617.2302785502471, 620.6576199164173, 624.0849612825874, 627.5123026487576, 630.9396440149277, 634.3669853810978, 637.794326747268, 641.2216681134381, 644.6490094796083, 648.0763508457784, 651.5036922119485, 654.9310335781187, 658.3583749442888, 661.785716310459, 665.2130576766291, 668.6403990427992, 672.0677404089694, 675.4950817751395, 678.9224231413097, 682.3497645074798, 685.7771058736499, 689.2044472398201, 692.6317886059902, 696.0591299721603, 699.4864713383305, 702.9138127045006, 706.3411540706708, 709.7684954368409, 713.195836803011, 716.6231781691812, 720.0505195353513, 723.4778609015215, 726.9052022676916, 730.3325436338617, 733.7598850000319, 737.187226366202, 740.6145677323722, 744.0419090985423, 747.4692504647124, 750.8965918308826, 754.3239331970527, 757.7512745632229, 761.178615929393, 764.6059572955631, 768.0332986617333, 771.4606400279034, 774.8879813940736, 778.3153227602437, 781.7426641264138, 785.170005492584, 788.5973468587541, 792.0246882249243, 795.4520295910944, 798.8793709572645, 802.3067123234347, 805.7340536896048, 809.161395055775, 812.5887364219451, 816.0160777881152, 819.4434191542854, 822.8707605204555, 826.2981018866257, 829.7254432527958, 833.1527846189659, 836.5801259851361, 840.0074673513062, 843.4348087174764, 846.8621500836465, 850.2894914498166, 853.7168328159868, 857.1441741821569, 860.571515548327, 863.9988569144972, 867.4261982806673, 870.8535396468375, 874.2808810130076, 877.7082223791778, 881.1355637453479, 884.562905111518, 887.9902464776882, 891.4175878438583, 894.8449292100285, 898.2722705761986, 901.6996119423687, 905.1269533085389, 908.554294674709, 911.9816360408792, 915.4089774070493, 918.8363187732194, 922.2636601393896, 925.6910015055597, 929.1183428717299, 932.5456842379, 935.9730256040701, 939.4003669702403, 942.8277083364104, 946.2550497025805, 949.6823910687507, 953.1097324349208, 956.537073801091, 959.9644151672611, 963.3917565334312, 966.8190978996014, 970.2464392657715, 973.6737806319417, 977.1011219981118, 980.528463364282, 983.9558047304521, 987.3831460966222, 990.8104874627924, 994.2378288289625, 997.6651701951326, 1001.0925115613028, 1004.5198529274729, 1007.9471942936431, 1011.3745356598132, 1014.8018770259833, 1018.2292183921535, 1021.6565597583236, 1025.0839011244939, 1028.511242490664, 1031.9385838568342, 1035.3659252230043, 1038.7932665891744, 1042.2206079553446, 1045.6479493215147, 1049.0752906876849, 1052.502632053855, 1055.9299734200251, 1059.3573147861953, 1062.7846561523654, 1066.2119975185356, 1069.6393388847057, 1073.0666802508758, 1076.494021617046, 1079.921362983216, 1083.3487043493863, 1086.7760457155564, 1090.2033870817265, 1093.6307284478967, 1097.0580698140668, 1100.485411180237, 1103.912752546407, 1107.3400939125772, 1110.7674352787474, 1114.1947766449175, 1117.6221180110877, 1121.0494593772578, 1124.476800743428, 1127.904142109598, 1131.3314834757682, 1134.7588248419383, 1138.1861662081085, 1141.6135075742786, 1145.0408489404488, 1148.468190306619, 1151.895531672789, 1155.3228730389592, 1158.7502144051293, 1162.1775557712995, 1165.6048971374696, 1169.0322385036397, 1172.4595798698099, 1175.88692123598, 1179.3142626021502, 1182.7416039683203, 1186.1689453344904, 1189.5962867006606, 1193.0236280668307, 1196.4509694330009, 1199.878310799171, 1203.3056521653411, 1206.7329935315113, 1210.1603348976814, 1213.5876762638516, 1217.0150176300217, 1220.4423589961918, 1223.869700362362, 1227.2970417285321, 1230.7243830947023, 1234.1517244608724, 1237.5790658270425, 1241.0064071932127, 1244.4337485593828, 1247.861089925553, 1251.288431291723, 1254.7157726578932, 1258.1431140240634, 1261.5704553902335, 1264.9977967564037, 1268.4251381225738, 1271.852479488744, 1275.279820854914, 1278.7071622210842, 1282.1345035872544, 1285.5618449534245, 1288.9891863195946, 1292.4165276857648, 1295.843869051935, 1299.271210418105, 1302.6985517842752, 1306.1258931504453, 1309.5532345166155, 1312.9805758827856, 1316.4079172489558, 1319.835258615126, 1323.262599981296, 1326.6899413474662, 1330.1172827136363, 1333.5446240798065, 1336.9719654459766, 1340.3993068121467, 1343.8266481783169, 1347.253989544487, 1350.6813309106572, 1354.1086722768273, 1357.5360136429974, 1360.9633550091676, 1364.3906963753377, 1367.8180377415079, 1371.245379107678, 1374.6727204738481, 1378.1000618400183, 1381.5274032061884, 1384.9547445723585, 1388.3820859385287, 1391.8094273046988, 1395.236768670869, 1398.664110037039, 1402.0914514032092, 1405.5187927693794, 1408.9461341355495, 1412.3734755017197, 1415.8008168678898, 1419.22815823406, 1422.65549960023, 1426.0828409664002, 1429.5101823325704, 1432.9375236987405, 1436.3648650649106, 1439.7922064310808, 1443.219547797251, 1446.646889163421, 1450.0742305295912, 1453.5015718957613, 1456.9289132619315, 1460.3562546281016, 1463.7835959942718, 1467.210937360442, 1470.638278726612, 1474.0656200927822, 1477.4929614589523, 1480.9203028251225, 1484.3476441912926, 1487.7749855574627, 1491.2023269236329, 1494.629668289803, 1498.0570096559732, 1501.4843510221433, 1504.9116923883134, 1508.3390337544836, 1511.7663751206537, 1515.1937164868239, 1518.621057852994, 1522.0483992191641, 1525.4757405853343, 1528.9030819515044, 1532.3304233176746, 1535.7577646838447, 1539.1851060500148, 1542.612447416185, 1546.0397887823551, 1549.4671301485253, 1552.8944715146954, 1556.3218128808655, 1559.7491542470357, 1563.1764956132058, 1566.603836979376, 1570.031178345546, 1573.4585197117162, 1576.8858610778864, 1580.3132024440565, 1583.7405438102267, 1587.1678851763968, 1590.595226542567, 1594.022567908737, 1597.4499092749072, 1600.8772506410774, 1604.3045920072475, 1607.7319333734176, 1611.1592747395878, 1614.586616105758, 1618.013957471928, 1621.4412988380982, 1624.8686402042683, 1628.2959815704385, 1631.7233229366086, 1635.1506643027788, 1638.578005668949, 1642.005347035119, 1645.4326884012892, 1648.8600297674593, 1652.2873711336294, 1655.7147124997996, 1659.1420538659697, 1662.5693952321399, 1665.99673659831, 1669.4240779644801, 1672.8514193306503, 1676.2787606968204, 1679.7061020629906, 1683.1334434291607, 1686.5607847953308, 1689.988126161501, 1693.4154675276711, 1696.8428088938413, 1700.2701502600114, 1703.6974916261815, 1707.1248329923517, 1710.5521743585218, 1713.979515724692, 1717.406857090862, 1720.8341984570322, 1724.2615398232024, 1727.6888811893725, 1731.1162225555427, 1734.5435639217128, 1737.970905287883, 1741.398246654053, 1744.8255880202232, 1748.2529293863934, 1751.6802707525635, 1755.1076121187336, 1758.5349534849038, 1761.962294851074, 1765.389636217244, 1768.8169775834142, 1772.2443189495843, 1775.6716603157545, 1779.0990016819246, 1782.5263430480948, 1785.953684414265, 1789.381025780435, 1792.8083671466052, 1796.2357085127753, 1799.6630498789455, 1803.0903912451156, 1806.5177326112857, 1809.9450739774559, 1813.372415343626, 1816.7997567097962, 1820.2270980759663, 1823.6544394421364, 1827.0817808083066, 1830.5091221744767, 1833.9364635406469, 1837.363804906817, 1840.7911462729871, 1844.2184876391573, 1847.6458290053274, 1851.0731703714976, 1854.5005117376677, 1857.9278531038378, 1861.355194470008, 1864.782535836178, 1868.2098772023483, 1871.6372185685184, 1875.0645599346885, 1878.4919013008587, 1881.9192426670288, 1885.346584033199, 1888.773925399369, 1892.2012667655392, 1895.6286081317094, 1899.0559494978795, 1902.4832908640496, 1905.9106322302198, 1909.33797359639, 1912.76531496256, 1916.1926563287302, 1919.6199976949003, 1923.0473390610705, 1926.4746804272406, 1929.9020217934108, 1933.329363159581, 1936.756704525751, 1940.1840458919212, 1943.6113872580913, 1947.0387286242615, 1950.4660699904316, 1953.8934113566017, 1957.3207527227719, 1960.748094088942, 1964.1754354551122, 1967.6027768212823, 1971.0301181874524, 1974.4574595536226, 1977.8848009197927, 1981.3121422859629, 1984.739483652133, 1988.1668250183031, 1991.5941663844733, 1995.0215077506434, 1998.4488491168136, 2001.8761904829837, 2005.3035318491538, 2008.730873215324, 2012.1582145814941, 2015.5855559476643, 2019.0128973138344, 2022.4402386800045, 2025.8675800461747, 2029.2949214123448, 2032.722262778515, 2036.149604144685, 2039.5769455108552, 2043.0042868770254, 2046.4316282431955, 2049.858969609366, 2053.2863109755363, 2056.7136523417066, 2060.140993707877, 2063.5683350740474, 2066.9956764402177, 2070.423017806388, 2073.8503591725585, 2077.277700538729, 2080.705041904899, 2084.1323832710696, 2087.55972463724, 2090.9870660034103, 2094.4144073695807, 2097.841748735751, 2101.2690901019214, 2104.6964314680918, 2108.123772834262, 2111.5511142004325, 2114.978455566603, 2118.4057969327732, 2121.8331382989436, 2125.260479665114, 2128.6878210312843, 2132.1151623974547, 2135.542503763625, 2138.9698451297954, 2142.397186495966, 2145.824527862136, 2149.2518692283065, 2152.679210594477, 2156.1065519606473, 2159.5338933268176, 2162.961234692988, 2166.3885760591584, 2169.8159174253287, 2173.243258791499, 2176.6706001576695, 2180.09794152384, 2183.52528289001, 2186.9526242561806, 2190.379965622351, 2193.8073069885213, 2197.2346483546917, 2200.661989720862, 2204.0893310870324, 2207.516672453203, 2210.944013819373, 2214.3713551855435, 2217.798696551714, 2221.2260379178842, 2224.6533792840546, 2228.080720650225, 2231.5080620163953, 2234.9354033825657, 2238.362744748736, 2241.7900861149064, 2245.217427481077, 2248.644768847247, 2252.0721102134175, 2255.499451579588, 2258.9267929457583, 2262.3541343119286, 2265.781475678099, 2269.2088170442694, 2272.6361584104397, 2276.06349977661, 2279.4908411427805, 2282.918182508951, 2286.345523875121, 2289.7728652412916, 2293.200206607462, 2296.6275479736323, 2300.0548893398027, 2303.482230705973, 2306.9095720721434, 2310.336913438314, 2313.764254804484, 2317.1915961706545, 2320.618937536825, 2324.0462789029953, 2327.4736202691656, 2330.900961635336, 2334.3283030015064, 2337.7556443676767, 2341.182985733847, 2344.6103271000175, 2348.037668466188, 2351.465009832358, 2354.8923511985286, 2358.319692564699, 2361.7470339308693, 2365.1743752970397, 2368.60171666321, 2372.0290580293804, 2375.4563993955508, 2378.883740761721, 2382.3110821278915, 2385.738423494062, 2389.1657648602322, 2392.5931062264026, 2396.020447592573, 2399.4477889587433, 2402.8751303249137, 2406.302471691084, 2409.7298130572544, 2413.157154423425, 2416.584495789595, 2420.0118371557655, 2423.439178521936, 2426.8665198881063, 2430.2938612542766, 2433.721202620447, 2437.1485439866174, 2440.5758853527877, 2444.003226718958, 2447.4305680851285, 2450.857909451299, 2454.285250817469, 2457.7125921836396, 2461.13993354981, 2464.5672749159803, 2467.9946162821507, 2471.421957648321, 2474.8492990144914, 2478.276640380662, 2481.703981746832, 2485.1313231130025, 2488.558664479173, 2491.9860058453432, 2495.4133472115136, 2498.840688577684, 2502.2680299438543, 2505.6953713100247, 2509.122712676195, 2512.5500540423654, 2515.977395408536, 2519.404736774706, 2522.8320781408765, 2526.259419507047, 2529.6867608732173, 2533.1141022393876, 2536.541443605558, 2539.9687849717284, 2543.3961263378987, 2546.823467704069, 2550.2508090702395, 2553.67815043641, 2557.10549180258, 2560.5328331687506, 2563.960174534921, 2567.3875159010913, 2570.8148572672617, 2574.242198633432, 2577.6695399996024, 2581.096881365773, 2584.524222731943, 2587.9515640981135, 2591.378905464284, 2594.8062468304543, 2598.2335881966246, 2601.660929562795, 2605.0882709289654, 2608.5156122951357, 2611.942953661306, 2615.3702950274765, 2618.797636393647, 2622.224977759817, 2625.6523191259876, 2629.079660492158, 2632.5070018583283, 2635.9343432244987, 2639.361684590669, 2642.7890259568394, 2646.2163673230098, 2649.64370868918, 2653.0710500553505, 2656.498391421521, 2659.9257327876912, 2663.3530741538616, 2666.780415520032, 2670.2077568862023, 2673.6350982523727, 2677.062439618543, 2680.4897809847134, 2683.917122350884, 2687.344463717054, 2690.7718050832245, 2694.199146449395, 2697.6264878155653, 2701.0538291817356, 2704.481170547906, 2707.9085119140764, 2711.3358532802467, 2714.763194646417, 2718.1905360125875, 2721.617877378758, 2725.045218744928, 2728.4725601110986, 2731.899901477269, 2735.3272428434393, 2738.7545842096097, 2742.18192557578, 2745.6092669419504, 2749.036608308121, 2752.463949674291, 2755.8912910404615, 2759.318632406632, 2762.7459737728022, 2766.1733151389726, 2769.600656505143, 2773.0279978713133, 2776.4553392374837, 2779.882680603654, 2783.3100219698244, 2786.737363335995, 2790.164704702165, 2793.5920460683355, 2797.019387434506, 2800.4467288006763, 2803.8740701668466, 2807.301411533017, 2810.7287528991874, 2814.1560942653578, 2817.583435631528, 2821.0107769976985, 2824.438118363869, 2827.865459730039, 2831.2928010962096, 2834.72014246238, 2838.1474838285503, 2841.5748251947207, 2845.002166560891, 2848.4295079270614, 2851.856849293232, 2855.284190659402, 2858.7115320255725, 2862.138873391743, 2865.5662147579133, 2868.9935561240836, 2872.420897490254, 2875.8482388564244, 2879.2755802225947, 2882.702921588765, 2886.1302629549355, 2889.557604321106, 2892.984945687276, 2896.4122870534466, 2899.839628419617, 2903.2669697857873, 2906.6943111519577, 2910.121652518128, 2913.5489938842984, 2916.9763352504688, 2920.403676616639, 2923.8310179828095, 2927.25835934898, 2930.6857007151502, 2934.1130420813206, 2937.540383447491, 2940.9677248136613, 2944.3950661798317, 2947.822407546002, 2951.2497489121724, 2954.677090278343, 2958.104431644513, 2961.5317730106835, 2964.959114376854, 2968.3864557430243, 2971.8137971091946, 2975.241138475365, 2978.6684798415354, 2982.0958212077057, 2985.523162573876, 2988.9505039400465, 2992.377845306217, 2995.805186672387, 2999.2325280385576, 3002.659869404728, 3006.0872107708983, 3009.5145521370687, 3012.941893503239, 3016.3692348694094, 3019.79657623558, 3023.22391760175, 3026.6512589679205, 3030.078600334091, 3033.5059417002612, 3036.9332830664316, 3040.360624432602, 3043.7879657987723, 3047.2153071649427, 3050.642648531113, 3054.0699898972834, 3057.497331263454, 3060.924672629624, 3064.3520139957946, 3067.779355361965, 3071.2066967281353, 3074.6340380943057, 3078.061379460476, 3081.4887208266464, 3084.9160621928168, 3088.343403558987, 3091.7707449251575, 3095.198086291328, 3098.625427657498, 3102.0527690236686, 3105.480110389839, 3108.9074517560093, 3112.3347931221797, 3115.76213448835, 3119.1894758545204, 3122.616817220691, 3126.044158586861, 3129.4714999530315, 3132.898841319202, 3136.3261826853723, 3139.7535240515426, 3143.180865417713, 3146.6082067838834, 3150.0355481500537, 3153.462889516224, 3156.8902308823945, 3160.317572248565, 3163.744913614735, 3167.1722549809056, 3170.599596347076, 3174.0269377132463, 3177.4542790794167, 3180.881620445587, 3184.3089618117574, 3187.7363031779278, 3191.163644544098, 3194.5909859102685, 3198.018327276439, 3201.4456686426092, 3204.8730100087796, 3208.30035137495, 3211.7276927411203, 3215.1550341072907, 3218.582375473461, 3222.0097168396314, 3225.437058205802, 3228.864399571972, 3232.2917409381425, 3235.719082304313, 3239.1464236704833, 3242.5737650366536, 3246.001106402824, 3249.4284477689944, 3252.8557891351647, 3256.283130501335, 3259.7104718675055, 3263.137813233676, 3266.565154599846, 3269.9924959660166, 3273.419837332187, 3276.8471786983573, 3280.2745200645277, 3283.701861430698, 3287.1292027968684, 3290.556544163039, 3293.983885529209, 3297.4112268953795, 3300.83856826155, 3304.2659096277202, 3307.6932509938906, 3311.12059236], + "ys": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.000000000000000006367941587807305, 0.00000005555555558182543, 0.00000025000000005266765, 0.0000006666666667712904, 0.0000015555555557387351, 0.0000032361111114995402, 0.0000062361111117485235, 0.000011513888889835271, 0.00001995833333467428, 0.000033021624762526586, 0.00005613953561991778, 0.00010533907283030583, 0.00021973710479078652, 0.00044335884085139137, 0.000820923852392962, 0.0013998464176542206, 0.002229321522012539, 0.0033224893868146164, 0.0046595521795520815, 0.006210749584820933, 0.007950182156991325, 0.00985007313843441, 0.01188630695124965, 0.01404753973101879, 0.016344556054286235, 0.01878827165637458, 0.021400671134589128, 0.02420245810222403, 0.027207743412767143, 0.030468130273127978, 0.03401682285939283, 0.03791834642813407, 0.04224307737035906, 0.04702907951556045, 0.05234559480536999, 0.058226795292451596, 0.06469965163974395, 0.0718210057652349, 0.07958658084833999, 0.08803528524335645, 0.09719763700112853, 0.10708394344714522, 0.11770718572555977, 0.1290301553504388, 0.1409949936082976, 0.15353063044862483, 0.16656838623993492, 0.18008039261599088, 0.19405528041277467, 0.208469248227104, 0.22328513195955965, 0.23839362861051394, 0.25368429201483644, 0.26901744270308386, 0.28431575794892683, 0.2995357510926644, 0.31469709385918004, 0.3298111872657243, 0.3448560907939197, 0.3597977603124545, 0.37457670573272717, 0.38917840675461374, 0.40360504911888034, 0.41782431623514626, 0.43179880607989496, 0.4455072141625483, 0.45891849710586086, 0.47203067379905966, 0.484829839212842, 0.49732742935327773, 0.5095354510807831, 0.5214483058186655, 0.5330513767280208, 0.5443419624913144, 0.555325568440444, 0.5660231482307474, 0.5764514159666487, 0.5866044019558545, 0.5964828325227481, 0.6060796454699003, 0.6154062320961835, 0.6244825740370802, 0.6332949392670014, 0.6418508851631392, 0.6501595573722563, 0.658230135416041, 0.6660759986713477, 0.6737055976558551, 0.6811169417417867, 0.6883171512063903, 0.6953161009261047, 0.7021228289229836, 0.7087499519849731, 0.7151981064954636, 0.721496484297531, 0.7276486694333794, 0.7336532299317446, 0.7394994312818103, 0.7451875038566668, 0.7507298829742504, 0.7561289699993816, 0.7613871248520732, 0.7665152644765859, 0.7715209976419715, 0.7764077512859173, 0.7811838635385661, 0.785857958793109, 0.7904377805602395, 0.7949325124319774, 0.79933697382759, 0.8036564144128638, 0.8078959969668197, 0.8120563332577176, 0.8161409780640444, 0.820140036538742, 0.8240557360705821, 0.8278905625479314, 0.8316451405467017, 0.8353267618303502, 0.8389277699098616, 0.8424418485780741, 0.8458581013069857, 0.8491754152803591, 0.8523926196674138, 0.855520836713911, 0.8585763340806537, 0.8615748588244876, 0.8645222605638305, 0.8674201145553792, 0.8702674816776509, 0.8730650700119776, 0.8758094963526881, 0.8784892846122198, 0.8810954375214454, 0.8836281401062877, 0.8860934046496718, 0.8884971960868687, 0.8908372669307241, 0.8931207521594319, 0.8953533695873318, 0.897540241532231, 0.8996855700577293, 0.9017910345618002, 0.9038598720879015, 0.9058935332008767, 0.9078909310860636, 0.9098541094441267, 0.9117796674574592, 0.9136632727682418, 0.9155058423995109, 0.9173115124970526, 0.9190766442226855, 0.9208028727129101, 0.9224931376356782, 0.9241520291941864, 0.9257868735295304, 0.9273941229518989, 0.9289777341664015, 0.9305419384019701, 0.9320874551656986, 0.9336100178967474, 0.935105873463272, 0.936572312895108, 0.9380082924116699, 0.9394113542032025, 0.940778685586949, 0.9421128107668872, 0.9434148041134055, 0.9446885913811655, 0.9459361622471322, 0.9471580132964555, 0.9483550042987593, 0.9495286122808775, 0.9506780156094367, 0.9517973786236139, 0.9528840764996839, 0.9539316264147036, 0.9549399072486401, 0.955913408814251, 0.9568541857265408, 0.9577661411826298, 0.9586543273468311, 0.9595220642818668, 0.9603733373588842, 0.9612082805680041, 0.9620223401947806, 0.9628156805932759, 0.9635866084580718, 0.964334539856142, 0.9650589151303919, 0.9657592338786, 0.966435722074202, 0.9670936035972876, 0.9677330824938402, 0.9683580990637818, 0.9689707630593293, 0.969572920461721, 0.9701647812045748, 0.9707443482723916, 0.9713110378555306, 0.9718656560078807, 0.9724072624531902, 0.9729367668845689, 0.973454748436882, 0.9739621415116133, 0.974460615067475, 0.9749494347403118, 0.9754282992759252, 0.9758979969091791, 0.9763581293794693, 0.9768092898435983, 0.9772507385094515, 0.9776818096965517, 0.9781058583566562, 0.9785225188456383, 0.9789301177143642, 0.9793284476050373, 0.9797172558044264, 0.9800979541501739, 0.980470470700924, 0.9808347808408827, 0.9811932875956625, 0.9815475552776419, 0.9818979837170444, 0.9822441862891612, 0.9825854382015722, 0.9829192883277655, 0.9832451075277019, 0.9835610651447294, 0.9838663905674646, 0.984161059303764, 0.9844459313808107, 0.9847239027242122, 0.9849961727172198, 0.985262627854974, 0.9855251897546063, 0.9857844572683193, 0.9860405803955022, 0.9862924223433147, 0.9865388293336688, 0.9867809259546193, 0.9870190174160131, 0.987251201039521, 0.9874768574989915, 0.9876954032126474, 0.9879067030694686, 0.9881113947372784, 0.9883094211020899, 0.9885019631438259, 0.988691064803901, 0.988878390323391, 0.9890642104087934, 0.9892485734683237, 0.9894320417252497, 0.9896141951438676, 0.9897946762052948, 0.9899740907491926, 0.9901524654974739, 0.9903310482817691, 0.9905102161316349, 0.9906894387101642, 0.9908690185417527, 0.991048907091587, 0.9912281200291709, 0.9914066618336407, 0.9915833004639355, 0.9917578481966925, 0.9919304034942346, 0.9920998216994708, 0.9922655996868084, 0.9924284436467038, 0.9925885930871745, 0.9927474503960143, 0.9929054187236771, 0.99306273933793, 0.9932201670455415, 0.9933774343076701, 0.9935338292071592, 0.9936876124898869, 0.9938373711870118, 0.9939829743479507, 0.9941247101975348, 0.9942627312009767, 0.9943977480093045, 0.994530802967141, 0.9946635051824414, 0.9947970174848529, 0.9949321358120797, 0.9950682626282473, 0.9952053229572231, 0.9953424960761614, 0.9954789197503647, 0.9956141993008819, 0.9957479560488353, 0.9958788599609062, 0.9960066533918809, 0.9961308878728768, 0.9962528205798185, 0.996374124082581, 0.996494575707222, 0.9966136070468442, 0.9967321010374288, 0.9968501017916328, 0.9969660720604067, 0.9970769845295614, 0.9971799208527541, 0.9972734335715193, 0.997356257886089, 0.9974268556741368, 0.9974854568236381, 0.9975341510163028, 0.997575095434447, 0.9976103764476841, 0.9976415901459484, 0.9976704661114949, 0.9976986588146408, 0.9977265616433858, 0.9977540591954593, 0.9977810633551636, 0.9978075828813594, 0.9978336977735651, 0.9978593698879021, 0.9978845961350181, 0.9979095113360916, 0.9979340725441089, 0.9979582758260293, 0.9979821515741726, 0.9980056769705751, 0.9980289252938755, 0.9980518608369908, 0.9980743967086951, 0.9980965387086066, 0.9981183208013885, 0.9981398430743661, 0.9981609842289966, 0.99818154925746, 0.9982014753970869, 0.9982207626477733, 0.9982393971206811, 0.9982575044990879, 0.9982749115545273, 0.9982917649837679, 0.9983081827082314, 0.9983242010810421, 0.9983398906204238, 0.9983552379205071, 0.9983702361110959, 0.9983850416666783, 0.9983997083333284, 0.9984142638889102, 0.9984287777777828, 0.9984432777777666, 0.998457736111126, 0.9984720694444432, 0.9984863749999828, 0.9985006805555642, 0.9985150555555481, 0.9985294722222409, 0.998544041666669, 0.9985586944444304, 0.998573416666679, 0.9985880416666627, 0.9986026388888686, 0.9986172361111171, 0.998631847222212, 0.9986465277777938, 0.9986612499999996, 0.9986759166666498, 0.9986904861111207, 0.9987049583333266, 0.9987193055555746, 0.9987335555555589, 0.9987476944444319, 0.9987618333333462, 0.9987759305555527, 0.9987899722222036, 0.9988038888888955, 0.9988176944444357, 0.9988312500000157, 0.9988446666666674, 0.9988579583333191, 0.998871222222232, 0.9988843749999953, 0.9988973472222407, 0.9989102361111151, 0.998922986111101, 0.9989356388889016, 0.9989482638888875, 0.9989608749999844, 0.9989735000000071, 0.9989861527777707, 0.9989987777777936, 0.9990114305555572, 0.9990240416666542, 0.9990366805555659, 0.9990493055555517, 0.9990619166666487, 0.9990744861111157, 0.9990870972222128, 0.9990995833333464, 0.9991119166666659, 0.9991240138888747, 0.9991359305555632, 0.999147694444439, 0.9991591527777928, 0.9991703333333358, 0.9991812499999903, 0.9991918611111207, 0.9992021805555535, 0.9992121944444313, 0.9992218750000048, 0.9992312499999944, 0.9992402777777883, 0.999248986111112, 0.999257347222214, 0.9992653611111176, 0.9992730833333311, 0.9992805277777889, 0.9992877083333364, 0.9992946944444396, 0.9993015416666745, 0.9993083055555557, 0.9993149722222149, 0.9993215833333381, 0.9993281388888863, 0.999334638888898, 0.9993410555555574, 0.9993474305555502, 0.9993537500000061, 0.9993599861111102, 0.9993661944444368, 0.9993723888888923, 0.9993785694444409, 0.9993847361111187, 0.9993908194444453, 0.9993968472222162, 0.9994027777777825, 0.9994086249999983, 0.9994143611111198, 0.9994200000000024, 0.9994254722222183, 0.9994307638888947, 0.9994358611111113, 0.9994407361111058, 0.999445444444448, 0.9994499861111098, 0.9994543750000063, 0.999458583333335, 0.9994626388888861, 0.9994665833333377, 0.9994703750000001, 0.9994739722222289, 0.9994774166666694, 0.9994807029222111, 0.9994839332477891, 0.9994871147334071, 0.9994902612679636, 0.9994933880448394, 0.9994965219117296, 0.9994996763831209, 0.999502893125665, 0.9995061860282582, 0.9995095828686865, 0.9995129825798154, 0.9995163477975697, 0.9995196776751274, 0.9995230000049844, 0.999526329508134, 0.9995296384067807, 0.9995328989231562, 0.9995361249461575, 0.9995393442535451, 0.9995425138888946, 0.9995456944444466, 0.9995488888888877, 0.9995520972222266, 0.9995553055555564, 0.9995584999999974, 0.9995616527777808, 0.9995647499999997, 0.9995677916666716, 0.9995707916666685, 0.9995737499999985, 0.9995766944444481, 0.9995795972222226, 0.9995824444444499, 0.9995851805555581, 0.999587805555555, 0.9995903472222264, 0.9995928333333346, 0.9995952499999987, 0.9995976111111141, 0.9995999583333338, 0.9996022916666712, 0.9996046111111131, 0.9996069305555549, 0.9996092777777813, 0.9996116388888899, 0.9996140555555608, 0.9996165138888914, 0.9996190277777774, 0.9996215694444487, 0.9996241111111126, 0.9996266527777764, 0.9996292083333366, 0.9996317916666669, 0.9996344305555606, 0.9996371388888908, 0.9996399027777768, 0.9996426944444483, 0.9996455277777785, 0.9996483749999975, 0.999651208333336, 0.9996540416666662, 0.9996568750000044, 0.9996596944444458, 0.9996624722222206, 0.9996652361111145, 0.9996679305555558, 0.9996705694444494, 0.999673125000002, 0.9996756111111105, 0.9996780416666704, 0.9996804166666678, 0.9996827361111097, 0.9996850000000027, 0.9996872083333336, 0.9996893333333374, 0.9996913611111129, 0.9996933194444441, 0.9996952222222254, 0.9996970833333343, 0.999698916666671, 0.9997007083333357, 0.9997024722222226, 0.9997042083333368, 0.9997059305555571, 0.9997076388888887, 0.9997093611111137, 0.9997111111111119, 0.9997129027777817, 0.9997147361111131, 0.9997165972222221, 0.9997184861111142, 0.9997204027777787, 0.9997223472222269, 0.9997243333333357, 0.9997263750000002, 0.999728486111115, 0.9997306388888902, 0.9997328194444434, 0.9997350277777807, 0.9997372638888894, 0.9997395138888933, 0.9997417638888907, 0.9997439999999994, 0.9997462222222256, 0.9997483888888898, 0.9997504999999988, 0.9997525416666692, 0.9997545277777782, 0.999756458333337, 0.9997583472222238, 0.999760194444444, 0.9997620000000028, 0.9997637638888898, 0.9997654722222262, 0.9997671250000021, 0.9997687222222226, 0.999770277777781, 0.9997717916666682, 0.9997732777777776, 0.9997747361111138, 0.9997761805555564, 0.9997775972222257, 0.9997790138888908, 0.9997804305555559, 0.9997818888888917, 0.999783402777779, 0.9997849583333375, 0.999786549850394, 0.9997881909647705, 0.9997898846084432, 0.9997916266895404, 0.99979342023433, 0.9997952783309318, 0.9997971848649584, 0.9997991447290552, 0.9998011533896923, 0.9998032119950144, 0.9998053088933802, 0.9998074125625024, 0.9998095331232729, 0.9998116172573841, 0.9998136807318394, 0.9998156905288687, 0.9998176657656007, 0.9998195768213954, 0.9998213943759654, 0.9998231357153241, 0.9998248110073765, 0.999826422442346, 0.9998279712153856, 0.99982945274597, 0.9998308750000012, 0.999832236111111, 0.9998335555555581, 0.9998348333333343, 0.9998360833333365, 0.9998373055555575, 0.999838527777778, 0.9998397638888914, 0.9998409583333346, 0.9998421111111145, 0.9998432361111131, 0.9998443472222233, 0.9998454166666694, 0.999846458333335, 0.9998474861111116, 0.9998485000000024, 0.9998495000000013, 0.999850486111114, 0.9998514583333353, 0.9998524166666675, 0.9998533611111137, 0.9998543055555572, 0.9998552500000004, 0.9998561944444466, 0.9998571111111122, 0.9998580000000027, 0.999858833333335, 0.9998596250000009, 0.99986040277778, 0.9998611666666681, 0.9998618888888918, 0.9998625694444465, 0.9998632222222236, 0.9998638472222247, 0.9998644444444462, 0.9998650138888902, 0.9998655555555578, 0.999866069444446, 0.9998665555555579, 0.999867013888891, 0.9998674444444461, 0.9998678472222245, 0.9998682361111128, 0.9998686111111136, 0.9998689861111133, 0.9998693750000017, 0.9998697916666691, 0.9998702222222242, 0.9998706666666681, 0.9998711388888909, 0.9998716527777795, 0.9998722083333359, 0.9998728194444464, 0.9998734861111123, 0.9998742083333356, 0.9998749861111126, 0.9998758194444474, 0.9998767083333352, 0.9998776527777787, 0.9998786527777804, 0.9998797083333347, 0.9998808333333334, 0.9998820000000022, 0.9998832083333342, 0.9998844583333364, 0.9998857222222238, 0.999887013888889, 0.9998883194444469, 0.9998896388888898, 0.9998909444444438, 0.9998922361111129, 0.9998935138888895, 0.9998947638888916, 0.9998959861111126, 0.9998971805555555, 0.9998983611111134, 0.9998995277777786, 0.9999006805555585, 0.999901819444446, 0.9999029444444449, 0.999904055555558, 0.9999051250000012, 0.9999061666666668, 0.9999071805555575, 0.9999081666666676, 0.9999091388888915, 0.9999100694444459, 0.9999109722222229, 0.9999118472222243, 0.9999127083333343, 0.9999135555555583, 0.9999143888888907, 0.9999151944444454, 0.9999159722222245, 0.9999167222222237, 0.9999174166666673, 0.9999180555555576, 0.99991863888889, 0.9999191666666688, 0.9999196527777793, 0.9999200972222235, 0.9999205138888909, 0.9999209027777795, 0.9999212638888899, 0.9999215972222238, 0.9999219166666681, 0.9999222361111132, 0.9999225555555572, 0.9999228750000014, 0.999923208333335, 0.9999235694444458, 0.9999239583333356, 0.9999243888888906, 0.9999248611111122, 0.9999253750000019, 0.9999259444444458, 0.9999265694444451, 0.9999272500000016, 0.999927986111112, 0.9999287500000023, 0.9999295416666681, 0.9999303611111113, 0.9999312083333353, 0.9999320833333343, 0.9999329861111136, 0.9999338888888903, 0.999934791666667, 0.9999356944444466, 0.9999365972222233, 0.9999374861111111, 0.999938333333335, 0.9999391666666675, 0.9999399861111135, 0.9999407916666678, 0.9999415833333337, 0.999942361111113, 0.9999431250000009, 0.9999438750000023, 0.9999446111111127, 0.9999453472222228, 0.9999460833333353, 0.9999468194444455, 0.9999475555555559, 0.9999482916666684, 0.9999490277777786, 0.9999497777777799, 0.9999505416666681, 0.9999513194444448, 0.999952111111113, 0.9999529027777786, 0.9999537083333333, 0.9999544722222238, 0.999955194444445, 0.9999558750000018, 0.9999565138888901, 0.9999571111111116, 0.9999576666666682, 0.9999581805555566, 0.9999586666666685, 0.9999591250000014, 0.9999595555555564, 0.999959958333335, 0.9999603333333346, 0.9999606805555565, 0.9999610000000013, 0.9999612916666679, 0.9999615694444461, 0.9999618333333347, 0.9999620833333344, 0.9999623333333348, 0.9999625833333345, 0.9999628611111128, 0.9999631666666682, 0.999963500000001, 0.9999638611111127, 0.9999642500000011, 0.9999646666666674, 0.9999651111111124, 0.9999655555555563, 0.9999660000000018, 0.9999664444444457, 0.9999668888888896, 0.999967333333335, 0.9999677916666677, 0.9999682638888894, 0.9999687500000013, 0.999969222222223, 0.9999696805555572, 0.9999701250000012, 0.9999705555555561, 0.9999709722222235, 0.9999713750000009, 0.9999717638888906, 0.9999721388888899, 0.9999725000000007, 0.9999728472222236, 0.9999731805555566, 0.9999735000000006, 0.9999738194444457, 0.9999741388888896, 0.9999744583333348, 0.999974777777779, 0.9999750972222229, 0.99997538888889, 0.9999756527777789, 0.9999758888888902, 0.9999761250000011, 0.9999763611111119, 0.9999765972222235, 0.9999768333333344, 0.9999770694444452, 0.9999773055555566, 0.9999775416666674, 0.9999777777777791, 0.99997801388889, 0.9999782500000007, 0.9999784861111124, 0.9999787222222233, 0.9999789583333341, 0.9999791944444455, 0.9999794305555563, 0.9999796666666679, 0.9999799027777788, 0.9999801527777784, 0.9999804166666678, 0.9999806944444453, 0.9999809583333347, 0.9999812083333343, 0.9999814444444451, 0.999981666666668, 0.999981875000001, 0.9999820833333342, 0.9999822916666679, 0.999982500000001, 0.9999827083333347, 0.9999829166666677, 0.9999831250000005, 0.9999833333333346, 0.9999835416666677, 0.9999837500000014, 0.9999839583333344, 0.9999841666666672, 0.9999843750000009, 0.9999845833333341, 0.9999847916666672, 0.9999850000000009, 0.9999852222222229, 0.9999854583333345, 0.9999857083333342, 0.9999859722222227, 0.999986250000001, 0.9999865138888895, 0.9999867638888901, 0.9999870000000008, 0.9999872222222228, 0.9999874305555565, 0.9999876250000007, 0.9999878055555561, 0.9999879722222232, 0.9999881250000007, 0.9999882638888898, 0.9999883888888897, 0.999988500000001, 0.9999885972222232, 0.9999886805555563, 0.9999887500000009, 0.9999888055555566, 0.9999888472222231, 0.9999888750000009, 0.9999888888888897, 0.9999888888888897, 0.9999888888888897, 0.9999888888888897, 0.9999889027777785, 0.9999889305555563, 0.9999889722222232, 0.9999890277777785, 0.9999890972222231, 0.9999891805555562, 0.9999892777777785, 0.9999893888888897, 0.9999895138888899, 0.9999896527777784, 0.9999898055555562, 0.999989972222223, 0.9999901527777784, 0.9999903472222232, 0.9999905555555563, 0.9999907777777782, 0.9999910138888897, 0.9999912638888894, 0.9999915277777779, 0.9999918055555561, 0.999992069444445, 0.9999923194444452, 0.9999925555555563, 0.9999927777777783, 0.999992986111112, 0.9999931805555562, 0.9999933611111113, 0.9999935277777784, 0.9999936805555562, 0.9999938194444452, 0.9999939444444449, 0.9999940555555561, 0.9999941527777784, 0.9999942361111117, 0.9999943055555564, 0.9999943611111117, 0.9999944027777783, 0.9999944305555563, 0.9999944444444452, 0.9999944444444452, 0.9999944444444452, 0.9999944444444452, 0.9999944444444452, 0.9999944444444452, 0.9999944444444452, 0.9999944444444452, 0.9999944444444452, 0.9999944444444452, 0.999994458333334, 0.9999944861111117, 0.9999945277777783, 0.9999945833333337, 0.9999946527777782, 0.9999947361111117, 0.9999948333333336, 0.999994944444445, 0.9999950694444447, 0.9999952083333336, 0.9999953611111115, 0.9999955277777781, 0.9999957083333341, 0.9999959027777781, 0.9999961111111112, 0.9999963333333337, 0.9999965694444448, 0.9999968194444445, 0.9999970833333339, 0.9999973611111113, 0.9999976250000007, 0.9999978750000004, 0.9999981111111111, 0.9999983333333337, 0.9999985416666668, 0.999998736111111, 0.9999989166666671, 0.9999990833333335, 0.9999992361111115, 0.9999993750000004, 0.9999995, 0.9999996111111115, 0.9999997083333335, 0.9999997916666672, 0.9999998611111115, 0.9999999166666669, 0.9999999583333338, 0.9999999861111114, 1.0000000000000002, 1.0000000000000002, 1.0000000000000002, 1.0000000000000002, 1.0000000000000002, 1.0000000000000002, 1.0000000000000002, 1.0000000000000002, 1.0000000000000002, 1.0000000000000002, 1.0000000000000002, 1.0000000000000002, 1.0000000000000002, 1.0000000000000002, 1.0000000000000002, 1.0000000000000002, 1.0000000000000002, 1.0000000000000002, 1.0000000000000002, 1.0000000000000002] + }, + { + "createdAt": "2020-01-24T09:49:00.215+00:00", + "xs": [-112.793432444, -109.36609107782984, -105.93874971165967, -102.5114083454895, -99.08406697931933, -95.65672561314916, -92.229384246979, -88.80204288080883, -85.37470151463866, -81.94736014846849, -78.52001878229832, -75.09267741612815, -71.66533604995799, -68.23799468378782, -64.81065331761765, -61.38331195144748, -57.95597058527731, -54.528629219107145, -51.10128785293698, -47.67394648676681, -44.24660512059664, -40.81926375442647, -37.391922388256305, -33.964581022086136, -30.53723965591597, -27.1098982897458, -23.682556923575632, -20.255215557405464, -16.827874191235296, -13.400532825065126, -9.973191458894956, -6.545850092724786, -3.118508726554616, 0.30883263961555407, 3.736174005785724, 7.163515371955894, 10.590856738126064, 14.018198104296234, 17.445539470466404, 20.872880836636575, 24.300222202806744, 27.72756356897691, 31.15490493514708, 34.58224630131725, 38.009587667487416, 41.436929033657584, 44.86427039982775, 48.29161176599792, 51.71895313216809, 55.14629449833826, 58.573635864508425, 62.00097723067859, 65.42831859684877, 68.85565996301894, 72.2830013291891, 75.71034269535927, 79.13768406152944, 82.56502542769961, 85.99236679386978, 89.41970816003995, 92.84704952621011, 96.27439089238028, 99.70173225855045, 103.12907362472062, 106.55641499089079, 109.98375635706095, 113.41109772323112, 116.83843908940129, 120.26578045557146, 123.69312182174163, 127.1204631879118, 130.54780455408198, 133.97514592025215, 137.4024872864223, 140.82982865259248, 144.25717001876265, 147.68451138493282, 151.111852751103, 154.53919411727315, 157.96653548344332, 161.3938768496135, 164.82121821578366, 168.24855958195383, 171.675900948124, 175.10324231429416, 178.53058368046433, 181.9579250466345, 185.38526641280467, 188.81260777897484, 192.239949145145, 195.66729051131517, 199.09463187748534, 202.5219732436555, 205.94931460982568, 209.37665597599585, 212.803997342166, 216.23133870833618, 219.65868007450635, 223.08602144067652, 226.5133628068467, 229.94070417301685, 233.36804553918702, 236.7953869053572, 240.22272827152736, 243.65006963769753, 247.0774110038677, 250.50475237003786, 253.93209373620803, 257.3594351023782, 260.7867764685484, 264.2141178347186, 267.6414592008888, 271.068800567059, 274.4961419332292, 277.9234832993994, 281.3508246655696, 284.7781660317398, 288.20550739790997, 291.63284876408017, 295.06019013025036, 298.48753149642056, 301.91487286259076, 305.34221422876095, 308.76955559493115, 312.19689696110134, 315.62423832727154, 319.05157969344174, 322.47892105961193, 325.90626242578213, 329.3336037919523, 332.7609451581225, 336.1882865242927, 339.6156278904629, 343.0429692566331, 346.4703106228033, 349.8976519889735, 353.3249933551437, 356.7523347213139, 360.1796760874841, 363.6070174536543, 367.0343588198245, 370.4617001859947, 373.8890415521649, 377.3163829183351, 380.7437242845053, 384.1710656506755, 387.59840701684567, 391.02574838301587, 394.45308974918606, 397.88043111535626, 401.30777248152646, 404.73511384769665, 408.16245521386685, 411.58979658003705, 415.01713794620724, 418.44447931237744, 421.87182067854764, 425.29916204471783, 428.72650341088803, 432.1538447770582, 435.5811861432284, 439.0085275093986, 442.4358688755688, 445.863210241739, 449.2905516079092, 452.7178929740794, 456.1452343402496, 459.5725757064198, 462.99991707259, 466.4272584387602, 469.8545998049304, 473.2819411711006, 476.7092825372708, 480.136623903441, 483.5639652696112, 486.99130663578137, 490.41864800195157, 493.84598936812176, 497.27333073429196, 500.70067210046216, 504.12801346663235, 507.55535483280255, 510.98269619897275, 514.4100375651429, 517.8373789313131, 521.2647202974832, 524.6920616636534, 528.1194030298235, 531.5467443959936, 534.9740857621638, 538.4014271283339, 541.8287684945041, 545.2561098606742, 548.6834512268443, 552.1107925930145, 555.5381339591846, 558.9654753253548, 562.3928166915249, 565.820158057695, 569.2474994238652, 572.6748407900353, 576.1021821562055, 579.5295235223756, 582.9568648885457, 586.3842062547159, 589.811547620886, 593.2388889870562, 596.6662303532263, 600.0935717193964, 603.5209130855666, 606.9482544517367, 610.3755958179069, 613.802937184077, 617.2302785502471, 620.6576199164173, 624.0849612825874, 627.5123026487576, 630.9396440149277, 634.3669853810978, 637.794326747268, 641.2216681134381, 644.6490094796083, 648.0763508457784, 651.5036922119485, 654.9310335781187, 658.3583749442888, 661.785716310459, 665.2130576766291, 668.6403990427992, 672.0677404089694, 675.4950817751395, 678.9224231413097, 682.3497645074798, 685.7771058736499, 689.2044472398201, 692.6317886059902, 696.0591299721603, 699.4864713383305, 702.9138127045006, 706.3411540706708, 709.7684954368409, 713.195836803011, 716.6231781691812, 720.0505195353513, 723.4778609015215, 726.9052022676916, 730.3325436338617, 733.7598850000319, 737.187226366202, 740.6145677323722, 744.0419090985423, 747.4692504647124, 750.8965918308826, 754.3239331970527, 757.7512745632229, 761.178615929393, 764.6059572955631, 768.0332986617333, 771.4606400279034, 774.8879813940736, 778.3153227602437, 781.7426641264138, 785.170005492584, 788.5973468587541, 792.0246882249243, 795.4520295910944, 798.8793709572645, 802.3067123234347, 805.7340536896048, 809.161395055775, 812.5887364219451, 816.0160777881152, 819.4434191542854, 822.8707605204555, 826.2981018866257, 829.7254432527958, 833.1527846189659, 836.5801259851361, 840.0074673513062, 843.4348087174764, 846.8621500836465, 850.2894914498166, 853.7168328159868, 857.1441741821569, 860.571515548327, 863.9988569144972, 867.4261982806673, 870.8535396468375, 874.2808810130076, 877.7082223791778, 881.1355637453479, 884.562905111518, 887.9902464776882, 891.4175878438583, 894.8449292100285, 898.2722705761986, 901.6996119423687, 905.1269533085389, 908.554294674709, 911.9816360408792, 915.4089774070493, 918.8363187732194, 922.2636601393896, 925.6910015055597, 929.1183428717299, 932.5456842379, 935.9730256040701, 939.4003669702403, 942.8277083364104, 946.2550497025805, 949.6823910687507, 953.1097324349208, 956.537073801091, 959.9644151672611, 963.3917565334312, 966.8190978996014, 970.2464392657715, 973.6737806319417, 977.1011219981118, 980.528463364282, 983.9558047304521, 987.3831460966222, 990.8104874627924, 994.2378288289625, 997.6651701951326, 1001.0925115613028, 1004.5198529274729, 1007.9471942936431, 1011.3745356598132, 1014.8018770259833, 1018.2292183921535, 1021.6565597583236, 1025.0839011244939, 1028.511242490664, 1031.9385838568342, 1035.3659252230043, 1038.7932665891744, 1042.2206079553446, 1045.6479493215147, 1049.0752906876849, 1052.502632053855, 1055.9299734200251, 1059.3573147861953, 1062.7846561523654, 1066.2119975185356, 1069.6393388847057, 1073.0666802508758, 1076.494021617046, 1079.921362983216, 1083.3487043493863, 1086.7760457155564, 1090.2033870817265, 1093.6307284478967, 1097.0580698140668, 1100.485411180237, 1103.912752546407, 1107.3400939125772, 1110.7674352787474, 1114.1947766449175, 1117.6221180110877, 1121.0494593772578, 1124.476800743428, 1127.904142109598, 1131.3314834757682, 1134.7588248419383, 1138.1861662081085, 1141.6135075742786, 1145.0408489404488, 1148.468190306619, 1151.895531672789, 1155.3228730389592, 1158.7502144051293, 1162.1775557712995, 1165.6048971374696, 1169.0322385036397, 1172.4595798698099, 1175.88692123598, 1179.3142626021502, 1182.7416039683203, 1186.1689453344904, 1189.5962867006606, 1193.0236280668307, 1196.4509694330009, 1199.878310799171, 1203.3056521653411, 1206.7329935315113, 1210.1603348976814, 1213.5876762638516, 1217.0150176300217, 1220.4423589961918, 1223.869700362362, 1227.2970417285321, 1230.7243830947023, 1234.1517244608724, 1237.5790658270425, 1241.0064071932127, 1244.4337485593828, 1247.861089925553, 1251.288431291723, 1254.7157726578932, 1258.1431140240634, 1261.5704553902335, 1264.9977967564037, 1268.4251381225738, 1271.852479488744, 1275.279820854914, 1278.7071622210842, 1282.1345035872544, 1285.5618449534245, 1288.9891863195946, 1292.4165276857648, 1295.843869051935, 1299.271210418105, 1302.6985517842752, 1306.1258931504453, 1309.5532345166155, 1312.9805758827856, 1316.4079172489558, 1319.835258615126, 1323.262599981296, 1326.6899413474662, 1330.1172827136363, 1333.5446240798065, 1336.9719654459766, 1340.3993068121467, 1343.8266481783169, 1347.253989544487, 1350.6813309106572, 1354.1086722768273, 1357.5360136429974, 1360.9633550091676, 1364.3906963753377, 1367.8180377415079, 1371.245379107678, 1374.6727204738481, 1378.1000618400183, 1381.5274032061884, 1384.9547445723585, 1388.3820859385287, 1391.8094273046988, 1395.236768670869, 1398.664110037039, 1402.0914514032092, 1405.5187927693794, 1408.9461341355495, 1412.3734755017197, 1415.8008168678898, 1419.22815823406, 1422.65549960023, 1426.0828409664002, 1429.5101823325704, 1432.9375236987405, 1436.3648650649106, 1439.7922064310808, 1443.219547797251, 1446.646889163421, 1450.0742305295912, 1453.5015718957613, 1456.9289132619315, 1460.3562546281016, 1463.7835959942718, 1467.210937360442, 1470.638278726612, 1474.0656200927822, 1477.4929614589523, 1480.9203028251225, 1484.3476441912926, 1487.7749855574627, 1491.2023269236329, 1494.629668289803, 1498.0570096559732, 1501.4843510221433, 1504.9116923883134, 1508.3390337544836, 1511.7663751206537, 1515.1937164868239, 1518.621057852994, 1522.0483992191641, 1525.4757405853343, 1528.9030819515044, 1532.3304233176746, 1535.7577646838447, 1539.1851060500148, 1542.612447416185, 1546.0397887823551, 1549.4671301485253, 1552.8944715146954, 1556.3218128808655, 1559.7491542470357, 1563.1764956132058, 1566.603836979376, 1570.031178345546, 1573.4585197117162, 1576.8858610778864, 1580.3132024440565, 1583.7405438102267, 1587.1678851763968, 1590.595226542567, 1594.022567908737, 1597.4499092749072, 1600.8772506410774, 1604.3045920072475, 1607.7319333734176, 1611.1592747395878, 1614.586616105758, 1618.013957471928, 1621.4412988380982, 1624.8686402042683, 1628.2959815704385, 1631.7233229366086, 1635.1506643027788, 1638.578005668949, 1642.005347035119, 1645.4326884012892, 1648.8600297674593, 1652.2873711336294, 1655.7147124997996, 1659.1420538659697, 1662.5693952321399, 1665.99673659831, 1669.4240779644801, 1672.8514193306503, 1676.2787606968204, 1679.7061020629906, 1683.1334434291607, 1686.5607847953308, 1689.988126161501, 1693.4154675276711, 1696.8428088938413, 1700.2701502600114, 1703.6974916261815, 1707.1248329923517, 1710.5521743585218, 1713.979515724692, 1717.406857090862, 1720.8341984570322, 1724.2615398232024, 1727.6888811893725, 1731.1162225555427, 1734.5435639217128, 1737.970905287883, 1741.398246654053, 1744.8255880202232, 1748.2529293863934, 1751.6802707525635, 1755.1076121187336, 1758.5349534849038, 1761.962294851074, 1765.389636217244, 1768.8169775834142, 1772.2443189495843, 1775.6716603157545, 1779.0990016819246, 1782.5263430480948, 1785.953684414265, 1789.381025780435, 1792.8083671466052, 1796.2357085127753, 1799.6630498789455, 1803.0903912451156, 1806.5177326112857, 1809.9450739774559, 1813.372415343626, 1816.7997567097962, 1820.2270980759663, 1823.6544394421364, 1827.0817808083066, 1830.5091221744767, 1833.9364635406469, 1837.363804906817, 1840.7911462729871, 1844.2184876391573, 1847.6458290053274, 1851.0731703714976, 1854.5005117376677, 1857.9278531038378, 1861.355194470008, 1864.782535836178, 1868.2098772023483, 1871.6372185685184, 1875.0645599346885, 1878.4919013008587, 1881.9192426670288, 1885.346584033199, 1888.773925399369, 1892.2012667655392, 1895.6286081317094, 1899.0559494978795, 1902.4832908640496, 1905.9106322302198, 1909.33797359639, 1912.76531496256, 1916.1926563287302, 1919.6199976949003, 1923.0473390610705, 1926.4746804272406, 1929.9020217934108, 1933.329363159581, 1936.756704525751, 1940.1840458919212, 1943.6113872580913, 1947.0387286242615, 1950.4660699904316, 1953.8934113566017, 1957.3207527227719, 1960.748094088942, 1964.1754354551122, 1967.6027768212823, 1971.0301181874524, 1974.4574595536226, 1977.8848009197927, 1981.3121422859629, 1984.739483652133, 1988.1668250183031, 1991.5941663844733, 1995.0215077506434, 1998.4488491168136, 2001.8761904829837, 2005.3035318491538, 2008.730873215324, 2012.1582145814941, 2015.5855559476643, 2019.0128973138344, 2022.4402386800045, 2025.8675800461747, 2029.2949214123448, 2032.722262778515, 2036.149604144685, 2039.5769455108552, 2043.0042868770254, 2046.4316282431955, 2049.858969609366, 2053.2863109755363, 2056.7136523417066, 2060.140993707877, 2063.5683350740474, 2066.9956764402177, 2070.423017806388, 2073.8503591725585, 2077.277700538729, 2080.705041904899, 2084.1323832710696, 2087.55972463724, 2090.9870660034103, 2094.4144073695807, 2097.841748735751, 2101.2690901019214, 2104.6964314680918, 2108.123772834262, 2111.5511142004325, 2114.978455566603, 2118.4057969327732, 2121.8331382989436, 2125.260479665114, 2128.6878210312843, 2132.1151623974547, 2135.542503763625, 2138.9698451297954, 2142.397186495966, 2145.824527862136, 2149.2518692283065, 2152.679210594477, 2156.1065519606473, 2159.5338933268176, 2162.961234692988, 2166.3885760591584, 2169.8159174253287, 2173.243258791499, 2176.6706001576695, 2180.09794152384, 2183.52528289001, 2186.9526242561806, 2190.379965622351, 2193.8073069885213, 2197.2346483546917, 2200.661989720862, 2204.0893310870324, 2207.516672453203, 2210.944013819373, 2214.3713551855435, 2217.798696551714, 2221.2260379178842, 2224.6533792840546, 2228.080720650225, 2231.5080620163953, 2234.9354033825657, 2238.362744748736, 2241.7900861149064, 2245.217427481077, 2248.644768847247, 2252.0721102134175, 2255.499451579588, 2258.9267929457583, 2262.3541343119286, 2265.781475678099, 2269.2088170442694, 2272.6361584104397, 2276.06349977661, 2279.4908411427805, 2282.918182508951, 2286.345523875121, 2289.7728652412916, 2293.200206607462, 2296.6275479736323, 2300.0548893398027, 2303.482230705973, 2306.9095720721434, 2310.336913438314, 2313.764254804484, 2317.1915961706545, 2320.618937536825, 2324.0462789029953, 2327.4736202691656, 2330.900961635336, 2334.3283030015064, 2337.7556443676767, 2341.182985733847, 2344.6103271000175, 2348.037668466188, 2351.465009832358, 2354.8923511985286, 2358.319692564699, 2361.7470339308693, 2365.1743752970397, 2368.60171666321, 2372.0290580293804, 2375.4563993955508, 2378.883740761721, 2382.3110821278915, 2385.738423494062, 2389.1657648602322, 2392.5931062264026, 2396.020447592573, 2399.4477889587433, 2402.8751303249137, 2406.302471691084, 2409.7298130572544, 2413.157154423425, 2416.584495789595, 2420.0118371557655, 2423.439178521936, 2426.8665198881063, 2430.2938612542766, 2433.721202620447, 2437.1485439866174, 2440.5758853527877, 2444.003226718958, 2447.4305680851285, 2450.857909451299, 2454.285250817469, 2457.7125921836396, 2461.13993354981, 2464.5672749159803, 2467.9946162821507, 2471.421957648321, 2474.8492990144914, 2478.276640380662, 2481.703981746832, 2485.1313231130025, 2488.558664479173, 2491.9860058453432, 2495.4133472115136, 2498.840688577684, 2502.2680299438543, 2505.6953713100247, 2509.122712676195, 2512.5500540423654, 2515.977395408536, 2519.404736774706, 2522.8320781408765, 2526.259419507047, 2529.6867608732173, 2533.1141022393876, 2536.541443605558, 2539.9687849717284, 2543.3961263378987, 2546.823467704069, 2550.2508090702395, 2553.67815043641, 2557.10549180258, 2560.5328331687506, 2563.960174534921, 2567.3875159010913, 2570.8148572672617, 2574.242198633432, 2577.6695399996024, 2581.096881365773, 2584.524222731943, 2587.9515640981135, 2591.378905464284, 2594.8062468304543, 2598.2335881966246, 2601.660929562795, 2605.0882709289654, 2608.5156122951357, 2611.942953661306, 2615.3702950274765, 2618.797636393647, 2622.224977759817, 2625.6523191259876, 2629.079660492158, 2632.5070018583283, 2635.9343432244987, 2639.361684590669, 2642.7890259568394, 2646.2163673230098, 2649.64370868918, 2653.0710500553505, 2656.498391421521, 2659.9257327876912, 2663.3530741538616, 2666.780415520032, 2670.2077568862023, 2673.6350982523727, 2677.062439618543, 2680.4897809847134, 2683.917122350884, 2687.344463717054, 2690.7718050832245, 2694.199146449395, 2697.6264878155653, 2701.0538291817356, 2704.481170547906, 2707.9085119140764, 2711.3358532802467, 2714.763194646417, 2718.1905360125875, 2721.617877378758, 2725.045218744928, 2728.4725601110986, 2731.899901477269, 2735.3272428434393, 2738.7545842096097, 2742.18192557578, 2745.6092669419504, 2749.036608308121, 2752.463949674291, 2755.8912910404615, 2759.318632406632, 2762.7459737728022, 2766.1733151389726, 2769.600656505143, 2773.0279978713133, 2776.4553392374837, 2779.882680603654, 2783.3100219698244, 2786.737363335995, 2790.164704702165, 2793.5920460683355, 2797.019387434506, 2800.4467288006763, 2803.8740701668466, 2807.301411533017, 2810.7287528991874, 2814.1560942653578, 2817.583435631528, 2821.0107769976985, 2824.438118363869, 2827.865459730039, 2831.2928010962096, 2834.72014246238, 2838.1474838285503, 2841.5748251947207, 2845.002166560891, 2848.4295079270614, 2851.856849293232, 2855.284190659402, 2858.7115320255725, 2862.138873391743, 2865.5662147579133, 2868.9935561240836, 2872.420897490254, 2875.8482388564244, 2879.2755802225947, 2882.702921588765, 2886.1302629549355, 2889.557604321106, 2892.984945687276, 2896.4122870534466, 2899.839628419617, 2903.2669697857873, 2906.6943111519577, 2910.121652518128, 2913.5489938842984, 2916.9763352504688, 2920.403676616639, 2923.8310179828095, 2927.25835934898, 2930.6857007151502, 2934.1130420813206, 2937.540383447491, 2940.9677248136613, 2944.3950661798317, 2947.822407546002, 2951.2497489121724, 2954.677090278343, 2958.104431644513, 2961.5317730106835, 2964.959114376854, 2968.3864557430243, 2971.8137971091946, 2975.241138475365, 2978.6684798415354, 2982.0958212077057, 2985.523162573876, 2988.9505039400465, 2992.377845306217, 2995.805186672387, 2999.2325280385576, 3002.659869404728, 3006.0872107708983, 3009.5145521370687, 3012.941893503239, 3016.3692348694094, 3019.79657623558, 3023.22391760175, 3026.6512589679205, 3030.078600334091, 3033.5059417002612, 3036.9332830664316, 3040.360624432602, 3043.7879657987723, 3047.2153071649427, 3050.642648531113, 3054.0699898972834, 3057.497331263454, 3060.924672629624, 3064.3520139957946, 3067.779355361965, 3071.2066967281353, 3074.6340380943057, 3078.061379460476, 3081.4887208266464, 3084.9160621928168, 3088.343403558987, 3091.7707449251575, 3095.198086291328, 3098.625427657498, 3102.0527690236686, 3105.480110389839, 3108.9074517560093, 3112.3347931221797, 3115.76213448835, 3119.1894758545204, 3122.616817220691, 3126.044158586861, 3129.4714999530315, 3132.898841319202, 3136.3261826853723, 3139.7535240515426, 3143.180865417713, 3146.6082067838834, 3150.0355481500537, 3153.462889516224, 3156.8902308823945, 3160.317572248565, 3163.744913614735, 3167.1722549809056, 3170.599596347076, 3174.0269377132463, 3177.4542790794167, 3180.881620445587, 3184.3089618117574, 3187.7363031779278, 3191.163644544098, 3194.5909859102685, 3198.018327276439, 3201.4456686426092, 3204.8730100087796, 3208.30035137495, 3211.7276927411203, 3215.1550341072907, 3218.582375473461, 3222.0097168396314, 3225.437058205802, 3228.864399571972, 3232.2917409381425, 3235.719082304313, 3239.1464236704833, 3242.5737650366536, 3246.001106402824, 3249.4284477689944, 3252.8557891351647, 3256.283130501335, 3259.7104718675055, 3263.137813233676, 3266.565154599846, 3269.9924959660166, 3273.419837332187, 3276.8471786983573, 3280.2745200645277, 3283.701861430698, 3287.1292027968684, 3290.556544163039, 3293.983885529209, 3297.4112268953795, 3300.83856826155, 3304.2659096277202, 3307.6932509938906, 3311.12059236], + "ys": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.000000000000000005458235646691976, 0.000000047619047641564654, 0.00000021428571433085796, 0.000000571428571518249, 0.0000013333333334903443, 0.0000027738095241424627, 0.000005345238095784448, 0.000009869047619858804, 0.00001710714285829224, 0.00002830424979645136, 0.00004811960195992953, 0.00009029063385454786, 0.00018834608982067416, 0.00038002186358690687, 0.0007036490163368246, 0.001199868357989332, 0.0019108470188678906, 0.0028877217751203566, 0.005497819021149976, 0.015587753276328714, 0.03669239726768805, 0.06301492865979721, 0.08812793556896893, 0.10958455319940483, 0.12590508472937306, 0.1381180900472087, 0.1473307522276889, 0.15461453337898082, 0.16029611975731278, 0.16500033467376937, 0.16943118413950511, 0.17364114795044822, 0.17787439972680172, 0.18237254772549222, 0.18716386195787157, 0.1923696350474145, 0.19802592265322425, 0.2042198290415444, 0.2109470780707626, 0.21824169613449015, 0.22612853264387606, 0.23460615585957503, 0.24371568300286056, 0.25342930024998955, 0.26370023597929537, 0.2744453469412102, 0.2856247374397952, 0.29720700319465854, 0.3091854784490446, 0.32154030800418404, 0.3342406532112103, 0.3471945388090116, 0.3603008217270022, 0.3734435223169286, 0.38655636395622256, 0.39960207236514045, 0.4125975090221538, 0.4255524462277632, 0.4384480778233594, 0.4512552231249605, 0.4639228906280514, 0.476438634361097, 0.48880432781618277, 0.5009922710586964, 0.5129704052113382, 0.5247204692821837, 0.536215854662166, 0.5474548632563364, 0.5584255764681498, 0.5691377965885234, 0.5796018152120995, 0.5898128335588558, 0.5997583229097316, 0.6094359678496976, 0.6188504872346658, 0.6280198413406402, 0.6369583565428413, 0.6456609159621606, 0.654128142162355, 0.6623539818313426, 0.6703481989395854, 0.6781279206032111, 0.6856813765145723, 0.6930150444255475, 0.7001367634619335, 0.7070544017851776, 0.7137794274325834, 0.7203190837050182, 0.7266716643501026, 0.7328432724626198, 0.7388423722223749, 0.7446767105054141, 0.750357101701405, 0.7558840912818255, 0.7612827008264546, 0.7665560023714677, 0.7717027685129235, 0.7767137982415512, 0.7815892890199997, 0.7863398996922142, 0.790967688570898, 0.7954746784446337, 0.7998702266942159, 0.8041608551216894, 0.8083495011022145, 0.8124433116044847, 0.8164496789655216, 0.8203752404802049, 0.8242278677988372, 0.828003120423648, 0.8317054980681685, 0.8353394259715594, 0.8389054285066148, 0.8424065526263232, 0.845834317033207, 0.8491906309176415, 0.8524776250410836, 0.8556958347543151, 0.8588515101402997, 0.8619380884941668, 0.8649501559240631, 0.8678783725488445, 0.8707217845260216, 0.8734793882863541, 0.8761607171833521, 0.8787797149262743, 0.8813498789924176, 0.8838762233404257, 0.8863600981903245, 0.8888006985808431, 0.8911986314388376, 0.8935509968737324, 0.8958479582390451, 0.8980818035898099, 0.9002526915196747, 0.9023657754140039, 0.9044261680744585, 0.9064319430834774, 0.9083892161366555, 0.9103028882177124, 0.9121773498847691, 0.9140162029066248, 0.9158208867672569, 0.9175941760753437, 0.9193373141721796, 0.9210493695023398, 0.9227320938092509, 0.9243825721063931, 0.9259970909442069, 0.9275764363424376, 0.9291241535689017, 0.9306371236194444, 0.932116748039637, 0.9335655465448668, 0.9349874535950164, 0.9363887487395971, 0.9377663911016272, 0.9391237721426294, 0.9404645186302597, 0.941789247284884, 0.9430943010543543, 0.9443764629685186, 0.9456334110529492, 0.9468642506385739, 0.9480668750313159, 0.9492388733602415, 0.9503824092287599, 0.9514984035257757, 0.9525902211838558, 0.9536595676403985, 0.9547068685398187, 0.9557328608275074, 0.956738810526466, 0.9577240133795168, 0.9586834673916688, 0.9596149227140145, 0.9605128226411742, 0.9613770633559767, 0.9622114932693577, 0.9630178734798915, 0.9637995495851109, 0.964560852011569, 0.965304626527314, 0.9660342891647574, 0.9667499547725745, 0.9674477201669544, 0.9681277262228075, 0.9687885215354898, 0.9694296055909787, 0.9700504986831927, 0.9706507718959424, 0.9712306189207442, 0.9717945173691032, 0.9723426421375769, 0.9728783706260983, 0.9734035111937105, 0.9739196461100462, 0.9744269553182067, 0.974923727090621, 0.9754094610190257, 0.9758848480067545, 0.9763490821027341, 0.9768029430439157, 0.9772469272316127, 0.9776818355813823, 0.9781090986292639, 0.978528086920267, 0.9789385422365068, 0.9793411402078674, 0.9797355394681161, 0.9801222484373697, 0.9805006330081009, 0.9808701225970439, 0.9812335928771334, 0.9815907304391182, 0.981940100898026, 0.9822815265186031, 0.9826147906895079, 0.9829411035572914, 0.9832604034579344, 0.9835726692921847, 0.9838799607962817, 0.984183618809407, 0.9844839860431804, 0.9847807311049951, 0.9850732327442042, 0.9853593899952271, 0.9856386635951726, 0.9859094844097678, 0.9861711919149692, 0.9864237651175115, 0.9866679411835515, 0.9869062023350387, 0.9871395766147594, 0.9873679667328344, 0.9875930197896622, 0.9878152490871306, 0.9880347831961444, 0.9882506477228408, 0.988461853714573, 0.9886693651039591, 0.9888734434994392, 0.9890724580338749, 0.9892658778562782, 0.9894532027536974, 0.9896343169166871, 0.9898097669176666, 0.9899795038017908, 0.9901445398375647, 0.9903066269747718, 0.9904671917057634, 0.9906264660646797, 0.9907844915442771, 0.9909417500502136, 0.9910978815518862, 0.9912525796045379, 0.9914063634993076, 0.9915592561406916, 0.9917123270986588, 0.9918658995414009, 0.9920195188944261, 0.9921734444643591, 0.9923276346499312, 0.992481245739289, 0.9926342815716914, 0.9927856861119445, 0.9929352984543074, 0.9930832029950578, 0.9932284185995458, 0.9933705140172638, 0.993510094554317, 0.9936473655032919, 0.9937835289108689, 0.99391893033458, 0.994053776575368, 0.9941887146104639, 0.9943235151208597, 0.9944575678918504, 0.9945893821341883, 0.994717746731724, 0.9948425494411001, 0.9949640373121724, 0.9950823410294082, 0.9951980697222604, 0.9953121168289776, 0.9954258615849493, 0.9955403007013021, 0.9956561164103536, 0.9957727965384972, 0.9958902768204766, 0.9960078537795667, 0.996124788357455, 0.9962407422578983, 0.9963553908990013, 0.9964675942522049, 0.9965771314787545, 0.996683618176751, 0.9967881319255584, 0.9968921063564975, 0.9969953506061897, 0.9970973774687231, 0.9971989437463673, 0.9973000872499705, 0.9973994903374912, 0.997494558168195, 0.9975827893023601, 0.9976629430613018, 0.9977339353309329, 0.9977944477206881, 0.9978446772774036, 0.9978864151568304, 0.9979215103723826, 0.9979517512408717, 0.9979785058393839, 0.9980032566669953, 0.9980274218411201, 0.9980513385514731, 0.9980749078818218, 0.9980980543044254, 0.998120785326879, 0.9981431695201982, 0.99816517418963, 0.9981867966871578, 0.9982081525737924, 0.9982292050378074, 0.9982499507080246, 0.9982704156350045, 0.9982905802604927, 0.99831050739475, 0.998330166431706, 0.998349482893167, 0.9983684617502337, 0.9983871321154754, 0.9984055797780277, 0.998423700767711, 0.9984413279349654, 0.9984584074832169, 0.9984749394123765, 0.9984909118177262, 0.9985064324277891, 0.9985213527610232, 0.9985357985575151, 0.9985498708927693, 0.998563600926607, 0.99857704910322, 0.9985902039318629, 0.9986030595237959, 0.9986157500000095, 0.9986283214285668, 0.9986407976190657, 0.998653238095242, 0.9986656666666567, 0.9986780595238217, 0.998690345238094, 0.9987026071428422, 0.9987148690476259, 0.9987271904761837, 0.9987395476190633, 0.9987520357142873, 0.9987645952380829, 0.9987772142857246, 0.9987897499999961, 0.998802261904744, 0.9988147738095287, 0.9988272976190383, 0.9988398809523942, 0.9988524999999994, 0.9988650714285566, 0.9988775595238172, 0.9988899642857082, 0.9989022619047778, 0.9989144761904785, 0.9989265952380842, 0.9989387142857249, 0.9989507976190447, 0.998962833333317, 0.9989747619047673, 0.9989865952380873, 0.9989982142857272, 0.9990097142857147, 0.9990211071428448, 0.9990324761904841, 0.9990437499999955, 0.9990548690476346, 0.9990659166666698, 0.999076845238086, 0.999087690476201, 0.9990985119047602, 0.9991093214285576, 0.9991201428571487, 0.9991309880952317, 0.9991418095238226, 0.9991526547619056, 0.9991634642857034, 0.999174297619056, 0.9991851190476153, 0.9991959285714128, 0.9992067023809559, 0.9992175119047536, 0.9992282142857251, 0.9992387857142848, 0.9992491547618924, 0.999259369047625, 0.9992694523809471, 0.9992792738095362, 0.9992888571428588, 0.9992982142857054, 0.9993073095238173, 0.9993161547619026, 0.9993247380952265, 0.9993330357142894, 0.9993410714285663, 0.9993488095238183, 0.9993562738095242, 0.999363440476183, 0.9993703095238146, 0.9993769285714263, 0.9993833095238188, 0.9993894642857166, 0.999395452380948, 0.9994013214285776, 0.9994071190476187, 0.9994128333333266, 0.9994185000000037, 0.9994241190476164, 0.9994296904761979, 0.9994351904761916, 0.9994406547618999, 0.9994460714285763, 0.9994514166666656, 0.999456738095231, 0.9994620476190502, 0.9994673452380918, 0.999472630952387, 0.9994778452380955, 0.9994830119047562, 0.9994880952380988, 0.9994931071428554, 0.9994980238095307, 0.9995028571428587, 0.9995075476190439, 0.9995120833333377, 0.9995164523809521, 0.9995206309523762, 0.9995246666666693, 0.9995285595238078, 0.9995323214285765, 0.9995359285714296, 0.9995394047619018, 0.999542785714289, 0.9995460357142854, 0.9995491190476243, 0.9995520714285734, 0.9995548882190377, 0.999557657069533, 0.9995603840572059, 0.9995630810868255, 0.9995657611812907, 0.9995684473529104, 0.999571151185532, 0.9995739083934266, 0.9995767308813639, 0.9995796424588737, 0.999582556496984, 0.9995854409693452, 0.9995882951501089, 0.9995911428614149, 0.9995939967212573, 0.9995968329200972, 0.9995996276484191, 0.9996023928109918, 0.9996051522173239, 0.9996078690476237, 0.9996105952380966, 0.9996133333333318, 0.9996160833333368, 0.9996188333333337, 0.9996215714285687, 0.9996242738095261, 0.9996269285714278, 0.9996295357142895, 0.9996321071428582, 0.9996346428571411, 0.9996371666666695, 0.9996396547619048, 0.9996420952380995, 0.9996444404761922, 0.9996466904761897, 0.9996488690476222, 0.9996510000000008, 0.9996530714285701, 0.9996550952380974, 0.9996571071428573, 0.9996591071428609, 0.9996610952380968, 0.9996630833333323, 0.999665095238098, 0.9996671190476195, 0.9996691904761946, 0.9996712976190493, 0.9996734523809518, 0.9996756309523843, 0.9996778095238105, 0.9996799880952365, 0.9996821785714308, 0.9996843928571426, 0.9996866547619087, 0.9996889761904776, 0.9996913452380939, 0.9996937380952412, 0.9996961666666669, 0.9996986071428545, 0.9997010357142876, 0.9997034642857136, 0.9997058928571464, 0.9997083095238103, 0.9997106904761888, 0.9997130595238121, 0.999715369047619, 0.9997176309523849, 0.9997198214285729, 0.9997219523809514, 0.9997240357142887, 0.9997260714285721, 0.9997280595238079, 0.9997300000000019, 0.9997318928571427, 0.9997337142857174, 0.9997354523809534, 0.9997371309523803, 0.9997387619047642, 0.9997403571428577, 0.9997419285714321, 0.9997434642857159, 0.999744976190476, 0.9997464642857169, 0.9997479404761914, 0.9997494047619041, 0.9997508809523828, 0.9997523809523814, 0.9997539166666696, 0.9997554880952393, 0.9997570833333328, 0.9997587023809545, 0.9997603452380959, 0.9997620119047654, 0.999763714285716, 0.9997654642857141, 0.9997672738095267, 0.9997691190476198, 0.9997709880952367, 0.9997728809523829, 0.9997747976190475, 0.9997767261904796, 0.9997786547619061, 0.9997805714285705, 0.9997824761904786, 0.9997843333333337, 0.9997861428571413, 0.9997878928571448, 0.9997895952380951, 0.9997912500000028, 0.99979286904762, 0.9997944523809517, 0.9997960000000022, 0.9997975119047623, 0.999798976190479, 0.9998003928571444, 0.9998017619047618, 0.9998030952380975, 0.9998043928571436, 0.9998056666666663, 0.9998069166666684, 0.9998081547619052, 0.9998093690476215, 0.9998105833333345, 0.9998117976190475, 0.9998130476190497, 0.9998143452380958, 0.9998156785714316, 0.9998170427289086, 0.9998184493983745, 0.9998199010929508, 0.9998213943053198, 0.9998229316294253, 0.9998245242836555, 0.9998261584556783, 0.9998278383391896, 0.9998295600483073, 0.9998313245671547, 0.9998331219086113, 0.999834925053573, 0.9998367426770908, 0.9998385290777573, 0.9998402977701478, 0.9998420204533155, 0.9998437135133719, 0.9998453515611957, 0.9998469094651128, 0.9998484020417059, 0.9998498380063222, 0.999851219236296, 0.9998525467560443, 0.9998538166394025, 0.9998550357142866, 0.9998562023809517, 0.9998573333333349, 0.9998584285714289, 0.9998595000000022, 0.9998605476190487, 0.9998615952380953, 0.9998626547619066, 0.9998636785714291, 0.9998646666666691, 0.9998656309523825, 0.9998665833333337, 0.9998675000000021, 0.999868392857144, 0.9998692738095237, 0.9998701428571444, 0.9998710000000006, 0.9998718452380972, 0.9998726785714298, 0.9998735000000004, 0.9998743095238114, 0.9998751190476199, 0.9998759285714287, 0.9998767380952395, 0.9998775238095244, 0.9998782857142877, 0.9998790000000012, 0.9998796785714289, 0.9998803452380969, 0.9998810000000008, 0.9998816190476211, 0.9998822023809536, 0.9998827619047626, 0.9998832976190494, 0.9998838095238105, 0.9998842976190482, 0.9998847619047633, 0.9998852023809535, 0.9998856190476209, 0.9998860119047632, 0.9998863809523818, 0.9998867261904777, 0.9998870595238107, 0.9998873809523826, 0.9998877023809537, 0.9998880357142867, 0.9998883928571445, 0.9998887619047631, 0.9998891428571436, 0.9998895476190491, 0.999889988095239, 0.999890464285716, 0.9998909880952392, 0.99989155952381, 0.99989217857143, 0.9998928452380961, 0.9998935595238115, 0.9998943214285728, 0.9998951309523813, 0.9998959880952398, 0.9998968928571436, 0.999897857142857, 0.9998988571428585, 0.9998998928571431, 0.9999009642857164, 0.9999020476190486, 0.9999031547619044, 0.9999042738095254, 0.9999054047619053, 0.999906523809523, 0.9999076309523822, 0.9999087261904762, 0.9999097976190495, 0.999910845238096, 0.9999118690476188, 0.9999128809523824, 0.9999138809523814, 0.9999148690476211, 0.9999158452380963, 0.9999168095238095, 0.9999177619047634, 0.9999186785714291, 0.999919571428571, 0.9999204404761917, 0.999921285714286, 0.9999221190476207, 0.9999229166666677, 0.9999236904761906, 0.9999244404761919, 0.9999251785714292, 0.9999259047619066, 0.99992661904762, 0.9999273095238098, 0.9999279761904776, 0.9999286190476199, 0.9999292142857144, 0.9999297619047631, 0.9999302619047626, 0.9999307142857159, 0.9999311309523821, 0.9999315119047625, 0.9999318690476203, 0.9999322023809533, 0.9999325119047625, 0.9999327976190487, 0.9999330714285721, 0.9999333452380965, 0.9999336190476199, 0.9999338928571435, 0.9999341785714299, 0.9999344880952388, 0.9999348214285728, 0.9999351904761914, 0.9999355952380957, 0.9999360357142871, 0.9999365238095245, 0.9999370595238096, 0.9999376428571439, 0.999938273809524, 0.99993892857143, 0.9999396071428579, 0.9999403095238095, 0.9999410357142869, 0.999941785714286, 0.9999425595238112, 0.9999433333333341, 0.9999441071428572, 0.9999448809523823, 0.9999456547619052, 0.9999464166666662, 0.9999471428571438, 0.9999478571428574, 0.999948559523811, 0.9999492500000008, 0.9999499285714286, 0.9999505952380964, 0.9999512500000005, 0.9999518928571446, 0.9999525238095247, 0.999953154761905, 0.999953785714287, 0.9999544166666673, 0.9999550476190474, 0.9999556785714295, 0.9999563095238096, 0.9999569523809537, 0.9999576071428579, 0.9999582738095238, 0.9999589523809534, 0.9999596309523814, 0.9999603214285712, 0.999960976190477, 0.9999615952380952, 0.9999621785714299, 0.9999627261904769, 0.999963238095238, 0.9999637142857153, 0.9999641547619051, 0.9999645714285725, 0.9999649642857149, 0.9999653333333336, 0.9999656785714295, 0.9999660000000006, 0.999966297619048, 0.9999665714285724, 0.999966821428572, 0.9999670595238105, 0.9999672857142864, 0.9999675000000006, 0.9999677142857151, 0.9999679285714294, 0.9999681666666679, 0.9999684285714293, 0.9999687142857149, 0.9999690238095249, 0.9999693571428576, 0.9999697142857144, 0.9999700952380961, 0.9999704761904766, 0.9999708571428582, 0.9999712380952387, 0.9999716190476191, 0.9999720000000009, 0.9999723928571432, 0.9999727976190476, 0.999973214285715, 0.9999736190476192, 0.9999740119047628, 0.9999743928571433, 0.999974761904762, 0.9999751190476197, 0.9999754642857146, 0.9999757976190485, 0.9999761190476197, 0.9999764285714287, 0.9999767261904771, 0.9999770119047623, 0.999977285714286, 0.9999775595238101, 0.9999778333333337, 0.9999781071428578, 0.9999783809523815, 0.9999786547619048, 0.9999789047619055, 0.9999791309523813, 0.9999793333333342, 0.9999795357142863, 0.9999797380952385, 0.9999799404761911, 0.9999801428571432, 0.9999803452380954, 0.9999805476190483, 0.9999807500000004, 0.999980952380953, 0.9999811547619052, 0.9999813571428575, 0.9999815595238102, 0.9999817619047623, 0.9999819642857144, 0.9999821666666673, 0.9999823690476194, 0.999982571428572, 0.9999827738095242, 0.9999829880952381, 0.9999832142857148, 0.9999834523809528, 0.9999836785714292, 0.9999838928571434, 0.9999840952380955, 0.9999842857142863, 0.9999844642857146, 0.9999846428571431, 0.9999848214285719, 0.9999850000000003, 0.9999851785714292, 0.9999853571428575, 0.999985535714286, 0.9999857142857148, 0.9999858928571432, 0.9999860714285721, 0.9999862500000004, 0.9999864285714288, 0.9999866071428577, 0.9999867857142861, 0.9999869642857144, 0.9999871428571433, 0.9999873333333336, 0.9999875357142862, 0.9999877500000002, 0.9999879761904763, 0.9999882142857148, 0.9999884404761907, 0.9999886547619055, 0.9999888571428576, 0.9999890476190478, 0.9999892261904767, 0.9999893928571433, 0.9999895476190476, 0.9999896904761909, 0.9999898214285717, 0.999989940476191, 0.9999900476190479, 0.9999901428571432, 0.9999902261904765, 0.999990297619048, 0.9999903571428573, 0.9999904047619051, 0.9999904404761908, 0.9999904642857148, 0.9999904761904767, 0.9999904761904767, 0.9999904761904767, 0.9999904761904767, 0.9999904880952385, 0.9999905119047623, 0.9999905476190479, 0.9999905952380956, 0.999990654761905, 0.9999907261904762, 0.9999908095238099, 0.9999909047619049, 0.9999910119047623, 0.9999911309523812, 0.9999912619047618, 0.9999914047619052, 0.9999915595238095, 0.9999917261904765, 0.9999919047619049, 0.9999920952380952, 0.9999922976190481, 0.999992511904762, 0.9999927380952379, 0.9999929761904764, 0.9999932023809522, 0.9999934166666671, 0.9999936190476192, 0.9999938095238095, 0.9999939880952383, 0.9999941547619048, 0.9999943095238094, 0.9999944523809524, 0.9999945833333334, 0.9999947023809526, 0.9999948095238097, 0.9999949047619047, 0.9999949880952383, 0.9999950595238095, 0.9999951190476192, 0.9999951666666667, 0.9999952023809525, 0.9999952261904763, 0.9999952380952382, 0.9999952380952382, 0.9999952380952382, 0.9999952380952382, 0.9999952380952382, 0.9999952380952382, 0.9999952380952382, 0.9999952380952382, 0.9999952380952382, 0.9999952380952382, 0.9999952500000001, 0.9999952738095238, 0.9999953095238097, 0.9999953571428571, 0.9999954166666666, 0.9999954880952381, 0.9999955714285714, 0.9999956666666667, 0.9999957738095239, 0.9999958928571425, 0.9999960238095239, 0.9999961666666665, 0.9999963214285715, 0.9999964880952381, 0.9999966666666664, 0.9999968571428572, 0.9999970595238094, 0.9999972738095233, 0.9999975, 0.9999977380952377, 0.9999979642857143, 0.9999981785714284, 0.9999983809523805, 0.9999985714285715, 0.9999987499999998, 0.9999989166666664, 0.9999990714285713, 0.999999214285714, 0.9999993452380951, 0.9999994642857141, 0.9999995714285712, 0.9999996666666665, 0.9999997499999999, 0.9999998214285714, 0.9999998809523808, 0.9999999285714283, 0.9999999642857141, 0.9999999880952378, 0.9999999999999998, 0.9999999999999998, 0.9999999999999998, 0.9999999999999998, 0.9999999999999998, 0.9999999999999998, 0.9999999999999998, 0.9999999999999998, 0.9999999999999998, 0.9999999999999998, 0.9999999999999998, 0.9999999999999998, 0.9999999999999998, 0.9999999999999998, 0.9999999999999998, 0.9999999999999998, 0.9999999999999998, 0.9999999999999998, 0.9999999999999998, 0.9999999999999998] + } +] \ No newline at end of file diff --git a/foretold/components/showcase/entries/samples/sample-measurements.json b/foretold/components/showcase/entries/samples/sample-measurements.json new file mode 100644 index 00000000..0b7add90 --- /dev/null +++ b/foretold/components/showcase/entries/samples/sample-measurements.json @@ -0,0 +1,14051 @@ +[ + { + "createdAt": "2019-10-11T13:55:35.723+00:00", + "xs": [ + -23.5844415721, + -21.9684425852, + -20.3524435983, + -18.7364446115, + -17.1204456246, + -15.5044466378, + -13.8884476509, + -12.2724486641, + -10.6564496772, + -9.04045069036, + -7.4244517035, + -5.80845271665, + -4.19245372979, + -2.57645474294, + -0.96045575608, + 0.655543230776, + 2.27154221763, + 3.88754120449, + 5.50354019134, + 7.1195391782, + 8.73553816505, + 10.3515371519, + 11.9675361388, + 13.5835351256, + 15.1995341125, + 16.8155330993, + 18.4315320862, + 20.047531073, + 21.6635300599, + 23.2795290468, + 24.8955280336, + 26.5115270205, + 28.1275260073, + 29.7435249942, + 31.359523981, + 32.9755229679, + 34.5915219547, + 36.2075209416, + 37.8235199285, + 39.4395189153, + 41.0555179022, + 42.671516889, + 44.2875158759, + 45.9035148627, + 47.5195138496, + 49.1355128364, + 50.7515118233, + 52.3675108101, + 53.983509797, + 55.5995087839, + 57.2155077707, + 58.8315067576, + 60.4475057444, + 62.0635047313, + 63.6795037181, + 65.295502705, + 66.9115016918, + 68.5275006787, + 70.1434996656, + 71.7594986524, + 73.3754976393, + 74.9914966261, + 76.607495613, + 78.2234945998, + 79.8394935867, + 81.4554925735, + 83.0714915604, + 84.6874905473, + 86.3034895341, + 87.919488521, + 89.5354875078, + 91.1514864947, + 92.7674854815, + 94.3834844684, + 95.9994834552, + 97.6154824421, + 99.231481429, + 100.847480416, + 102.463479403, + 104.07947839, + 105.695477376, + 107.311476363, + 108.92747535, + 110.543474337, + 112.159473324, + 113.775472311, + 115.391471298, + 117.007470284, + 118.623469271, + 120.239468258, + 121.855467245, + 123.471466232, + 125.087465219, + 126.703464206, + 128.319463192, + 129.935462179, + 131.551461166, + 133.167460153, + 134.78345914, + 136.399458127, + 138.015457113, + 139.6314561, + 141.247455087, + 142.863454074, + 144.479453061, + 146.095452048, + 147.711451035, + 149.327450021, + 150.943449008, + 152.559447995, + 154.175446982, + 155.791445969, + 157.407444956, + 159.023443943, + 160.639442929, + 162.255441916, + 163.871440903, + 165.48743989, + 167.103438877, + 168.719437864, + 170.335436851, + 171.951435837, + 173.567434824, + 175.183433811, + 176.799432798, + 178.415431785, + 180.031430772, + 181.647429759, + 183.263428745, + 184.879427732, + 186.495426719, + 188.111425706, + 189.727424693, + 191.34342368, + 192.959422667, + 194.575421653, + 196.19142064, + 197.807419627, + 199.423418614, + 201.039417601, + 202.655416588, + 204.271415575, + 205.887414561, + 207.503413548, + 209.119412535, + 210.735411522, + 212.351410509, + 213.967409496, + 215.583408483, + 217.199407469, + 218.815406456, + 220.431405443, + 222.04740443, + 223.663403417, + 225.279402404, + 226.895401391, + 228.511400377, + 230.127399364, + 231.743398351, + 233.359397338, + 234.975396325, + 236.591395312, + 238.207394299, + 239.823393285, + 241.439392272, + 243.055391259, + 244.671390246, + 246.287389233, + 247.90338822, + 249.519387207, + 251.135386193, + 252.75138518, + 254.367384167, + 255.983383154, + 257.599382141, + 259.215381128, + 260.831380115, + 262.447379101, + 264.063378088, + 265.679377075, + 267.295376062, + 268.911375049, + 270.527374036, + 272.143373022, + 273.759372009, + 275.375370996, + 276.991369983, + 278.60736897, + 280.223367957, + 281.839366944, + 283.45536593, + 285.071364917, + 286.687363904, + 288.303362891, + 289.919361878, + 291.535360865, + 293.151359852, + 294.767358838, + 296.383357825, + 297.999356812, + 299.615355799, + 301.231354786, + 302.847353773, + 304.46335276, + 306.079351746, + 307.695350733, + 309.31134972, + 310.927348707, + 312.543347694, + 314.159346681, + 315.775345668, + 317.391344654, + 319.007343641, + 320.623342628, + 322.239341615, + 323.855340602, + 325.471339589, + 327.087338576, + 328.703337562, + 330.319336549, + 331.935335536, + 333.551334523, + 335.16733351, + 336.783332497, + 338.399331484, + 340.01533047, + 341.631329457, + 343.247328444, + 344.863327431, + 346.479326418, + 348.095325405, + 349.711324392, + 351.327323378, + 352.943322365, + 354.559321352, + 356.175320339, + 357.791319326, + 359.407318313, + 361.0233173, + 362.639316286, + 364.255315273, + 365.87131426, + 367.487313247, + 369.103312234, + 370.719311221, + 372.335310208, + 373.951309194, + 375.567308181, + 377.183307168, + 378.799306155, + 380.415305142, + 382.031304129, + 383.647303116, + 385.263302102, + 386.879301089, + 388.495300076, + 390.111299063, + 391.72729805, + 393.343297037, + 394.959296024, + 396.57529501, + 398.191293997, + 399.807292984, + 401.423291971, + 403.039290958, + 404.655289945, + 406.271288931, + 407.887287918, + 409.503286905, + 411.119285892, + 412.735284879, + 414.351283866, + 415.967282853, + 417.583281839, + 419.199280826, + 420.815279813, + 422.4312788, + 424.047277787, + 425.663276774, + 427.279275761, + 428.895274747, + 430.511273734, + 432.127272721, + 433.743271708, + 435.359270695, + 436.975269682, + 438.591268669, + 440.207267655, + 441.823266642, + 443.439265629, + 445.055264616, + 446.671263603, + 448.28726259, + 449.903261577, + 451.519260563, + 453.13525955, + 454.751258537, + 456.367257524, + 457.983256511, + 459.599255498, + 461.215254485, + 462.831253471, + 464.447252458, + 466.063251445, + 467.679250432, + 469.295249419, + 470.911248406, + 472.527247393, + 474.143246379, + 475.759245366, + 477.375244353, + 478.99124334, + 480.607242327, + 482.223241314, + 483.839240301, + 485.455239287, + 487.071238274, + 488.687237261, + 490.303236248, + 491.919235235, + 493.535234222, + 495.151233209, + 496.767232195, + 498.383231182, + 499.999230169, + 501.615229156, + 503.231228143, + 504.84722713, + 506.463226117, + 508.079225103, + 509.69522409, + 511.311223077, + 512.927222064, + 514.543221051, + 516.159220038, + 517.775219025, + 519.391218011, + 521.007216998, + 522.623215985, + 524.239214972, + 525.855213959, + 527.471212946, + 529.087211933, + 530.703210919, + 532.319209906, + 533.935208893, + 535.55120788, + 537.167206867, + 538.783205854, + 540.39920484, + 542.015203827, + 543.631202814, + 545.247201801, + 546.863200788, + 548.479199775, + 550.095198762, + 551.711197748, + 553.327196735, + 554.943195722, + 556.559194709, + 558.175193696, + 559.791192683, + 561.40719167, + 563.023190656, + 564.639189643, + 566.25518863, + 567.871187617, + 569.487186604, + 571.103185591, + 572.719184578, + 574.335183564, + 575.951182551, + 577.567181538, + 579.183180525, + 580.799179512, + 582.415178499, + 584.031177486, + 585.647176472, + 587.263175459, + 588.879174446, + 590.495173433, + 592.11117242, + 593.727171407, + 595.343170394, + 596.95916938, + 598.575168367, + 600.191167354, + 601.807166341, + 603.423165328, + 605.039164315, + 606.655163302, + 608.271162288, + 609.887161275, + 611.503160262, + 613.119159249, + 614.735158236, + 616.351157223, + 617.96715621, + 619.583155196, + 621.199154183, + 622.81515317, + 624.431152157, + 626.047151144, + 627.663150131, + 629.279149118, + 630.895148104, + 632.511147091, + 634.127146078, + 635.743145065, + 637.359144052, + 638.975143039, + 640.591142026, + 642.207141012, + 643.823139999, + 645.439138986, + 647.055137973, + 648.67113696, + 650.287135947, + 651.903134934, + 653.51913392, + 655.135132907, + 656.751131894, + 658.367130881, + 659.983129868, + 661.599128855, + 663.215127842, + 664.831126828, + 666.447125815, + 668.063124802, + 669.679123789, + 671.295122776, + 672.911121763, + 674.527120749, + 676.143119736, + 677.759118723, + 679.37511771, + 680.991116697, + 682.607115684, + 684.223114671, + 685.839113657, + 687.455112644, + 689.071111631, + 690.687110618, + 692.303109605, + 693.919108592, + 695.535107579, + 697.151106565, + 698.767105552, + 700.383104539, + 701.999103526, + 703.615102513, + 705.2311015, + 706.847100487, + 708.463099473, + 710.07909846, + 711.695097447, + 713.311096434, + 714.927095421, + 716.543094408, + 718.159093395, + 719.775092381, + 721.391091368, + 723.007090355, + 724.623089342, + 726.239088329, + 727.855087316, + 729.471086303, + 731.087085289, + 732.703084276, + 734.319083263, + 735.93508225, + 737.551081237, + 739.167080224, + 740.783079211, + 742.399078197, + 744.015077184, + 745.631076171, + 747.247075158, + 748.863074145, + 750.479073132, + 752.095072119, + 753.711071105, + 755.327070092, + 756.943069079, + 758.559068066, + 760.175067053, + 761.79106604, + 763.407065027, + 765.023064013, + 766.639063, + 768.255061987, + 769.871060974, + 771.487059961, + 773.103058948, + 774.719057935, + 776.335056921, + 777.951055908, + 779.567054895, + 781.183053882, + 782.799052869, + 784.415051856, + 786.031050843, + 787.647049829, + 789.263048816, + 790.879047803, + 792.49504679, + 794.111045777, + 795.727044764, + 797.343043751, + 798.959042737, + 800.575041724, + 802.191040711, + 803.807039698, + 805.423038685, + 807.039037672, + 808.655036658, + 810.271035645, + 811.887034632, + 813.503033619, + 815.119032606, + 816.735031593, + 818.35103058, + 819.967029566, + 821.583028553, + 823.19902754, + 824.815026527, + 826.431025514, + 828.047024501, + 829.663023488, + 831.279022474, + 832.895021461, + 834.511020448, + 836.127019435, + 837.743018422, + 839.359017409, + 840.975016396, + 842.591015382, + 844.207014369, + 845.823013356, + 847.439012343, + 849.05501133, + 850.671010317, + 852.287009304, + 853.90300829, + 855.519007277, + 857.135006264, + 858.751005251, + 860.367004238, + 861.983003225, + 863.599002212, + 865.215001198, + 866.831000185, + 868.446999172, + 870.062998159, + 871.678997146, + 873.294996133, + 874.91099512, + 876.526994106, + 878.142993093, + 879.75899208, + 881.374991067, + 882.990990054, + 884.606989041, + 886.222988028, + 887.838987014, + 889.454986001, + 891.070984988, + 892.686983975, + 894.302982962, + 895.918981949, + 897.534980936, + 899.150979922, + 900.766978909, + 902.382977896, + 903.998976883, + 905.61497587, + 907.230974857, + 908.846973844, + 910.46297283, + 912.078971817, + 913.694970804, + 915.310969791, + 916.926968778, + 918.542967765, + 920.158966752, + 921.774965738, + 923.390964725, + 925.006963712, + 926.622962699, + 928.238961686, + 929.854960673, + 931.47095966, + 933.086958646, + 934.702957633, + 936.31895662, + 937.934955607, + 939.550954594, + 941.166953581, + 942.782952567, + 944.398951554, + 946.014950541, + 947.630949528, + 949.246948515, + 950.862947502, + 952.478946489, + 954.094945475, + 955.710944462, + 957.326943449, + 958.942942436, + 960.558941423, + 962.17494041, + 963.790939397, + 965.406938383, + 967.02293737, + 968.638936357, + 970.254935344, + 971.870934331, + 973.486933318, + 975.102932305, + 976.718931291, + 978.334930278, + 979.950929265, + 981.566928252, + 983.182927239, + 984.798926226, + 986.414925213, + 988.030924199, + 989.646923186, + 991.262922173, + 992.87892116, + 994.494920147, + 996.110919134, + 997.726918121, + 999.342917107, + 1000.95891609, + 1002.57491508, + 1004.19091407, + 1005.80691305, + 1007.42291204, + 1009.03891103, + 1010.65491002, + 1012.270909, + 1013.88690799, + 1015.50290698, + 1017.11890596, + 1018.73490495, + 1020.35090394, + 1021.96690292, + 1023.58290191, + 1025.1989009, + 1026.81489988, + 1028.43089887, + 1030.04689786, + 1031.66289684, + 1033.27889583, + 1034.89489482, + 1036.51089381, + 1038.12689279, + 1039.74289178, + 1041.35889077, + 1042.97488975, + 1044.59088874, + 1046.20688773, + 1047.82288671, + 1049.4388857, + 1051.05488469, + 1052.67088367, + 1054.28688266, + 1055.90288165, + 1057.51888063, + 1059.13487962, + 1060.75087861, + 1062.36687759, + 1063.98287658, + 1065.59887557, + 1067.21487456, + 1068.83087354, + 1070.44687253, + 1072.06287152, + 1073.6788705, + 1075.29486949, + 1076.91086848, + 1078.52686746, + 1080.14286645, + 1081.75886544, + 1083.37486442, + 1084.99086341, + 1086.6068624, + 1088.22286138, + 1089.83886037, + 1091.45485936, + 1093.07085835, + 1094.68685733, + 1096.30285632, + 1097.91885531, + 1099.53485429, + 1101.15085328, + 1102.76685227, + 1104.38285125, + 1105.99885024, + 1107.61484923, + 1109.23084821, + 1110.8468472, + 1112.46284619, + 1114.07884517, + 1115.69484416, + 1117.31084315, + 1118.92684213, + 1120.54284112, + 1122.15884011, + 1123.7748391, + 1125.39083808, + 1127.00683707, + 1128.62283606, + 1130.23883504, + 1131.85483403, + 1133.47083302, + 1135.086832, + 1136.70283099, + 1138.31882998, + 1139.93482896, + 1141.55082795, + 1143.16682694, + 1144.78282592, + 1146.39882491, + 1148.0148239, + 1149.63082288, + 1151.24682187, + 1152.86282086, + 1154.47881985, + 1156.09481883, + 1157.71081782, + 1159.32681681, + 1160.94281579, + 1162.55881478, + 1164.17481377, + 1165.79081275, + 1167.40681174, + 1169.02281073, + 1170.63880971, + 1172.2548087, + 1173.87080769, + 1175.48680667, + 1177.10280566, + 1178.71880465, + 1180.33480364, + 1181.95080262, + 1183.56680161, + 1185.1828006, + 1186.79879958, + 1188.41479857, + 1190.03079756, + 1191.64679654, + 1193.26279553, + 1194.87879452, + 1196.4947935, + 1198.11079249, + 1199.72679148, + 1201.34279046, + 1202.95878945, + 1204.57478844, + 1206.19078742, + 1207.80678641, + 1209.4227854, + 1211.03878439, + 1212.65478337, + 1214.27078236, + 1215.88678135, + 1217.50278033, + 1219.11877932, + 1220.73477831, + 1222.35077729, + 1223.96677628, + 1225.58277527, + 1227.19877425, + 1228.81477324, + 1230.43077223, + 1232.04677121, + 1233.6627702, + 1235.27876919, + 1236.89476818, + 1238.51076716, + 1240.12676615, + 1241.74276514, + 1243.35876412, + 1244.97476311, + 1246.5907621, + 1248.20676108, + 1249.82276007, + 1251.43875906, + 1253.05475804, + 1254.67075703, + 1256.28675602, + 1257.902755, + 1259.51875399, + 1261.13475298, + 1262.75075196, + 1264.36675095, + 1265.98274994, + 1267.59874893, + 1269.21474791, + 1270.8307469, + 1272.44674589, + 1274.06274487, + 1275.67874386, + 1277.29474285, + 1278.91074183, + 1280.52674082, + 1282.14273981, + 1283.75873879, + 1285.37473778, + 1286.99073677, + 1288.60673575, + 1290.22273474, + 1291.83873373, + 1293.45473272, + 1295.0707317, + 1296.68673069, + 1298.30272968, + 1299.91872866, + 1301.53472765, + 1303.15072664, + 1304.76672562, + 1306.38272461, + 1307.9987236, + 1309.61472258, + 1311.23072157, + 1312.84672056, + 1314.46271954, + 1316.07871853, + 1317.69471752, + 1319.3107165, + 1320.92671549, + 1322.54271448, + 1324.15871347, + 1325.77471245, + 1327.39071144, + 1329.00671043, + 1330.62270941, + 1332.2387084, + 1333.85470739, + 1335.47070637, + 1337.08670536, + 1338.70270435, + 1340.31870333, + 1341.93470232, + 1343.55070131, + 1345.16670029, + 1346.78269928, + 1348.39869827, + 1350.01469726, + 1351.63069624, + 1353.24669523, + 1354.86269422, + 1356.4786932, + 1358.09469219, + 1359.71069118, + 1361.32669016, + 1362.94268915, + 1364.55868814, + 1366.17468712, + 1367.79068611, + 1369.4066851, + 1371.02268408, + 1372.63868307, + 1374.25468206, + 1375.87068104, + 1377.48668003, + 1379.10267902, + 1380.71867801, + 1382.33467699, + 1383.95067598, + 1385.56667497, + 1387.18267395, + 1388.79867294, + 1390.41467193, + 1392.03067091, + 1393.6466699, + 1395.26266889, + 1396.87866787, + 1398.49466686, + 1400.11066585, + 1401.72666483, + 1403.34266382, + 1404.95866281, + 1406.5746618, + 1408.19066078, + 1409.80665977, + 1411.42265876, + 1413.03865774, + 1414.65465673, + 1416.27065572, + 1417.8866547, + 1419.50265369, + 1421.11865268, + 1422.73465166, + 1424.35065065, + 1425.96664964, + 1427.58264862, + 1429.19864761, + 1430.8146466, + 1432.43064558, + 1434.04664457, + 1435.66264356, + 1437.27864255, + 1438.89464153, + 1440.51064052, + 1442.12663951, + 1443.74263849, + 1445.35863748, + 1446.97463647, + 1448.59063545, + 1450.20663444, + 1451.82263343, + 1453.43863241, + 1455.0546314, + 1456.67063039, + 1458.28662937, + 1459.90262836, + 1461.51862735, + 1463.13462633, + 1464.75062532, + 1466.36662431, + 1467.9826233, + 1469.59862228, + 1471.21462127, + 1472.83062026, + 1474.44661924, + 1476.06261823, + 1477.67861722, + 1479.2946162, + 1480.91061519, + 1482.52661418, + 1484.14261316, + 1485.75861215, + 1487.37461114, + 1488.99061012, + 1490.60660911, + 1492.2226081, + 1493.83860709, + 1495.45460607, + 1497.07060506, + 1498.68660405, + 1500.30260303, + 1501.91860202, + 1503.53460101, + 1505.15059999, + 1506.76659898, + 1508.38259797, + 1509.99859695, + 1511.61459594, + 1513.23059493, + 1514.84659391, + 1516.4625929, + 1518.07859189, + 1519.69459087, + 1521.31058986, + 1522.92658885, + 1524.54258784, + 1526.15858682, + 1527.77458581, + 1529.3905848, + 1531.00658378, + 1532.62258277, + 1534.23858176, + 1535.85458074, + 1537.47057973, + 1539.08657872, + 1540.7025777, + 1542.31857669, + 1543.93457568, + 1545.55057466, + 1547.16657365, + 1548.78257264, + 1550.39857163, + 1552.01457061, + 1553.6305696, + 1555.24656859, + 1556.86256757, + 1558.47856656, + 1560.09456555, + 1561.71056453, + 1563.32656352, + 1564.94256251, + 1566.55856149, + 1568.17456048, + 1569.79055947, + 1571.40655845, + 1573.02255744, + 1574.63855643, + 1576.25455541, + 1577.8705544, + 1579.48655339, + 1581.10255238, + 1582.71855136, + 1584.33455035, + 1585.95054934, + 1587.56654832, + 1589.18254731, + 1590.7985463 + ], + "ys": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0000000833333333333334, + 0.0000002500000000000002, + 0.0000006666666666666672, + 0.0000015000000000000013, + 0.0000030000000000000026, + 0.000006000000000000005, + 0.000010916666666666677, + 0.000018500000000000016, + 0.000029666666666666692, + 0.00004541666666666671, + 0.00006650000000000006, + 0.00009408333333333342, + 0.0001295000000000001, + 0.0001749166666666668, + 0.00023233333333333352, + 0.00030358333333333355, + 0.000391416666666667, + 0.000498166666666667, + 0.0006262500000000005, + 0.0007793333333333339, + 0.0009610000000000007, + 0.0011749166666666674, + 0.0014259166666666676, + 0.0017191666666666679, + 0.002060583333333335, + 0.0024561666666666686, + 0.002912250000000002, + 0.0034351666666666693, + 0.004032083333333336, + 0.004709833333333337, + 0.005476583333333338, + 0.006339333333333338, + 0.007305416666666673, + 0.00838258333333334, + 0.009578333333333341, + 0.010901500000000008, + 0.012359666666666677, + 0.013963750000000011, + 0.015722583333333345, + 0.017644833333333346, + 0.019737583333333347, + 0.022007666666666682, + 0.02446183333333335, + 0.02710683333333335, + 0.02994725000000002, + 0.032987333333333355, + 0.03623125000000002, + 0.039683333333333355, + 0.043347166666666694, + 0.047225916666666694, + 0.05132025000000003, + 0.055633416666666706, + 0.06016658333333338, + 0.06491975000000005, + 0.06989266666666673, + 0.0750850833333334, + 0.0804948333333334, + 0.08611641666666674, + 0.09194783333333341, + 0.09798158333333341, + 0.10421500000000009, + 0.11064808333333342, + 0.11727516666666676, + 0.1240902500000001, + 0.1310882500000001, + 0.1382625000000001, + 0.14560841666666677, + 0.1531207500000001, + 0.1607904166666668, + 0.16861375000000015, + 0.1765835833333335, + 0.18469033333333348, + 0.1929273333333335, + 0.20128666666666684, + 0.20976208333333352, + 0.21834316666666687, + 0.22702583333333354, + 0.23580258333333354, + 0.2446684166666669, + 0.2536195000000002, + 0.2626489166666669, + 0.27174425000000024, + 0.2808995833333336, + 0.2901088333333336, + 0.2993656666666669, + 0.3086660000000003, + 0.31800291666666697, + 0.3273680000000003, + 0.3367575000000003, + 0.346156666666667, + 0.35556275000000037, + 0.36497016666666704, + 0.37437341666666707, + 0.3837695833333338, + 0.3931525833333338, + 0.40251791666666714, + 0.41185558333333383, + 0.4211600833333338, + 0.4304191666666672, + 0.4396285833333339, + 0.4487819166666672, + 0.4578766666666672, + 0.46690875000000054, + 0.47587250000000053, + 0.48476233333333385, + 0.4935726666666672, + 0.5022993333333339, + 0.5109401666666672, + 0.5194900833333339, + 0.5279535000000006, + 0.5363271666666674, + 0.544609833333334, + 0.5527957500000007, + 0.5608780000000007, + 0.568853833333334, + 0.5767239166666673, + 0.5844885000000006, + 0.5921495000000007, + 0.5997099166666673, + 0.6071702500000006, + 0.6145326666666673, + 0.6217969166666673, + 0.6289600000000006, + 0.6360220000000006, + 0.6429864166666673, + 0.6498533333333341, + 0.6566219166666674, + 0.6632885000000007, + 0.6698557500000007, + 0.6763215000000008, + 0.6826849166666674, + 0.6889475000000007, + 0.695115083333334, + 0.7011899166666674, + 0.7071745000000007, + 0.7130679166666674, + 0.7188720000000007, + 0.7245845000000007, + 0.7302056666666674, + 0.735730333333334, + 0.741155833333334, + 0.746480833333334, + 0.7517075833333341, + 0.7568385000000007, + 0.7618722500000007, + 0.7668111666666674, + 0.7716555000000007, + 0.7764110833333341, + 0.7810760000000008, + 0.7856522500000007, + 0.790139083333334, + 0.7945374166666673, + 0.798847083333334, + 0.803070083333334, + 0.8072050000000006, + 0.8112534166666673, + 0.8152169166666673, + 0.8190975833333339, + 0.8228973333333339, + 0.826623583333334, + 0.8302779166666673, + 0.8338652500000007, + 0.837388083333334, + 0.8408458333333341, + 0.8442392500000008, + 0.8475662500000007, + 0.8508289166666674, + 0.8540266666666674, + 0.8571631666666674, + 0.8602371666666674, + 0.8632508333333341, + 0.8662045000000007, + 0.8690975833333341, + 0.8719330833333341, + 0.8747132500000008, + 0.8774388333333341, + 0.880108333333334, + 0.882723083333334, + 0.8852837500000007, + 0.8877874166666674, + 0.8902370000000007, + 0.8926316666666674, + 0.8949721666666673, + 0.897261333333334, + 0.8995014166666674, + 0.9016947500000008, + 0.9038427500000008, + 0.9059476666666675, + 0.9080106666666675, + 0.9100355833333342, + 0.9120235833333342, + 0.9139738333333343, + 0.9158877500000009, + 0.9177631666666676, + 0.9196021666666676, + 0.9214057500000009, + 0.9231770000000009, + 0.9249173333333343, + 0.9266266666666676, + 0.9283079166666676, + 0.9299603333333343, + 0.9315837500000009, + 0.9331775833333342, + 0.9347405000000009, + 0.9362710000000009, + 0.9377719166666675, + 0.9392442500000008, + 0.9406862500000007, + 0.9420960833333341, + 0.9434743333333341, + 0.9448213333333341, + 0.9461401666666674, + 0.9474315000000008, + 0.9486974166666674, + 0.949935583333334, + 0.9511467500000007, + 0.9523300000000007, + 0.953484833333334, + 0.9546124166666673, + 0.9557112500000007, + 0.9567824166666673, + 0.957827083333334, + 0.9588465000000007, + 0.9598420833333341, + 0.9608151666666674, + 0.9617642500000008, + 0.9626890000000008, + 0.9635903333333341, + 0.9644703333333341, + 0.9653267500000008, + 0.9661605000000008, + 0.9669697500000007, + 0.967754083333334, + 0.968513333333334, + 0.9692502500000006, + 0.9699654166666674, + 0.9706597500000007, + 0.971333833333334, + 0.971988583333334, + 0.9726259166666674, + 0.9732460000000007, + 0.973849333333334, + 0.974436083333334, + 0.9750065000000007, + 0.9755614166666673, + 0.976101083333334, + 0.976626583333334, + 0.9771382500000007, + 0.977636083333334, + 0.9781218333333339, + 0.9785957500000005, + 0.9790599166666673, + 0.9795152500000006, + 0.9799620833333339, + 0.9804002500000005, + 0.9808287500000005, + 0.9812479166666671, + 0.981658166666667, + 0.9820595000000004, + 0.9824509166666671, + 0.9828330833333337, + 0.9832060833333337, + 0.9835702500000003, + 0.9839256666666669, + 0.9842732500000002, + 0.9846138333333335, + 0.9849473333333335, + 0.9852750833333335, + 0.9855970000000002, + 0.9859135833333335, + 0.9862245833333334, + 0.9865294166666667, + 0.9868285, + 0.9871218333333334, + 0.9874087500000001, + 0.9876896666666667, + 0.9879646666666667, + 0.9882334166666668, + 0.9884955833333334, + 0.9887524166666668, + 0.9890037500000002, + 0.9892494166666669, + 0.9894894166666669, + 0.9897243333333335, + 0.9899532500000002, + 0.9901760833333335, + 0.9903925000000001, + 0.9906024166666668, + 0.9908062500000001, + 0.9910036666666667, + 0.9911952500000001, + 0.9913810833333334, + 0.9915608333333334, + 0.9917349166666668, + 0.9919044166666668, + 0.9920698333333335, + 0.9922315000000002, + 0.9923899166666669, + 0.9925455000000002, + 0.9926981666666669, + 0.9928480000000002, + 0.9929953333333335, + 0.9931404166666667, + 0.9932829166666668, + 0.9934227500000001, + 0.9935598333333334, + 0.9936944166666668, + 0.9938260833333334, + 0.9939551666666667, + 0.9940817500000001, + 0.9942057500000001, + 0.9943273333333335, + 0.9944466666666668, + 0.9945640000000001, + 0.9946787500000001, + 0.99479125, + 0.99490125, + 0.9950089999999999, + 0.9951145833333332, + 0.9952173333333333, + 0.9953176666666667, + 0.9954155, + 0.9955106666666667, + 0.9956034166666666, + 0.9956943333333332, + 0.9957837499999999, + 0.9958719999999999, + 0.9959590833333332, + 0.9960442499999999, + 0.9961276666666665, + 0.9962094166666665, + 0.9962895833333332, + 0.9963684166666665, + 0.9964454999999999, + 0.9965213333333331, + 0.9965955833333331, + 0.9966681666666665, + 0.9967385833333331, + 0.9968067499999997, + 0.9968732499999997, + 0.9969374999999997, + 0.9969999166666663, + 0.9970606666666663, + 0.9971194999999996, + 0.9971764999999996, + 0.9972316666666662, + 0.9972849166666662, + 0.9973364166666662, + 0.9973867499999995, + 0.9974360833333329, + 0.9974844166666662, + 0.9975317499999995, + 0.9975777499999995, + 0.9976228333333328, + 0.9976667499999995, + 0.9977096666666662, + 0.9977517499999995, + 0.9977934166666661, + 0.9978347499999994, + 0.9978758333333327, + 0.9979172499999994, + 0.9979587499999995, + 0.9980002499999995, + 0.9980419999999994, + 0.998083666666666, + 0.9981253333333326, + 0.9981668333333327, + 0.9982082499999994, + 0.9982493333333327, + 0.998289916666666, + 0.998329916666666, + 0.9983691666666661, + 0.9984082499999994, + 0.9984468333333327, + 0.9984849999999994, + 0.9985226666666661, + 0.9985599999999994, + 0.9985968333333328, + 0.9986331666666661, + 0.9986689166666661, + 0.9987036666666661, + 0.998737416666666, + 0.9987702499999994, + 0.9988022499999994, + 0.9988335833333327, + 0.9988640833333328, + 0.9988939999999994, + 0.9989233333333327, + 0.9989522499999994, + 0.9989808333333328, + 0.9990090833333327, + 0.9990371666666661, + 0.9990644166666661, + 0.9990909166666662, + 0.9991165833333329, + 0.9991414999999996, + 0.9991654999999996, + 0.9991887499999996, + 0.9992111666666663, + 0.9992326666666663, + 0.999253333333333, + 0.9992732499999997, + 0.9992924166666663, + 0.9993106666666663, + 0.9993279999999997, + 0.9993444999999996, + 0.9993599999999996, + 0.999374583333333, + 0.999388333333333, + 0.9994012499999997, + 0.9994134166666664, + 0.9994248333333331, + 0.9994359166666664, + 0.9994467499999997, + 0.9994574166666664, + 0.9994678333333331, + 0.9994781666666664, + 0.9994882499999997, + 0.9994981666666664, + 0.9995079999999997, + 0.9995178333333331, + 0.9995277499999997, + 0.9995377499999997, + 0.9995479166666663, + 0.9995581666666663, + 0.999568583333333, + 0.9995792499999997, + 0.9995899999999996, + 0.9996006666666664, + 0.9996112499999997, + 0.9996216666666664, + 0.9996319166666664, + 0.999641833333333, + 0.9996514166666663, + 0.9996606666666663, + 0.9996696666666663, + 0.9996782499999997, + 0.9996864999999997, + 0.9996944166666664, + 0.9997019999999996, + 0.9997092499999997, + 0.9997159999999996, + 0.9997222499999996, + 0.999728083333333, + 0.999733583333333, + 0.999738583333333, + 0.9997431666666663, + 0.9997474166666663, + 0.9997514166666663, + 0.9997551666666663, + 0.9997587499999996, + 0.9997621666666663, + 0.9997654999999996, + 0.9997687499999997, + 0.9997719999999997, + 0.9997752499999997, + 0.9997786666666664, + 0.9997822499999997, + 0.9997859999999996, + 0.9997899166666663, + 0.9997939999999996, + 0.9997983333333329, + 0.9998029166666662, + 0.9998075833333329, + 0.9998123333333329, + 0.9998172499999995, + 0.9998221666666662, + 0.9998270833333329, + 0.9998319999999996, + 0.9998369166666663, + 0.999841833333333, + 0.9998467499999997, + 0.9998516666666664, + 0.999856583333333, + 0.999861333333333, + 0.9998659166666664, + 0.9998701666666664, + 0.999874083333333, + 0.9998776666666663, + 0.9998809166666663, + 0.999883833333333, + 0.9998864166666663, + 0.9998886666666663, + 0.9998906666666663, + 0.9998924166666663, + 0.9998939166666663, + 0.9998952499999996, + 0.9998964166666662, + 0.9998974166666662, + 0.9998982499999995, + 0.9998989166666662, + 0.9998994166666662, + 0.9998997499999995, + 0.9998999166666662, + 0.9998999999999996, + 0.9998999999999996, + 0.9998999999999996, + 0.9998999999999996, + 0.9998999999999996, + 0.9998999999999996, + 0.9998999999999996, + 0.9998999999999996, + 0.9998999999999996, + 0.9998999999999996, + 0.9998999999999996, + 0.9998999999999996, + 0.9998999999999996, + 0.9998999999999996, + 0.9998999999999996, + 0.9999000833333329, + 0.9999002499999996, + 0.9999004999999996, + 0.999900833333333, + 0.9999012499999996, + 0.9999017499999996, + 0.9999023333333329, + 0.9999029999999995, + 0.9999037499999995, + 0.9999045833333329, + 0.9999054999999996, + 0.9999064999999996, + 0.999907583333333, + 0.9999087499999996, + 0.9999099999999995, + 0.9999113333333328, + 0.9999127499999995, + 0.9999142499999994, + 0.9999158333333328, + 0.9999174999999995, + 0.9999190833333328, + 0.9999205833333328, + 0.9999219999999994, + 0.9999233333333327, + 0.9999245833333327, + 0.9999257499999993, + 0.9999268333333327, + 0.9999278333333327, + 0.9999287499999994, + 0.9999295833333327, + 0.9999303333333327, + 0.9999309999999993, + 0.9999315833333327, + 0.9999320833333326, + 0.9999325833333326, + 0.9999330833333325, + 0.9999335833333325, + 0.9999340833333324, + 0.9999345833333324, + 0.9999350833333324, + 0.9999356666666657, + 0.9999363333333323, + 0.9999370833333323, + 0.9999379166666656, + 0.9999388333333323, + 0.9999398333333324, + 0.9999409166666657, + 0.9999420833333323, + 0.9999433333333323, + 0.9999446666666656, + 0.9999460833333322, + 0.9999475833333322, + 0.9999491666666656, + 0.9999508333333322, + 0.9999524166666656, + 0.9999539166666656, + 0.9999553333333322, + 0.9999566666666655, + 0.9999579166666654, + 0.999959083333332, + 0.9999601666666654, + 0.9999611666666655, + 0.9999620833333321, + 0.9999629166666655, + 0.9999636666666655, + 0.9999643333333321, + 0.9999649166666654, + 0.9999654166666654, + 0.999965833333332, + 0.9999661666666653, + 0.9999664166666653, + 0.999966583333332, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999666666666653, + 0.9999667499999987, + 0.9999669166666654, + 0.9999671666666654, + 0.9999674999999987, + 0.9999679166666653, + 0.9999684166666652, + 0.9999689999999986, + 0.9999696666666652, + 0.9999704166666652, + 0.9999712499999985, + 0.9999721666666652, + 0.9999731666666652, + 0.9999742499999986, + 0.9999754166666652, + 0.9999766666666652, + 0.9999779999999985, + 0.9999794166666651, + 0.9999809166666651, + 0.9999824999999984, + 0.9999841666666651, + 0.9999857499999985, + 0.9999872499999984, + 0.9999886666666651, + 0.9999899999999984, + 0.9999912499999983, + 0.9999924166666649, + 0.9999934999999983, + 0.9999944999999983, + 0.999995416666665, + 0.9999962499999984, + 0.9999969999999984, + 0.999997666666665, + 0.9999982499999983, + 0.9999987499999983, + 0.9999991666666649, + 0.9999994999999982, + 0.9999997499999982, + 0.9999999166666649, + 0.9999999999999982, + 0.9999999999999982, + 0.9999999999999982, + 0.9999999999999982, + 0.9999999999999982, + 0.9999999999999982, + 0.9999999999999982, + 0.9999999999999982, + 0.9999999999999982, + 0.9999999999999982, + 0.9999999999999982, + 0.9999999999999982, + 0.9999999999999982, + 0.9999999999999982, + 0.9999999999999982, + 0.9999999999999982, + 0.9999999999999982, + 0.9999999999999982, + 0.9999999999999982, + 0.9999999999999982 + ] + }, + { + "createdAt": "2019-10-24T09:13:02.642+00:00", + "xs": [ + -35.9288300676, + -34.9585601646, + -33.9882902617, + -33.0180203587, + -32.0477504557, + -31.0774805528, + -30.1072106498, + -29.1369407468, + -28.1666708439, + -27.1964009409, + -26.2261310379, + -25.2558611349, + -24.285591232, + -23.315321329, + -22.345051426, + -21.3747815231, + -20.4045116201, + -19.4342417171, + -18.4639718142, + -17.4937019112, + -16.5234320082, + -15.5531621053, + -14.5828922023, + -13.6126222993, + -12.6423523964, + -11.6720824934, + -10.7018125904, + -9.73154268746, + -8.76127278449, + -7.79100288153, + -6.82073297856, + -5.85046307559, + -4.88019317262, + -3.90992326965, + -2.93965336669, + -1.96938346372, + -0.99911356075, + -0.0288436577817, + 0.941426245186, + 1.91169614815, + 2.88196605112, + 3.85223595409, + 4.82250585706, + 5.79277576003, + 6.76304566299, + 7.73331556596, + 8.70358546893, + 9.6738553719, + 10.6441252749, + 11.6143951778, + 12.5846650808, + 13.5549349838, + 14.5252048867, + 15.4954747897, + 16.4657446927, + 17.4360145956, + 18.4062844986, + 19.3765544016, + 20.3468243045, + 21.3170942075, + 22.2873641105, + 23.2576340134, + 24.2279039164, + 25.1981738194, + 26.1684437224, + 27.1387136253, + 28.1089835283, + 29.0792534313, + 30.0495233342, + 31.0197932372, + 31.9900631402, + 32.9603330431, + 33.9306029461, + 34.9008728491, + 35.871142752, + 36.841412655, + 37.811682558, + 38.7819524609, + 39.7522223639, + 40.7224922669, + 41.6927621698, + 42.6630320728, + 43.6333019758, + 44.6035718787, + 45.5738417817, + 46.5441116847, + 47.5143815876, + 48.4846514906, + 49.4549213936, + 50.4251912966, + 51.3954611995, + 52.3657311025, + 53.3360010055, + 54.3062709084, + 55.2765408114, + 56.2468107144, + 57.2170806173, + 58.1873505203, + 59.1576204233, + 60.1278903262, + 61.0981602292, + 62.0684301322, + 63.0387000351, + 64.0089699381, + 64.9792398411, + 65.949509744, + 66.919779647, + 67.89004955, + 68.8603194529, + 69.8305893559, + 70.8008592589, + 71.7711291618, + 72.7413990648, + 73.7116689678, + 74.6819388708, + 75.6522087737, + 76.6224786767, + 77.5927485797, + 78.5630184826, + 79.5332883856, + 80.5035582886, + 81.4738281915, + 82.4440980945, + 83.4143679975, + 84.3846379004, + 85.3549078034, + 86.3251777064, + 87.2954476093, + 88.2657175123, + 89.2359874153, + 90.2062573182, + 91.1765272212, + 92.1467971242, + 93.1170670271, + 94.0873369301, + 95.0576068331, + 96.027876736, + 96.998146639, + 97.968416542, + 98.9386864449, + 99.9089563479, + 100.879226251, + 101.849496154, + 102.819766057, + 103.79003596, + 104.760305863, + 105.730575766, + 106.700845669, + 107.671115572, + 108.641385475, + 109.611655378, + 110.581925281, + 111.552195184, + 112.522465087, + 113.492734989, + 114.463004892, + 115.433274795, + 116.403544698, + 117.373814601, + 118.344084504, + 119.314354407, + 120.28462431, + 121.254894213, + 122.225164116, + 123.195434019, + 124.165703922, + 125.135973825, + 126.106243728, + 127.076513631, + 128.046783534, + 129.017053437, + 129.98732334, + 130.957593243, + 131.927863146, + 132.898133049, + 133.868402952, + 134.838672855, + 135.808942758, + 136.779212661, + 137.749482564, + 138.719752467, + 139.69002237, + 140.660292273, + 141.630562176, + 142.600832079, + 143.571101981, + 144.541371884, + 145.511641787, + 146.48191169, + 147.452181593, + 148.422451496, + 149.392721399, + 150.362991302, + 151.333261205, + 152.303531108, + 153.273801011, + 154.244070914, + 155.214340817, + 156.18461072, + 157.154880623, + 158.125150526, + 159.095420429, + 160.065690332, + 161.035960235, + 162.006230138, + 162.976500041, + 163.946769944, + 164.917039847, + 165.88730975, + 166.857579653, + 167.827849556, + 168.798119459, + 169.768389362, + 170.738659265, + 171.708929168, + 172.679199071, + 173.649468973, + 174.619738876, + 175.590008779, + 176.560278682, + 177.530548585, + 178.500818488, + 179.471088391, + 180.441358294, + 181.411628197, + 182.3818981, + 183.352168003, + 184.322437906, + 185.292707809, + 186.262977712, + 187.233247615, + 188.203517518, + 189.173787421, + 190.144057324, + 191.114327227, + 192.08459713, + 193.054867033, + 194.025136936, + 194.995406839, + 195.965676742, + 196.935946645, + 197.906216548, + 198.876486451, + 199.846756354, + 200.817026257, + 201.78729616, + 202.757566063, + 203.727835965, + 204.698105868, + 205.668375771, + 206.638645674, + 207.608915577, + 208.57918548, + 209.549455383, + 210.519725286, + 211.489995189, + 212.460265092, + 213.430534995, + 214.400804898, + 215.371074801, + 216.341344704, + 217.311614607, + 218.28188451, + 219.252154413, + 220.222424316, + 221.192694219, + 222.162964122, + 223.133234025, + 224.103503928, + 225.073773831, + 226.044043734, + 227.014313637, + 227.98458354, + 228.954853443, + 229.925123346, + 230.895393249, + 231.865663152, + 232.835933055, + 233.806202957, + 234.77647286, + 235.746742763, + 236.717012666, + 237.687282569, + 238.657552472, + 239.627822375, + 240.598092278, + 241.568362181, + 242.538632084, + 243.508901987, + 244.47917189, + 245.449441793, + 246.419711696, + 247.389981599, + 248.360251502, + 249.330521405, + 250.300791308, + 251.271061211, + 252.241331114, + 253.211601017, + 254.18187092, + 255.152140823, + 256.122410726, + 257.092680629, + 258.062950532, + 259.033220435, + 260.003490338, + 260.973760241, + 261.944030144, + 262.914300047, + 263.88456995, + 264.854839852, + 265.825109755, + 266.795379658, + 267.765649561, + 268.735919464, + 269.706189367, + 270.67645927, + 271.646729173, + 272.616999076, + 273.587268979, + 274.557538882, + 275.527808785, + 276.498078688, + 277.468348591, + 278.438618494, + 279.408888397, + 280.3791583, + 281.349428203, + 282.319698106, + 283.289968009, + 284.260237912, + 285.230507815, + 286.200777718, + 287.171047621, + 288.141317524, + 289.111587427, + 290.08185733, + 291.052127233, + 292.022397136, + 292.992667039, + 293.962936942, + 294.933206844, + 295.903476747, + 296.87374665, + 297.844016553, + 298.814286456, + 299.784556359, + 300.754826262, + 301.725096165, + 302.695366068, + 303.665635971, + 304.635905874, + 305.606175777, + 306.57644568, + 307.546715583, + 308.516985486, + 309.487255389, + 310.457525292, + 311.427795195, + 312.398065098, + 313.368335001, + 314.338604904, + 315.308874807, + 316.27914471, + 317.249414613, + 318.219684516, + 319.189954419, + 320.160224322, + 321.130494225, + 322.100764128, + 323.071034031, + 324.041303934, + 325.011573836, + 325.981843739, + 326.952113642, + 327.922383545, + 328.892653448, + 329.862923351, + 330.833193254, + 331.803463157, + 332.77373306, + 333.744002963, + 334.714272866, + 335.684542769, + 336.654812672, + 337.625082575, + 338.595352478, + 339.565622381, + 340.535892284, + 341.506162187, + 342.47643209, + 343.446701993, + 344.416971896, + 345.387241799, + 346.357511702, + 347.327781605, + 348.298051508, + 349.268321411, + 350.238591314, + 351.208861217, + 352.17913112, + 353.149401023, + 354.119670926, + 355.089940828, + 356.060210731, + 357.030480634, + 358.000750537, + 358.97102044, + 359.941290343, + 360.911560246, + 361.881830149, + 362.852100052, + 363.822369955, + 364.792639858, + 365.762909761, + 366.733179664, + 367.703449567, + 368.67371947, + 369.643989373, + 370.614259276, + 371.584529179, + 372.554799082, + 373.525068985, + 374.495338888, + 375.465608791, + 376.435878694, + 377.406148597, + 378.3764185, + 379.346688403, + 380.316958306, + 381.287228209, + 382.257498112, + 383.227768015, + 384.198037918, + 385.16830782, + 386.138577723, + 387.108847626, + 388.079117529, + 389.049387432, + 390.019657335, + 390.989927238, + 391.960197141, + 392.930467044, + 393.900736947, + 394.87100685, + 395.841276753, + 396.811546656, + 397.781816559, + 398.752086462, + 399.722356365, + 400.692626268, + 401.662896171, + 402.633166074, + 403.603435977, + 404.57370588, + 405.543975783, + 406.514245686, + 407.484515589, + 408.454785492, + 409.425055395, + 410.395325298, + 411.365595201, + 412.335865104, + 413.306135007, + 414.27640491, + 415.246674813, + 416.216944715, + 417.187214618, + 418.157484521, + 419.127754424, + 420.098024327, + 421.06829423, + 422.038564133, + 423.008834036, + 423.979103939, + 424.949373842, + 425.919643745, + 426.889913648, + 427.860183551, + 428.830453454, + 429.800723357, + 430.77099326, + 431.741263163, + 432.711533066, + 433.681802969, + 434.652072872, + 435.622342775, + 436.592612678, + 437.562882581, + 438.533152484, + 439.503422387, + 440.47369229, + 441.443962193, + 442.414232096, + 443.384501999, + 444.354771902, + 445.325041805, + 446.295311707, + 447.26558161, + 448.235851513, + 449.206121416, + 450.176391319, + 451.146661222, + 452.116931125, + 453.087201028, + 454.057470931, + 455.027740834, + 455.998010737, + 456.96828064, + 457.938550543, + 458.908820446, + 459.879090349, + 460.849360252, + 461.819630155, + 462.789900058, + 463.760169961, + 464.730439864, + 465.700709767, + 466.67097967, + 467.641249573, + 468.611519476, + 469.581789379, + 470.552059282, + 471.522329185, + 472.492599088, + 473.462868991, + 474.433138894, + 475.403408797, + 476.373678699, + 477.343948602, + 478.314218505, + 479.284488408, + 480.254758311, + 481.225028214, + 482.195298117, + 483.16556802, + 484.135837923, + 485.106107826, + 486.076377729, + 487.046647632, + 488.016917535, + 488.987187438, + 489.957457341, + 490.927727244, + 491.897997147, + 492.86826705, + 493.838536953, + 494.808806856, + 495.779076759, + 496.749346662, + 497.719616565, + 498.689886468, + 499.660156371, + 500.630426274, + 501.600696177, + 502.57096608, + 503.541235983, + 504.511505886, + 505.481775789, + 506.452045691, + 507.422315594, + 508.392585497, + 509.3628554, + 510.333125303, + 511.303395206, + 512.273665109, + 513.243935012, + 514.214204915, + 515.184474818, + 516.154744721, + 517.125014624, + 518.095284527, + 519.06555443, + 520.035824333, + 521.006094236, + 521.976364139, + 522.946634042, + 523.916903945, + 524.887173848, + 525.857443751, + 526.827713654, + 527.797983557, + 528.76825346, + 529.738523363, + 530.708793266, + 531.679063169, + 532.649333072, + 533.619602975, + 534.589872878, + 535.560142781, + 536.530412683, + 537.500682586, + 538.470952489, + 539.441222392, + 540.411492295, + 541.381762198, + 542.352032101, + 543.322302004, + 544.292571907, + 545.26284181, + 546.233111713, + 547.203381616, + 548.173651519, + 549.143921422, + 550.114191325, + 551.084461228, + 552.054731131, + 553.025001034, + 553.995270937, + 554.96554084, + 555.935810743, + 556.906080646, + 557.876350549, + 558.846620452, + 559.816890355, + 560.787160258, + 561.757430161, + 562.727700064, + 563.697969967, + 564.66823987, + 565.638509773, + 566.608779676, + 567.579049578, + 568.549319481, + 569.519589384, + 570.489859287, + 571.46012919, + 572.430399093, + 573.400668996, + 574.370938899, + 575.341208802, + 576.311478705, + 577.281748608, + 578.252018511, + 579.222288414, + 580.192558317, + 581.16282822, + 582.133098123, + 583.103368026, + 584.073637929, + 585.043907832, + 586.014177735, + 586.984447638, + 587.954717541, + 588.924987444, + 589.895257347, + 590.86552725, + 591.835797153, + 592.806067056, + 593.776336959, + 594.746606862, + 595.716876765, + 596.687146668, + 597.65741657, + 598.627686473, + 599.597956376, + 600.568226279, + 601.538496182, + 602.508766085, + 603.479035988, + 604.449305891, + 605.419575794, + 606.389845697, + 607.3601156, + 608.330385503, + 609.300655406, + 610.270925309, + 611.241195212, + 612.211465115, + 613.181735018, + 614.152004921, + 615.122274824, + 616.092544727, + 617.06281463, + 618.033084533, + 619.003354436, + 619.973624339, + 620.943894242, + 621.914164145, + 622.884434048, + 623.854703951, + 624.824973854, + 625.795243757, + 626.76551366, + 627.735783562, + 628.706053465, + 629.676323368, + 630.646593271, + 631.616863174, + 632.587133077, + 633.55740298, + 634.527672883, + 635.497942786, + 636.468212689, + 637.438482592, + 638.408752495, + 639.379022398, + 640.349292301, + 641.319562204, + 642.289832107, + 643.26010201, + 644.230371913, + 645.200641816, + 646.170911719, + 647.141181622, + 648.111451525, + 649.081721428, + 650.051991331, + 651.022261234, + 651.992531137, + 652.96280104, + 653.933070943, + 654.903340846, + 655.873610749, + 656.843880652, + 657.814150554, + 658.784420457, + 659.75469036, + 660.724960263, + 661.695230166, + 662.665500069, + 663.635769972, + 664.606039875, + 665.576309778, + 666.546579681, + 667.516849584, + 668.487119487, + 669.45738939, + 670.427659293, + 671.397929196, + 672.368199099, + 673.338469002, + 674.308738905, + 675.279008808, + 676.249278711, + 677.219548614, + 678.189818517, + 679.16008842, + 680.130358323, + 681.100628226, + 682.070898129, + 683.041168032, + 684.011437935, + 684.981707838, + 685.951977741, + 686.922247644, + 687.892517547, + 688.862787449, + 689.833057352, + 690.803327255, + 691.773597158, + 692.743867061, + 693.714136964, + 694.684406867, + 695.65467677, + 696.624946673, + 697.595216576, + 698.565486479, + 699.535756382, + 700.506026285, + 701.476296188, + 702.446566091, + 703.416835994, + 704.387105897, + 705.3573758, + 706.327645703, + 707.297915606, + 708.268185509, + 709.238455412, + 710.208725315, + 711.178995218, + 712.149265121, + 713.119535024, + 714.089804927, + 715.06007483, + 716.030344733, + 717.000614636, + 717.970884539, + 718.941154441, + 719.911424344, + 720.881694247, + 721.85196415, + 722.822234053, + 723.792503956, + 724.762773859, + 725.733043762, + 726.703313665, + 727.673583568, + 728.643853471, + 729.614123374, + 730.584393277, + 731.55466318, + 732.524933083, + 733.495202986, + 734.465472889, + 735.435742792, + 736.406012695, + 737.376282598, + 738.346552501, + 739.316822404, + 740.287092307, + 741.25736221, + 742.227632113, + 743.197902016, + 744.168171919, + 745.138441822, + 746.108711725, + 747.078981628, + 748.049251531, + 749.019521433, + 749.989791336, + 750.960061239, + 751.930331142, + 752.900601045, + 753.870870948, + 754.841140851, + 755.811410754, + 756.781680657, + 757.75195056, + 758.722220463, + 759.692490366, + 760.662760269, + 761.633030172, + 762.603300075, + 763.573569978, + 764.543839881, + 765.514109784, + 766.484379687, + 767.45464959, + 768.424919493, + 769.395189396, + 770.365459299, + 771.335729202, + 772.305999105, + 773.276269008, + 774.246538911, + 775.216808814, + 776.187078717, + 777.15734862, + 778.127618523, + 779.097888425, + 780.068158328, + 781.038428231, + 782.008698134, + 782.978968037, + 783.94923794, + 784.919507843, + 785.889777746, + 786.860047649, + 787.830317552, + 788.800587455, + 789.770857358, + 790.741127261, + 791.711397164, + 792.681667067, + 793.65193697, + 794.622206873, + 795.592476776, + 796.562746679, + 797.533016582, + 798.503286485, + 799.473556388, + 800.443826291, + 801.414096194, + 802.384366097, + 803.354636, + 804.324905903, + 805.295175806, + 806.265445709, + 807.235715612, + 808.205985515, + 809.176255417, + 810.14652532, + 811.116795223, + 812.087065126, + 813.057335029, + 814.027604932, + 814.997874835, + 815.968144738, + 816.938414641, + 817.908684544, + 818.878954447, + 819.84922435, + 820.819494253, + 821.789764156, + 822.760034059, + 823.730303962, + 824.700573865, + 825.670843768, + 826.641113671, + 827.611383574, + 828.581653477, + 829.55192338, + 830.522193283, + 831.492463186, + 832.462733089, + 833.433002992, + 834.403272895, + 835.373542798, + 836.343812701, + 837.314082604, + 838.284352507, + 839.25462241, + 840.224892312, + 841.195162215, + 842.165432118, + 843.135702021, + 844.105971924, + 845.076241827, + 846.04651173, + 847.016781633, + 847.987051536, + 848.957321439, + 849.927591342, + 850.897861245, + 851.868131148, + 852.838401051, + 853.808670954, + 854.778940857, + 855.74921076, + 856.719480663, + 857.689750566, + 858.660020469, + 859.630290372, + 860.600560275, + 861.570830178, + 862.541100081, + 863.511369984, + 864.481639887, + 865.45190979, + 866.422179693, + 867.392449596, + 868.362719499, + 869.332989402, + 870.303259304, + 871.273529207, + 872.24379911, + 873.214069013, + 874.184338916, + 875.154608819, + 876.124878722, + 877.095148625, + 878.065418528, + 879.035688431, + 880.005958334, + 880.976228237, + 881.94649814, + 882.916768043, + 883.887037946, + 884.857307849, + 885.827577752, + 886.797847655, + 887.768117558, + 888.738387461, + 889.708657364, + 890.678927267, + 891.64919717, + 892.619467073, + 893.589736976, + 894.560006879, + 895.530276782, + 896.500546685, + 897.470816588, + 898.441086491, + 899.411356394, + 900.381626296, + 901.351896199, + 902.322166102, + 903.292436005, + 904.262705908, + 905.232975811, + 906.203245714, + 907.173515617, + 908.14378552, + 909.114055423, + 910.084325326, + 911.054595229, + 912.024865132, + 912.995135035, + 913.965404938, + 914.935674841, + 915.905944744, + 916.876214647, + 917.84648455, + 918.816754453, + 919.787024356, + 920.757294259, + 921.727564162, + 922.697834065, + 923.668103968, + 924.638373871, + 925.608643774, + 926.578913677, + 927.54918358, + 928.519453483, + 929.489723386, + 930.459993288, + 931.430263191, + 932.400533094, + 933.370802997 + ], + "ys": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.000005096941834899064, + 0.000019488307015790538, + 0.000047271637017789357, + 0.00009344393363981617, + 0.00016180291824905067, + 0.00025694583250049987, + 0.0003840695582650412, + 0.0005469718169098545, + 0.0007496502098740762, + 0.0009960023985608642, + 0.0012908255046971827, + 0.0016391165300819522, + 0.002045872476514093, + 0.002515490705576656, + 0.0030527683389966046, + 0.0036620027983210106, + 0.004347291625024989, + 0.005114131521087352, + 0.005967219668199086, + 0.006911453128123132, + 0.007941934839096549, + 0.009056066360183896, + 0.010250949430341803, + 0.01152258644813113, + 0.01286837897261644, + 0.014283130121926856, + 0.01576084349390367, + 0.017298520887467535, + 0.01889286428143116, + 0.02054137517489508, + 0.022239556266240277, + 0.023982910253847713, + 0.025766540075954452, + 0.027587447531481138, + 0.02944063561862885, + 0.03132250649610237, + 0.03323026184289429, + 0.035159204477313646, + 0.03710483709774139, + 0.03906456126324209, + 0.04103817709374379, + 0.04302368578852692, + 0.04501948830701583, + 0.047023286028383016, + 0.049034179492304666, + 0.05105376773935644, + 0.053084149510293874, + 0.05512472516490111, + 0.05717529482310619, + 0.0592340595642615, + 0.06130081950829508, + 0.06337467519488313, + 0.06545552668398967, + 0.067541974815111, + 0.06963631820907462, + 0.07173845692584456, + 0.07384719168498907, + 0.07596092344593251, + 0.07808005196881879, + 0.0802007795322807, + 0.0823226064361384, + 0.08444593244053576, + 0.0865721567059765, + 0.088704077553468, + 0.0908406955826505, + 0.09298121127323615, + 0.09512392564461332, + 0.09727133719768148, + 0.09942344593244062, + 0.10158225064961032, + 0.10374845092944243, + 0.10592344593244063, + 0.10810773535878482, + 0.11030251848890675, + 0.11250499700179901, + 0.11471587047771346, + 0.11693563861683, + 0.11916550069958035, + 0.1214050569658206, + 0.12365480711573065, + 0.1259152508494904, + 0.1281874875074956, + 0.1304702178692785, + 0.13276134319408364, + 0.1350633619828104, + 0.13737657405556675, + 0.13970217869278442, + 0.14203717769338406, + 0.1443823705776535, + 0.14673475914451337, + 0.14909514291425152, + 0.15146222266640025, + 0.15383629822106745, + 0.15621397161702988, + 0.15859744153507904, + 0.1609838097141716, + 0.16337187687387578, + 0.16576214271437148, + 0.1681555066959825, + 0.17055356785928452, + 0.1729573256046373, + 0.17536488107135728, + 0.1777773335998402, + 0.18019558265040986, + 0.18261702978213082, + 0.18504227463521897, + 0.18747161702978224, + 0.18990535678592854, + 0.19234379372376584, + 0.19478922646412164, + 0.19723915650609647, + 0.1996931840895464, + 0.2021497101738958, + 0.20461153308015204, + 0.20707555466719982, + 0.2095441734959026, + 0.2120186887867281, + 0.21449720167899275, + 0.21698011193284045, + 0.2194678193084151, + 0.221959124525285, + 0.22445522686388183, + 0.2269554267439538, + 0.22945982410553686, + 0.2319703178093146, + 0.23448670797521506, + 0.2370073955626626, + 0.23953347991205295, + 0.24206306216270257, + 0.2445949430341797, + 0.24713122126723985, + 0.24967369578253068, + 0.25222486508095165, + 0.25478562862282655, + 0.25735788526883896, + 0.2599397361583053, + 0.2625307815310816, + 0.26513292024785157, + 0.2677432540475717, + 0.2703603837697384, + 0.2729865080951432, + 0.2756224265440738, + 0.27826823905656634, + 0.28092294623226094, + 0.28358494903058196, + 0.28625204877073784, + 0.2889259444333403, + 0.29160533679792155, + 0.2942902258644816, + 0.29698091145312844, + 0.2996746951828906, + 0.30237067759344427, + 0.30506745952428577, + 0.3077625424745156, + 0.3104567259644217, + 0.3131539076554071, + 0.31585288826704017, + 0.318552668398961, + 0.3212554467319612, + 0.32396232260643654, + 0.32667099740155947, + 0.3293802718368983, + 0.33209044573256086, + 0.3348041175294827, + 0.33752428542874313, + 0.34025204877073795, + 0.3429851089346396, + 0.34572196681990847, + 0.3484611233260048, + 0.35120407755346833, + 0.3539520287827308, + 0.35670587647411595, + 0.3594638217069762, + 0.36222626424145554, + 0.36499090545672636, + 0.36775264841095384, + 0.37051359184489346, + 0.3732734359384373, + 0.37602988207075794, + 0.3787820307815315, + 0.3815286827903262, + 0.38427063761742997, + 0.3870061962822311, + 0.38973136118329044, + 0.39244013591844934, + 0.39513322006795965, + 0.39781191285228906, + 0.400478812712373, + 0.40313701778932687, + 0.40578323006196326, + 0.40841744953028225, + 0.41103827703378015, + 0.4136473116130326, + 0.4162451529082555, + 0.4188335998400964, + 0.42141435138916694, + 0.42398640815510735, + 0.42654987007795364, + 0.42910853487907297, + 0.4316620027983214, + 0.4342124725164905, + 0.436756446132321, + 0.4392976214271441, + 0.44183959624225505, + 0.4443866679992009, + 0.4469390365780536, + 0.449497601439137, + 0.4520604637217674, + 0.4546257245652613, + 0.4571956825904462, + 0.4597711373176099, + 0.4623516889866085, + 0.46493843693783776, + 0.4675340795522691, + 0.4701361183290031, + 0.472747551469119, + 0.475367879272437, + 0.4779984009594248, + 0.48063631820907504, + 0.48328223066160353, + 0.48593453927643465, + 0.4885973415950435, + 0.49126654007595494, + 0.49393903657805366, + 0.49661413152108785, + 0.49928922646412205, + 0.501960823505897, + 0.5046288227063767, + 0.5072943234059569, + 0.5099583250049975, + 0.5126205276833905, + 0.5152822306616036, + 0.517942534479313, + 0.5205967419548277, + 0.5232484509294429, + 0.5258946632020793, + 0.5285353787727369, + 0.531169398360984, + 0.5337962222666406, + 0.5364164501299227, + 0.5390319808115137, + 0.5416409154507302, + 0.544243953627824, + 0.5468423945632627, + 0.5494366380171903, + 0.5520290825504703, + 0.5546222266640022, + 0.5572188686787933, + 0.5598164101539083, + 0.5624109534279439, + 0.5650027983210081, + 0.5675899460323812, + 0.570170097941236, + 0.5727455526683997, + 0.5753141115330809, + 0.5778749750149917, + 0.5804281431141323, + 0.5829719168498908, + 0.5855069958025192, + 0.5880324805116937, + 0.5905476713971624, + 0.5930519688187095, + 0.5955465720567666, + 0.598031181291226, + 0.6005052968219076, + 0.6029682190685596, + 0.6054204477313619, + 0.6078584849090554, + 0.6102852288626832, + 0.612702978213073, + 0.6151089346392172, + 0.6175045972416557, + 0.6198903657805325, + 0.6222644413351996, + 0.6246274235458732, + 0.626980111932841, + 0.629322206675995, + 0.631655606636019, + 0.633979712172697, + 0.6362939236458132, + 0.6385969418348997, + 0.6408905656606042, + 0.6431748950629628, + 0.6454502298620833, + 0.6477151708974621, + 0.6499689186488113, + 0.6522097741355193, + 0.6544393363981617, + 0.656655606636019, + 0.6588586847891271, + 0.6610515690585654, + 0.6632335598640822, + 0.6654076554067566, + 0.6675766540075961, + 0.6697398560863489, + 0.6718991605036985, + 0.6740545672596449, + 0.6762065760543681, + 0.6783558864681198, + 0.6805017989206483, + 0.6826443134119535, + 0.6847825304817117, + 0.6869127523485915, + 0.689035378772737, + 0.6911515090945439, + 0.69326244253448, + 0.6953692784329409, + 0.6974725164901067, + 0.699573156106337, + 0.7016704977013799, + 0.7037631421147319, + 0.7058513891665008, + 0.7079328402958233, + 0.710003697781332, + 0.712063761742955, + 0.7141111333200089, + 0.7161463122126732, + 0.7181682990205884, + 0.7201759944033588, + 0.7221720967419556, + 0.7241576054367387, + 0.7261318209074562, + 0.7280981411153314, + 0.7300561663002205, + 0.7320066959824112, + 0.7339493304017596, + 0.735882570457726, + 0.7378061163302025, + 0.7397204677193691, + 0.7416253248051176, + 0.7435212872276641, + 0.7454081551069365, + 0.747285628622827, + 0.7491573056166307, + 0.7510244853088154, + 0.7528866679992011, + 0.754743953627824, + 0.756595842494504, + 0.7584437337597448, + 0.7602862282630428, + 0.7621230261842901, + 0.7639535278832706, + 0.7657786328203084, + 0.7675985408754753, + 0.7694114531281238, + 0.7712164701179298, + 0.7730155906456132, + 0.7748076154307422, + 0.7765913451928849, + 0.7783679792124731, + 0.780137417549471, + 0.7819005596642021, + 0.7836584049570264, + 0.7854091545072963, + 0.7871503098141123, + 0.7888823705776541, + 0.7906034379372383, + 0.7923156106336204, + 0.7940188886668005, + 0.7957124725164907, + 0.7973974615230868, + 0.799076853887668, + 0.8007481511093351, + 0.8024099540275841, + 0.8040638616829908, + 0.805711173296023, + 0.8073524885068966, + 0.8089878073156114, + 0.8106182290625632, + 0.812244153507896, + 0.8138649810113939, + 0.8154782130721575, + 0.8170847491505105, + 0.8186845892464529, + 0.8202802318608843, + 0.8218725764541284, + 0.8234650209874084, + 0.8250539676194292, + 0.826638317009795, + 0.8282193683789735, + 0.8297944233459933, + 0.8313602838297031, + 0.8329175494703187, + 0.8344681191285238, + 0.8360099940035988, + 0.8375416749950039, + 0.8390591645013001, + 0.8405635618628832, + 0.8420527683389974, + 0.8435259844093552, + 0.8449833100139924, + 0.8464266440135927, + 0.84785538676794, + 0.8492704377373583, + 0.850670297821308, + 0.8520537677393571, + 0.8534174495302826, + 0.8547644413351997, + 0.8560953427943242, + 0.8574099540275842, + 0.8587089746152317, + 0.8599938037177701, + 0.8612660403757754, + 0.8625242854287436, + 0.8637700379772145, + 0.865004097541476, + 0.8662303617829311, + 0.8674500299820117, + 0.8686642014791135, + 0.8698718768738767, + 0.8710735558664812, + 0.8722695382770348, + 0.8734593244053578, + 0.8746416150309824, + 0.8758171097341605, + 0.8769853088147122, + 0.8781475114931051, + 0.8793023186088357, + 0.880449230461724, + 0.8815869478313022, + 0.8827163701778943, + 0.88383799720168, + 0.8849513292024795, + 0.8860564661203288, + 0.8871541075354797, + 0.8882438536877884, + 0.8893233060163912, + 0.890389166500101, + 0.8914429342394574, + 0.8924847091744964, + 0.893514291425146, + 0.8945308814711185, + 0.8955338796721979, + 0.8965238856686001, + 0.897501299220469, + 0.8984685188886681, + 0.8994265440735572, + 0.9003752748351003, + 0.9013148111133333, + 0.90224655206876, + 0.9031709974015604, + 0.9040869478313025, + 0.9049931041375188, + 0.905890465720569, + 0.9067779332400573, + 0.9076558065160917, + 0.9085253847691398, + 0.9093888666799933, + 0.9102449530281844, + 0.9110949430341808, + 0.9119392364581265, + 0.9127786328203091, + 0.9136143314011607, + 0.914446432140717, + 0.9152735358784743, + 0.9160935438736771, + 0.9169048570857499, + 0.9177093743753761, + 0.9185075954427357, + 0.9192986208275049, + 0.9200823505896476, + 0.9208598840695597, + 0.9216320207875289, + 0.9223986608035193, + 0.9231596042374589, + 0.9239164501299234, + 0.9246693983609847, + 0.9254183489906069, + 0.9261640015990419, + 0.9269055566660017, + 0.9276427143713785, + 0.9283757745352801, + 0.9291037377573469, + 0.9298272036777946, + 0.9305484709174507, + 0.9312682390565673, + 0.9319878073156119, + 0.9327049770137931, + 0.9334206476114345, + 0.9341355186887881, + 0.934849090545674, + 0.9355606636018403, + 0.9362707375574669, + 0.9369783130121941, + 0.9376836897861298, + 0.9383843693783744, + 0.9390801519088562, + 0.939770537677395, + 0.9404549270437752, + 0.9411346192284644, + 0.9418099140515706, + 0.9424796122326619, + 0.9431448131121342, + 0.9438046172296637, + 0.9444568259044588, + 0.9451019388366995, + 0.9457404557265655, + 0.9463737757345607, + 0.9470010993403972, + 0.947622726364183, + 0.948238257045774, + 0.9488479912052783, + 0.949451229262444, + 0.9500487707375589, + 0.9506417149710188, + 0.9512313611832914, + 0.9518180091944847, + 0.9524030581651023, + 0.9529869078552882, + 0.9535683589846106, + 0.9541468119128537, + 0.9547227663401973, + 0.9552955226863895, + 0.9558660803517902, + 0.9564357385568671, + 0.9570038976614044, + 0.9575697581451141, + 0.9581331201279244, + 0.9586940835498712, + 0.9592524485308825, + 0.9598091145312823, + 0.9603638816709984, + 0.9609172496502109, + 0.9614692184689196, + 0.9620186887867289, + 0.9625655606636028, + 0.9631086348191095, + 0.9636465120927453, + 0.9641788926644024, + 0.9647062762342604, + 0.9652289626224275, + 0.9657465520687597, + 0.9662593443933649, + 0.9667667399560274, + 0.9672681391165311, + 0.967764241455128, + 0.968254647211674, + 0.9687393563861693, + 0.9692179692184699, + 0.969690085948432, + 0.9701551069358395, + 0.9706137317609445, + 0.9710652608434949, + 0.971508994603239, + 0.9719450329802128, + 0.9723738756745962, + 0.972796122326605, + 0.973212372576455, + 0.9736228263042184, + 0.974027183689787, + 0.974425344793125, + 0.9748179092544482, + 0.9752055766540085, + 0.9755889466320217, + 0.9759688187087756, + 0.9763450929442343, + 0.9767177693383978, + 0.9770862482510503, + 0.9774509294423355, + 0.9778121127323615, + 0.978170597641416, + 0.9785260843493913, + 0.978879172496503, + 0.979231261243255, + 0.979582750349791, + 0.9799328402958234, + 0.980281930841496, + 0.9806301219268447, + 0.9809773136118337, + 0.981323106136319, + 0.9816677993204086, + 0.9820116929842103, + 0.9823536877873285, + 0.9826921846891873, + 0.9830263841694991, + 0.983355286827904, + 0.983679592244654, + 0.9839996002398569, + 0.9843147111732968, + 0.984624225464722, + 0.9849274435338804, + 0.9852238656805924, + 0.9855133919648219, + 0.9857948231061371, + 0.9860678592844301, + 0.9863329002598449, + 0.9865895462722375, + 0.9868365980411762, + 0.9870741555066969, + 0.9873029182490515, + 0.987522786328204, + 0.9877332600439745, + 0.987934939036579, + 0.988129622226665, + 0.9883177093743764, + 0.988500099940037, + 0.9886767939236468, + 0.9888483909654218, + 0.9890157905256856, + 0.9891797921247262, + 0.9893404957025794, + 0.9894986008394973, + 0.9896544073555876, + 0.9898081151309224, + 0.9899598241055376, + 0.9901094343393974, + 0.9902569458325015, + 0.9904038576853897, + 0.990550669598242, + 0.9906970817509504, + 0.9908430941435149, + 0.9909890065960434, + 0.9911347191684999, + 0.9912798321007406, + 0.9914244453328013, + 0.9915685588646821, + 0.9917114731161312, + 0.9918522886268247, + 0.9919909054567267, + 0.9921271237257653, + 0.9922609434339403, + 0.992392264641216, + 0.9925209874075562, + 0.992647311613033, + 0.9927712372576463, + 0.9928927643413961, + 0.9930126923845701, + 0.9931302218668807, + 0.9932448530881479, + 0.9933573855686596, + 0.9934679192484517, + 0.9935761543074163, + 0.9936818908654814, + 0.9937846292224672, + 0.9938840695582658, + 0.993980411752949, + 0.9940744553268047, + 0.9941667999200487, + 0.9942569458325012, + 0.9943451928842701, + 0.9944321407155714, + 0.9945174895062969, + 0.9946012392564468, + 0.9946835898460931, + 0.9947646412152715, + 0.9948445932440543, + 0.9949230461722973, + 0.9950005996402166, + 0.995077453527884, + 0.9951527083749757, + 0.9952263641814918, + 0.9952988207075761, + 0.9953702778333007, + 0.9954410353787734, + 0.9955115930441741, + 0.995581351189287, + 0.9956501099340401, + 0.9957181690985414, + 0.9957859284429348, + 0.9958530881471123, + 0.9959194483310019, + 0.9959853088147117, + 0.9960503697781337, + 0.9961145312812318, + 0.9961780931441141, + 0.9962411553068165, + 0.996303417949231, + 0.9963644813112139, + 0.996424245452729, + 0.9964830101938843, + 0.9965408754747158, + 0.9965979412352595, + 0.9966543074155513, + 0.9967100739556273, + 0.9967649410353794, + 0.9968194083549876, + 0.9968733759744159, + 0.9969262442534486, + 0.9969780131920853, + 0.9970290825504703, + 0.9970789526284235, + 0.997127623425945, + 0.9971752948231066, + 0.9972222666400165, + 0.9972681391165306, + 0.9973127123725769, + 0.9973563861682995, + 0.9973993603837702, + 0.997441734959025, + 0.9974837097741359, + 0.997525284829103, + 0.9975658604837102, + 0.9976054367379577, + 0.9976439136518094, + 0.9976812912252653, + 0.9977174695182894, + 0.9977524485308819, + 0.9977866280231865, + 0.9978200079952033, + 0.9978522886268243, + 0.9978838696781934, + 0.9979149510293827, + 0.997945632620428, + 0.9979756146312215, + 0.9980051968818712, + 0.9980344793124128, + 0.9980631621027386, + 0.9980912452528485, + 0.9981186288227066, + 0.998145112932241, + 0.9981707975214874, + 0.99819608235059, + 0.9982210673595846, + 0.9982459524285432, + 0.9982709374375378, + 0.9982959224465324, + 0.998321007395563, + 0.9983458924645215, + 0.9983705776534082, + 0.9983950629622229, + 0.9984194483310016, + 0.9984433339996004, + 0.9984668199080553, + 0.9984900059964023, + 0.9985126923845693, + 0.9985347791325205, + 0.9985564661203279, + 0.9985776534079553, + 0.9985985408754748, + 0.9986193284029583, + 0.9986398161103339, + 0.9986600039976016, + 0.9986796921846893, + 0.9986986807915252, + 0.9987168698780733, + 0.9987343593843695, + 0.9987513491904858, + 0.9987680391764941, + 0.9987845292824306, + 0.998801019388367, + 0.9988174095542675, + 0.9988339996002399, + 0.9988505896462123, + 0.9988671796921847, + 0.9988838696781931, + 0.9989007595442735, + 0.9989179492304617, + 0.9989356386168299, + 0.998953627823306, + 0.9989717169698181, + 0.9989900059964022, + 0.9990084949030582, + 0.9990272836298222, + 0.99904647211673, + 0.9990659604237458, + 0.9990857485508696, + 0.9991054367379574, + 0.9991250249850091, + 0.999144313411953, + 0.999163102138717, + 0.999181291225265, + 0.9991986807915253, + 0.9992153707775336, + 0.9992312612432542, + 0.999246352188687, + 0.9992606436138318, + 0.999273935638617, + 0.9992860283829704, + 0.999297021786928, + 0.9993070157905258, + 0.9993160103937639, + 0.9993240055966423, + 0.9993310013991608, + 0.9993369978013195, + 0.9993420947431544, + 0.9993462922246655, + 0.9993497901259247, + 0.9993527883270041, + 0.9993556865880475, + 0.9993586847891269, + 0.9993618828702783, + 0.9993653807715375, + 0.9993691784929046, + 0.9993733759744158, + 0.9993779732160708, + 0.9993829702178697, + 0.9993884669198485, + 0.9993945632620432, + 0.9994012592444538, + 0.9994085548670802, + 0.9994164501299225, + 0.9994250449730167, + 0.9994343393963626, + 0.9994443333999604, + 0.9994550269838101, + 0.9994664201479116, + 0.9994785128922651, + 0.9994910053967624, + 0.9995032980211878, + 0.9995151908854691, + 0.9995266839896066, + 0.9995377773336003, + 0.9995485708574859, + 0.9995590645612636, + 0.9995692584449335, + 0.9995791525084954, + 0.9995887467519493, + 0.9995980411752953, + 0.9996071357185693, + 0.9996160303817714, + 0.9996247251649015, + 0.9996330201878877, + 0.99964091545073, + 0.9996484109534284, + 0.9996555066959828, + 0.9996622026783933, + 0.99966849890066, + 0.9996743953627827, + 0.9996801918848695, + 0.9996859884069562, + 0.999691784929043, + 0.9996975814511297, + 0.9997031780931446, + 0.9997085748550875, + 0.9997137717369583, + 0.9997187687387572, + 0.9997235658604842, + 0.9997281631021392, + 0.9997323605836503, + 0.9997361583050175, + 0.9997395562662408, + 0.9997426544073561, + 0.9997454527283635, + 0.999747951229263, + 0.9997501499100545, + 0.9997520487707381, + 0.9997536478113137, + 0.9997551469118534, + 0.9997565460723571, + 0.9997578452928249, + 0.9997591445132926, + 0.9997604437337604, + 0.9997618428942641, + 0.9997633419948038, + 0.9997649410353794, + 0.999766640015991, + 0.9997684389366387, + 0.9997703377973223, + 0.9997724365380778, + 0.9997747351589052, + 0.9997772336598048, + 0.9997799320407762, + 0.9997828303018196, + 0.9997859284429349, + 0.9997892264641222, + 0.9997927243653814, + 0.9997964221467126, + 0.9998002198680798, + 0.999804117529483, + 0.999808115130922, + 0.9998120127923252, + 0.9998158105136924, + 0.9998196082350596, + 0.9998234059564267, + 0.9998272036777939, + 0.999831001399161, + 0.9998347991205282, + 0.9998385968418954, + 0.9998423945632625, + 0.9998461922846297, + 0.9998499900059968, + 0.999853787727364, + 0.9998575854487312, + 0.9998613831700983, + 0.9998651808914655, + 0.9998689786128326, + 0.9998727763341998, + 0.999876474115531, + 0.9998800719568263, + 0.9998835698580855, + 0.9998870677593447, + 0.9998905656606039, + 0.9998938636817911, + 0.9998969618229064, + 0.9998998600839498, + 0.9999025584649213, + 0.9999051569058567, + 0.9999076554067562, + 0.9999100539676197, + 0.9999123525884471, + 0.9999145512692387, + 0.9999166500099942, + 0.9999186488107138, + 0.9999205476713974, + 0.999922346592045, + 0.9999240455726567, + 0.9999256446132323, + 0.9999272436538079, + 0.9999288426943835, + 0.9999304417349592, + 0.9999320407755348, + 0.9999336398161104, + 0.999935338796722, + 0.9999371377173697, + 0.9999390365780533, + 0.9999410353787729, + 0.9999429342394565, + 0.9999447331601041, + 0.9999464321407158, + 0.9999480311812914, + 0.9999495302818311, + 0.9999509294423348, + 0.9999522286628025, + 0.9999534279432343, + 0.99995452728363, + 0.9999555266839898, + 0.9999564261443136, + 0.9999572256646014, + 0.9999579252448533, + 0.9999585248850692, + 0.9999590245852491, + 0.999959424345393, + 0.9999597241655009, + 0.9999599240455729, + 0.9999601239256448, + 0.9999603238057168, + 0.9999606236258247, + 0.9999610233859686, + 0.9999615230861485, + 0.9999621227263644, + 0.9999628223066163, + 0.9999636218269041, + 0.9999645212872279, + 0.9999655206875877, + 0.9999666200279834, + 0.9999678193084152, + 0.9999691185288829, + 0.9999705176893866, + 0.9999720167899263, + 0.9999736158305019, + 0.9999753148111136, + 0.9999771137317612, + 0.9999790125924448, + 0.9999810113931644, + 0.999982910253848, + 0.9999847091744957, + 0.9999864081551073, + 0.9999880071956829, + 0.9999895062962226, + 0.9999909054567263, + 0.9999922046771941, + 0.9999934039576258, + 0.9999945032980215, + 0.9999955026983813, + 0.9999964021587051, + 0.999997201678993, + 0.9999979012592448, + 0.9999985008994607, + 0.9999990005996406, + 0.9999994003597845, + 0.9999997001798925, + 0.9999999000599644, + 1.0000000000000004, + 1.0000000000000004, + 1.0000000000000004, + 1.0000000000000004, + 1.0000000000000004, + 1.0000000000000004, + 1.0000000000000004, + 1.0000000000000004, + 1.0000000000000004, + 1.0000000000000004, + 1.0000000000000004, + 1.0000000000000004, + 1.0000000000000004, + 1.0000000000000004, + 1.0000000000000004, + 1.0000000000000004, + 1.0000000000000004, + 1.0000000000000004, + 1.0000000000000004, + 1.0000000000000004 + ] + }, + { + "createdAt": "2019-10-24T12:59:22.678+00:00", + "xs": [ + -57.9263510276, + -55.8131523694, + -53.6999537111, + -51.5867550529, + -49.4735563946, + -47.3603577364, + -45.2471590781, + -43.1339604199, + -41.0207617616, + -38.9075631034, + -36.7943644451, + -34.6811657869, + -32.5679671286, + -30.4547684704, + -28.3415698122, + -26.2283711539, + -24.1151724957, + -22.0019738374, + -19.8887751792, + -17.7755765209, + -15.6623778627, + -13.5491792044, + -11.4359805462, + -9.32278188791, + -7.20958322966, + -5.09638457142, + -2.98318591317, + -0.869987254919, + 1.24321140333, + 3.35641006158, + 5.46960871983, + 7.58280737807, + 9.69600603632, + 11.8092046946, + 13.9224033528, + 16.0356020111, + 18.1488006693, + 20.2619993276, + 22.3751979858, + 24.4883966441, + 26.6015953023, + 28.7147939606, + 30.8279926188, + 32.9411912771, + 35.0543899353, + 37.1675885936, + 39.2807872518, + 41.3939859101, + 43.5071845683, + 45.6203832265, + 47.7335818848, + 49.846780543, + 51.9599792013, + 54.0731778595, + 56.1863765178, + 58.299575176, + 60.4127738343, + 62.5259724925, + 64.6391711508, + 66.752369809, + 68.8655684673, + 70.9787671255, + 73.0919657838, + 75.205164442, + 77.3183631003, + 79.4315617585, + 81.5447604168, + 83.657959075, + 85.7711577333, + 87.8843563915, + 89.9975550498, + 92.110753708, + 94.2239523663, + 96.3371510245, + 98.4503496828, + 100.563548341, + 102.676746999, + 104.789945658, + 106.903144316, + 109.016342974, + 111.129541632, + 113.242740291, + 115.355938949, + 117.469137607, + 119.582336265, + 121.695534923, + 123.808733582, + 125.92193224, + 128.035130898, + 130.148329556, + 132.261528215, + 134.374726873, + 136.487925531, + 138.601124189, + 140.714322848, + 142.827521506, + 144.940720164, + 147.053918822, + 149.167117481, + 151.280316139, + 153.393514797, + 155.506713455, + 157.619912114, + 159.733110772, + 161.84630943, + 163.959508088, + 166.072706747, + 168.185905405, + 170.299104063, + 172.412302721, + 174.52550138, + 176.638700038, + 178.751898696, + 180.865097354, + 182.978296013, + 185.091494671, + 187.204693329, + 189.317891987, + 191.431090646, + 193.544289304, + 195.657487962, + 197.77068662, + 199.883885279, + 201.997083937, + 204.110282595, + 206.223481253, + 208.336679912, + 210.44987857, + 212.563077228, + 214.676275886, + 216.789474545, + 218.902673203, + 221.015871861, + 223.129070519, + 225.242269178, + 227.355467836, + 229.468666494, + 231.581865152, + 233.695063811, + 235.808262469, + 237.921461127, + 240.034659785, + 242.147858444, + 244.261057102, + 246.37425576, + 248.487454418, + 250.600653077, + 252.713851735, + 254.827050393, + 256.940249051, + 259.05344771, + 261.166646368, + 263.279845026, + 265.393043684, + 267.506242343, + 269.619441001, + 271.732639659, + 273.845838317, + 275.959036976, + 278.072235634, + 280.185434292, + 282.29863295, + 284.411831609, + 286.525030267, + 288.638228925, + 290.751427583, + 292.864626242, + 294.9778249, + 297.091023558, + 299.204222216, + 301.317420875, + 303.430619533, + 305.543818191, + 307.657016849, + 309.770215508, + 311.883414166, + 313.996612824, + 316.109811482, + 318.223010141, + 320.336208799, + 322.449407457, + 324.562606115, + 326.675804774, + 328.789003432, + 330.90220209, + 333.015400748, + 335.128599407, + 337.241798065, + 339.354996723, + 341.468195381, + 343.58139404, + 345.694592698, + 347.807791356, + 349.920990014, + 352.034188673, + 354.147387331, + 356.260585989, + 358.373784647, + 360.486983306, + 362.600181964, + 364.713380622, + 366.82657928, + 368.939777939, + 371.052976597, + 373.166175255, + 375.279373913, + 377.392572572, + 379.50577123, + 381.618969888, + 383.732168546, + 385.845367205, + 387.958565863, + 390.071764521, + 392.184963179, + 394.298161838, + 396.411360496, + 398.524559154, + 400.637757812, + 402.750956471, + 404.864155129, + 406.977353787, + 409.090552445, + 411.203751104, + 413.316949762, + 415.43014842, + 417.543347078, + 419.656545737, + 421.769744395, + 423.882943053, + 425.996141711, + 428.10934037, + 430.222539028, + 432.335737686, + 434.448936344, + 436.562135003, + 438.675333661, + 440.788532319, + 442.901730977, + 445.014929636, + 447.128128294, + 449.241326952, + 451.35452561, + 453.467724269, + 455.580922927, + 457.694121585, + 459.807320243, + 461.920518902, + 464.03371756, + 466.146916218, + 468.260114876, + 470.373313535, + 472.486512193, + 474.599710851, + 476.712909509, + 478.826108167, + 480.939306826, + 483.052505484, + 485.165704142, + 487.2789028, + 489.392101459, + 491.505300117, + 493.618498775, + 495.731697433, + 497.844896092, + 499.95809475, + 502.071293408, + 504.184492066, + 506.297690725, + 508.410889383, + 510.524088041, + 512.637286699, + 514.750485358, + 516.863684016, + 518.976882674, + 521.090081332, + 523.203279991, + 525.316478649, + 527.429677307, + 529.542875965, + 531.656074624, + 533.769273282, + 535.88247194, + 537.995670598, + 540.108869257, + 542.222067915, + 544.335266573, + 546.448465231, + 548.56166389, + 550.674862548, + 552.788061206, + 554.901259864, + 557.014458523, + 559.127657181, + 561.240855839, + 563.354054497, + 565.467253156, + 567.580451814, + 569.693650472, + 571.80684913, + 573.920047789, + 576.033246447, + 578.146445105, + 580.259643763, + 582.372842422, + 584.48604108, + 586.599239738, + 588.712438396, + 590.825637055, + 592.938835713, + 595.052034371, + 597.165233029, + 599.278431688, + 601.391630346, + 603.504829004, + 605.618027662, + 607.731226321, + 609.844424979, + 611.957623637, + 614.070822295, + 616.184020954, + 618.297219612, + 620.41041827, + 622.523616928, + 624.636815587, + 626.750014245, + 628.863212903, + 630.976411561, + 633.08961022, + 635.202808878, + 637.316007536, + 639.429206194, + 641.542404853, + 643.655603511, + 645.768802169, + 647.882000827, + 649.995199486, + 652.108398144, + 654.221596802, + 656.33479546, + 658.447994119, + 660.561192777, + 662.674391435, + 664.787590093, + 666.900788752, + 669.01398741, + 671.127186068, + 673.240384726, + 675.353583385, + 677.466782043, + 679.579980701, + 681.693179359, + 683.806378018, + 685.919576676, + 688.032775334, + 690.145973992, + 692.259172651, + 694.372371309, + 696.485569967, + 698.598768625, + 700.711967284, + 702.825165942, + 704.9383646, + 707.051563258, + 709.164761917, + 711.277960575, + 713.391159233, + 715.504357891, + 717.61755655, + 719.730755208, + 721.843953866, + 723.957152524, + 726.070351183, + 728.183549841, + 730.296748499, + 732.409947157, + 734.523145816, + 736.636344474, + 738.749543132, + 740.86274179, + 742.975940449, + 745.089139107, + 747.202337765, + 749.315536423, + 751.428735082, + 753.54193374, + 755.655132398, + 757.768331056, + 759.881529715, + 761.994728373, + 764.107927031, + 766.221125689, + 768.334324348, + 770.447523006, + 772.560721664, + 774.673920322, + 776.787118981, + 778.900317639, + 781.013516297, + 783.126714955, + 785.239913614, + 787.353112272, + 789.46631093, + 791.579509588, + 793.692708247, + 795.805906905, + 797.919105563, + 800.032304221, + 802.14550288, + 804.258701538, + 806.371900196, + 808.485098854, + 810.598297513, + 812.711496171, + 814.824694829, + 816.937893487, + 819.051092146, + 821.164290804, + 823.277489462, + 825.39068812, + 827.503886779, + 829.617085437, + 831.730284095, + 833.843482753, + 835.956681411, + 838.06988007, + 840.183078728, + 842.296277386, + 844.409476044, + 846.522674703, + 848.635873361, + 850.749072019, + 852.862270677, + 854.975469336, + 857.088667994, + 859.201866652, + 861.31506531, + 863.428263969, + 865.541462627, + 867.654661285, + 869.767859943, + 871.881058602, + 873.99425726, + 876.107455918, + 878.220654576, + 880.333853235, + 882.447051893, + 884.560250551, + 886.673449209, + 888.786647868, + 890.899846526, + 893.013045184, + 895.126243842, + 897.239442501, + 899.352641159, + 901.465839817, + 903.579038475, + 905.692237134, + 907.805435792, + 909.91863445, + 912.031833108, + 914.145031767, + 916.258230425, + 918.371429083, + 920.484627741, + 922.5978264, + 924.711025058, + 926.824223716, + 928.937422374, + 931.050621033, + 933.163819691, + 935.277018349, + 937.390217007, + 939.503415666, + 941.616614324, + 943.729812982, + 945.84301164, + 947.956210299, + 950.069408957, + 952.182607615, + 954.295806273, + 956.409004932, + 958.52220359, + 960.635402248, + 962.748600906, + 964.861799565, + 966.974998223, + 969.088196881, + 971.201395539, + 973.314594198, + 975.427792856, + 977.540991514, + 979.654190172, + 981.767388831, + 983.880587489, + 985.993786147, + 988.106984805, + 990.220183464, + 992.333382122, + 994.44658078, + 996.559779438, + 998.672978097, + 1000.78617675, + 1002.89937541, + 1005.01257407, + 1007.12577273, + 1009.23897139, + 1011.35217005, + 1013.4653687, + 1015.57856736, + 1017.69176602, + 1019.80496468, + 1021.91816334, + 1024.031362, + 1026.14456065, + 1028.25775931, + 1030.37095797, + 1032.48415663, + 1034.59735529, + 1036.71055395, + 1038.8237526, + 1040.93695126, + 1043.05014992, + 1045.16334858, + 1047.27654724, + 1049.38974589, + 1051.50294455, + 1053.61614321, + 1055.72934187, + 1057.84254053, + 1059.95573919, + 1062.06893784, + 1064.1821365, + 1066.29533516, + 1068.40853382, + 1070.52173248, + 1072.63493114, + 1074.74812979, + 1076.86132845, + 1078.97452711, + 1081.08772577, + 1083.20092443, + 1085.31412308, + 1087.42732174, + 1089.5405204, + 1091.65371906, + 1093.76691772, + 1095.88011638, + 1097.99331503, + 1100.10651369, + 1102.21971235, + 1104.33291101, + 1106.44610967, + 1108.55930833, + 1110.67250698, + 1112.78570564, + 1114.8989043, + 1117.01210296, + 1119.12530162, + 1121.23850028, + 1123.35169893, + 1125.46489759, + 1127.57809625, + 1129.69129491, + 1131.80449357, + 1133.91769222, + 1136.03089088, + 1138.14408954, + 1140.2572882, + 1142.37048686, + 1144.48368552, + 1146.59688417, + 1148.71008283, + 1150.82328149, + 1152.93648015, + 1155.04967881, + 1157.16287747, + 1159.27607612, + 1161.38927478, + 1163.50247344, + 1165.6156721, + 1167.72887076, + 1169.84206941, + 1171.95526807, + 1174.06846673, + 1176.18166539, + 1178.29486405, + 1180.40806271, + 1182.52126136, + 1184.63446002, + 1186.74765868, + 1188.86085734, + 1190.974056, + 1193.08725466, + 1195.20045331, + 1197.31365197, + 1199.42685063, + 1201.54004929, + 1203.65324795, + 1205.7664466, + 1207.87964526, + 1209.99284392, + 1212.10604258, + 1214.21924124, + 1216.3324399, + 1218.44563855, + 1220.55883721, + 1222.67203587, + 1224.78523453, + 1226.89843319, + 1229.01163185, + 1231.1248305, + 1233.23802916, + 1235.35122782, + 1237.46442648, + 1239.57762514, + 1241.6908238, + 1243.80402245, + 1245.91722111, + 1248.03041977, + 1250.14361843, + 1252.25681709, + 1254.37001574, + 1256.4832144, + 1258.59641306, + 1260.70961172, + 1262.82281038, + 1264.93600904, + 1267.04920769, + 1269.16240635, + 1271.27560501, + 1273.38880367, + 1275.50200233, + 1277.61520099, + 1279.72839964, + 1281.8415983, + 1283.95479696, + 1286.06799562, + 1288.18119428, + 1290.29439293, + 1292.40759159, + 1294.52079025, + 1296.63398891, + 1298.74718757, + 1300.86038623, + 1302.97358488, + 1305.08678354, + 1307.1999822, + 1309.31318086, + 1311.42637952, + 1313.53957818, + 1315.65277683, + 1317.76597549, + 1319.87917415, + 1321.99237281, + 1324.10557147, + 1326.21877013, + 1328.33196878, + 1330.44516744, + 1332.5583661, + 1334.67156476, + 1336.78476342, + 1338.89796207, + 1341.01116073, + 1343.12435939, + 1345.23755805, + 1347.35075671, + 1349.46395537, + 1351.57715402, + 1353.69035268, + 1355.80355134, + 1357.91675, + 1360.02994866, + 1362.14314732, + 1364.25634597, + 1366.36954463, + 1368.48274329, + 1370.59594195, + 1372.70914061, + 1374.82233926, + 1376.93553792, + 1379.04873658, + 1381.16193524, + 1383.2751339, + 1385.38833256, + 1387.50153121, + 1389.61472987, + 1391.72792853, + 1393.84112719, + 1395.95432585, + 1398.06752451, + 1400.18072316, + 1402.29392182, + 1404.40712048, + 1406.52031914, + 1408.6335178, + 1410.74671646, + 1412.85991511, + 1414.97311377, + 1417.08631243, + 1419.19951109, + 1421.31270975, + 1423.4259084, + 1425.53910706, + 1427.65230572, + 1429.76550438, + 1431.87870304, + 1433.9919017, + 1436.10510035, + 1438.21829901, + 1440.33149767, + 1442.44469633, + 1444.55789499, + 1446.67109365, + 1448.7842923, + 1450.89749096, + 1453.01068962, + 1455.12388828, + 1457.23708694, + 1459.35028559, + 1461.46348425, + 1463.57668291, + 1465.68988157, + 1467.80308023, + 1469.91627889, + 1472.02947754, + 1474.1426762, + 1476.25587486, + 1478.36907352, + 1480.48227218, + 1482.59547084, + 1484.70866949, + 1486.82186815, + 1488.93506681, + 1491.04826547, + 1493.16146413, + 1495.27466279, + 1497.38786144, + 1499.5010601, + 1501.61425876, + 1503.72745742, + 1505.84065608, + 1507.95385473, + 1510.06705339, + 1512.18025205, + 1514.29345071, + 1516.40664937, + 1518.51984803, + 1520.63304668, + 1522.74624534, + 1524.859444, + 1526.97264266, + 1529.08584132, + 1531.19903998, + 1533.31223863, + 1535.42543729, + 1537.53863595, + 1539.65183461, + 1541.76503327, + 1543.87823192, + 1545.99143058, + 1548.10462924, + 1550.2178279, + 1552.33102656, + 1554.44422522, + 1556.55742387, + 1558.67062253, + 1560.78382119, + 1562.89701985, + 1565.01021851, + 1567.12341717, + 1569.23661582, + 1571.34981448, + 1573.46301314, + 1575.5762118, + 1577.68941046, + 1579.80260911, + 1581.91580777, + 1584.02900643, + 1586.14220509, + 1588.25540375, + 1590.36860241, + 1592.48180106, + 1594.59499972, + 1596.70819838, + 1598.82139704, + 1600.9345957, + 1603.04779436, + 1605.16099301, + 1607.27419167, + 1609.38739033, + 1611.50058899, + 1613.61378765, + 1615.72698631, + 1617.84018496, + 1619.95338362, + 1622.06658228, + 1624.17978094, + 1626.2929796, + 1628.40617825, + 1630.51937691, + 1632.63257557, + 1634.74577423, + 1636.85897289, + 1638.97217155, + 1641.0853702, + 1643.19856886, + 1645.31176752, + 1647.42496618, + 1649.53816484, + 1651.6513635, + 1653.76456215, + 1655.87776081, + 1657.99095947, + 1660.10415813, + 1662.21735679, + 1664.33055544, + 1666.4437541, + 1668.55695276, + 1670.67015142, + 1672.78335008, + 1674.89654874, + 1677.00974739, + 1679.12294605, + 1681.23614471, + 1683.34934337, + 1685.46254203, + 1687.57574069, + 1689.68893934, + 1691.802138, + 1693.91533666, + 1696.02853532, + 1698.14173398, + 1700.25493264, + 1702.36813129, + 1704.48132995, + 1706.59452861, + 1708.70772727, + 1710.82092593, + 1712.93412458, + 1715.04732324, + 1717.1605219, + 1719.27372056, + 1721.38691922, + 1723.50011788, + 1725.61331653, + 1727.72651519, + 1729.83971385, + 1731.95291251, + 1734.06611117, + 1736.17930983, + 1738.29250848, + 1740.40570714, + 1742.5189058, + 1744.63210446, + 1746.74530312, + 1748.85850177, + 1750.97170043, + 1753.08489909, + 1755.19809775, + 1757.31129641, + 1759.42449507, + 1761.53769372, + 1763.65089238, + 1765.76409104, + 1767.8772897, + 1769.99048836, + 1772.10368702, + 1774.21688567, + 1776.33008433, + 1778.44328299, + 1780.55648165, + 1782.66968031, + 1784.78287897, + 1786.89607762, + 1789.00927628, + 1791.12247494, + 1793.2356736, + 1795.34887226, + 1797.46207091, + 1799.57526957, + 1801.68846823, + 1803.80166689, + 1805.91486555, + 1808.02806421, + 1810.14126286, + 1812.25446152, + 1814.36766018, + 1816.48085884, + 1818.5940575, + 1820.70725616, + 1822.82045481, + 1824.93365347, + 1827.04685213, + 1829.16005079, + 1831.27324945, + 1833.3864481, + 1835.49964676, + 1837.61284542, + 1839.72604408, + 1841.83924274, + 1843.9524414, + 1846.06564005, + 1848.17883871, + 1850.29203737, + 1852.40523603, + 1854.51843469, + 1856.63163335, + 1858.744832, + 1860.85803066, + 1862.97122932, + 1865.08442798, + 1867.19762664, + 1869.3108253, + 1871.42402395, + 1873.53722261, + 1875.65042127, + 1877.76361993, + 1879.87681859, + 1881.99001724, + 1884.1032159, + 1886.21641456, + 1888.32961322, + 1890.44281188, + 1892.55601054, + 1894.66920919, + 1896.78240785, + 1898.89560651, + 1901.00880517, + 1903.12200383, + 1905.23520249, + 1907.34840114, + 1909.4615998, + 1911.57479846, + 1913.68799712, + 1915.80119578, + 1917.91439443, + 1920.02759309, + 1922.14079175, + 1924.25399041, + 1926.36718907, + 1928.48038773, + 1930.59358638, + 1932.70678504, + 1934.8199837, + 1936.93318236, + 1939.04638102, + 1941.15957968, + 1943.27277833, + 1945.38597699, + 1947.49917565, + 1949.61237431, + 1951.72557297, + 1953.83877162, + 1955.95197028, + 1958.06516894, + 1960.1783676, + 1962.29156626, + 1964.40476492, + 1966.51796357, + 1968.63116223, + 1970.74436089, + 1972.85755955, + 1974.97075821, + 1977.08395687, + 1979.19715552, + 1981.31035418, + 1983.42355284, + 1985.5367515, + 1987.64995016, + 1989.76314882, + 1991.87634747, + 1993.98954613, + 1996.10274479, + 1998.21594345, + 2000.32914211, + 2002.44234076, + 2004.55553942, + 2006.66873808, + 2008.78193674, + 2010.8951354, + 2013.00833406, + 2015.12153271, + 2017.23473137, + 2019.34793003, + 2021.46112869, + 2023.57432735, + 2025.68752601, + 2027.80072466, + 2029.91392332, + 2032.02712198, + 2034.14032064, + 2036.2535193, + 2038.36671795, + 2040.47991661, + 2042.59311527, + 2044.70631393, + 2046.81951259, + 2048.93271125, + 2051.0459099, + 2053.15910856 + ], + "ys": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.00000008333333333333348, + 0.0000004166666666666674, + 0.0000013333333333333357, + 0.000003083333333333339, + 0.000006000000000000011, + 0.000010916666666666687, + 0.00001883333333333337, + 0.00003083333333333339, + 0.00004875000000000009, + 0.00007508333333333347, + 0.00011241666666666686, + 0.0001637500000000003, + 0.00023333333333333376, + 0.00032708333333333396, + 0.00045116666666666753, + 0.0006128333333333345, + 0.0008190833333333349, + 0.001079250000000002, + 0.0014035000000000028, + 0.0018031666666666704, + 0.0022912500000000047, + 0.0028797500000000056, + 0.0035839166666666736, + 0.004417416666666675, + 0.005396500000000011, + 0.00653866666666668, + 0.007862416666666682, + 0.009384666666666685, + 0.011121666666666688, + 0.013091000000000024, + 0.015310083333333361, + 0.017794000000000032, + 0.02056033333333337, + 0.02362291666666671, + 0.026992750000000048, + 0.030682916666666723, + 0.034707000000000064, + 0.039072583333333404, + 0.04378341666666674, + 0.04884441666666675, + 0.05425833333333343, + 0.06003008333333344, + 0.06615933333333346, + 0.07264508333333347, + 0.07948533333333349, + 0.08667425000000017, + 0.09419991666666686, + 0.10205575000000021, + 0.11023391666666689, + 0.11872358333333358, + 0.12751200000000026, + 0.13658750000000028, + 0.14593241666666695, + 0.15552916666666697, + 0.16536425000000032, + 0.175419416666667, + 0.18567475000000033, + 0.19611666666666702, + 0.20673725000000037, + 0.21751983333333372, + 0.22844950000000042, + 0.23950925000000042, + 0.2506819166666671, + 0.26195166666666714, + 0.2732997500000005, + 0.28471050000000053, + 0.29617308333333386, + 0.3076724166666672, + 0.31919241666666726, + 0.3307193333333339, + 0.3422412500000006, + 0.35374958333333395, + 0.3652341666666673, + 0.376685833333334, + 0.38809691666666735, + 0.3994592500000007, + 0.41076658333333405, + 0.42201083333333406, + 0.4331780833333341, + 0.44426575000000074, + 0.45526500000000075, + 0.4661693333333341, + 0.4769692500000008, + 0.4876647500000008, + 0.49825058333333416, + 0.5087191666666675, + 0.5190701666666675, + 0.5292971666666675, + 0.5394009166666675, + 0.5493769166666674, + 0.5592222500000008, + 0.5689289166666675, + 0.5784960000000008, + 0.5879249166666675, + 0.5972120833333342, + 0.6063548333333342, + 0.6153518333333342, + 0.6241965000000009, + 0.6328896666666676, + 0.6414229166666676, + 0.6497934166666677, + 0.6579978333333344, + 0.6660418333333344, + 0.6739192500000011, + 0.6816339166666677, + 0.6891895000000011, + 0.6965800833333344, + 0.7038105000000011, + 0.7108772500000011, + 0.7177814166666678, + 0.7245242500000012, + 0.7311112500000012, + 0.7375426666666679, + 0.7438195833333345, + 0.7499437500000012, + 0.7559189166666679, + 0.7617453333333346, + 0.7674303333333347, + 0.7729764166666679, + 0.7783916666666679, + 0.7836829166666679, + 0.7888542500000012, + 0.7939065000000012, + 0.7988450833333345, + 0.8036707500000011, + 0.8083866666666678, + 0.8129967500000012, + 0.8175011666666678, + 0.8219049166666679, + 0.8262118333333346, + 0.8304235833333345, + 0.8345410000000012, + 0.8385691666666679, + 0.8425077500000012, + 0.8463575833333346, + 0.8501198333333345, + 0.8537974166666679, + 0.8573895000000012, + 0.860894916666668, + 0.8643139166666679, + 0.8676476666666679, + 0.8708990000000013, + 0.8740700000000013, + 0.8771600000000014, + 0.880170166666668, + 0.883102416666668, + 0.885960666666668, + 0.8887477500000013, + 0.8914642500000013, + 0.8941110833333347, + 0.896690166666668, + 0.8992027500000014, + 0.901644916666668, + 0.9040185833333347, + 0.9063275833333347, + 0.9085721666666681, + 0.9107543333333348, + 0.9128775833333348, + 0.9149465000000014, + 0.9169616666666681, + 0.9189250833333348, + 0.9208367500000014, + 0.9226984166666681, + 0.9245138333333347, + 0.9262852500000014, + 0.9280130000000014, + 0.9296960833333348, + 0.9313350000000015, + 0.9329311666666681, + 0.9344864166666681, + 0.9360020833333348, + 0.9374794166666681, + 0.9389230833333347, + 0.9403350833333347, + 0.9417148333333347, + 0.9430655833333347, + 0.9443878333333346, + 0.9456814166666679, + 0.9469463333333346, + 0.9481829166666679, + 0.9493899166666678, + 0.9505700000000011, + 0.9517230833333344, + 0.9528475000000011, + 0.9539437500000011, + 0.9550120833333344, + 0.9560552500000011, + 0.9570738333333345, + 0.9580687500000011, + 0.9590402500000011, + 0.9599890000000011, + 0.9609149166666677, + 0.9618173333333344, + 0.9626959166666678, + 0.9635523333333345, + 0.9643859166666677, + 0.965197500000001, + 0.9659878333333344, + 0.966756500000001, + 0.967505500000001, + 0.9682365833333344, + 0.9689492500000011, + 0.9696439166666677, + 0.970323000000001, + 0.9709866666666677, + 0.9716359166666677, + 0.9722696666666677, + 0.9728886666666677, + 0.9734928333333344, + 0.9740834166666676, + 0.9746608333333343, + 0.9752259166666677, + 0.975780000000001, + 0.9763241666666677, + 0.9768581666666677, + 0.9773824166666677, + 0.977896000000001, + 0.978399500000001, + 0.9788945833333343, + 0.9793804166666676, + 0.9798568333333343, + 0.9803240833333343, + 0.9807823333333343, + 0.9812309166666676, + 0.9816707500000009, + 0.9821016666666675, + 0.9825240833333342, + 0.9829382500000009, + 0.9833445833333342, + 0.9837422500000008, + 0.9841312500000008, + 0.9845121666666674, + 0.9848845000000007, + 0.9852485000000007, + 0.9856035833333341, + 0.9859499166666674, + 0.9862887500000007, + 0.9866201666666674, + 0.9869437500000008, + 0.9872605833333341, + 0.9875703333333341, + 0.9878729166666674, + 0.9881685833333341, + 0.9884571666666675, + 0.9887381666666675, + 0.9890117500000009, + 0.9892785833333342, + 0.9895388333333341, + 0.9897924166666675, + 0.9900402500000008, + 0.9902821666666675, + 0.9905179166666674, + 0.9907479166666674, + 0.9909715000000007, + 0.991189833333334, + 0.991403583333334, + 0.9916124166666673, + 0.9918157500000007, + 0.992013583333334, + 0.9922055000000006, + 0.992392083333334, + 0.9925738333333339, + 0.9927507500000006, + 0.9929234166666673, + 0.9930917500000006, + 0.9932560000000006, + 0.9934159166666673, + 0.9935709166666673, + 0.9937211666666673, + 0.9938661666666673, + 0.994006083333334, + 0.9941411666666673, + 0.9942718333333339, + 0.9943988333333339, + 0.9945214166666673, + 0.9946391666666673, + 0.9947525833333339, + 0.9948622500000006, + 0.9949684166666672, + 0.9950714166666672, + 0.9951711666666672, + 0.9952675000000005, + 0.9953606666666672, + 0.9954509166666672, + 0.9955386666666671, + 0.9956240833333337, + 0.9957073333333337, + 0.9957890000000004, + 0.9958693333333337, + 0.9959485000000003, + 0.9960268333333336, + 0.996104166666667, + 0.9961800000000003, + 0.9962540833333337, + 0.9963268333333336, + 0.996398416666667, + 0.996468666666667, + 0.9965377500000003, + 0.996605666666667, + 0.9966721666666669, + 0.9967375000000003, + 0.996802166666667, + 0.9968663333333336, + 0.9969296666666669, + 0.9969921666666669, + 0.9970537500000002, + 0.9971142500000002, + 0.9971737500000002, + 0.9972322500000002, + 0.9972897500000002, + 0.9973461666666669, + 0.9974013333333336, + 0.9974557500000002, + 0.9975095000000002, + 0.9975627500000002, + 0.9976153333333335, + 0.9976673333333336, + 0.9977185000000003, + 0.9977688333333337, + 0.997818666666667, + 0.9978680000000003, + 0.9979160833333336, + 0.9979629166666669, + 0.9980085000000003, + 0.9980526666666669, + 0.9980955000000002, + 0.9981372500000002, + 0.9981777500000002, + 0.9982170833333335, + 0.9982554166666668, + 0.9982927500000002, + 0.9983294166666669, + 0.9983650833333335, + 0.9983995833333336, + 0.9984327500000002, + 0.9984647500000002, + 0.9984956666666669, + 0.9985258333333336, + 0.9985553333333336, + 0.9985840000000002, + 0.9986120833333336, + 0.9986400000000003, + 0.9986675833333336, + 0.998694916666667, + 0.998722166666667, + 0.9987494166666671, + 0.998776416666667, + 0.998803166666667, + 0.998829416666667, + 0.998854916666667, + 0.9988799166666671, + 0.9989044166666671, + 0.9989285833333338, + 0.9989525833333338, + 0.9989765000000005, + 0.9990003333333338, + 0.9990238333333338, + 0.9990466666666671, + 0.9990689166666671, + 0.9990908333333337, + 0.9991120000000003, + 0.9991325000000003, + 0.999152416666667, + 0.9991719166666669, + 0.9991910000000003, + 0.9992095000000003, + 0.9992275833333336, + 0.9992453333333337, + 0.999262916666667, + 0.9992805000000003, + 0.9992978333333337, + 0.9993150000000003, + 0.9993320000000003, + 0.9993488333333337, + 0.9993655000000004, + 0.9993820833333337, + 0.9993987500000003, + 0.999415666666667, + 0.9994326666666671, + 0.9994494166666671, + 0.9994660000000004, + 0.9994822500000005, + 0.9994980833333338, + 0.9995133333333338, + 0.9995280000000005, + 0.9995422500000005, + 0.9995560833333339, + 0.9995695000000006, + 0.9995825000000006, + 0.9995951666666673, + 0.9996075833333339, + 0.9996195833333339, + 0.9996312500000005, + 0.9996425000000005, + 0.9996533333333338, + 0.9996635833333338, + 0.9996732500000005, + 0.9996823333333339, + 0.9996910000000006, + 0.9996994166666672, + 0.9997077500000006, + 0.999716083333334, + 0.9997245000000006, + 0.9997330833333339, + 0.9997418333333339, + 0.9997505833333339, + 0.9997593333333339, + 0.9997680833333339, + 0.9997768333333339, + 0.9997854166666672, + 0.9997937500000006, + 0.9998019166666673, + 0.9998097500000006, + 0.9998173333333339, + 0.9998246666666672, + 0.9998318333333339, + 0.9998388333333339, + 0.9998456666666672, + 0.9998521666666672, + 0.9998583333333338, + 0.9998640000000005, + 0.9998691666666671, + 0.9998738333333338, + 0.9998780000000005, + 0.9998816666666671, + 0.9998850000000005, + 0.9998880000000004, + 0.9998906666666671, + 0.9998930000000005, + 0.9998950833333338, + 0.9998970000000005, + 0.9998987500000005, + 0.9999004166666672, + 0.9999020000000005, + 0.9999035000000005, + 0.9999049166666671, + 0.9999062500000004, + 0.9999075000000004, + 0.9999087500000003, + 0.9999100000000003, + 0.9999113333333336, + 0.9999127500000002, + 0.9999142500000002, + 0.9999158333333336, + 0.9999175000000002, + 0.9999190833333336, + 0.9999205833333336, + 0.9999220000000002, + 0.9999233333333335, + 0.9999245833333334, + 0.9999257500000002, + 0.9999268333333335, + 0.9999278333333336, + 0.9999287500000003, + 0.9999295833333336, + 0.9999303333333336, + 0.9999310000000002, + 0.9999315833333335, + 0.9999320833333335, + 0.9999325000000001, + 0.9999328333333335, + 0.9999330833333335, + 0.9999332500000002, + 0.9999333333333336, + 0.9999333333333336, + 0.9999333333333336, + 0.9999333333333336, + 0.9999333333333336, + 0.9999333333333336, + 0.9999333333333336, + 0.9999333333333336, + 0.9999333333333336, + 0.9999333333333336, + 0.9999333333333336, + 0.9999333333333336, + 0.9999333333333336, + 0.9999333333333336, + 0.9999333333333336, + 0.9999334166666669, + 0.9999335833333336, + 0.9999338333333336, + 0.999934166666667, + 0.9999345833333336, + 0.9999350833333336, + 0.9999356666666669, + 0.9999363333333335, + 0.9999370833333335, + 0.9999379166666669, + 0.9999388333333336, + 0.9999398333333336, + 0.999940916666667, + 0.9999420833333337, + 0.9999433333333336, + 0.9999446666666669, + 0.9999460833333336, + 0.9999475833333336, + 0.9999491666666669, + 0.9999508333333336, + 0.9999524166666669, + 0.9999539166666669, + 0.9999553333333335, + 0.9999566666666668, + 0.9999579166666668, + 0.9999590833333335, + 0.9999601666666669, + 0.9999611666666669, + 0.9999620833333336, + 0.9999629166666669, + 0.9999636666666669, + 0.9999643333333336, + 0.9999649166666669, + 0.9999654166666668, + 0.9999658333333336, + 0.9999661666666669, + 0.999966416666667, + 0.9999665833333337, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.999966666666667, + 0.9999667500000003, + 0.999966916666667, + 0.9999671666666671, + 0.9999675000000005, + 0.9999679166666672, + 0.9999684166666672, + 0.9999690000000006, + 0.9999696666666672, + 0.9999704166666672, + 0.9999712500000005, + 0.9999721666666672, + 0.9999731666666672, + 0.9999742500000006, + 0.9999754166666673, + 0.9999766666666674, + 0.9999780000000007, + 0.9999794166666673, + 0.9999809166666673, + 0.9999825000000007, + 0.9999841666666673, + 0.9999857500000007, + 0.9999872500000007, + 0.9999886666666673, + 0.9999900000000006, + 0.9999912500000007, + 0.9999924166666674, + 0.9999935000000008, + 0.9999945000000008, + 0.9999954166666675, + 0.9999962500000008, + 0.9999970000000008, + 0.9999976666666675, + 0.9999982500000008, + 0.9999987500000008, + 0.9999991666666675, + 0.9999995000000009, + 0.999999750000001, + 0.9999999166666677, + 1.000000000000001, + 1.000000000000001, + 1.000000000000001, + 1.000000000000001, + 1.000000000000001, + 1.000000000000001, + 1.000000000000001, + 1.000000000000001, + 1.000000000000001, + 1.000000000000001, + 1.000000000000001, + 1.000000000000001, + 1.000000000000001, + 1.000000000000001, + 1.000000000000001, + 1.000000000000001, + 1.000000000000001, + 1.000000000000001, + 1.000000000000001, + 1.000000000000001 + ] + }, + { + "createdAt": "2019-10-25T16:13:25.532+00:00", + "xs": [ + -44.3557394977, + -43.1578647794, + -41.959990061, + -40.7621153427, + -39.5642406243, + -38.366365906, + -37.1684911876, + -35.9706164693, + -34.7727417509, + -33.5748670326, + -32.3769923142, + -31.1791175959, + -29.9812428775, + -28.7833681592, + -27.5854934408, + -26.3876187225, + -25.1897440041, + -23.9918692858, + -22.7939945674, + -21.5961198491, + -20.3982451307, + -19.2003704124, + -18.002495694, + -16.8046209757, + -15.6067462573, + -14.408871539, + -13.2109968206, + -12.0131221023, + -10.8152473839, + -9.61737266557, + -8.41949794722, + -7.22162322887, + -6.02374851052, + -4.82587379217, + -3.62799907382, + -2.43012435547, + -1.23224963712, + -0.0343749187736, + 1.16349979958, + 2.36137451793, + 3.55924923628, + 4.75712395463, + 5.95499867298, + 7.15287339133, + 8.35074810968, + 9.54862282803, + 10.7464975464, + 11.9443722647, + 13.1422469831, + 14.3401217014, + 15.5379964198, + 16.7358711381, + 17.9337458565, + 19.1316205748, + 20.3294952932, + 21.5273700115, + 22.7252447299, + 23.9231194482, + 25.1209941666, + 26.3188688849, + 27.5167436033, + 28.7146183216, + 29.91249304, + 31.1103677583, + 32.3082424767, + 33.506117195, + 34.7039919134, + 35.9018666317, + 37.0997413501, + 38.2976160684, + 39.4954907868, + 40.6933655051, + 41.8912402235, + 43.0891149418, + 44.2869896602, + 45.4848643785, + 46.6827390969, + 47.8806138152, + 49.0784885336, + 50.2763632519, + 51.4742379703, + 52.6721126886, + 53.869987407, + 55.0678621253, + 56.2657368437, + 57.463611562, + 58.6614862804, + 59.8593609987, + 61.0572357171, + 62.2551104354, + 63.4529851538, + 64.6508598721, + 65.8487345905, + 67.0466093088, + 68.2444840272, + 69.4423587455, + 70.6402334639, + 71.8381081822, + 73.0359829006, + 74.2338576189, + 75.4317323373, + 76.6296070556, + 77.827481774, + 79.0253564923, + 80.2232312107, + 81.421105929, + 82.6189806474, + 83.8168553657, + 85.0147300841, + 86.2126048024, + 87.4104795208, + 88.6083542391, + 89.8062289575, + 91.0041036758, + 92.2019783942, + 93.3998531125, + 94.5977278309, + 95.7956025492, + 96.9934772676, + 98.1913519859, + 99.3892267043, + 100.587101423, + 101.784976141, + 102.982850859, + 104.180725578, + 105.378600296, + 106.576475014, + 107.774349733, + 108.972224451, + 110.170099169, + 111.367973888, + 112.565848606, + 113.763723324, + 114.961598043, + 116.159472761, + 117.35734748, + 118.555222198, + 119.753096916, + 120.950971635, + 122.148846353, + 123.346721071, + 124.54459579, + 125.742470508, + 126.940345226, + 128.138219945, + 129.336094663, + 130.533969381, + 131.7318441, + 132.929718818, + 134.127593536, + 135.325468255, + 136.523342973, + 137.721217691, + 138.91909241, + 140.116967128, + 141.314841847, + 142.512716565, + 143.710591283, + 144.908466002, + 146.10634072, + 147.304215438, + 148.502090157, + 149.699964875, + 150.897839593, + 152.095714312, + 153.29358903, + 154.491463748, + 155.689338467, + 156.887213185, + 158.085087903, + 159.282962622, + 160.48083734, + 161.678712058, + 162.876586777, + 164.074461495, + 165.272336214, + 166.470210932, + 167.66808565, + 168.865960369, + 170.063835087, + 171.261709805, + 172.459584524, + 173.657459242, + 174.85533396, + 176.053208679, + 177.251083397, + 178.448958115, + 179.646832834, + 180.844707552, + 182.04258227, + 183.240456989, + 184.438331707, + 185.636206425, + 186.834081144, + 188.031955862, + 189.229830581, + 190.427705299, + 191.625580017, + 192.823454736, + 194.021329454, + 195.219204172, + 196.417078891, + 197.614953609, + 198.812828327, + 200.010703046, + 201.208577764, + 202.406452482, + 203.604327201, + 204.802201919, + 206.000076637, + 207.197951356, + 208.395826074, + 209.593700792, + 210.791575511, + 211.989450229, + 213.187324948, + 214.385199666, + 215.583074384, + 216.780949103, + 217.978823821, + 219.176698539, + 220.374573258, + 221.572447976, + 222.770322694, + 223.968197413, + 225.166072131, + 226.363946849, + 227.561821568, + 228.759696286, + 229.957571004, + 231.155445723, + 232.353320441, + 233.551195159, + 234.749069878, + 235.946944596, + 237.144819315, + 238.342694033, + 239.540568751, + 240.73844347, + 241.936318188, + 243.134192906, + 244.332067625, + 245.529942343, + 246.727817061, + 247.92569178, + 249.123566498, + 250.321441216, + 251.519315935, + 252.717190653, + 253.915065371, + 255.11294009, + 256.310814808, + 257.508689526, + 258.706564245, + 259.904438963, + 261.102313682, + 262.3001884, + 263.498063118, + 264.695937837, + 265.893812555, + 267.091687273, + 268.289561992, + 269.48743671, + 270.685311428, + 271.883186147, + 273.081060865, + 274.278935583, + 275.476810302, + 276.67468502, + 277.872559738, + 279.070434457, + 280.268309175, + 281.466183893, + 282.664058612, + 283.86193333, + 285.059808049, + 286.257682767, + 287.455557485, + 288.653432204, + 289.851306922, + 291.04918164, + 292.247056359, + 293.444931077, + 294.642805795, + 295.840680514, + 297.038555232, + 298.23642995, + 299.434304669, + 300.632179387, + 301.830054105, + 303.027928824, + 304.225803542, + 305.42367826, + 306.621552979, + 307.819427697, + 309.017302416, + 310.215177134, + 311.413051852, + 312.610926571, + 313.808801289, + 315.006676007, + 316.204550726, + 317.402425444, + 318.600300162, + 319.798174881, + 320.996049599, + 322.193924317, + 323.391799036, + 324.589673754, + 325.787548472, + 326.985423191, + 328.183297909, + 329.381172627, + 330.579047346, + 331.776922064, + 332.974796783, + 334.172671501, + 335.370546219, + 336.568420938, + 337.766295656, + 338.964170374, + 340.162045093, + 341.359919811, + 342.557794529, + 343.755669248, + 344.953543966, + 346.151418684, + 347.349293403, + 348.547168121, + 349.745042839, + 350.942917558, + 352.140792276, + 353.338666994, + 354.536541713, + 355.734416431, + 356.93229115, + 358.130165868, + 359.328040586, + 360.525915305, + 361.723790023, + 362.921664741, + 364.11953946, + 365.317414178, + 366.515288896, + 367.713163615, + 368.911038333, + 370.108913051, + 371.30678777, + 372.504662488, + 373.702537206, + 374.900411925, + 376.098286643, + 377.296161361, + 378.49403608, + 379.691910798, + 380.889785517, + 382.087660235, + 383.285534953, + 384.483409672, + 385.68128439, + 386.879159108, + 388.077033827, + 389.274908545, + 390.472783263, + 391.670657982, + 392.8685327, + 394.066407418, + 395.264282137, + 396.462156855, + 397.660031573, + 398.857906292, + 400.05578101, + 401.253655728, + 402.451530447, + 403.649405165, + 404.847279884, + 406.045154602, + 407.24302932, + 408.440904039, + 409.638778757, + 410.836653475, + 412.034528194, + 413.232402912, + 414.43027763, + 415.628152349, + 416.826027067, + 418.023901785, + 419.221776504, + 420.419651222, + 421.61752594, + 422.815400659, + 424.013275377, + 425.211150095, + 426.409024814, + 427.606899532, + 428.804774251, + 430.002648969, + 431.200523687, + 432.398398406, + 433.596273124, + 434.794147842, + 435.992022561, + 437.189897279, + 438.387771997, + 439.585646716, + 440.783521434, + 441.981396152, + 443.179270871, + 444.377145589, + 445.575020307, + 446.772895026, + 447.970769744, + 449.168644462, + 450.366519181, + 451.564393899, + 452.762268618, + 453.960143336, + 455.158018054, + 456.355892773, + 457.553767491, + 458.751642209, + 459.949516928, + 461.147391646, + 462.345266364, + 463.543141083, + 464.741015801, + 465.938890519, + 467.136765238, + 468.334639956, + 469.532514674, + 470.730389393, + 471.928264111, + 473.126138829, + 474.324013548, + 475.521888266, + 476.719762985, + 477.917637703, + 479.115512421, + 480.31338714, + 481.511261858, + 482.709136576, + 483.907011295, + 485.104886013, + 486.302760731, + 487.50063545, + 488.698510168, + 489.896384886, + 491.094259605, + 492.292134323, + 493.490009041, + 494.68788376, + 495.885758478, + 497.083633196, + 498.281507915, + 499.479382633, + 500.677257352, + 501.87513207, + 503.073006788, + 504.270881507, + 505.468756225, + 506.666630943, + 507.864505662, + 509.06238038, + 510.260255098, + 511.458129817, + 512.656004535, + 513.853879253, + 515.051753972, + 516.24962869, + 517.447503408, + 518.645378127, + 519.843252845, + 521.041127563, + 522.239002282, + 523.436877, + 524.634751719, + 525.832626437, + 527.030501155, + 528.228375874, + 529.426250592, + 530.62412531, + 531.822000029, + 533.019874747, + 534.217749465, + 535.415624184, + 536.613498902, + 537.81137362, + 539.009248339, + 540.207123057, + 541.404997775, + 542.602872494, + 543.800747212, + 544.99862193, + 546.196496649, + 547.394371367, + 548.592246086, + 549.790120804, + 550.987995522, + 552.185870241, + 553.383744959, + 554.581619677, + 555.779494396, + 556.977369114, + 558.175243832, + 559.373118551, + 560.570993269, + 561.768867987, + 562.966742706, + 564.164617424, + 565.362492142, + 566.560366861, + 567.758241579, + 568.956116297, + 570.153991016, + 571.351865734, + 572.549740453, + 573.747615171, + 574.945489889, + 576.143364608, + 577.341239326, + 578.539114044, + 579.736988763, + 580.934863481, + 582.132738199, + 583.330612918, + 584.528487636, + 585.726362354, + 586.924237073, + 588.122111791, + 589.319986509, + 590.517861228, + 591.715735946, + 592.913610664, + 594.111485383, + 595.309360101, + 596.50723482, + 597.705109538, + 598.902984256, + 600.100858975, + 601.298733693, + 602.496608411, + 603.69448313, + 604.892357848, + 606.090232566, + 607.288107285, + 608.485982003, + 609.683856721, + 610.88173144, + 612.079606158, + 613.277480876, + 614.475355595, + 615.673230313, + 616.871105031, + 618.06897975, + 619.266854468, + 620.464729187, + 621.662603905, + 622.860478623, + 624.058353342, + 625.25622806, + 626.454102778, + 627.651977497, + 628.849852215, + 630.047726933, + 631.245601652, + 632.44347637, + 633.641351088, + 634.839225807, + 636.037100525, + 637.234975243, + 638.432849962, + 639.63072468, + 640.828599398, + 642.026474117, + 643.224348835, + 644.422223554, + 645.620098272, + 646.81797299, + 648.015847709, + 649.213722427, + 650.411597145, + 651.609471864, + 652.807346582, + 654.0052213, + 655.203096019, + 656.400970737, + 657.598845455, + 658.796720174, + 659.994594892, + 661.19246961, + 662.390344329, + 663.588219047, + 664.786093765, + 665.983968484, + 667.181843202, + 668.379717921, + 669.577592639, + 670.775467357, + 671.973342076, + 673.171216794, + 674.369091512, + 675.566966231, + 676.764840949, + 677.962715667, + 679.160590386, + 680.358465104, + 681.556339822, + 682.754214541, + 683.952089259, + 685.149963977, + 686.347838696, + 687.545713414, + 688.743588132, + 689.941462851, + 691.139337569, + 692.337212288, + 693.535087006, + 694.732961724, + 695.930836443, + 697.128711161, + 698.326585879, + 699.524460598, + 700.722335316, + 701.920210034, + 703.118084753, + 704.315959471, + 705.513834189, + 706.711708908, + 707.909583626, + 709.107458344, + 710.305333063, + 711.503207781, + 712.701082499, + 713.898957218, + 715.096831936, + 716.294706655, + 717.492581373, + 718.690456091, + 719.88833081, + 721.086205528, + 722.284080246, + 723.481954965, + 724.679829683, + 725.877704401, + 727.07557912, + 728.273453838, + 729.471328556, + 730.669203275, + 731.867077993, + 733.064952711, + 734.26282743, + 735.460702148, + 736.658576866, + 737.856451585, + 739.054326303, + 740.252201022, + 741.45007574, + 742.647950458, + 743.845825177, + 745.043699895, + 746.241574613, + 747.439449332, + 748.63732405, + 749.835198768, + 751.033073487, + 752.230948205, + 753.428822923, + 754.626697642, + 755.82457236, + 757.022447078, + 758.220321797, + 759.418196515, + 760.616071233, + 761.813945952, + 763.01182067, + 764.209695389, + 765.407570107, + 766.605444825, + 767.803319544, + 769.001194262, + 770.19906898, + 771.396943699, + 772.594818417, + 773.792693135, + 774.990567854, + 776.188442572, + 777.38631729, + 778.584192009, + 779.782066727, + 780.979941445, + 782.177816164, + 783.375690882, + 784.5735656, + 785.771440319, + 786.969315037, + 788.167189756, + 789.365064474, + 790.562939192, + 791.760813911, + 792.958688629, + 794.156563347, + 795.354438066, + 796.552312784, + 797.750187502, + 798.948062221, + 800.145936939, + 801.343811657, + 802.541686376, + 803.739561094, + 804.937435812, + 806.135310531, + 807.333185249, + 808.531059967, + 809.728934686, + 810.926809404, + 812.124684123, + 813.322558841, + 814.520433559, + 815.718308278, + 816.916182996, + 818.114057714, + 819.311932433, + 820.509807151, + 821.707681869, + 822.905556588, + 824.103431306, + 825.301306024, + 826.499180743, + 827.697055461, + 828.894930179, + 830.092804898, + 831.290679616, + 832.488554334, + 833.686429053, + 834.884303771, + 836.08217849, + 837.280053208, + 838.477927926, + 839.675802645, + 840.873677363, + 842.071552081, + 843.2694268, + 844.467301518, + 845.665176236, + 846.863050955, + 848.060925673, + 849.258800391, + 850.45667511, + 851.654549828, + 852.852424546, + 854.050299265, + 855.248173983, + 856.446048701, + 857.64392342, + 858.841798138, + 860.039672857, + 861.237547575, + 862.435422293, + 863.633297012, + 864.83117173, + 866.029046448, + 867.226921167, + 868.424795885, + 869.622670603, + 870.820545322, + 872.01842004, + 873.216294758, + 874.414169477, + 875.612044195, + 876.809918913, + 878.007793632, + 879.20566835, + 880.403543068, + 881.601417787, + 882.799292505, + 883.997167224, + 885.195041942, + 886.39291666, + 887.590791379, + 888.788666097, + 889.986540815, + 891.184415534, + 892.382290252, + 893.58016497, + 894.778039689, + 895.975914407, + 897.173789125, + 898.371663844, + 899.569538562, + 900.76741328, + 901.965287999, + 903.163162717, + 904.361037436, + 905.558912154, + 906.756786872, + 907.954661591, + 909.152536309, + 910.350411027, + 911.548285746, + 912.746160464, + 913.944035182, + 915.141909901, + 916.339784619, + 917.537659337, + 918.735534056, + 919.933408774, + 921.131283492, + 922.329158211, + 923.527032929, + 924.724907647, + 925.922782366, + 927.120657084, + 928.318531803, + 929.516406521, + 930.714281239, + 931.912155958, + 933.110030676, + 934.307905394, + 935.505780113, + 936.703654831, + 937.901529549, + 939.099404268, + 940.297278986, + 941.495153704, + 942.693028423, + 943.890903141, + 945.088777859, + 946.286652578, + 947.484527296, + 948.682402014, + 949.880276733, + 951.078151451, + 952.27602617, + 953.473900888, + 954.671775606, + 955.869650325, + 957.067525043, + 958.265399761, + 959.46327448, + 960.661149198, + 961.859023916, + 963.056898635, + 964.254773353, + 965.452648071, + 966.65052279, + 967.848397508, + 969.046272226, + 970.244146945, + 971.442021663, + 972.639896381, + 973.8377711, + 975.035645818, + 976.233520537, + 977.431395255, + 978.629269973, + 979.827144692, + 981.02501941, + 982.222894128, + 983.420768847, + 984.618643565, + 985.816518283, + 987.014393002, + 988.21226772, + 989.410142438, + 990.608017157, + 991.805891875, + 993.003766593, + 994.201641312, + 995.39951603, + 996.597390748, + 997.795265467, + 998.993140185, + 1000.1910149, + 1001.38888962, + 1002.58676434, + 1003.78463906, + 1004.98251378, + 1006.1803885, + 1007.37826321, + 1008.57613793, + 1009.77401265, + 1010.97188737, + 1012.16976209, + 1013.36763681, + 1014.56551152, + 1015.76338624, + 1016.96126096, + 1018.15913568, + 1019.3570104, + 1020.55488512, + 1021.75275983, + 1022.95063455, + 1024.14850927, + 1025.34638399, + 1026.54425871, + 1027.74213343, + 1028.94000814, + 1030.13788286, + 1031.33575758, + 1032.5336323, + 1033.73150702, + 1034.92938174, + 1036.12725645, + 1037.32513117, + 1038.52300589, + 1039.72088061, + 1040.91875533, + 1042.11663005, + 1043.31450476, + 1044.51237948, + 1045.7102542, + 1046.90812892, + 1048.10600364, + 1049.30387836, + 1050.50175307, + 1051.69962779, + 1052.89750251, + 1054.09537723, + 1055.29325195, + 1056.49112667, + 1057.68900138, + 1058.8868761, + 1060.08475082, + 1061.28262554, + 1062.48050026, + 1063.67837498, + 1064.87624969, + 1066.07412441, + 1067.27199913, + 1068.46987385, + 1069.66774857, + 1070.86562329, + 1072.063498, + 1073.26137272, + 1074.45924744, + 1075.65712216, + 1076.85499688, + 1078.0528716, + 1079.25074631, + 1080.44862103, + 1081.64649575, + 1082.84437047, + 1084.04224519, + 1085.24011991, + 1086.43799462, + 1087.63586934, + 1088.83374406, + 1090.03161878, + 1091.2294935, + 1092.42736822, + 1093.62524293, + 1094.82311765, + 1096.02099237, + 1097.21886709, + 1098.41674181, + 1099.61461653, + 1100.81249124, + 1102.01036596, + 1103.20824068, + 1104.4061154, + 1105.60399012, + 1106.80186484, + 1107.99973956, + 1109.19761427, + 1110.39548899, + 1111.59336371, + 1112.79123843, + 1113.98911315, + 1115.18698787, + 1116.38486258, + 1117.5827373, + 1118.78061202, + 1119.97848674, + 1121.17636146, + 1122.37423618, + 1123.57211089, + 1124.76998561, + 1125.96786033, + 1127.16573505, + 1128.36360977, + 1129.56148449, + 1130.7593592, + 1131.95723392, + 1133.15510864, + 1134.35298336, + 1135.55085808, + 1136.7487328, + 1137.94660751, + 1139.14448223, + 1140.34235695, + 1141.54023167, + 1142.73810639, + 1143.93598111, + 1145.13385582, + 1146.33173054, + 1147.52960526, + 1148.72747998, + 1149.9253547, + 1151.12322942, + 1152.32110413 + ], + "ys": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.000002116103548000284, + 0.000009434294984834599, + 0.0000233653100091698, + 0.000045584397263172786, + 0.00007829583127601052, + 0.00012361571559568328, + 0.0001838364957325247, + 0.0002608979332722017, + 0.00035762149961204805, + 0.00047621146928123067, + 0.0006193129717147499, + 0.0007894829653664394, + 0.0009890138957466329, + 0.0012212562601396641, + 0.0014880616491500334, + 0.0017922515341750743, + 0.0021364710446497874, + 0.0025229244551033393, + 0.0029543450659518973, + 0.003433466177611628, + 0.003958348028496865, + 0.004525463779360941, + 0.005134637088241523, + 0.00578507441630811, + 0.006474836001975036, + 0.007202775622487134, + 0.007966953516258736, + 0.008766399802497011, + 0.009598910206672789, + 0.010461839599351071, + 0.01135351273188969, + 0.01227172532975948, + 0.013214537631374774, + 0.014177541087677237, + 0.015160030330817536, + 0.01615909571841717, + 0.017172444804965808, + 0.01819813782887778, + 0.019233088805812253, + 0.020275005290258892, + 0.021322917401424866, + 0.02237779502010301, + 0.02343769838470765, + 0.024502892008182293, + 0.02557434577131977, + 0.02665073710940258, + 0.027732595048317727, + 0.028818420681385373, + 0.029907155956831518, + 0.031000387952317163, + 0.032097411299992974, + 0.03319734429004729, + 0.0343004514354236, + 0.035408407984764086, + 0.03652086125414407, + 0.03763957466318688, + 0.0387641073569867, + 0.039894900190449355, + 0.041034069267122844, + 0.04218090921915783, + 0.04333762432108349, + 0.04450500811173032, + 0.04568491218170281, + 0.046875749453339964, + 0.04807540382309379, + 0.049285462368625285, + 0.05050530789306628, + 0.05173705649996478, + 0.05298044367637728, + 0.054234058686605115, + 0.055497813359667116, + 0.056773559286167785, + 0.05806120829512596, + 0.05936128941242864, + 0.06067274458630181, + 0.06199345771319749, + 0.06332528038372016, + 0.06466777174296401, + 0.06601793397756936, + 0.06737805953304654, + 0.06874770755448972, + 0.07012467376736974, + 0.07150851731678076, + 0.07289985539959094, + 0.07430062777738597, + 0.07570968822741066, + 0.07712738943358968, + 0.07855126260845037, + 0.07998386471044656, + 0.08142625379135225, + 0.08287816533822395, + 0.08433792410241948, + 0.08580535374197651, + 0.08727895535021521, + 0.0887602278338154, + 0.09025067009945693, + 0.09174834238555414, + 0.09325518445369267, + 0.0947736650913452, + 0.09630149185300141, + 0.09783822388375545, + 0.09938588911617416, + 0.1009456337730127, + 0.10251781053819575, + 0.10410224306976096, + 0.1056984905128025, + 0.10730593567045221, + 0.1089259011074276, + 0.11055662340410533, + 0.1121980143895042, + 0.1138515729703041, + 0.11551853354024132, + 0.1171977498765607, + 0.1188896628341681, + 0.12059180362559083, + 0.12230223248924323, + 0.12402112576708763, + 0.1257446039359527, + 0.12747266699583842, + 0.12920399238202732, + 0.13093928546236872, + 0.13267722367214513, + 0.13441507371094036, + 0.13615380545954725, + 0.13789253720815414, + 0.13963179798264805, + 0.14137167595401012, + 0.14311128941242868, + 0.14485072652888492, + 0.1465894582774918, + 0.14832519221273904, + 0.1500582810185513, + 0.1517903999435707, + 0.15352278338153358, + 0.15525657755519515, + 0.15699336954221638, + 0.15873298300063493, + 0.160477093179093, + 0.16222464202581657, + 0.1639796854059393, + 0.16574001904493202, + 0.16750670099456877, + 0.16928096564858583, + 0.17106113775834106, + 0.17284642378500398, + 0.1746371764124992, + 0.17643348381180796, + 0.1782382556253087, + 0.18005219722085078, + 0.18187724836001987, + 0.18371384989772177, + 0.18556173732101303, + 0.18742002892008194, + 0.18928652042039937, + 0.1911646504902308, + 0.19305344924878337, + 0.19495494462862395, + 0.19687037102348887, + 0.19880016928828395, + 0.20074151795161188, + 0.20269776751075697, + 0.20466680186217123, + 0.20664791563800533, + 0.20864110883825926, + 0.2106483212245187, + 0.21266946462580247, + 0.21470542075192225, + 0.21675363264442418, + 0.21881268956760963, + 0.2208790646822319, + 0.22295531494674484, + 0.22503967694152513, + 0.22713356140227142, + 0.2292396134584187, + 0.23135201382520998, + 0.23347129152853227, + 0.2355933907032519, + 0.23771778232348184, + 0.2398429674825423, + 0.24196912252239558, + 0.24409219157790804, + 0.24621446709459, + 0.2483376243210836, + 0.25046263313818173, + 0.25258905269097853, + 0.254718470057135, + 0.25685026803978295, + 0.2589843584679412, + 0.26112118219651564, + 0.26326232630316726, + 0.2654049693164987, + 0.2675493757494535, + 0.2696948402341823, + 0.27183845312830657, + 0.2739855046906964, + 0.27613740565705036, + 0.27829821189250215, + 0.2804659836354661, + 0.28264089722790453, + 0.2848233935247233, + 0.2870152359455458, + 0.2892149255836921, + 0.2914212280454259, + 0.2936330852789732, + 0.29584952740354115, + 0.2980672920928266, + 0.30028620300486725, + 0.3025066128235877, + 0.30472869789095036, + 0.3069514883261623, + 0.30917648303590345, + 0.3114056217817594, + 0.31363722931508803, + 0.3158739507653243, + 0.31811146575439114, + 0.32034748183677814, + 0.3225805001058054, + 0.3248135183748327, + 0.32704847640544565, + 0.32928546236862544, + 0.3315259751710519, + 0.33377001481272506, + 0.33601758129364484, + 0.33827052620441583, + 0.3405290258870003, + 0.3427935211963041, + 0.3450635712774214, + 0.347339087959371, + 0.34962174649079514, + 0.35191463285603464, + 0.35421668900331543, + 0.3565262396839954, + 0.35884566551456604, + 0.361171615997743, + 0.3635050610143191, + 0.36584652959018144, + 0.36819461098963124, + 0.37054648374127125, + 0.37290038442547807, + 0.37525551950342123, + 0.3776108309233267, + 0.37996781759187437, + 0.38232692036397004, + 0.3846859349650845, + 0.3870450377371802, + 0.38940678563871084, + 0.3917707378147707, + 0.39413645341045384, + 0.3965015518092688, + 0.3988625943429501, + 0.4012195810114978, + 0.4035719827890248, + 0.40591697820413375, + 0.4082580940960714, + 0.4105959476617059, + 0.41293062707201833, + 0.4152640720885945, + 0.4175973407632083, + 0.4199313148056715, + 0.42226599421598393, + 0.4245999682584471, + 0.42693253156521155, + 0.42926174437469167, + 0.4315886647386615, + 0.4339137335120268, + 0.4362341292233903, + 0.43855135077943175, + 0.4408662798899629, + 0.44318006277773886, + 0.4454941983494395, + 0.4478085984340836, + 0.4501246737673699, + 0.4524450694787334, + 0.45476740495168255, + 0.45709194469916087, + 0.4594182478662625, + 0.46174675530789333, + 0.4640786132468085, + 0.46641496790576314, + 0.46875661282358777, + 0.4711044297100941, + 0.4734585949072444, + 0.47582069549269973, + 0.4781879099950627, + 0.48055873950765354, + 0.48293415391126504, + 0.48531397686393485, + 0.48769944275939936, + 0.4900893172039222, + 0.49248183677788, + 0.49487938209776433, + 0.4972810714537635, + 0.4996844360584048, + 0.5020906221344434, + 0.5044991006559925, + 0.506909430768146, + 0.5093202017352053, + 0.511728503914792, + 0.5141317803484521, + 0.5165308245750162, + 0.5189246667136915, + 0.5213111024899488, + 0.5236908372716375, + 0.5260673978980042, + 0.5284420187627852, + 0.5308141708400935, + 0.5331809444875507, + 0.5355383720110042, + 0.5378870706073222, + 0.5402286273541657, + 0.5425597799252315, + 0.5448810573464067, + 0.5471929886435781, + 0.549494515764972, + 0.5517859913945128, + 0.5540697079777109, + 0.5563437257529807, + 0.5586108661917195, + 0.560871481977852, + 0.5631236333497924, + 0.5653677611624467, + 0.5676059815193628, + 0.5698365310009175, + 0.5720573816745438, + 0.574268092685336, + 0.5764703392819361, + 0.578667648303591, + 0.5808616949989426, + 0.5830532729068215, + 0.5852436164209641, + 0.5874338717641255, + 0.5896236862523812, + 0.5918150878182978, + 0.5940076356069697, + 0.5962018586442837, + 0.59839625802356, + 0.6005930380193278, + 0.6027907878958885, + 0.604990036679129, + 0.6071912252239551, + 0.6093945298723292, + 0.6115994215983643, + 0.6138074874797215, + 0.6160200500811182, + 0.6182364922056861, + 0.6204548740918397, + 0.6226719334132759, + 0.624890050786486, + 0.6271082563306772, + 0.6293233758905277, + 0.6315339105593575, + 0.6337381850885244, + 0.6359328489807442, + 0.6381186076038662, + 0.6402931685123799, + 0.6424552973125492, + 0.6446047294914306, + 0.6467413768780427, + 0.6488642695915928, + 0.6509740248289491, + 0.6530712597869797, + 0.6551551809268541, + 0.6572235839740432, + 0.6592753227057918, + 0.6613112788319115, + 0.6633323340622141, + 0.6653408690131911, + 0.6673330923326523, + 0.6693086513366728, + 0.6712702793256691, + 0.6732193870353397, + 0.6751580905692326, + 0.6770890350567829, + 0.6790138957466326, + 0.6809341715454618, + 0.6828506559921007, + 0.6847617620088885, + 0.686666431544051, + 0.688566516188193, + 0.6904606052056156, + 0.692346670663752, + 0.6942250652465269, + 0.6960970233476766, + 0.6979632503350506, + 0.6998236580376674, + 0.7016773647457157, + 0.7035238414333084, + 0.7053651160330121, + 0.7072003068350153, + 0.7090272977357701, + 0.7108456478803705, + 0.7126546519009672, + 0.7144533399167674, + 0.7162395958242231, + 0.7180114798617487, + 0.7197692565422876, + 0.7215153064823313, + 0.7232521866403337, + 0.7249792798194267, + 0.7266973795584406, + 0.728407808422093, + 0.7301119771460826, + 0.7318085631656918, + 0.7334959794032596, + 0.7351736968328991, + 0.7368421563095162, + 0.7385013578331108, + 0.7401505960358334, + 0.741792339705157, + 0.7434271178669684, + 0.7450559004020604, + 0.7466791281653389, + 0.7482961839599358, + 0.7499071559568322, + 0.7515155709952748, + 0.753121693588207, + 0.7547247301967984, + 0.7563230055724068, + 0.7579152853212959, + 0.7595026274952397, + 0.7610850320942381, + 0.7626618819214229, + 0.76423511673838, + 0.7658072053325818, + 0.7673781477040286, + 0.7689483847076259, + 0.770516329265713, + 0.7720820695492708, + 0.7736441066516198, + 0.7752030577696278, + 0.7767585702193703, + 0.7783095859490734, + 0.7798575156944356, + 0.7814019186005512, + 0.7829406785638721, + 0.7844729138745866, + 0.7859985363617137, + 0.7875170169993663, + 0.7890306482330547, + 0.7905365204204003, + 0.7920363088100455, + 0.7935286908372727, + 0.7950138428440443, + 0.7964894723848498, + 0.7979556676306705, + 0.7994118113846382, + 0.8008601079212821, + 0.802300469069621, + 0.8037327184876926, + 0.8051564153205909, + 0.8065714713973349, + 0.8079787684277362, + 0.8093768075051151, + 0.8107676165620383, + 0.8121511074275247, + 0.8135289553502164, + 0.814900454962264, + 0.8162668406574041, + 0.8176244974254085, + 0.8189751005149197, + 0.8203154757706156, + 0.8216457995344585, + 0.8229651900966367, + 0.8242755872187358, + 0.8255766382168314, + 0.8268694893136783, + 0.8281523770896535, + 0.8294261832545685, + 0.8306909959794045, + 0.8319471679480862, + 0.8331932002539337, + 0.8344288283840036, + 0.8356554630739944, + 0.8368712527333018, + 0.8380765500458502, + 0.8392696797629977, + 0.8404508182267065, + 0.8416193482401085, + 0.8427783557875446, + 0.8439299569725626, + 0.845076532411654, + 0.846218082104819, + 0.8473546942230387, + 0.8484841644917838, + 0.8496071101079226, + 0.8507219439937941, + 0.8518302532270592, + 0.8529315969528122, + 0.8540259751710529, + 0.8551126825139322, + 0.8561934824010734, + 0.857268198490514, + 0.8583357727304802, + 0.8593971750017647, + 0.8604518762784805, + 0.8615004937574958, + 0.8625439091486223, + 0.863583180503634, + 0.8646161035480017, + 0.8656396804683656, + 0.866652941383933, + 0.8676563271496098, + 0.8686490442265654, + 0.8696337377442349, + 0.8706101431896747, + 0.871578348733866, + 0.8725376490089595, + 0.8734870741341623, + 0.8744266241094744, + 0.8753562107639147, + 0.8762751287296338, + 0.8771832898356505, + 0.8780807822529462, + 0.8789671651266148, + 0.8798431438245057, + 0.8807088946885813, + 0.8815639768639357, + 0.8824074204697762, + 0.8832412534386694, + 0.8840669746772953, + 0.884885113211541, + 0.8856963744092555, + 0.8865011109543638, + 0.8872972949142989, + 0.8880852789729855, + 0.8888663856951411, + 0.8896410559356716, + 0.8904101714043885, + 0.8911739084432543, + 0.8919338541299299, + 0.8926900966353964, + 0.8934423714467106, + 0.8941906785638721, + 0.894935458841787, + 0.895677593990267, + 0.8964162904704814, + 0.8971504902306564, + 0.8978794879029425, + 0.8986030189743962, + 0.8993215242999235, + 0.9000345630246185, + 0.9007414297806318, + 0.9014429181067939, + 0.9021402623968412, + 0.9028332863088113, + 0.9035211963038737, + 0.904203198843198, + 0.9048791175848218, + 0.905549481554632, + 0.9062135853847795, + 0.9068718699301699, + 0.9075257459265019, + 0.9081757423996627, + 0.9088210658108217, + 0.9094609226211483, + 0.9100961945404542, + 0.910728733159344, + 0.9113603018974409, + 0.9119897545319898, + 0.9126155039853298, + 0.9132379911123665, + 0.9138571277421189, + 0.9144726493616435, + 0.9150841151160344, + 0.915691701347254, + 0.9162960252521704, + 0.9168975276856894, + 0.9174969140156605, + 0.9180940960711024, + 0.9186882803131846, + 0.9192792903999448, + 0.9198663327925526, + 0.9204501128588571, + 0.9210312477957268, + 0.9216087677223685, + 0.9221825844678013, + 0.9227520808351569, + 0.9233161106016802, + 0.9238754673062016, + 0.9244312090004952, + 0.9249835120265233, + 0.9255333462650787, + 0.9260805353741991, + 0.9266249030119221, + 0.9271661846653043, + 0.9277035867955152, + 0.9282371094025548, + 0.9287663116315171, + 0.9292903117725907, + 0.9298104323904929, + 0.9303264971432614, + 0.9308385942018775, + 0.9313458418565295, + 0.9318483282781984, + 0.932347464202583, + 0.9328427206037962, + 0.9333342738238005, + 0.933822300204558, + 0.9343071524299936, + 0.934788742329126, + 0.9352667172180306, + 0.9357401953868957, + 0.936209617690627, + 0.9366757776680553, + 0.937139028003105, + 0.9376005149185314, + 0.9380603265853156, + 0.9385181984905141, + 0.9389752768568822, + 0.9394302391197022, + 0.939883437962899, + 0.9403350497284347, + 0.9407846335614036, + 0.941232365803768, + 0.9416779819425845, + 0.9421218346617775, + 0.9425628659095732, + 0.9430014283698962, + 0.9434368166748972, + 0.9438687663116327, + 0.944297365451084, + 0.9447233194611002, + 0.9451461874867756, + 0.9455651759892797, + 0.9459801967976312, + 0.9463895746631881, + 0.9467938386118373, + 0.9471936940114282, + 0.9475888763490172, + 0.9479795619665667, + 0.9483652218381898, + 0.948745679621924, + 0.9491216406856188, + 0.9494934577131987, + 0.9498607780207391, + 0.9502242188051081, + 0.9505847499470986, + 0.9509416660788613, + 0.9512955843972644, + 0.9516464167313265, + 0.9519935458841797, + 0.9523364428299369, + 0.9526753720815416, + 0.953010950835862, + 0.9533437962897662, + 0.9536754955209152, + 0.9540052549904786, + 0.9543324575015881, + 0.9546567503703192, + 0.9549791916484457, + 0.9553005748747982, + 0.9556211645623203, + 0.9559409607110119, + 0.9562586407561554, + 0.9565740283557886, + 0.9568865063130434, + 0.9571961627989007, + 0.9575038795231724, + 0.9578096564858585, + 0.9581137581999023, + 0.9584169782041345, + 0.9587189638146304, + 0.9590196268604088, + 0.9593185264865638, + 0.9596147809832838, + 0.9599071559568325, + 0.9601958277491722, + 0.9604808845312841, + 0.960762767158074, + 0.9610407702616925, + 0.9613148056711586, + 0.961584256189604, + 0.9618491218170286, + 0.9621105487761878, + 0.9623688897510062, + 0.9626239683995214, + 0.9628756965507522, + 0.9631238096917553, + 0.9633683959935117, + 0.9636096317979836, + 0.9638470762502656, + 0.9640818755731124, + 0.9643142942794678, + 0.9645444205403129, + 0.9647724306976099, + 0.9649995591450953, + 0.9652257177117878, + 0.9654512590816121, + 0.9656760950835871, + 0.9659002257177128, + 0.9661229456161399, + 0.9663449601467176, + 0.9665660929674836, + 0.9667859032235322, + 0.9670046554278067, + 0.9672231431191377, + 0.9674411899555629, + 0.9676588841080634, + 0.9678757847217335, + 0.9680918917965731, + 0.9683077343584691, + 0.9685224306976099, + 0.9687365980108638, + 0.9689506771531364, + 0.9691646681244279, + 0.9693780418988512, + 0.9695914156732746, + 0.9698043485927921, + 0.9700171933413284, + 0.9702303907737895, + 0.9704447344290057, + 0.9706600479650147, + 0.9708764195527977, + 0.971094025534317, + 0.971312513225648, + 0.9715317062848284, + 0.9717516928828392, + 0.9719722085067372, + 0.9721938703533902, + 0.9724168547647608, + 0.97264124991183, + 0.9728675848204849, + 0.9730946250969891, + 0.9733217535444745, + 0.9735492346758845, + 0.9737774211751439, + 0.9740061367002902, + 0.9742359102772106, + 0.9744656838541309, + 0.9746951929181078, + 0.9749239966142353, + 0.9751520949425135, + 0.9753797524158859, + 0.975606704521409, + 0.9758333039430074, + 0.9760590216547941, + 0.9762843866826562, + 0.9765097517105182, + 0.9767340586866062, + 0.9769569549269956, + 0.977178264089724, + 0.9773979861747913, + 0.9776164738661224, + 0.9778342561896041, + 0.9780515094871988, + 0.9782676165620383, + 0.9784825774141227, + 0.9786968328983577, + 0.978911176553574, + 0.9791257847217336, + 0.9793410982577426, + 0.9795570289906198, + 0.9797733124074217, + 0.9799903011920729, + 0.9802076426606487, + 0.9804259540100174, + 0.9806445298723296, + 0.9808635465895477, + 0.981083797700502, + 0.9813053713761739, + 0.9815280031036198, + 0.9817512520279338, + 0.9819752063200972, + 0.9821996014671663, + 0.9824238202722732, + 0.9826482154193423, + 0.9828722578824869, + 0.9830947132679704, + 0.9833154934048117, + 0.9835345982930109, + 0.9837514107356998, + 0.9839661070748407, + 0.9841786873104336, + 0.984388886929535, + 0.9845971467870507, + 0.9848031141990561, + 0.9850071418494758, + 0.9852088770543852, + 0.9854083198137842, + 0.9856057346406164, + 0.9858012097058629, + 0.9859951858644296, + 0.9861877512872976, + 0.9863788178034858, + 0.9865689144388812, + 0.9867584820483896, + 0.9869482259998602, + 0.9871384108062368, + 0.9873292128094815, + 0.9875206320095944, + 0.9877132856034436, + 0.9879071735910292, + 0.9881027368272569, + 0.9883002398250703, + 0.9884990653876011, + 0.9886993016858306, + 0.988900507864853, + 0.9891028602666305, + 0.9893064470621444, + 0.9895112682513947, + 0.9897171474924189, + 0.9899235557593301, + 0.9901304930521283, + 0.9903383120547382, + 0.9905462192283292, + 0.990753509205052, + 0.9909600938139256, + 0.9911665020808368, + 0.9913727340057856, + 0.9915786132468098, + 0.9917838752909659, + 0.991988167454329, + 0.9921907843690501, + 0.9923914615221854, + 0.9925903752556974, + 0.9927873492276237, + 0.9929824716089456, + 0.993175742399663, + 0.9933668970868323, + 0.9935553184735856, + 0.9937419764407155, + 0.9939276645270525, + 0.9941122945616155, + 0.9942958665444046, + 0.9944797030401371, + 0.9946639803907754, + 0.9948481695704326, + 0.9950322705791087, + 0.9952156662199354, + 0.9953983564929128, + 0.9955800768850973, + 0.9957614445933571, + 0.9959429004725981, + 0.9961243563518392, + 0.996306253085986, + 0.9964884143330763, + 0.9966710164350725, + 0.9968533540241252, + 0.9970349862453286, + 0.9972160012696638, + 0.997394900190451, + 0.997570536784935, + 0.9977426465401724, + 0.9979104359173326, + 0.998072494180717, + 0.9982284686464008, + 0.9983783593143841, + 0.9985215489877988, + 0.9986582140086071, + 0.9987880016928845, + 0.9989107356986685, + 0.9990253579741852, + 0.9991313394935476, + 0.9992289447696991, + 0.9993173802638093, + 0.9993969986598028, + 0.9994680644706232, + 0.9995311948931386, + 0.9995869189532359, + 0.99963558933484, + 0.9996779114058, + 0.9997145905339653, + 0.9997459794032606, + 0.9997726952105541, + 0.999795355152714, + 0.9998144000846461, + 0.9998301826902749, + 0.9998431438245065, + 0.9998535480002841, + 0.9998618360725138, + 0.9998684488961013, + 0.999874091838896, + 0.9998792057558037, + 0.9998837906468243, + 0.9998883755378449, + 0.9998929604288656, + 0.9998971926359616, + 0.9999010721591329, + 0.9999045989983796, + 0.9999077731537016, + 0.9999106827960801, + 0.9999133279255151, + 0.9999157085420066, + 0.9999178246455547, + 0.9999197644071404, + 0.9999215278267637, + 0.9999231149044246, + 0.9999245256401234, + 0.9999257600338597, + 0.9999268180856337, + 0.9999276997954454, + 0.9999284051632947, + 0.9999289341891817, + 0.9999292868731063, + 0.9999294632150687, + 0.9999294632150687, + 0.9999294632150687, + 0.9999294632150687, + 0.9999294632150687, + 0.9999294632150687, + 0.9999294632150687, + 0.9999294632150687, + 0.9999294632150687, + 0.9999294632150687, + 0.9999294632150687, + 0.9999294632150687, + 0.9999294632150687, + 0.9999294632150687, + 0.9999294632150687, + 0.9999295513860499, + 0.9999297277280123, + 0.9999299922409558, + 0.9999303449248804, + 0.9999307857797862, + 0.9999313148056732, + 0.9999319320025414, + 0.9999326373703907, + 0.9999334309092213, + 0.999934312619033, + 0.9999352824998258, + 0.9999363405515997, + 0.9999374867743549, + 0.9999387211680912, + 0.9999400437328088, + 0.9999415426394886, + 0.9999432178881308, + 0.9999450694787353, + 0.9999470974113022, + 0.9999493016858313, + 0.9999515059603604, + 0.9999537102348895, + 0.9999559145094187, + 0.9999581187839478, + 0.9999603230584769, + 0.9999625273330061, + 0.9999647316075352, + 0.9999669358820643, + 0.9999691401565934, + 0.9999713444311226, + 0.9999735487056517, + 0.9999757529801808, + 0.99997795725471, + 0.9999801615292391, + 0.9999823658037682, + 0.9999843937363351, + 0.9999862453269396, + 0.9999879205755817, + 0.9999894194822616, + 0.9999907420469791, + 0.9999919764407155, + 0.9999931226634706, + 0.9999941807152446, + 0.9999951505960374, + 0.9999960323058491, + 0.9999968258446796, + 0.999997531212529, + 0.9999981484093972, + 0.9999986774352841, + 0.99999911829019, + 0.9999994709741146, + 0.9999997354870581, + 0.9999999118290205, + 1.0000000000000016, + 1.0000000000000016, + 1.0000000000000016, + 1.0000000000000016, + 1.0000000000000016, + 1.0000000000000016, + 1.0000000000000016, + 1.0000000000000016, + 1.0000000000000016, + 1.0000000000000016, + 1.0000000000000016, + 1.0000000000000016, + 1.0000000000000016, + 1.0000000000000016, + 1.0000000000000016, + 1.0000000000000016, + 1.0000000000000016, + 1.0000000000000016, + 1.0000000000000016, + 1.0000000000000016 + ] + }, + { + "createdAt": "2019-10-26T20:44:15.592+00:00", + "xs": [ + -112.793432444, + -109.366091078, + -105.938749712, + -102.511408346, + -99.0840669798, + -95.6567256136, + -92.2293842474, + -88.8020428813, + -85.3747015151, + -81.9473601489, + -78.5200187827, + -75.0926774166, + -71.6653360504, + -68.2379946842, + -64.810653318, + -61.3833119519, + -57.9559705857, + -54.5286292195, + -51.1012878534, + -47.6739464872, + -44.246605121, + -40.8192637548, + -37.3919223887, + -33.9645810225, + -30.5372396563, + -27.1098982901, + -23.682556924, + -20.2552155578, + -16.8278741916, + -13.4005328254, + -9.97319145927, + -6.5458500931, + -3.11850872692, + 0.308832639251, + 3.73617400542, + 7.1635153716, + 10.5908567378, + 14.0181981039, + 17.4455394701, + 20.8728808363, + 24.3002222025, + 27.7275635686, + 31.1549049348, + 34.582246301, + 38.0095876672, + 41.4369290333, + 44.8642703995, + 48.2916117657, + 51.7189531319, + 55.146294498, + 58.5736358642, + 62.0009772304, + 65.4283185965, + 68.8556599627, + 72.2830013289, + 75.7103426951, + 79.1376840612, + 82.5650254274, + 85.9923667936, + 89.4197081598, + 92.8470495259, + 96.2743908921, + 99.7017322583, + 103.129073624, + 106.556414991, + 109.983756357, + 113.411097723, + 116.838439089, + 120.265780455, + 123.693121821, + 127.120463188, + 130.547804554, + 133.97514592, + 137.402487286, + 140.829828652, + 144.257170019, + 147.684511385, + 151.111852751, + 154.539194117, + 157.966535483, + 161.393876849, + 164.821218216, + 168.248559582, + 171.675900948, + 175.103242314, + 178.53058368, + 181.957925046, + 185.385266413, + 188.812607779, + 192.239949145, + 195.667290511, + 199.094631877, + 202.521973243, + 205.94931461, + 209.376655976, + 212.803997342, + 216.231338708, + 219.658680074, + 223.086021441, + 226.513362807, + 229.940704173, + 233.368045539, + 236.795386905, + 240.222728271, + 243.650069638, + 247.077411004, + 250.50475237, + 253.932093736, + 257.359435102, + 260.786776468, + 264.214117835, + 267.641459201, + 271.068800567, + 274.496141933, + 277.923483299, + 281.350824665, + 284.778166032, + 288.205507398, + 291.632848764, + 295.06019013, + 298.487531496, + 301.914872863, + 305.342214229, + 308.769555595, + 312.196896961, + 315.624238327, + 319.051579693, + 322.47892106, + 325.906262426, + 329.333603792, + 332.760945158, + 336.188286524, + 339.61562789, + 343.042969257, + 346.470310623, + 349.897651989, + 353.324993355, + 356.752334721, + 360.179676087, + 363.607017454, + 367.03435882, + 370.461700186, + 373.889041552, + 377.316382918, + 380.743724285, + 384.171065651, + 387.598407017, + 391.025748383, + 394.453089749, + 397.880431115, + 401.307772482, + 404.735113848, + 408.162455214, + 411.58979658, + 415.017137946, + 418.444479312, + 421.871820679, + 425.299162045, + 428.726503411, + 432.153844777, + 435.581186143, + 439.008527509, + 442.435868876, + 445.863210242, + 449.290551608, + 452.717892974, + 456.14523434, + 459.572575706, + 462.999917073, + 466.427258439, + 469.854599805, + 473.281941171, + 476.709282537, + 480.136623904, + 483.56396527, + 486.991306636, + 490.418648002, + 493.845989368, + 497.273330734, + 500.700672101, + 504.128013467, + 507.555354833, + 510.982696199, + 514.410037565, + 517.837378931, + 521.264720298, + 524.692061664, + 528.11940303, + 531.546744396, + 534.974085762, + 538.401427128, + 541.828768495, + 545.256109861, + 548.683451227, + 552.110792593, + 555.538133959, + 558.965475326, + 562.392816692, + 565.820158058, + 569.247499424, + 572.67484079, + 576.102182156, + 579.529523523, + 582.956864889, + 586.384206255, + 589.811547621, + 593.238888987, + 596.666230353, + 600.09357172, + 603.520913086, + 606.948254452, + 610.375595818, + 613.802937184, + 617.23027855, + 620.657619917, + 624.084961283, + 627.512302649, + 630.939644015, + 634.366985381, + 637.794326748, + 641.221668114, + 644.64900948, + 648.076350846, + 651.503692212, + 654.931033578, + 658.358374945, + 661.785716311, + 665.213057677, + 668.640399043, + 672.067740409, + 675.495081775, + 678.922423142, + 682.349764508, + 685.777105874, + 689.20444724, + 692.631788606, + 696.059129972, + 699.486471339, + 702.913812705, + 706.341154071, + 709.768495437, + 713.195836803, + 716.623178169, + 720.050519536, + 723.477860902, + 726.905202268, + 730.332543634, + 733.759885, + 737.187226367, + 740.614567733, + 744.041909099, + 747.469250465, + 750.896591831, + 754.323933197, + 757.751274564, + 761.17861593, + 764.605957296, + 768.033298662, + 771.460640028, + 774.887981394, + 778.315322761, + 781.742664127, + 785.170005493, + 788.597346859, + 792.024688225, + 795.452029591, + 798.879370958, + 802.306712324, + 805.73405369, + 809.161395056, + 812.588736422, + 816.016077789, + 819.443419155, + 822.870760521, + 826.298101887, + 829.725443253, + 833.152784619, + 836.580125986, + 840.007467352, + 843.434808718, + 846.862150084, + 850.28949145, + 853.716832816, + 857.144174183, + 860.571515549, + 863.998856915, + 867.426198281, + 870.853539647, + 874.280881013, + 877.70822238, + 881.135563746, + 884.562905112, + 887.990246478, + 891.417587844, + 894.844929211, + 898.272270577, + 901.699611943, + 905.126953309, + 908.554294675, + 911.981636041, + 915.408977408, + 918.836318774, + 922.26366014, + 925.691001506, + 929.118342872, + 932.545684238, + 935.973025605, + 939.400366971, + 942.827708337, + 946.255049703, + 949.682391069, + 953.109732435, + 956.537073802, + 959.964415168, + 963.391756534, + 966.8190979, + 970.246439266, + 973.673780633, + 977.101121999, + 980.528463365, + 983.955804731, + 987.383146097, + 990.810487463, + 994.23782883, + 997.665170196, + 1001.09251156, + 1004.51985293, + 1007.94719429, + 1011.37453566, + 1014.80187703, + 1018.22921839, + 1021.65655976, + 1025.08390113, + 1028.51124249, + 1031.93858386, + 1035.36592522, + 1038.79326659, + 1042.22060796, + 1045.64794932, + 1049.07529069, + 1052.50263205, + 1055.92997342, + 1059.35731479, + 1062.78465615, + 1066.21199752, + 1069.63933889, + 1073.06668025, + 1076.49402162, + 1079.92136298, + 1083.34870435, + 1086.77604572, + 1090.20338708, + 1093.63072845, + 1097.05806981, + 1100.48541118, + 1103.91275255, + 1107.34009391, + 1110.76743528, + 1114.19477665, + 1117.62211801, + 1121.04945938, + 1124.47680074, + 1127.90414211, + 1131.33148348, + 1134.75882484, + 1138.18616621, + 1141.61350757, + 1145.04084894, + 1148.46819031, + 1151.89553167, + 1155.32287304, + 1158.75021441, + 1162.17755577, + 1165.60489714, + 1169.0322385, + 1172.45957987, + 1175.88692124, + 1179.3142626, + 1182.74160397, + 1186.16894534, + 1189.5962867, + 1193.02362807, + 1196.45096943, + 1199.8783108, + 1203.30565217, + 1206.73299353, + 1210.1603349, + 1213.58767626, + 1217.01501763, + 1220.442359, + 1223.86970036, + 1227.29704173, + 1230.7243831, + 1234.15172446, + 1237.57906583, + 1241.00640719, + 1244.43374856, + 1247.86108993, + 1251.28843129, + 1254.71577266, + 1258.14311402, + 1261.57045539, + 1264.99779676, + 1268.42513812, + 1271.85247949, + 1275.27982086, + 1278.70716222, + 1282.13450359, + 1285.56184495, + 1288.98918632, + 1292.41652769, + 1295.84386905, + 1299.27121042, + 1302.69855179, + 1306.12589315, + 1309.55323452, + 1312.98057588, + 1316.40791725, + 1319.83525862, + 1323.26259998, + 1326.68994135, + 1330.11728271, + 1333.54462408, + 1336.97196545, + 1340.39930681, + 1343.82664818, + 1347.25398955, + 1350.68133091, + 1354.10867228, + 1357.53601364, + 1360.96335501, + 1364.39069638, + 1367.81803774, + 1371.24537911, + 1374.67272047, + 1378.10006184, + 1381.52740321, + 1384.95474457, + 1388.38208594, + 1391.80942731, + 1395.23676867, + 1398.66411004, + 1402.0914514, + 1405.51879277, + 1408.94613414, + 1412.3734755, + 1415.80081687, + 1419.22815824, + 1422.6554996, + 1426.08284097, + 1429.51018233, + 1432.9375237, + 1436.36486507, + 1439.79220643, + 1443.2195478, + 1446.64688916, + 1450.07423053, + 1453.5015719, + 1456.92891326, + 1460.35625463, + 1463.783596, + 1467.21093736, + 1470.63827873, + 1474.06562009, + 1477.49296146, + 1480.92030283, + 1484.34764419, + 1487.77498556, + 1491.20232692, + 1494.62966829, + 1498.05700966, + 1501.48435102, + 1504.91169239, + 1508.33903376, + 1511.76637512, + 1515.19371649, + 1518.62105785, + 1522.04839922, + 1525.47574059, + 1528.90308195, + 1532.33042332, + 1535.75776468, + 1539.18510605, + 1542.61244742, + 1546.03978878, + 1549.46713015, + 1552.89447152, + 1556.32181288, + 1559.74915425, + 1563.17649561, + 1566.60383698, + 1570.03117835, + 1573.45851971, + 1576.88586108, + 1580.31320245, + 1583.74054381, + 1587.16788518, + 1590.59522654, + 1594.02256791, + 1597.44990928, + 1600.87725064, + 1604.30459201, + 1607.73193337, + 1611.15927474, + 1614.58661611, + 1618.01395747, + 1621.44129884, + 1624.86864021, + 1628.29598157, + 1631.72332294, + 1635.1506643, + 1638.57800567, + 1642.00534704, + 1645.4326884, + 1648.86002977, + 1652.28737113, + 1655.7147125, + 1659.14205387, + 1662.56939523, + 1665.9967366, + 1669.42407797, + 1672.85141933, + 1676.2787607, + 1679.70610206, + 1683.13344343, + 1686.5607848, + 1689.98812616, + 1693.41546753, + 1696.8428089, + 1700.27015026, + 1703.69749163, + 1707.12483299, + 1710.55217436, + 1713.97951573, + 1717.40685709, + 1720.83419846, + 1724.26153982, + 1727.68888119, + 1731.11622256, + 1734.54356392, + 1737.97090529, + 1741.39824666, + 1744.82558802, + 1748.25292939, + 1751.68027075, + 1755.10761212, + 1758.53495349, + 1761.96229485, + 1765.38963622, + 1768.81697758, + 1772.24431895, + 1775.67166032, + 1779.09900168, + 1782.52634305, + 1785.95368442, + 1789.38102578, + 1792.80836715, + 1796.23570851, + 1799.66304988, + 1803.09039125, + 1806.51773261, + 1809.94507398, + 1813.37241534, + 1816.79975671, + 1820.22709808, + 1823.65443944, + 1827.08178081, + 1830.50912218, + 1833.93646354, + 1837.36380491, + 1840.79114627, + 1844.21848764, + 1847.64582901, + 1851.07317037, + 1854.50051174, + 1857.92785311, + 1861.35519447, + 1864.78253584, + 1868.2098772, + 1871.63721857, + 1875.06455994, + 1878.4919013, + 1881.91924267, + 1885.34658403, + 1888.7739254, + 1892.20126677, + 1895.62860813, + 1899.0559495, + 1902.48329087, + 1905.91063223, + 1909.3379736, + 1912.76531496, + 1916.19265633, + 1919.6199977, + 1923.04733906, + 1926.47468043, + 1929.90202179, + 1933.32936316, + 1936.75670453, + 1940.18404589, + 1943.61138726, + 1947.03872863, + 1950.46606999, + 1953.89341136, + 1957.32075272, + 1960.74809409, + 1964.17543546, + 1967.60277682, + 1971.03011819, + 1974.45745956, + 1977.88480092, + 1981.31214229, + 1984.73948365, + 1988.16682502, + 1991.59416639, + 1995.02150775, + 1998.44884912, + 2001.87619048, + 2005.30353185, + 2008.73087322, + 2012.15821458, + 2015.58555595, + 2019.01289732, + 2022.44023868, + 2025.86758005, + 2029.29492141, + 2032.72226278, + 2036.14960415, + 2039.57694551, + 2043.00428688, + 2046.43162824, + 2049.85896961, + 2053.28631098, + 2056.71365234, + 2060.14099371, + 2063.56833508, + 2066.99567644, + 2070.42301781, + 2073.85035917, + 2077.27770054, + 2080.70504191, + 2084.13238327, + 2087.55972464, + 2090.98706601, + 2094.41440737, + 2097.84174874, + 2101.2690901, + 2104.69643147, + 2108.12377284, + 2111.5511142, + 2114.97845557, + 2118.40579693, + 2121.8331383, + 2125.26047967, + 2128.68782103, + 2132.1151624, + 2135.54250377, + 2138.96984513, + 2142.3971865, + 2145.82452786, + 2149.25186923, + 2152.6792106, + 2156.10655196, + 2159.53389333, + 2162.96123469, + 2166.38857606, + 2169.81591743, + 2173.24325879, + 2176.67060016, + 2180.09794153, + 2183.52528289, + 2186.95262426, + 2190.37996562, + 2193.80730699, + 2197.23464836, + 2200.66198972, + 2204.08933109, + 2207.51667245, + 2210.94401382, + 2214.37135519, + 2217.79869655, + 2221.22603792, + 2224.65337929, + 2228.08072065, + 2231.50806202, + 2234.93540338, + 2238.36274475, + 2241.79008612, + 2245.21742748, + 2248.64476885, + 2252.07211022, + 2255.49945158, + 2258.92679295, + 2262.35413431, + 2265.78147568, + 2269.20881705, + 2272.63615841, + 2276.06349978, + 2279.49084114, + 2282.91818251, + 2286.34552388, + 2289.77286524, + 2293.20020661, + 2296.62754798, + 2300.05488934, + 2303.48223071, + 2306.90957207, + 2310.33691344, + 2313.76425481, + 2317.19159617, + 2320.61893754, + 2324.0462789, + 2327.47362027, + 2330.90096164, + 2334.328303, + 2337.75564437, + 2341.18298574, + 2344.6103271, + 2348.03766847, + 2351.46500983, + 2354.8923512, + 2358.31969257, + 2361.74703393, + 2365.1743753, + 2368.60171667, + 2372.02905803, + 2375.4563994, + 2378.88374076, + 2382.31108213, + 2385.7384235, + 2389.16576486, + 2392.59310623, + 2396.02044759, + 2399.44778896, + 2402.87513033, + 2406.30247169, + 2409.72981306, + 2413.15715443, + 2416.58449579, + 2420.01183716, + 2423.43917852, + 2426.86651989, + 2430.29386126, + 2433.72120262, + 2437.14854399, + 2440.57588535, + 2444.00322672, + 2447.43056809, + 2450.85790945, + 2454.28525082, + 2457.71259219, + 2461.13993355, + 2464.56727492, + 2467.99461628, + 2471.42195765, + 2474.84929902, + 2478.27664038, + 2481.70398175, + 2485.13132311, + 2488.55866448, + 2491.98600585, + 2495.41334721, + 2498.84068858, + 2502.26802995, + 2505.69537131, + 2509.12271268, + 2512.55005404, + 2515.97739541, + 2519.40473678, + 2522.83207814, + 2526.25941951, + 2529.68676088, + 2533.11410224, + 2536.54144361, + 2539.96878497, + 2543.39612634, + 2546.82346771, + 2550.25080907, + 2553.67815044, + 2557.1054918, + 2560.53283317, + 2563.96017454, + 2567.3875159, + 2570.81485727, + 2574.24219864, + 2577.66954, + 2581.09688137, + 2584.52422273, + 2587.9515641, + 2591.37890547, + 2594.80624683, + 2598.2335882, + 2601.66092956, + 2605.08827093, + 2608.5156123, + 2611.94295366, + 2615.37029503, + 2618.7976364, + 2622.22497776, + 2625.65231913, + 2629.07966049, + 2632.50700186, + 2635.93434323, + 2639.36168459, + 2642.78902596, + 2646.21636733, + 2649.64370869, + 2653.07105006, + 2656.49839142, + 2659.92573279, + 2663.35307416, + 2666.78041552, + 2670.20775689, + 2673.63509825, + 2677.06243962, + 2680.48978099, + 2683.91712235, + 2687.34446372, + 2690.77180509, + 2694.19914645, + 2697.62648782, + 2701.05382918, + 2704.48117055, + 2707.90851192, + 2711.33585328, + 2714.76319465, + 2718.19053601, + 2721.61787738, + 2725.04521875, + 2728.47256011, + 2731.89990148, + 2735.32724285, + 2738.75458421, + 2742.18192558, + 2745.60926694, + 2749.03660831, + 2752.46394968, + 2755.89129104, + 2759.31863241, + 2762.74597378, + 2766.17331514, + 2769.60065651, + 2773.02799787, + 2776.45533924, + 2779.88268061, + 2783.31002197, + 2786.73736334, + 2790.1647047, + 2793.59204607, + 2797.01938744, + 2800.4467288, + 2803.87407017, + 2807.30141154, + 2810.7287529, + 2814.15609427, + 2817.58343563, + 2821.010777, + 2824.43811837, + 2827.86545973, + 2831.2928011, + 2834.72014246, + 2838.14748383, + 2841.5748252, + 2845.00216656, + 2848.42950793, + 2851.8568493, + 2855.28419066, + 2858.71153203, + 2862.13887339, + 2865.56621476, + 2868.99355613, + 2872.42089749, + 2875.84823886, + 2879.27558022, + 2882.70292159, + 2886.13026296, + 2889.55760432, + 2892.98494569, + 2896.41228706, + 2899.83962842, + 2903.26696979, + 2906.69431115, + 2910.12165252, + 2913.54899389, + 2916.97633525, + 2920.40367662, + 2923.83101799, + 2927.25835935, + 2930.68570072, + 2934.11304208, + 2937.54038345, + 2940.96772482, + 2944.39506618, + 2947.82240755, + 2951.24974891, + 2954.67709028, + 2958.10443165, + 2961.53177301, + 2964.95911438, + 2968.38645575, + 2971.81379711, + 2975.24113848, + 2978.66847984, + 2982.09582121, + 2985.52316258, + 2988.95050394, + 2992.37784531, + 2995.80518667, + 2999.23252804, + 3002.65986941, + 3006.08721077, + 3009.51455214, + 3012.94189351, + 3016.36923487, + 3019.79657624, + 3023.2239176, + 3026.65125897, + 3030.07860034, + 3033.5059417, + 3036.93328307, + 3040.36062444, + 3043.7879658, + 3047.21530717, + 3050.64264853, + 3054.0699899, + 3057.49733127, + 3060.92467263, + 3064.352014, + 3067.77935536, + 3071.20669673, + 3074.6340381, + 3078.06137946, + 3081.48872083, + 3084.9160622, + 3088.34340356, + 3091.77074493, + 3095.19808629, + 3098.62542766, + 3102.05276903, + 3105.48011039, + 3108.90745176, + 3112.33479312, + 3115.76213449, + 3119.18947586, + 3122.61681722, + 3126.04415859, + 3129.47149996, + 3132.89884132, + 3136.32618269, + 3139.75352405, + 3143.18086542, + 3146.60820679, + 3150.03554815, + 3153.46288952, + 3156.89023088, + 3160.31757225, + 3163.74491362, + 3167.17225498, + 3170.59959635, + 3174.02693772, + 3177.45427908, + 3180.88162045, + 3184.30896181, + 3187.73630318, + 3191.16364455, + 3194.59098591, + 3198.01832728, + 3201.44566865, + 3204.87301001, + 3208.30035138, + 3211.72769274, + 3215.15503411, + 3218.58237548, + 3222.00971684, + 3225.43705821, + 3228.86439957, + 3232.29174094, + 3235.71908231, + 3239.14642367, + 3242.57376504, + 3246.00110641, + 3249.42844777, + 3252.85578914, + 3256.2831305, + 3259.71047187, + 3263.13781324, + 3266.5651546, + 3269.99249597, + 3273.41983733, + 3276.8471787, + 3280.27452007, + 3283.70186143, + 3287.1292028, + 3290.55654417, + 3293.98388553, + 3297.4112269, + 3300.83856826, + 3304.26590963, + 3307.693251, + 3311.12059236 + ], + "ys": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.00000033333333333333886, + 0.000001500000000000025, + 0.000004000000000000067, + 0.000009333333333333488, + 0.00001941666666666699, + 0.00003741666666666729, + 0.00006908333333333447, + 0.00011975000000000199, + 0.0001975833333333366, + 0.00031075000000000514, + 0.00046991666666667447, + 0.0006880833333333448, + 0.000977166666666683, + 0.0013522500000000225, + 0.001829666666666697, + 0.002426083333333374, + 0.0031575000000000526, + 0.004043500000000067, + 0.005106083333333418, + 0.006365666666666772, + 0.007844083333333463, + 0.009565000000000158, + 0.011551833333333525, + 0.013825416666666895, + 0.01640791666666694, + 0.019317916666666986, + 0.022570000000000374, + 0.026180916666667102, + 0.030161583333333835, + 0.03452458333333391, + 0.039280333333333986, + 0.044431000000000734, + 0.049982416666667494, + 0.055931416666667594, + 0.062270333333334364, + 0.06899566666666782, + 0.0761045833333346, + 0.08358758333333473, + 0.09142883333333486, + 0.09961575000000167, + 0.10812983333333515, + 0.1169503333333353, + 0.12605833333333544, + 0.13543375000000227, + 0.14505375000000242, + 0.15489891666666925, + 0.16495025000000274, + 0.1751837500000029, + 0.18558083333333641, + 0.19611775000000325, + 0.2067646666666701, + 0.21750125000000362, + 0.2283020000000038, + 0.23915516666667067, + 0.25005308333333753, + 0.26097400000000437, + 0.27190100000000456, + 0.2828181666666714, + 0.29371375000000494, + 0.3045741666666718, + 0.3153920833333387, + 0.3261566666666722, + 0.3368552500000057, + 0.34748041666667256, + 0.3580253333333394, + 0.3684850000000063, + 0.3788519166666731, + 0.3891226666666733, + 0.39928816666667344, + 0.40934450000000694, + 0.4192955000000071, + 0.4291423333333406, + 0.43888725000000745, + 0.44851833333334096, + 0.4580265000000078, + 0.4674161666666746, + 0.47668241666667477, + 0.4858238333333416, + 0.49484000000000844, + 0.5037305000000086, + 0.5124923333333421, + 0.5211271666666756, + 0.5296357500000091, + 0.5380175833333425, + 0.5462687500000093, + 0.5543819166666761, + 0.5623566666666763, + 0.5701926666666765, + 0.5778926666666766, + 0.5854595833333434, + 0.5928926666666768, + 0.6001900000000103, + 0.6073541666666771, + 0.6143932500000105, + 0.621309583333344, + 0.6281011666666774, + 0.6347719166666774, + 0.6413238333333442, + 0.6477576666666777, + 0.6540741666666777, + 0.6602749166666778, + 0.666361666666678, + 0.672337416666678, + 0.6782015833333448, + 0.6839610833333449, + 0.689620833333345, + 0.6951812500000117, + 0.7006429166666786, + 0.706008000000012, + 0.7112728333333453, + 0.7164391666666787, + 0.7215083333333455, + 0.7264780833333456, + 0.7313483333333457, + 0.7361211666666791, + 0.7408009166666792, + 0.7453882500000126, + 0.7498845000000127, + 0.7542917500000128, + 0.7586112500000128, + 0.7628455000000129, + 0.7669946666666797, + 0.7710584166666797, + 0.7750410833333464, + 0.7789435833333465, + 0.7827686666666799, + 0.7865193333333466, + 0.7901970833333466, + 0.7938023333333466, + 0.79733991666668, + 0.8008105000000134, + 0.8042160833333468, + 0.8075589166666802, + 0.8108405000000136, + 0.8140601666666804, + 0.8172164166666804, + 0.8203111666666805, + 0.8233467500000139, + 0.8263237500000139, + 0.8292449166666807, + 0.8321088333333474, + 0.8349174166666807, + 0.8376725000000141, + 0.8403745833333475, + 0.8430217500000142, + 0.845614666666681, + 0.8481553333333477, + 0.8506449166666811, + 0.8530846666666811, + 0.8554775000000145, + 0.8578257500000146, + 0.8601315833333479, + 0.8623956666666813, + 0.8646181666666813, + 0.866802583333348, + 0.8689505833333481, + 0.8710633333333481, + 0.8731399166666814, + 0.8751808333333482, + 0.8771856666666815, + 0.8791583333333483, + 0.8810987500000149, + 0.8830075833333483, + 0.8848841666666817, + 0.8867309166666817, + 0.8885475833333484, + 0.890334500000015, + 0.8920944166666817, + 0.8938284166666817, + 0.8955345833333483, + 0.897212000000015, + 0.898858500000015, + 0.9004758333333484, + 0.9020645833333484, + 0.9036248333333484, + 0.9051570833333484, + 0.9066596666666817, + 0.9081343333333485, + 0.9095821666666818, + 0.9110038333333484, + 0.9123975000000152, + 0.9137647500000152, + 0.9151072500000152, + 0.9164258333333486, + 0.9177210833333486, + 0.9189935833333486, + 0.920242666666682, + 0.9214670000000154, + 0.9226665833333487, + 0.9238423333333488, + 0.9249953333333487, + 0.9261276666666821, + 0.9272391666666822, + 0.9283315000000155, + 0.9294045833333489, + 0.9304586666666822, + 0.9314963333333489, + 0.9325171666666823, + 0.9335212500000156, + 0.9345090833333489, + 0.9354820833333489, + 0.9364404166666823, + 0.9373829166666823, + 0.938310083333349, + 0.9392216666666823, + 0.9401184166666823, + 0.9410013333333489, + 0.941869833333349, + 0.9427245000000156, + 0.9435662500000156, + 0.9443964166666823, + 0.9452143333333489, + 0.9460198333333489, + 0.9468115833333489, + 0.9475901666666823, + 0.948356083333349, + 0.949108333333349, + 0.9498479166666823, + 0.9505754166666823, + 0.9512914166666824, + 0.9519963333333491, + 0.9526891666666825, + 0.9533709166666825, + 0.9540417500000158, + 0.9547025000000158, + 0.9553527500000157, + 0.9559927500000157, + 0.9566240000000157, + 0.9572452500000157, + 0.9578559166666823, + 0.9584536666666823, + 0.9590396666666823, + 0.9596147500000156, + 0.9601800000000156, + 0.9607354166666823, + 0.9612811666666823, + 0.9618185833333489, + 0.9623480000000155, + 0.9628697500000155, + 0.9633835000000155, + 0.9638887500000155, + 0.9643868333333488, + 0.9648777500000155, + 0.9653622500000155, + 0.9658396666666822, + 0.9663115000000155, + 0.9667780833333489, + 0.9672392500000155, + 0.9676964166666822, + 0.9681497500000155, + 0.9686014166666821, + 0.9690510833333488, + 0.9694982500000154, + 0.9699428333333487, + 0.9703843333333487, + 0.9708225000000154, + 0.971256416666682, + 0.971685166666682, + 0.9721083333333487, + 0.9725258333333486, + 0.9729375833333487, + 0.9733430000000154, + 0.973742166666682, + 0.974134416666682, + 0.9745202500000153, + 0.9748982500000153, + 0.975267666666682, + 0.9756286666666819, + 0.9759813333333486, + 0.976326416666682, + 0.9766628333333486, + 0.976990416666682, + 0.9773093333333486, + 0.977619416666682, + 0.9779212500000153, + 0.9782153333333486, + 0.9785022500000153, + 0.9787823333333486, + 0.9790558333333487, + 0.9793232500000153, + 0.9795857500000152, + 0.9798438333333486, + 0.9800975833333485, + 0.9803471666666819, + 0.9805922500000152, + 0.9808340000000152, + 0.9810728333333485, + 0.9813084166666818, + 0.9815408333333484, + 0.9817687500000151, + 0.9819929166666818, + 0.9822136666666818, + 0.9824313333333484, + 0.9826460833333485, + 0.9828577500000151, + 0.9830656666666817, + 0.9832696666666817, + 0.9834706666666817, + 0.9836687500000151, + 0.9838635833333484, + 0.9840544166666818, + 0.9842409166666818, + 0.9844230833333485, + 0.9846015833333485, + 0.9847768333333484, + 0.9849484166666818, + 0.9851166666666817, + 0.9852820000000151, + 0.985444500000015, + 0.985605500000015, + 0.985764750000015, + 0.9859223333333483, + 0.986078250000015, + 0.9862328333333483, + 0.9863865000000149, + 0.986540000000015, + 0.9866936666666816, + 0.9868467500000149, + 0.9869987500000149, + 0.9871500000000148, + 0.9873002500000149, + 0.9874495000000149, + 0.9875976666666815, + 0.9877439166666815, + 0.9878882500000148, + 0.9880308333333481, + 0.9881714166666814, + 0.9883099166666814, + 0.9884460000000148, + 0.9885790000000148, + 0.9887089166666814, + 0.9888359166666814, + 0.9889600833333481, + 0.9890807500000147, + 0.989197833333348, + 0.9893110833333479, + 0.9894205000000146, + 0.9895260000000146, + 0.9896284166666812, + 0.9897277500000146, + 0.9898250833333478, + 0.9899205833333479, + 0.9900144166666812, + 0.9901070000000145, + 0.9901982500000145, + 0.9902880833333478, + 0.9903769166666812, + 0.9904649166666811, + 0.9905522500000145, + 0.9906393333333477, + 0.9907263333333477, + 0.9908130833333477, + 0.9908990833333478, + 0.9909849166666811, + 0.9910707500000144, + 0.9911570000000144, + 0.9912435000000144, + 0.991330916666681, + 0.9914188333333477, + 0.991507166666681, + 0.991594916666681, + 0.9916825000000143, + 0.9917700833333477, + 0.9918577500000144, + 0.9919458333333477, + 0.9920341666666811, + 0.9921221666666811, + 0.9922095833333477, + 0.9922964166666811, + 0.9923825000000144, + 0.9924680000000143, + 0.9925528333333477, + 0.992637666666681, + 0.9927222500000142, + 0.9928065000000142, + 0.9928900000000143, + 0.9929728333333476, + 0.9930541666666809, + 0.9931346666666809, + 0.9932144166666809, + 0.9932940000000142, + 0.9933729166666809, + 0.9934507500000143, + 0.9935280833333476, + 0.9936045833333477, + 0.9936805000000143, + 0.9937562500000142, + 0.9938319166666809, + 0.9939076666666808, + 0.9939835833333475, + 0.9940593333333474, + 0.994135250000014, + 0.9942109166666807, + 0.994286750000014, + 0.9943625000000139, + 0.9944381666666806, + 0.9945135833333473, + 0.994589250000014, + 0.9946641666666807, + 0.9947381666666807, + 0.994810750000014, + 0.994882250000014, + 0.9949528333333473, + 0.9950215833333472, + 0.9950886666666805, + 0.9951541666666804, + 0.9952178333333471, + 0.9952797500000138, + 0.9953398333333471, + 0.9953979166666804, + 0.9954541666666804, + 0.9955083333333471, + 0.9955605833333471, + 0.9956107500000138, + 0.995658833333347, + 0.9957051666666804, + 0.9957498333333471, + 0.9957929166666805, + 0.9958348333333471, + 0.9958759166666804, + 0.9959165000000137, + 0.9959565000000137, + 0.9959961666666803, + 0.9960355000000136, + 0.9960745000000136, + 0.9961130000000136, + 0.9961512500000136, + 0.9961891666666802, + 0.9962265833333469, + 0.9962638333333469, + 0.9963010000000135, + 0.9963380833333468, + 0.9963750833333468, + 0.9964115833333468, + 0.9964477500000134, + 0.9964833333333467, + 0.9965184166666801, + 0.9965528333333468, + 0.99658666666668, + 0.9966195000000133, + 0.9966512500000133, + 0.9966818333333466, + 0.9967110833333466, + 0.9967393333333465, + 0.9967665833333466, + 0.9967929166666799, + 0.9968181666666799, + 0.9968425000000132, + 0.9968661666666798, + 0.9968889166666798, + 0.9969105000000131, + 0.9969311666666798, + 0.9969508333333464, + 0.9969698333333464, + 0.9969881666666798, + 0.9970059166666797, + 0.9970231666666797, + 0.9970400833333464, + 0.997056750000013, + 0.9970734166666797, + 0.9970901666666797, + 0.9971071666666796, + 0.9971242500000129, + 0.9971415000000129, + 0.9971589166666796, + 0.9971766666666795, + 0.9971948333333461, + 0.9972132500000128, + 0.9972317500000129, + 0.9972504166666795, + 0.9972694166666795, + 0.9972884166666794, + 0.9973075000000128, + 0.9973266666666795, + 0.9973459166666795, + 0.9973651666666795, + 0.9973843333333462, + 0.9974032500000128, + 0.9974218333333461, + 0.9974400833333461, + 0.9974580833333461, + 0.997475833333346, + 0.9974935000000127, + 0.9975109166666793, + 0.9975280000000126, + 0.9975444166666793, + 0.9975601666666792, + 0.9975754166666793, + 0.9975903333333459, + 0.9976048333333459, + 0.9976190000000126, + 0.9976330833333459, + 0.9976470833333458, + 0.9976610000000125, + 0.9976749166666791, + 0.9976890000000124, + 0.997703166666679, + 0.997717666666679, + 0.997732416666679, + 0.9977475000000123, + 0.9977627500000124, + 0.9977780000000124, + 0.9977932500000124, + 0.9978085833333457, + 0.9978240833333456, + 0.9978399166666789, + 0.9978561666666789, + 0.9978727500000122, + 0.9978895000000122, + 0.9979065000000121, + 0.9979235833333454, + 0.9979405833333453, + 0.9979575833333453, + 0.9979745833333452, + 0.9979915000000119, + 0.9980081666666786, + 0.9980247500000119, + 0.9980409166666785, + 0.9980567500000118, + 0.9980720833333451, + 0.9980870000000117, + 0.998101583333345, + 0.998115833333345, + 0.9981297500000116, + 0.9981433333333449, + 0.9981565833333449, + 0.9981693333333449, + 0.9981815000000115, + 0.9981932500000115, + 0.9982046666666781, + 0.9982158333333447, + 0.9982268333333447, + 0.9982375833333447, + 0.9982481666666779, + 0.9982585833333446, + 0.9982689166666779, + 0.9982791666666779, + 0.9982895000000113, + 0.9983000000000113, + 0.9983107500000112, + 0.9983217500000112, + 0.9983329166666779, + 0.9983442500000113, + 0.9983557500000112, + 0.9983674166666778, + 0.9983793333333445, + 0.9983915833333444, + 0.9984042500000111, + 0.9984171666666778, + 0.9984302500000111, + 0.998443500000011, + 0.9984569166666777, + 0.9984704166666777, + 0.9984839166666777, + 0.9984973333333443, + 0.9985106666666776, + 0.9985236666666776, + 0.9985363333333442, + 0.9985485833333442, + 0.9985605000000108, + 0.9985720833333441, + 0.9985834166666775, + 0.9985945000000108, + 0.9986053333333441, + 0.9986159166666774, + 0.9986261666666774, + 0.998636083333344, + 0.9986456666666773, + 0.9986550000000106, + 0.9986640833333439, + 0.9986730000000106, + 0.9986817500000106, + 0.9986904166666772, + 0.9986989166666772, + 0.9987074166666772, + 0.9987159166666771, + 0.9987246666666771, + 0.9987337500000104, + 0.9987430833333437, + 0.9987525000000104, + 0.9987620000000104, + 0.9987715833333437, + 0.9987812500000104, + 0.9987910000000103, + 0.9988009166666769, + 0.9988109166666769, + 0.9988210000000102, + 0.9988311666666768, + 0.9988414166666768, + 0.9988516666666768, + 0.9988617500000101, + 0.9988718333333434, + 0.9988819166666767, + 0.9988920833333433, + 0.9989021666666766, + 0.9989122500000099, + 0.9989221666666765, + 0.9989317500000099, + 0.9989410833333432, + 0.9989502500000098, + 0.9989592500000097, + 0.9989680833333431, + 0.9989767500000097, + 0.9989852500000097, + 0.9989934166666763, + 0.999001333333343, + 0.9990090000000096, + 0.9990165000000095, + 0.9990238333333429, + 0.9990311666666762, + 0.9990385833333428, + 0.9990457500000095, + 0.9990526666666761, + 0.9990594166666761, + 0.9990660833333427, + 0.9990725000000094, + 0.9990787500000093, + 0.999084916666676, + 0.9990910000000093, + 0.9990970000000092, + 0.9991029166666758, + 0.9991087500000091, + 0.9991145000000091, + 0.9991201666666758, + 0.9991258333333425, + 0.9991315000000092, + 0.9991371666666758, + 0.9991426666666758, + 0.9991480000000091, + 0.9991530000000091, + 0.9991577500000091, + 0.9991624166666757, + 0.999167000000009, + 0.9991713333333423, + 0.9991754166666756, + 0.9991793333333423, + 0.9991830833333423, + 0.9991866666666755, + 0.9991900833333421, + 0.9991933333333421, + 0.9991964166666755, + 0.9991993333333421, + 0.999202083333342, + 0.9992046666666753, + 0.999207083333342, + 0.9992094166666753, + 0.9992116666666753, + 0.9992139166666753, + 0.9992162500000086, + 0.9992187500000086, + 0.9992213333333418, + 0.9992240000000084, + 0.9992268333333417, + 0.999229916666675, + 0.9992332500000084, + 0.999236916666675, + 0.999240916666675, + 0.9992452500000083, + 0.999249916666675, + 0.9992549166666749, + 0.9992602500000082, + 0.9992659166666749, + 0.9992719166666748, + 0.9992782500000081, + 0.9992850000000081, + 0.9992920000000081, + 0.9992992500000081, + 0.999306750000008, + 0.9993143333333413, + 0.9993220833333413, + 0.9993299166666746, + 0.9993378333333413, + 0.9993456666666746, + 0.9993534166666745, + 0.9993610833333412, + 0.9993685833333411, + 0.9993759166666744, + 0.999383083333341, + 0.9993901666666744, + 0.9993971666666743, + 0.999404083333341, + 0.9994109166666743, + 0.9994176666666742, + 0.9994243333333408, + 0.9994307500000075, + 0.9994370000000075, + 0.9994430833333408, + 0.9994490000000074, + 0.9994548333333406, + 0.999460416666674, + 0.9994658333333406, + 0.9994710833333406, + 0.9994762500000072, + 0.9994813333333404, + 0.9994863333333404, + 0.9994911666666737, + 0.9994958333333404, + 0.9995003333333403, + 0.9995045000000069, + 0.9995083333333402, + 0.9995118333333401, + 0.9995150000000068, + 0.9995179166666734, + 0.99952058333334, + 0.9995230833333401, + 0.9995254166666734, + 0.99952758333334, + 0.99952958333334, + 0.9995315000000066, + 0.9995334166666732, + 0.9995353333333398, + 0.9995372500000064, + 0.9995392500000063, + 0.999541416666673, + 0.9995437500000063, + 0.9995463333333395, + 0.9995491666666728, + 0.9995522500000061, + 0.9995556666666727, + 0.9995594166666727, + 0.999563500000006, + 0.9995679166666727, + 0.999572500000006, + 0.999577250000006, + 0.9995821666666727, + 0.9995872500000059, + 0.9995925000000059, + 0.9995979166666725, + 0.9996033333333392, + 0.9996087500000058, + 0.9996141666666725, + 0.9996195833333391, + 0.9996249166666724, + 0.9996300000000057, + 0.9996350000000056, + 0.9996399166666723, + 0.9996447500000056, + 0.9996495000000056, + 0.9996541666666723, + 0.9996587500000056, + 0.9996632500000056, + 0.9996676666666722, + 0.9996720833333388, + 0.9996765000000054, + 0.999680916666672, + 0.9996853333333386, + 0.9996897500000053, + 0.9996941666666719, + 0.9996986666666718, + 0.9997032500000052, + 0.9997079166666718, + 0.9997126666666718, + 0.9997174166666718, + 0.9997222500000051, + 0.9997268333333384, + 0.9997311666666717, + 0.9997352500000051, + 0.9997390833333384, + 0.9997426666666717, + 0.9997460000000049, + 0.9997490833333382, + 0.9997520000000049, + 0.9997547500000048, + 0.999757333333338, + 0.9997597500000047, + 0.9997620000000047, + 0.999764083333338, + 0.9997660000000046, + 0.9997677500000045, + 0.9997694166666712, + 0.9997710000000045, + 0.9997725000000045, + 0.9997740000000045, + 0.9997755000000045, + 0.9997771666666712, + 0.9997790000000044, + 0.9997810000000044, + 0.999783166666671, + 0.9997855000000043, + 0.9997880000000043, + 0.9997906666666709, + 0.9997933333333375, + 0.9997960000000041, + 0.9997986666666707, + 0.9998013333333373, + 0.9998040000000039, + 0.9998067500000039, + 0.9998095833333371, + 0.9998125000000038, + 0.999815333333337, + 0.999818083333337, + 0.9998207500000036, + 0.9998233333333368, + 0.9998258333333369, + 0.9998282500000035, + 0.9998305833333369, + 0.9998328333333368, + 0.9998350000000035, + 0.9998370833333368, + 0.9998390833333367, + 0.9998410000000033, + 0.9998429166666699, + 0.9998448333333365, + 0.9998467500000031, + 0.9998486666666697, + 0.9998505833333363, + 0.9998523333333362, + 0.9998539166666696, + 0.9998553333333362, + 0.9998567500000028, + 0.9998581666666695, + 0.9998595833333361, + 0.9998610000000028, + 0.9998624166666694, + 0.9998638333333361, + 0.9998652500000027, + 0.9998666666666693, + 0.999868083333336, + 0.9998695000000026, + 0.9998709166666693, + 0.9998723333333359, + 0.9998737500000026, + 0.9998751666666692, + 0.9998765833333358, + 0.9998780000000025, + 0.9998794166666691, + 0.9998809166666691, + 0.9998825000000024, + 0.9998841666666691, + 0.9998857500000025, + 0.9998872500000024, + 0.9998886666666691, + 0.9998900000000024, + 0.9998912500000023, + 0.9998925000000023, + 0.9998937500000022, + 0.9998950000000022, + 0.9998962500000022, + 0.9998975000000021, + 0.9998987500000021, + 0.999900000000002, + 0.999901250000002, + 0.9999025000000019, + 0.9999037500000019, + 0.9999050000000018, + 0.9999062500000018, + 0.9999075000000017, + 0.9999087500000017, + 0.9999100000000016, + 0.9999113333333349, + 0.9999127500000016, + 0.9999142500000016, + 0.9999158333333349, + 0.9999175000000016, + 0.9999190833333349, + 0.9999205833333349, + 0.9999220000000015, + 0.9999233333333348, + 0.9999245833333348, + 0.9999257500000014, + 0.9999268333333347, + 0.9999278333333346, + 0.9999287500000011, + 0.9999295833333345, + 0.9999303333333345, + 0.9999310000000011, + 0.9999315833333344, + 0.9999320833333344, + 0.999932500000001, + 0.9999328333333343, + 0.9999330833333342, + 0.9999332500000008, + 0.9999333333333341, + 0.9999333333333341, + 0.9999333333333341, + 0.9999333333333341, + 0.9999334166666675, + 0.999933583333334, + 0.999933833333334, + 0.9999341666666672, + 0.9999345833333338, + 0.9999350833333338, + 0.9999356666666671, + 0.9999363333333338, + 0.9999370833333338, + 0.9999379166666671, + 0.9999388333333337, + 0.9999398333333336, + 0.9999409166666668, + 0.9999420833333335, + 0.9999433333333334, + 0.9999446666666667, + 0.9999460833333333, + 0.9999475833333333, + 0.9999491666666667, + 0.9999508333333333, + 0.9999524166666667, + 0.9999539166666667, + 0.9999553333333333, + 0.9999566666666666, + 0.9999579166666666, + 0.9999590833333332, + 0.9999601666666664, + 0.9999611666666663, + 0.9999620833333329, + 0.9999629166666663, + 0.9999636666666663, + 0.9999643333333329, + 0.9999649166666662, + 0.9999654166666662, + 0.9999658333333328, + 0.999966166666666, + 0.999966416666666, + 0.9999665833333325, + 0.9999666666666658, + 0.9999666666666658, + 0.9999666666666658, + 0.9999666666666658, + 0.9999666666666658, + 0.9999666666666658, + 0.9999666666666658, + 0.9999666666666658, + 0.9999666666666658, + 0.9999666666666658, + 0.999966749999999, + 0.9999669166666656, + 0.9999671666666655, + 0.9999674999999988, + 0.9999679166666654, + 0.9999684166666654, + 0.9999689999999987, + 0.9999696666666653, + 0.9999704166666653, + 0.9999712499999986, + 0.9999721666666652, + 0.9999731666666651, + 0.9999742499999984, + 0.999975416666665, + 0.999976666666665, + 0.9999779999999983, + 0.9999794166666649, + 0.9999809166666649, + 0.9999824999999982, + 0.9999841666666648, + 0.9999857499999981, + 0.9999872499999981, + 0.9999886666666647, + 0.999989999999998, + 0.999991249999998, + 0.9999924166666646, + 0.9999934999999979, + 0.9999944999999978, + 0.9999954166666644, + 0.9999962499999977, + 0.9999969999999977, + 0.9999976666666643, + 0.9999982499999976, + 0.9999987499999976, + 0.9999991666666642, + 0.9999994999999975, + 0.9999997499999974, + 0.999999916666664, + 0.9999999999999972, + 0.9999999999999972, + 0.9999999999999972, + 0.9999999999999972, + 0.9999999999999972, + 0.9999999999999972, + 0.9999999999999972, + 0.9999999999999972, + 0.9999999999999972, + 0.9999999999999972, + 0.9999999999999972, + 0.9999999999999972, + 0.9999999999999972, + 0.9999999999999972, + 0.9999999999999972, + 0.9999999999999972, + 0.9999999999999972, + 0.9999999999999972, + 0.9999999999999972, + 0.9999999999999972 + ] + }, + { + "createdAt": "2019-11-18T02:35:22.977+00:00", + "xs": [ + 14.5778090355, + 15.180174277, + 15.7825395185, + 16.38490476, + 16.9872700015, + 17.5896352431, + 18.1920004846, + 18.7943657261, + 19.3967309676, + 19.9990962092, + 20.6014614507, + 21.2038266922, + 21.8061919337, + 22.4085571752, + 23.0109224168, + 23.6132876583, + 24.2156528998, + 24.8180181413, + 25.4203833829, + 26.0227486244, + 26.6251138659, + 27.2274791074, + 27.8298443489, + 28.4322095905, + 29.034574832, + 29.6369400735, + 30.239305315, + 30.8416705566, + 31.4440357981, + 32.0464010396, + 32.6487662811, + 33.2511315226, + 33.8534967642, + 34.4558620057, + 35.0582272472, + 35.6605924887, + 36.2629577303, + 36.8653229718, + 37.4676882133, + 38.0700534548, + 38.6724186963, + 39.2747839379, + 39.8771491794, + 40.4795144209, + 41.0818796624, + 41.684244904, + 42.2866101455, + 42.888975387, + 43.4913406285, + 44.09370587, + 44.6960711116, + 45.2984363531, + 45.9008015946, + 46.5031668361, + 47.1055320777, + 47.7078973192, + 48.3102625607, + 48.9126278022, + 49.5149930437, + 50.1173582853, + 50.7197235268, + 51.3220887683, + 51.9244540098, + 52.5268192513, + 53.1291844929, + 53.7315497344, + 54.3339149759, + 54.9362802174, + 55.538645459, + 56.1410107005, + 56.743375942, + 57.3457411835, + 57.948106425, + 58.5504716666, + 59.1528369081, + 59.7552021496, + 60.3575673911, + 60.9599326327, + 61.5622978742, + 62.1646631157, + 62.7670283572, + 63.3693935987, + 63.9717588403, + 64.5741240818, + 65.1764893233, + 65.7788545648, + 66.3812198064, + 66.9835850479, + 67.5859502894, + 68.1883155309, + 68.7906807724, + 69.393046014, + 69.9954112555, + 70.597776497, + 71.2001417385, + 71.8025069801, + 72.4048722216, + 73.0072374631, + 73.6096027046, + 74.2119679461, + 74.8143331877, + 75.4166984292, + 76.0190636707, + 76.6214289122, + 77.2237941538, + 77.8261593953, + 78.4285246368, + 79.0308898783, + 79.6332551198, + 80.2356203614, + 80.8379856029, + 81.4403508444, + 82.0427160859, + 82.6450813275, + 83.247446569, + 83.8498118105, + 84.452177052, + 85.0545422935, + 85.6569075351, + 86.2592727766, + 86.8616380181, + 87.4640032596, + 88.0663685012, + 88.6687337427, + 89.2710989842, + 89.8734642257, + 90.4758294672, + 91.0781947088, + 91.6805599503, + 92.2829251918, + 92.8852904333, + 93.4876556749, + 94.0900209164, + 94.6923861579, + 95.2947513994, + 95.8971166409, + 96.4994818825, + 97.101847124, + 97.7042123655, + 98.306577607, + 98.9089428486, + 99.5113080901, + 100.113673332, + 100.716038573, + 101.318403815, + 101.920769056, + 102.523134298, + 103.125499539, + 103.727864781, + 104.330230022, + 104.932595264, + 105.534960505, + 106.137325747, + 106.739690988, + 107.34205623, + 107.944421471, + 108.546786713, + 109.149151954, + 109.751517196, + 110.353882437, + 110.956247679, + 111.558612921, + 112.160978162, + 112.763343404, + 113.365708645, + 113.968073887, + 114.570439128, + 115.17280437, + 115.775169611, + 116.377534853, + 116.979900094, + 117.582265336, + 118.184630577, + 118.786995819, + 119.38936106, + 119.991726302, + 120.594091543, + 121.196456785, + 121.798822026, + 122.401187268, + 123.003552509, + 123.605917751, + 124.208282992, + 124.810648234, + 125.413013476, + 126.015378717, + 126.617743959, + 127.2201092, + 127.822474442, + 128.424839683, + 129.027204925, + 129.629570166, + 130.231935408, + 130.834300649, + 131.436665891, + 132.039031132, + 132.641396374, + 133.243761615, + 133.846126857, + 134.448492098, + 135.05085734, + 135.653222581, + 136.255587823, + 136.857953064, + 137.460318306, + 138.062683547, + 138.665048789, + 139.267414031, + 139.869779272, + 140.472144514, + 141.074509755, + 141.676874997, + 142.279240238, + 142.88160548, + 143.483970721, + 144.086335963, + 144.688701204, + 145.291066446, + 145.893431687, + 146.495796929, + 147.09816217, + 147.700527412, + 148.302892653, + 148.905257895, + 149.507623136, + 150.109988378, + 150.712353619, + 151.314718861, + 151.917084102, + 152.519449344, + 153.121814586, + 153.724179827, + 154.326545069, + 154.92891031, + 155.531275552, + 156.133640793, + 156.736006035, + 157.338371276, + 157.940736518, + 158.543101759, + 159.145467001, + 159.747832242, + 160.350197484, + 160.952562725, + 161.554927967, + 162.157293208, + 162.75965845, + 163.362023691, + 163.964388933, + 164.566754174, + 165.169119416, + 165.771484658, + 166.373849899, + 166.976215141, + 167.578580382, + 168.180945624, + 168.783310865, + 169.385676107, + 169.988041348, + 170.59040659, + 171.192771831, + 171.795137073, + 172.397502314, + 172.999867556, + 173.602232797, + 174.204598039, + 174.80696328, + 175.409328522, + 176.011693763, + 176.614059005, + 177.216424246, + 177.818789488, + 178.421154729, + 179.023519971, + 179.625885213, + 180.228250454, + 180.830615696, + 181.432980937, + 182.035346179, + 182.63771142, + 183.240076662, + 183.842441903, + 184.444807145, + 185.047172386, + 185.649537628, + 186.251902869, + 186.854268111, + 187.456633352, + 188.058998594, + 188.661363835, + 189.263729077, + 189.866094318, + 190.46845956, + 191.070824801, + 191.673190043, + 192.275555284, + 192.877920526, + 193.480285768, + 194.082651009, + 194.685016251, + 195.287381492, + 195.889746734, + 196.492111975, + 197.094477217, + 197.696842458, + 198.2992077, + 198.901572941, + 199.503938183, + 200.106303424, + 200.708668666, + 201.311033907, + 201.913399149, + 202.51576439, + 203.118129632, + 203.720494873, + 204.322860115, + 204.925225356, + 205.527590598, + 206.129955839, + 206.732321081, + 207.334686323, + 207.937051564, + 208.539416806, + 209.141782047, + 209.744147289, + 210.34651253, + 210.948877772, + 211.551243013, + 212.153608255, + 212.755973496, + 213.358338738, + 213.960703979, + 214.563069221, + 215.165434462, + 215.767799704, + 216.370164945, + 216.972530187, + 217.574895428, + 218.17726067, + 218.779625911, + 219.381991153, + 219.984356394, + 220.586721636, + 221.189086878, + 221.791452119, + 222.393817361, + 222.996182602, + 223.598547844, + 224.200913085, + 224.803278327, + 225.405643568, + 226.00800881, + 226.610374051, + 227.212739293, + 227.815104534, + 228.417469776, + 229.019835017, + 229.622200259, + 230.2245655, + 230.826930742, + 231.429295983, + 232.031661225, + 232.634026466, + 233.236391708, + 233.83875695, + 234.441122191, + 235.043487433, + 235.645852674, + 236.248217916, + 236.850583157, + 237.452948399, + 238.05531364, + 238.657678882, + 239.260044123, + 239.862409365, + 240.464774606, + 241.067139848, + 241.669505089, + 242.271870331, + 242.874235572, + 243.476600814, + 244.078966055, + 244.681331297, + 245.283696538, + 245.88606178, + 246.488427021, + 247.090792263, + 247.693157505, + 248.295522746, + 248.897887988, + 249.500253229, + 250.102618471, + 250.704983712, + 251.307348954, + 251.909714195, + 252.512079437, + 253.114444678, + 253.71680992, + 254.319175161, + 254.921540403, + 255.523905644, + 256.126270886, + 256.728636127, + 257.331001369, + 257.93336661, + 258.535731852, + 259.138097093, + 259.740462335, + 260.342827576, + 260.945192818, + 261.54755806, + 262.149923301, + 262.752288543, + 263.354653784, + 263.957019026, + 264.559384267, + 265.161749509, + 265.76411475, + 266.366479992, + 266.968845233, + 267.571210475, + 268.173575716, + 268.775940958, + 269.378306199, + 269.980671441, + 270.583036682, + 271.185401924, + 271.787767165, + 272.390132407, + 272.992497648, + 273.59486289, + 274.197228131, + 274.799593373, + 275.401958615, + 276.004323856, + 276.606689098, + 277.209054339, + 277.811419581, + 278.413784822, + 279.016150064, + 279.618515305, + 280.220880547, + 280.823245788, + 281.42561103, + 282.027976271, + 282.630341513, + 283.232706754, + 283.835071996, + 284.437437237, + 285.039802479, + 285.64216772, + 286.244532962, + 286.846898203, + 287.449263445, + 288.051628686, + 288.653993928, + 289.25635917, + 289.858724411, + 290.461089653, + 291.063454894, + 291.665820136, + 292.268185377, + 292.870550619, + 293.47291586, + 294.075281102, + 294.677646343, + 295.280011585, + 295.882376826, + 296.484742068, + 297.087107309, + 297.689472551, + 298.291837792, + 298.894203034, + 299.496568275, + 300.098933517, + 300.701298758, + 301.303664, + 301.906029242, + 302.508394483, + 303.110759725, + 303.713124966, + 304.315490208, + 304.917855449, + 305.520220691, + 306.122585932, + 306.724951174, + 307.327316415, + 307.929681657, + 308.532046898, + 309.13441214, + 309.736777381, + 310.339142623, + 310.941507864, + 311.543873106, + 312.146238347, + 312.748603589, + 313.35096883, + 313.953334072, + 314.555699313, + 315.158064555, + 315.760429797, + 316.362795038, + 316.96516028, + 317.567525521, + 318.169890763, + 318.772256004, + 319.374621246, + 319.976986487, + 320.579351729, + 321.18171697, + 321.784082212, + 322.386447453, + 322.988812695, + 323.591177936, + 324.193543178, + 324.795908419, + 325.398273661, + 326.000638902, + 326.603004144, + 327.205369385, + 327.807734627, + 328.410099868, + 329.01246511, + 329.614830352, + 330.217195593, + 330.819560835, + 331.421926076, + 332.024291318, + 332.626656559, + 333.229021801, + 333.831387042, + 334.433752284, + 335.036117525, + 335.638482767, + 336.240848008, + 336.84321325, + 337.445578491, + 338.047943733, + 338.650308974, + 339.252674216, + 339.855039457, + 340.457404699, + 341.05976994, + 341.662135182, + 342.264500423, + 342.866865665, + 343.469230907, + 344.071596148, + 344.67396139, + 345.276326631, + 345.878691873, + 346.481057114, + 347.083422356, + 347.685787597, + 348.288152839, + 348.89051808, + 349.492883322, + 350.095248563, + 350.697613805, + 351.299979046, + 351.902344288, + 352.504709529, + 353.107074771, + 353.709440012, + 354.311805254, + 354.914170495, + 355.516535737, + 356.118900978, + 356.72126622, + 357.323631462, + 357.925996703, + 358.528361945, + 359.130727186, + 359.733092428, + 360.335457669, + 360.937822911, + 361.540188152, + 362.142553394, + 362.744918635, + 363.347283877, + 363.949649118, + 364.55201436, + 365.154379601, + 365.756744843, + 366.359110084, + 366.961475326, + 367.563840567, + 368.166205809, + 368.76857105, + 369.370936292, + 369.973301534, + 370.575666775, + 371.178032017, + 371.780397258, + 372.3827625, + 372.985127741, + 373.587492983, + 374.189858224, + 374.792223466, + 375.394588707, + 375.996953949, + 376.59931919, + 377.201684432, + 377.804049673, + 378.406414915, + 379.008780156, + 379.611145398, + 380.213510639, + 380.815875881, + 381.418241122, + 382.020606364, + 382.622971605, + 383.225336847, + 383.827702089, + 384.43006733, + 385.032432572, + 385.634797813, + 386.237163055, + 386.839528296, + 387.441893538, + 388.044258779, + 388.646624021, + 389.248989262, + 389.851354504, + 390.453719745, + 391.056084987, + 391.658450228, + 392.26081547, + 392.863180711, + 393.465545953, + 394.067911194, + 394.670276436, + 395.272641677, + 395.875006919, + 396.47737216, + 397.079737402, + 397.682102644, + 398.284467885, + 398.886833127, + 399.489198368, + 400.09156361, + 400.693928851, + 401.296294093, + 401.898659334, + 402.501024576, + 403.103389817, + 403.705755059, + 404.3081203, + 404.910485542, + 405.512850783, + 406.115216025, + 406.717581266, + 407.319946508, + 407.922311749, + 408.524676991, + 409.127042232, + 409.729407474, + 410.331772715, + 410.934137957, + 411.536503199, + 412.13886844, + 412.741233682, + 413.343598923, + 413.945964165, + 414.548329406, + 415.150694648, + 415.753059889, + 416.355425131, + 416.957790372, + 417.560155614, + 418.162520855, + 418.764886097, + 419.367251338, + 419.96961658, + 420.571981821, + 421.174347063, + 421.776712304, + 422.379077546, + 422.981442787, + 423.583808029, + 424.18617327, + 424.788538512, + 425.390903754, + 425.993268995, + 426.595634237, + 427.197999478, + 427.80036472, + 428.402729961, + 429.005095203, + 429.607460444, + 430.209825686, + 430.812190927, + 431.414556169, + 432.01692141, + 432.619286652, + 433.221651893, + 433.824017135, + 434.426382376, + 435.028747618, + 435.631112859, + 436.233478101, + 436.835843342, + 437.438208584, + 438.040573825, + 438.642939067, + 439.245304309, + 439.84766955, + 440.450034792, + 441.052400033, + 441.654765275, + 442.257130516, + 442.859495758, + 443.461860999, + 444.064226241, + 444.666591482, + 445.268956724, + 445.871321965, + 446.473687207, + 447.076052448, + 447.67841769, + 448.280782931, + 448.883148173, + 449.485513414, + 450.087878656, + 450.690243897, + 451.292609139, + 451.894974381, + 452.497339622, + 453.099704864, + 453.702070105, + 454.304435347, + 454.906800588, + 455.50916583, + 456.111531071, + 456.713896313, + 457.316261554, + 457.918626796, + 458.520992037, + 459.123357279, + 459.72572252, + 460.328087762, + 460.930453003, + 461.532818245, + 462.135183486, + 462.737548728, + 463.339913969, + 463.942279211, + 464.544644452, + 465.147009694, + 465.749374936, + 466.351740177, + 466.954105419, + 467.55647066, + 468.158835902, + 468.761201143, + 469.363566385, + 469.965931626, + 470.568296868, + 471.170662109, + 471.773027351, + 472.375392592, + 472.977757834, + 473.580123075, + 474.182488317, + 474.784853558, + 475.3872188, + 475.989584041, + 476.591949283, + 477.194314524, + 477.796679766, + 478.399045007, + 479.001410249, + 479.603775491, + 480.206140732, + 480.808505974, + 481.410871215, + 482.013236457, + 482.615601698, + 483.21796694, + 483.820332181, + 484.422697423, + 485.025062664, + 485.627427906, + 486.229793147, + 486.832158389, + 487.43452363, + 488.036888872, + 488.639254113, + 489.241619355, + 489.843984596, + 490.446349838, + 491.048715079, + 491.651080321, + 492.253445562, + 492.855810804, + 493.458176046, + 494.060541287, + 494.662906529, + 495.26527177, + 495.867637012, + 496.470002253, + 497.072367495, + 497.674732736, + 498.277097978, + 498.879463219, + 499.481828461, + 500.084193702, + 500.686558944, + 501.288924185, + 501.891289427, + 502.493654668, + 503.09601991, + 503.698385151, + 504.300750393, + 504.903115634, + 505.505480876, + 506.107846117, + 506.710211359, + 507.312576601, + 507.914941842, + 508.517307084, + 509.119672325, + 509.722037567, + 510.324402808, + 510.92676805, + 511.529133291, + 512.131498533, + 512.733863774, + 513.336229016, + 513.938594257, + 514.540959499, + 515.14332474, + 515.745689982, + 516.348055223, + 516.950420465, + 517.552785706, + 518.155150948, + 518.757516189, + 519.359881431, + 519.962246673, + 520.564611914, + 521.166977156, + 521.769342397, + 522.371707639, + 522.97407288, + 523.576438122, + 524.178803363, + 524.781168605, + 525.383533846, + 525.985899088, + 526.588264329, + 527.190629571, + 527.792994812, + 528.395360054, + 528.997725295, + 529.600090537, + 530.202455778, + 530.80482102, + 531.407186261, + 532.009551503, + 532.611916744, + 533.214281986, + 533.816647228, + 534.419012469, + 535.021377711, + 535.623742952, + 536.226108194, + 536.828473435, + 537.430838677, + 538.033203918, + 538.63556916, + 539.237934401, + 539.840299643, + 540.442664884, + 541.045030126, + 541.647395367, + 542.249760609, + 542.85212585, + 543.454491092, + 544.056856333, + 544.659221575, + 545.261586816, + 545.863952058, + 546.466317299, + 547.068682541, + 547.671047783, + 548.273413024, + 548.875778266, + 549.478143507, + 550.080508749, + 550.68287399, + 551.285239232, + 551.887604473, + 552.489969715, + 553.092334956, + 553.694700198, + 554.297065439, + 554.899430681, + 555.501795922, + 556.104161164, + 556.706526405, + 557.308891647, + 557.911256888, + 558.51362213, + 559.115987371, + 559.718352613, + 560.320717854, + 560.923083096, + 561.525448338, + 562.127813579, + 562.730178821, + 563.332544062, + 563.934909304, + 564.537274545, + 565.139639787, + 565.742005028, + 566.34437027, + 566.946735511, + 567.549100753, + 568.151465994, + 568.753831236, + 569.356196477, + 569.958561719, + 570.56092696, + 571.163292202, + 571.765657443, + 572.368022685, + 572.970387926, + 573.572753168, + 574.175118409, + 574.777483651, + 575.379848893, + 575.982214134, + 576.584579376, + 577.186944617, + 577.789309859, + 578.3916751, + 578.994040342, + 579.596405583, + 580.198770825, + 580.801136066, + 581.403501308, + 582.005866549, + 582.608231791, + 583.210597032, + 583.812962274, + 584.415327515, + 585.017692757, + 585.620057998, + 586.22242324, + 586.824788481, + 587.427153723, + 588.029518965, + 588.631884206, + 589.234249448, + 589.836614689, + 590.438979931, + 591.041345172, + 591.643710414, + 592.246075655, + 592.848440897, + 593.450806138, + 594.05317138, + 594.655536621, + 595.257901863, + 595.860267104, + 596.462632346, + 597.064997587, + 597.667362829, + 598.26972807, + 598.872093312, + 599.474458553, + 600.076823795, + 600.679189036, + 601.281554278, + 601.88391952, + 602.486284761, + 603.088650003, + 603.691015244, + 604.293380486, + 604.895745727, + 605.498110969, + 606.10047621, + 606.702841452, + 607.305206693, + 607.907571935, + 608.509937176, + 609.112302418, + 609.714667659, + 610.317032901, + 610.919398142, + 611.521763384, + 612.124128625, + 612.726493867, + 613.328859108, + 613.93122435, + 614.533589591, + 615.135954833, + 615.738320075, + 616.340685316 + ], + "ys": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.00000008333333333333325, + 0.0000002499999999999997, + 0.0000004999999999999994, + 0.0000009166666666666656, + 0.0000014999999999999983, + 0.0000023333333333333306, + 0.0000035833333333333292, + 0.000005333333333333327, + 0.000007749999999999992, + 0.000010833333333333322, + 0.000014666666666666651, + 0.000019333333333333313, + 0.000024833333333333308, + 0.00003124999999999997, + 0.00003858333333333329, + 0.000047166666666666616, + 0.00005733333333333327, + 0.00006933333333333325, + 0.0000832499999999999, + 0.00009933333333333322, + 0.00011774999999999987, + 0.00013899999999999986, + 0.0001636666666666665, + 0.00019183333333333314, + 0.0002235833333333331, + 0.00025899999999999974, + 0.0002982499999999997, + 0.00034166666666666633, + 0.0003899999999999996, + 0.0004444166666666662, + 0.0005055833333333328, + 0.000573916666666666, + 0.0006504166666666659, + 0.0007355833333333324, + 0.0008305833333333324, + 0.0009358333333333322, + 0.0010518333333333321, + 0.0011789999999999986, + 0.0013189999999999983, + 0.0014732499999999982, + 0.001642999999999998, + 0.0018292499999999978, + 0.0020329999999999975, + 0.0022555833333333304, + 0.00249883333333333, + 0.002764499999999996, + 0.0030536666666666624, + 0.003366749999999995, + 0.0037039999999999946, + 0.004065583333333327, + 0.004453083333333326, + 0.004868416666666659, + 0.005312416666666658, + 0.005787416666666658, + 0.006293583333333324, + 0.0068318333333333234, + 0.007404083333333322, + 0.008011833333333322, + 0.008655416666666655, + 0.009334666666666654, + 0.010050749999999987, + 0.010804666666666652, + 0.011597499999999985, + 0.01242966666666665, + 0.013300833333333316, + 0.014210249999999982, + 0.015159083333333314, + 0.01614924999999998, + 0.01718249999999998, + 0.018260333333333312, + 0.019383999999999978, + 0.020553666666666644, + 0.02177133333333331, + 0.023036333333333308, + 0.024349749999999972, + 0.025713166666666638, + 0.027125166666666634, + 0.028587083333333298, + 0.03009991666666663, + 0.031665833333333296, + 0.03328391666666663, + 0.034954833333333296, + 0.03667824999999996, + 0.03845583333333329, + 0.04029124999999996, + 0.04218733333333329, + 0.04414333333333329, + 0.04616024999999996, + 0.048238999999999956, + 0.05038074999999995, + 0.05258349999999995, + 0.05484833333333328, + 0.05717499999999994, + 0.059563583333333274, + 0.0620164166666666, + 0.0645344166666666, + 0.06712291666666659, + 0.06978091666666658, + 0.07250866666666658, + 0.07530441666666658, + 0.07816908333333325, + 0.08110283333333325, + 0.08410733333333324, + 0.08718249999999991, + 0.09032408333333325, + 0.09353216666666658, + 0.09680824999999992, + 0.10015249999999991, + 0.10356291666666657, + 0.1070367499999999, + 0.1105749999999999, + 0.11417516666666656, + 0.11783358333333323, + 0.12155083333333322, + 0.12532391666666656, + 0.1291514999999999, + 0.13302716666666656, + 0.13695041666666655, + 0.1409195833333332, + 0.14493641666666654, + 0.14900091666666654, + 0.1531103333333332, + 0.15726141666666654, + 0.16145274999999987, + 0.16568591666666654, + 0.16995691666666654, + 0.1742640833333332, + 0.1786053333333332, + 0.18298066666666654, + 0.18739016666666652, + 0.19183466666666651, + 0.19631508333333317, + 0.20083558333333315, + 0.20539583333333314, + 0.20999574999999981, + 0.21463374999999982, + 0.2193107499999998, + 0.2240272499999998, + 0.22878374999999979, + 0.23357641666666645, + 0.23840408333333313, + 0.2432699999999998, + 0.2481744999999998, + 0.2531168333333331, + 0.25809516666666643, + 0.2631113333333331, + 0.2681649166666664, + 0.2732556666666664, + 0.27838199999999974, + 0.2835429166666664, + 0.2887320833333331, + 0.2939485833333331, + 0.2991875833333331, + 0.30444491666666645, + 0.30972041666666644, + 0.3150121666666664, + 0.32031949999999976, + 0.3256391666666664, + 0.3309654166666664, + 0.3362978333333331, + 0.3416336666666664, + 0.3469661666666664, + 0.35229249999999973, + 0.35760749999999975, + 0.36290883333333307, + 0.3681941666666664, + 0.373462833333333, + 0.3787102499999997, + 0.38393466666666637, + 0.38913483333333304, + 0.39431541666666636, + 0.39947416666666635, + 0.4046099999999997, + 0.409723833333333, + 0.414812583333333, + 0.41987466666666634, + 0.4249074166666663, + 0.42991049999999964, + 0.4348874166666663, + 0.4398396666666663, + 0.444769083333333, + 0.44967924999999964, + 0.45457233333333297, + 0.4594534166666663, + 0.4643244166666663, + 0.46918299999999963, + 0.4740256666666663, + 0.47885308333333293, + 0.4836661666666663, + 0.4884659166666663, + 0.4932494999999996, + 0.49801758333333296, + 0.5027702499999996, + 0.5075054166666663, + 0.5122215833333329, + 0.5169205833333329, + 0.5216050833333329, + 0.5262733333333329, + 0.5309237499999996, + 0.5355549999999996, + 0.5401641666666662, + 0.5447474999999996, + 0.5493042499999996, + 0.553831833333333, + 0.558327583333333, + 0.562795333333333, + 0.5672379999999997, + 0.5716600833333331, + 0.5760602499999997, + 0.5804360833333331, + 0.5847869166666664, + 0.5891099999999997, + 0.5934074166666664, + 0.5976817499999998, + 0.6019359166666665, + 0.6061686666666665, + 0.6103775833333331, + 0.6145648333333331, + 0.6187329166666664, + 0.622877083333333, + 0.6269996666666664, + 0.6311009999999997, + 0.6351786666666663, + 0.639232833333333, + 0.6432659999999997, + 0.647276833333333, + 0.6512637499999996, + 0.6552211666666663, + 0.659150833333333, + 0.6630541666666664, + 0.666929333333333, + 0.6707781666666663, + 0.6745994166666663, + 0.678392083333333, + 0.6821536666666663, + 0.6858849166666663, + 0.689584833333333, + 0.6932516666666663, + 0.696883333333333, + 0.7004854999999997, + 0.7040554166666663, + 0.707595083333333, + 0.7111064999999996, + 0.714588833333333, + 0.7180391666666663, + 0.721454333333333, + 0.7248339166666663, + 0.7281794166666663, + 0.7314888333333329, + 0.7347625833333329, + 0.7380037499999995, + 0.7412124999999995, + 0.7443868333333328, + 0.7475277499999995, + 0.7506373333333328, + 0.7537141666666661, + 0.7567602499999995, + 0.7597783333333328, + 0.7627668333333327, + 0.7657233333333328, + 0.7686495833333328, + 0.7715449999999995, + 0.7744101666666662, + 0.7772445833333328, + 0.7800486666666662, + 0.7828229999999995, + 0.7855689166666662, + 0.7882874999999995, + 0.7909790833333328, + 0.7936419999999994, + 0.7962759166666661, + 0.7988807499999995, + 0.8014574166666661, + 0.8040024999999995, + 0.8065147499999995, + 0.8089963333333329, + 0.8114466666666662, + 0.8138647499999996, + 0.8162524166666663, + 0.818610833333333, + 0.820939583333333, + 0.8232389166666663, + 0.8255059999999996, + 0.827743833333333, + 0.829954333333333, + 0.8321404166666664, + 0.834300833333333, + 0.836434833333333, + 0.8385437499999997, + 0.8406294166666664, + 0.8426907499999997, + 0.8447287499999997, + 0.8467448333333331, + 0.8487428333333331, + 0.8507236666666664, + 0.8526859999999997, + 0.8546305833333331, + 0.8565564999999997, + 0.8584635833333331, + 0.860351333333333, + 0.8622197499999997, + 0.8640696666666664, + 0.8659023333333331, + 0.867716083333333, + 0.869510083333333, + 0.8712826666666663, + 0.873035083333333, + 0.8747681666666663, + 0.876482333333333, + 0.878175833333333, + 0.879850083333333, + 0.881504333333333, + 0.8831382499999997, + 0.8847509999999997, + 0.886342583333333, + 0.8879131666666664, + 0.8894625833333331, + 0.890992083333333, + 0.8925016666666663, + 0.8939909166666663, + 0.895460333333333, + 0.8969084999999997, + 0.8983372499999996, + 0.899746333333333, + 0.9011364999999997, + 0.9025085833333331, + 0.9038624999999997, + 0.9051979999999997, + 0.9065134999999998, + 0.9078100833333331, + 0.9090884999999997, + 0.9103483333333331, + 0.9115894166666664, + 0.912811833333333, + 0.9140156666666663, + 0.9152017499999997, + 0.916369833333333, + 0.9175191666666663, + 0.918651083333333, + 0.9197666666666664, + 0.9208664999999997, + 0.9219517499999997, + 0.9230228333333331, + 0.9240817499999998, + 0.9251280833333332, + 0.9261623333333332, + 0.9271840833333332, + 0.9281935833333332, + 0.9291920833333333, + 0.9301800833333332, + 0.9311554999999999, + 0.9321189999999999, + 0.9330714166666666, + 0.9340124999999999, + 0.9349433333333332, + 0.9358638333333332, + 0.9367748333333332, + 0.9376771666666666, + 0.9385694166666666, + 0.9394520833333333, + 0.9403247499999999, + 0.9411880833333333, + 0.9420395833333333, + 0.9428768333333333, + 0.9437005833333333, + 0.94451025, + 0.945307, + 0.9460910833333334, + 0.9468625833333334, + 0.9476213333333334, + 0.9483690000000001, + 0.9491064166666668, + 0.9498336666666668, + 0.9505512500000002, + 0.9512580833333335, + 0.9519539166666668, + 0.9526380000000002, + 0.9533097500000002, + 0.9539701666666669, + 0.9546188333333335, + 0.9552561666666669, + 0.9558814166666669, + 0.9564970000000003, + 0.957104916666667, + 0.957705416666667, + 0.9582990833333337, + 0.9588850833333337, + 0.9594635000000004, + 0.9600345000000003, + 0.9605987500000004, + 0.9611565000000004, + 0.9617067500000004, + 0.9622496666666671, + 0.9627849166666671, + 0.9633124166666671, + 0.9638330000000005, + 0.9643480000000005, + 0.9648577500000005, + 0.9653627500000005, + 0.9658638333333338, + 0.9663608333333338, + 0.9668538333333337, + 0.9673412500000004, + 0.9678228333333337, + 0.9682979166666671, + 0.9687660833333338, + 0.9692284166666671, + 0.9696847500000005, + 0.9701346666666673, + 0.9705779166666673, + 0.9710140833333339, + 0.9714436666666673, + 0.9718659166666672, + 0.9722810000000005, + 0.9726899166666672, + 0.9730920000000005, + 0.9734868333333339, + 0.9738748333333339, + 0.9742554166666673, + 0.9746280000000006, + 0.9749929166666673, + 0.9753504166666673, + 0.9757015000000007, + 0.9760452500000006, + 0.9763819166666673, + 0.9767122500000006, + 0.977035583333334, + 0.9773530833333339, + 0.9776647500000006, + 0.9779707500000007, + 0.978270833333334, + 0.9785655000000006, + 0.9788555000000007, + 0.9791410833333339, + 0.9794220833333339, + 0.9796997500000005, + 0.9799740000000006, + 0.9802448333333339, + 0.9805123333333339, + 0.9807765000000005, + 0.9810370833333338, + 0.9812940000000006, + 0.9815473333333339, + 0.9817981666666672, + 0.9820470000000006, + 0.9822937500000005, + 0.9825387500000006, + 0.9827812500000006, + 0.9830218333333339, + 0.983260333333334, + 0.9834976666666673, + 0.9837335833333339, + 0.9839680000000006, + 0.9842007500000006, + 0.9844316666666673, + 0.9846595000000006, + 0.9848841666666672, + 0.9851054166666672, + 0.9853233333333339, + 0.9855376666666672, + 0.9857495000000005, + 0.9859598333333338, + 0.9861686666666671, + 0.9863755000000005, + 0.9865795833333338, + 0.9867810000000005, + 0.9869795833333338, + 0.9871751666666672, + 0.9873675000000005, + 0.9875568333333339, + 0.9877421666666673, + 0.987923583333334, + 0.9881013333333339, + 0.9882756666666673, + 0.9884469166666673, + 0.9886158333333339, + 0.9887827500000006, + 0.988947583333334, + 0.9891106666666674, + 0.9892725000000007, + 0.9894319166666673, + 0.9895877500000007, + 0.9897399166666673, + 0.9898890000000006, + 0.9900355000000006, + 0.990178833333334, + 0.990319333333334, + 0.9904571666666674, + 0.9905926666666673, + 0.990725833333334, + 0.9908575000000006, + 0.990987833333334, + 0.9911164166666673, + 0.9912434166666673, + 0.9913687500000006, + 0.9914921666666673, + 0.9916135000000006, + 0.9917337500000006, + 0.991852333333334, + 0.991969083333334, + 0.9920846666666674, + 0.9921994166666674, + 0.9923132500000008, + 0.9924260000000008, + 0.9925379166666675, + 0.9926495000000009, + 0.9927609166666675, + 0.9928723333333342, + 0.9929835833333343, + 0.9930945833333342, + 0.9932050000000009, + 0.9933143333333342, + 0.9934225833333342, + 0.9935295833333342, + 0.9936350833333342, + 0.9937392500000009, + 0.9938422500000008, + 0.9939434166666675, + 0.9940430833333342, + 0.9941412500000009, + 0.9942375000000009, + 0.9943320833333342, + 0.9944255000000009, + 0.9945177500000009, + 0.9946086666666676, + 0.9946981666666675, + 0.9947856666666676, + 0.9948710833333343, + 0.9949545833333343, + 0.9950361666666676, + 0.9951160833333342, + 0.9951949166666676, + 0.9952726666666676, + 0.9953494166666675, + 0.9954254166666675, + 0.9955005000000009, + 0.9955748333333342, + 0.9956481666666676, + 0.9957205000000009, + 0.9957921666666676, + 0.9958635833333342, + 0.9959344166666676, + 0.9960041666666676, + 0.996072750000001, + 0.9961399166666677, + 0.9962055833333343, + 0.9962699166666676, + 0.996333000000001, + 0.9963945833333344, + 0.9964545833333345, + 0.9965128333333345, + 0.9965689166666678, + 0.9966231666666678, + 0.9966755000000012, + 0.9967258333333345, + 0.9967742500000012, + 0.9968204166666679, + 0.9968645833333345, + 0.9969068333333345, + 0.9969470000000011, + 0.9969845833333345, + 0.9970198333333345, + 0.9970530000000012, + 0.9970841666666679, + 0.9971137500000012, + 0.9971421666666679, + 0.9971697500000012, + 0.9971964166666678, + 0.9972222500000012, + 0.9972474166666678, + 0.9972720000000012, + 0.9972962500000012, + 0.9973200000000012, + 0.9973435000000012, + 0.9973670000000011, + 0.9973906666666678, + 0.9974146666666678, + 0.9974390833333344, + 0.9974639166666678, + 0.9974890000000011, + 0.9975147500000011, + 0.9975410833333345, + 0.9975680833333345, + 0.9975959166666678, + 0.9976242500000011, + 0.9976528333333344, + 0.9976813333333344, + 0.9977100000000011, + 0.9977389166666678, + 0.9977681666666678, + 0.9977976666666678, + 0.9978275000000012, + 0.9978578333333346, + 0.9978883333333346, + 0.9979188333333346, + 0.997949166666668, + 0.9979793333333347, + 0.9980093333333346, + 0.9980392500000013, + 0.9980693333333346, + 0.9980994166666679, + 0.9981295833333346, + 0.9981596666666679, + 0.9981892500000012, + 0.9982185000000012, + 0.9982472500000013, + 0.9982756666666679, + 0.9983035833333346, + 0.9983310000000013, + 0.9983577500000013, + 0.9983839166666679, + 0.9984093333333346, + 0.9984338333333346, + 0.9984575833333346, + 0.9984804166666679, + 0.9985024166666678, + 0.9985235833333345, + 0.9985438333333345, + 0.9985632500000012, + 0.9985816666666679, + 0.9985991666666679, + 0.9986157500000012, + 0.9986315000000012, + 0.9986466666666679, + 0.9986612500000013, + 0.9986753333333346, + 0.9986889166666679, + 0.9987018333333346, + 0.998714166666668, + 0.9987260000000013, + 0.998737416666668, + 0.9987485833333347, + 0.9987595833333347, + 0.998770416666668, + 0.9987813333333346, + 0.9987923333333346, + 0.9988034166666679, + 0.9988147500000013, + 0.998825916666668, + 0.9988370000000013, + 0.9988480000000013, + 0.9988589166666679, + 0.9988698333333346, + 0.9988807500000012, + 0.9988916666666678, + 0.9989026666666678, + 0.9989139166666678, + 0.9989256666666678, + 0.9989377500000012, + 0.9989501666666678, + 0.9989628333333345, + 0.9989755833333345, + 0.9989884166666678, + 0.9990012500000012, + 0.9990139166666678, + 0.9990264166666678, + 0.9990388333333344, + 0.9990510000000011, + 0.9990632500000012, + 0.9990755833333346, + 0.9990880833333345, + 0.9991008333333345, + 0.9991136666666679, + 0.9991266666666679, + 0.9991399166666679, + 0.9991534166666679, + 0.9991670000000012, + 0.9991805000000012, + 0.9991940000000012, + 0.9992075833333346, + 0.9992211666666679, + 0.9992348333333346, + 0.9992485833333347, + 0.9992625000000014, + 0.9992767500000014, + 0.9992913333333348, + 0.9993060833333348, + 0.9993211666666681, + 0.9993364166666682, + 0.9993518333333349, + 0.9993672500000016, + 0.9993825000000016, + 0.9993976666666683, + 0.9994126666666683, + 0.999427333333335, + 0.9994416666666683, + 0.9994555000000017, + 0.9994689166666684, + 0.9994819166666684, + 0.9994944166666684, + 0.9995065000000017, + 0.9995181666666684, + 0.9995294166666684, + 0.9995402500000017, + 0.9995505000000017, + 0.9995601666666684, + 0.9995693333333351, + 0.9995779166666684, + 0.9995860000000018, + 0.9995935833333351, + 0.9996007500000018, + 0.9996075833333351, + 0.9996140833333351, + 0.9996201666666684, + 0.9996259166666684, + 0.9996313333333351, + 0.999636583333335, + 0.9996416666666684, + 0.9996465833333351, + 0.9996512500000018, + 0.9996556666666685, + 0.9996598333333352, + 0.9996637500000018, + 0.9996674166666685, + 0.9996710000000019, + 0.9996745000000019, + 0.9996779166666686, + 0.9996811666666686, + 0.9996843333333353, + 0.9996874166666686, + 0.9996905000000019, + 0.9996935833333352, + 0.9996966666666686, + 0.9996998333333352, + 0.9997030833333352, + 0.9997065000000019, + 0.9997100833333353, + 0.9997138333333353, + 0.999717750000002, + 0.9997219166666687, + 0.9997263333333354, + 0.999731000000002, + 0.9997359166666687, + 0.9997410833333354, + 0.9997463333333354, + 0.9997516666666687, + 0.9997571666666687, + 0.9997629166666687, + 0.9997687500000021, + 0.9997746666666688, + 0.9997805000000022, + 0.9997862500000022, + 0.9997919166666689, + 0.9997975000000022, + 0.9998030000000022, + 0.9998082500000022, + 0.9998132500000022, + 0.9998180000000022, + 0.9998225000000022, + 0.9998267500000022, + 0.9998307500000022, + 0.9998345000000022, + 0.9998380000000022, + 0.9998412500000022, + 0.9998443333333356, + 0.9998472500000022, + 0.9998498333333355, + 0.9998520833333355, + 0.9998540833333356, + 0.9998558333333356, + 0.9998574166666689, + 0.9998588333333356, + 0.9998600833333356, + 0.999861166666669, + 0.9998620833333357, + 0.999862916666669, + 0.999863666666669, + 0.9998643333333357, + 0.999864916666669, + 0.999865416666669, + 0.9998658333333357, + 0.999866166666669, + 0.9998664166666691, + 0.9998665833333358, + 0.9998666666666691, + 0.9998666666666691, + 0.9998666666666691, + 0.9998666666666691, + 0.9998666666666691, + 0.9998666666666691, + 0.9998666666666691, + 0.9998666666666691, + 0.9998666666666691, + 0.9998666666666691, + 0.9998666666666691, + 0.9998666666666691, + 0.9998666666666691, + 0.9998667500000025, + 0.9998669166666692, + 0.9998671666666692, + 0.9998675000000026, + 0.9998679166666693, + 0.9998684166666693, + 0.9998690000000026, + 0.9998696666666692, + 0.9998704166666692, + 0.9998712500000025, + 0.9998722500000026, + 0.9998734166666693, + 0.9998747500000026, + 0.9998763333333359, + 0.9998781666666693, + 0.9998802500000026, + 0.9998825833333359, + 0.9998851666666693, + 0.9998880000000027, + 0.999891083333336, + 0.9998942500000026, + 0.9998975000000027, + 0.999900833333336, + 0.9999042500000027, + 0.9999077500000028, + 0.9999113333333361, + 0.9999150000000028, + 0.9999187500000027, + 0.9999225833333361, + 0.9999265000000027, + 0.999930333333336, + 0.999934083333336, + 0.9999377500000026, + 0.9999411666666693, + 0.999944333333336, + 0.9999472500000026, + 0.9999499166666693, + 0.999952333333336, + 0.9999545000000026, + 0.9999564166666693, + 0.9999581666666694, + 0.9999597500000027, + 0.9999611666666693, + 0.9999624166666694, + 0.9999635000000028, + 0.9999644166666695, + 0.9999651666666695, + 0.9999657500000028, + 0.9999661666666695, + 0.9999664166666695, + 0.9999665833333362, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999666666666696, + 0.9999667500000029, + 0.9999669166666696, + 0.9999671666666696, + 0.999967500000003, + 0.9999679166666697, + 0.9999684166666697, + 0.999969000000003, + 0.9999696666666696, + 0.9999704166666696, + 0.999971250000003, + 0.9999721666666697, + 0.9999731666666697, + 0.9999742500000031, + 0.9999754166666698, + 0.9999766666666698, + 0.9999780000000031, + 0.9999794166666698, + 0.9999809166666698, + 0.9999825000000031, + 0.9999841666666698, + 0.9999857500000031, + 0.9999872500000031, + 0.9999886666666697, + 0.999990000000003, + 0.9999912500000031, + 0.9999924166666698, + 0.9999935000000032, + 0.9999945000000032, + 0.9999954166666699, + 0.9999962500000033, + 0.9999970000000032, + 0.9999976666666699, + 0.9999982500000032, + 0.9999987500000032, + 0.9999991666666699, + 0.9999995000000033, + 0.9999997500000033, + 0.99999991666667, + 1.0000000000000033, + 1.0000000000000033, + 1.0000000000000033, + 1.0000000000000033, + 1.0000000000000033, + 1.0000000000000033, + 1.0000000000000033, + 1.0000000000000033, + 1.0000000000000033, + 1.0000000000000033, + 1.0000000000000033, + 1.0000000000000033, + 1.0000000000000033, + 1.0000000000000033, + 1.0000000000000033, + 1.0000000000000033, + 1.0000000000000033, + 1.0000000000000033, + 1.0000000000000033, + 1.0000000000000033 + ] + }, + { + "createdAt": "2020-01-24T09:48:45.313+00:00", + "xs": [ + -1.30355583057, + -1.17966100484, + -1.05576617911, + -0.931871353387, + -0.80797652766, + -0.684081701933, + -0.560186876207, + -0.43629205048, + -0.312397224753, + -0.188502399026, + -0.0646075732993, + 0.0592872524276, + 0.183182078154, + 0.307076903881, + 0.430971729608, + 0.554866555335, + 0.678761381062, + 0.802656206788, + 0.926551032515, + 1.05044585824, + 1.17434068397, + 1.2982355097, + 1.42213033542, + 1.54602516115, + 1.66991998688, + 1.7938148126, + 1.91770963833, + 2.04160446406, + 2.16549928978, + 2.28939411551, + 2.41328894124, + 2.53718376696, + 2.66107859269, + 2.78497341842, + 2.90886824414, + 3.03276306987, + 3.1566578956, + 3.28055272132, + 3.40444754705, + 3.52834237278, + 3.65223719851, + 3.77613202423, + 3.90002684996, + 4.02392167569, + 4.14781650141, + 4.27171132714, + 4.39560615287, + 4.51950097859, + 4.64339580432, + 4.76729063005, + 4.89118545577, + 5.0150802815, + 5.13897510723, + 5.26286993295, + 5.38676475868, + 5.51065958441, + 5.63455441013, + 5.75844923586, + 5.88234406159, + 6.00623888731, + 6.13013371304, + 6.25402853877, + 6.3779233645, + 6.50181819022, + 6.62571301595, + 6.74960784168, + 6.8735026674, + 6.99739749313, + 7.12129231886, + 7.24518714458, + 7.36908197031, + 7.49297679604, + 7.61687162176, + 7.74076644749, + 7.86466127322, + 7.98855609894, + 8.11245092467, + 8.2363457504, + 8.36024057612, + 8.48413540185, + 8.60803022758, + 8.7319250533, + 8.85581987903, + 8.97971470476, + 9.10360953049, + 9.22750435621, + 9.35139918194, + 9.47529400767, + 9.59918883339, + 9.72308365912, + 9.84697848485, + 9.97087331057, + 10.0947681363, + 10.218662962, + 10.3425577878, + 10.4664526135, + 10.5903474392, + 10.7142422649, + 10.8381370907, + 10.9620319164, + 11.0859267421, + 11.2098215678, + 11.3337163936, + 11.4576112193, + 11.581506045, + 11.7054008707, + 11.8292956965, + 11.9531905222, + 12.0770853479, + 12.2009801737, + 12.3248749994, + 12.4487698251, + 12.5726646508, + 12.6965594766, + 12.8204543023, + 12.944349128, + 13.0682439537, + 13.1921387795, + 13.3160336052, + 13.4399284309, + 13.5638232567, + 13.6877180824, + 13.8116129081, + 13.9355077338, + 14.0594025596, + 14.1832973853, + 14.307192211, + 14.4310870367, + 14.5549818625, + 14.6788766882, + 14.8027715139, + 14.9266663396, + 15.0505611654, + 15.1744559911, + 15.2983508168, + 15.4222456426, + 15.5461404683, + 15.670035294, + 15.7939301197, + 15.9178249455, + 16.0417197712, + 16.1656145969, + 16.2895094226, + 16.4134042484, + 16.5372990741, + 16.6611938998, + 16.7850887255, + 16.9089835513, + 17.032878377, + 17.1567732027, + 17.2806680285, + 17.4045628542, + 17.5284576799, + 17.6523525056, + 17.7762473314, + 17.9001421571, + 18.0240369828, + 18.1479318085, + 18.2718266343, + 18.39572146, + 18.5196162857, + 18.6435111114, + 18.7674059372, + 18.8913007629, + 19.0151955886, + 19.1390904144, + 19.2629852401, + 19.3868800658, + 19.5107748915, + 19.6346697173, + 19.758564543, + 19.8824593687, + 20.0063541944, + 20.1302490202, + 20.2541438459, + 20.3780386716, + 20.5019334974, + 20.6258283231, + 20.7497231488, + 20.8736179745, + 20.9975128003, + 21.121407626, + 21.2453024517, + 21.3691972774, + 21.4930921032, + 21.6169869289, + 21.7408817546, + 21.8647765803, + 21.9886714061, + 22.1125662318, + 22.2364610575, + 22.3603558833, + 22.484250709, + 22.6081455347, + 22.7320403604, + 22.8559351862, + 22.9798300119, + 23.1037248376, + 23.2276196633, + 23.3515144891, + 23.4754093148, + 23.5993041405, + 23.7231989662, + 23.847093792, + 23.9709886177, + 24.0948834434, + 24.2187782692, + 24.3426730949, + 24.4665679206, + 24.5904627463, + 24.7143575721, + 24.8382523978, + 24.9621472235, + 25.0860420492, + 25.209936875, + 25.3338317007, + 25.4577265264, + 25.5816213522, + 25.7055161779, + 25.8294110036, + 25.9533058293, + 26.0772006551, + 26.2010954808, + 26.3249903065, + 26.4488851322, + 26.572779958, + 26.6966747837, + 26.8205696094, + 26.9444644351, + 27.0683592609, + 27.1922540866, + 27.3161489123, + 27.4400437381, + 27.5639385638, + 27.6878333895, + 27.8117282152, + 27.935623041, + 28.0595178667, + 28.1834126924, + 28.3073075181, + 28.4312023439, + 28.5550971696, + 28.6789919953, + 28.802886821, + 28.9267816468, + 29.0506764725, + 29.1745712982, + 29.298466124, + 29.4223609497, + 29.5462557754, + 29.6701506011, + 29.7940454269, + 29.9179402526, + 30.0418350783, + 30.165729904, + 30.2896247298, + 30.4135195555, + 30.5374143812, + 30.661309207, + 30.7852040327, + 30.9090988584, + 31.0329936841, + 31.1568885099, + 31.2807833356, + 31.4046781613, + 31.528572987, + 31.6524678128, + 31.7763626385, + 31.9002574642, + 32.0241522899, + 32.1480471157, + 32.2719419414, + 32.3958367671, + 32.5197315929, + 32.6436264186, + 32.7675212443, + 32.89141607, + 33.0153108958, + 33.1392057215, + 33.2631005472, + 33.3869953729, + 33.5108901987, + 33.6347850244, + 33.7586798501, + 33.8825746758, + 34.0064695016, + 34.1303643273, + 34.254259153, + 34.3781539788, + 34.5020488045, + 34.6259436302, + 34.7498384559, + 34.8737332817, + 34.9976281074, + 35.1215229331, + 35.2454177588, + 35.3693125846, + 35.4932074103, + 35.617102236, + 35.7409970618, + 35.8648918875, + 35.9887867132, + 36.1126815389, + 36.2365763647, + 36.3604711904, + 36.4843660161, + 36.6082608418, + 36.7321556676, + 36.8560504933, + 36.979945319, + 37.1038401447, + 37.2277349705, + 37.3516297962, + 37.4755246219, + 37.5994194477, + 37.7233142734, + 37.8472090991, + 37.9711039248, + 38.0949987506, + 38.2188935763, + 38.342788402, + 38.4666832277, + 38.5905780535, + 38.7144728792, + 38.8383677049, + 38.9622625306, + 39.0861573564, + 39.2100521821, + 39.3339470078, + 39.4578418336, + 39.5817366593, + 39.705631485, + 39.8295263107, + 39.9534211365, + 40.0773159622, + 40.2012107879, + 40.3251056136, + 40.4490004394, + 40.5728952651, + 40.6967900908, + 40.8206849166, + 40.9445797423, + 41.068474568, + 41.1923693937, + 41.3162642195, + 41.4401590452, + 41.5640538709, + 41.6879486966, + 41.8118435224, + 41.9357383481, + 42.0596331738, + 42.1835279995, + 42.3074228253, + 42.431317651, + 42.5552124767, + 42.6791073025, + 42.8030021282, + 42.9268969539, + 43.0507917796, + 43.1746866054, + 43.2985814311, + 43.4224762568, + 43.5463710825, + 43.6702659083, + 43.794160734, + 43.9180555597, + 44.0419503854, + 44.1658452112, + 44.2897400369, + 44.4136348626, + 44.5375296884, + 44.6614245141, + 44.7853193398, + 44.9092141655, + 45.0331089913, + 45.157003817, + 45.2808986427, + 45.4047934684, + 45.5286882942, + 45.6525831199, + 45.7764779456, + 45.9003727713, + 46.0242675971, + 46.1481624228, + 46.2720572485, + 46.3959520743, + 46.5198469, + 46.6437417257, + 46.7676365514, + 46.8915313772, + 47.0154262029, + 47.1393210286, + 47.2632158543, + 47.3871106801, + 47.5110055058, + 47.6349003315, + 47.7587951573, + 47.882689983, + 48.0065848087, + 48.1304796344, + 48.2543744602, + 48.3782692859, + 48.5021641116, + 48.6260589373, + 48.7499537631, + 48.8738485888, + 48.9977434145, + 49.1216382402, + 49.245533066, + 49.3694278917, + 49.4933227174, + 49.6172175432, + 49.7411123689, + 49.8650071946, + 49.9889020203, + 50.1127968461, + 50.2366916718, + 50.3605864975, + 50.4844813232, + 50.608376149, + 50.7322709747, + 50.8561658004, + 50.9800606261, + 51.1039554519, + 51.2278502776, + 51.3517451033, + 51.4756399291, + 51.5995347548, + 51.7234295805, + 51.8473244062, + 51.971219232, + 52.0951140577, + 52.2190088834, + 52.3429037091, + 52.4667985349, + 52.5906933606, + 52.7145881863, + 52.8384830121, + 52.9623778378, + 53.0862726635, + 53.2101674892, + 53.334062315, + 53.4579571407, + 53.5818519664, + 53.7057467921, + 53.8296416179, + 53.9535364436, + 54.0774312693, + 54.201326095, + 54.3252209208, + 54.4491157465, + 54.5730105722, + 54.696905398, + 54.8208002237, + 54.9446950494, + 55.0685898751, + 55.1924847009, + 55.3163795266, + 55.4402743523, + 55.564169178, + 55.6880640038, + 55.8119588295, + 55.9358536552, + 56.0597484809, + 56.1836433067, + 56.3075381324, + 56.4314329581, + 56.5553277839, + 56.6792226096, + 56.8031174353, + 56.927012261, + 57.0509070868, + 57.1748019125, + 57.2986967382, + 57.4225915639, + 57.5464863897, + 57.6703812154, + 57.7942760411, + 57.9181708669, + 58.0420656926, + 58.1659605183, + 58.289855344, + 58.4137501698, + 58.5376449955, + 58.6615398212, + 58.7854346469, + 58.9093294727, + 59.0332242984, + 59.1571191241, + 59.2810139498, + 59.4049087756, + 59.5288036013, + 59.652698427, + 59.7765932528, + 59.9004880785, + 60.0243829042, + 60.1482777299, + 60.2721725557, + 60.3960673814, + 60.5199622071, + 60.6438570328, + 60.7677518586, + 60.8916466843, + 61.01554151, + 61.1394363357, + 61.2633311615, + 61.3872259872, + 61.5111208129, + 61.6350156387, + 61.7589104644, + 61.8828052901, + 62.0067001158, + 62.1305949416, + 62.2544897673, + 62.378384593, + 62.5022794187, + 62.6261742445, + 62.7500690702, + 62.8739638959, + 62.9978587217, + 63.1217535474, + 63.2456483731, + 63.3695431988, + 63.4934380246, + 63.6173328503, + 63.741227676, + 63.8651225017, + 63.9890173275, + 64.1129121532, + 64.2368069789, + 64.3607018046, + 64.4845966304, + 64.6084914561, + 64.7323862818, + 64.8562811076, + 64.9801759333, + 65.104070759, + 65.2279655847, + 65.3518604105, + 65.4757552362, + 65.5996500619, + 65.7235448876, + 65.8474397134, + 65.9713345391, + 66.0952293648, + 66.2191241905, + 66.3430190163, + 66.466913842, + 66.5908086677, + 66.7147034935, + 66.8385983192, + 66.9624931449, + 67.0863879706, + 67.2102827964, + 67.3341776221, + 67.4580724478, + 67.5819672735, + 67.7058620993, + 67.829756925, + 67.9536517507, + 68.0775465764, + 68.2014414022, + 68.3253362279, + 68.4492310536, + 68.5731258794, + 68.6970207051, + 68.8209155308, + 68.9448103565, + 69.0687051823, + 69.192600008, + 69.3164948337, + 69.4403896594, + 69.5642844852, + 69.6881793109, + 69.8120741366, + 69.9359689624, + 70.0598637881, + 70.1837586138, + 70.3076534395, + 70.4315482653, + 70.555443091, + 70.6793379167, + 70.8032327424, + 70.9271275682, + 71.0510223939, + 71.1749172196, + 71.2988120453, + 71.4227068711, + 71.5466016968, + 71.6704965225, + 71.7943913483, + 71.918286174, + 72.0421809997, + 72.1660758254, + 72.2899706512, + 72.4138654769, + 72.5377603026, + 72.6616551283, + 72.7855499541, + 72.9094447798, + 73.0333396055, + 73.1572344312, + 73.281129257, + 73.4050240827, + 73.5289189084, + 73.6528137342, + 73.7767085599, + 73.9006033856, + 74.0244982113, + 74.1483930371, + 74.2722878628, + 74.3961826885, + 74.5200775142, + 74.64397234, + 74.7678671657, + 74.8917619914, + 75.0156568172, + 75.1395516429, + 75.2634464686, + 75.3873412943, + 75.5112361201, + 75.6351309458, + 75.7590257715, + 75.8829205972, + 76.006815423, + 76.1307102487, + 76.2546050744, + 76.3784999001, + 76.5023947259, + 76.6262895516, + 76.7501843773, + 76.8740792031, + 76.9979740288, + 77.1218688545, + 77.2457636802, + 77.369658506, + 77.4935533317, + 77.6174481574, + 77.7413429831, + 77.8652378089, + 77.9891326346, + 78.1130274603, + 78.236922286, + 78.3608171118, + 78.4847119375, + 78.6086067632, + 78.732501589, + 78.8563964147, + 78.9802912404, + 79.1041860661, + 79.2280808919, + 79.3519757176, + 79.4758705433, + 79.599765369, + 79.7236601948, + 79.8475550205, + 79.9714498462, + 80.095344672, + 80.2192394977, + 80.3431343234, + 80.4670291491, + 80.5909239749, + 80.7148188006, + 80.8387136263, + 80.962608452, + 81.0865032778, + 81.2103981035, + 81.3342929292, + 81.4581877549, + 81.5820825807, + 81.7059774064, + 81.8298722321, + 81.9537670579, + 82.0776618836, + 82.2015567093, + 82.325451535, + 82.4493463608, + 82.5732411865, + 82.6971360122, + 82.8210308379, + 82.9449256637, + 83.0688204894, + 83.1927153151, + 83.3166101408, + 83.4405049666, + 83.5643997923, + 83.688294618, + 83.8121894438, + 83.9360842695, + 84.0599790952, + 84.1838739209, + 84.3077687467, + 84.4316635724, + 84.5555583981, + 84.6794532238, + 84.8033480496, + 84.9272428753, + 85.051137701, + 85.1750325268, + 85.2989273525, + 85.4228221782, + 85.5467170039, + 85.6706118297, + 85.7945066554, + 85.9184014811, + 86.0422963068, + 86.1661911326, + 86.2900859583, + 86.413980784, + 86.5378756097, + 86.6617704355, + 86.7856652612, + 86.9095600869, + 87.0334549127, + 87.1573497384, + 87.2812445641, + 87.4051393898, + 87.5290342156, + 87.6529290413, + 87.776823867, + 87.9007186927, + 88.0246135185, + 88.1485083442, + 88.2724031699, + 88.3962979956, + 88.5201928214, + 88.6440876471, + 88.7679824728, + 88.8918772986, + 89.0157721243, + 89.13966695, + 89.2635617757, + 89.3874566015, + 89.5113514272, + 89.6352462529, + 89.7591410786, + 89.8830359044, + 90.0069307301, + 90.1308255558, + 90.2547203815, + 90.3786152073, + 90.502510033, + 90.6264048587, + 90.7502996845, + 90.8741945102, + 90.9980893359, + 91.1219841616, + 91.2458789874, + 91.3697738131, + 91.4936686388, + 91.6175634645, + 91.7414582903, + 91.865353116, + 91.9892479417, + 92.1131427675, + 92.2370375932, + 92.3609324189, + 92.4848272446, + 92.6087220704, + 92.7326168961, + 92.8565117218, + 92.9804065475, + 93.1043013733, + 93.228196199, + 93.3520910247, + 93.4759858504, + 93.5998806762, + 93.7237755019, + 93.8476703276, + 93.9715651534, + 94.0954599791, + 94.2193548048, + 94.3432496305, + 94.4671444563, + 94.591039282, + 94.7149341077, + 94.8388289334, + 94.9627237592, + 95.0866185849, + 95.2105134106, + 95.3344082363, + 95.4583030621, + 95.5821978878, + 95.7060927135, + 95.8299875393, + 95.953882365, + 96.0777771907, + 96.2016720164, + 96.3255668422, + 96.4494616679, + 96.5733564936, + 96.6972513193, + 96.8211461451, + 96.9450409708, + 97.0689357965, + 97.1928306223, + 97.316725448, + 97.4406202737, + 97.5645150994, + 97.6884099252, + 97.8123047509, + 97.9361995766, + 98.0600944023, + 98.1839892281, + 98.3078840538, + 98.4317788795, + 98.5556737052, + 98.679568531, + 98.8034633567, + 98.9273581824, + 99.0512530082, + 99.1751478339, + 99.2990426596, + 99.4229374853, + 99.5468323111, + 99.6707271368, + 99.7946219625, + 99.9185167882, + 100.042411614, + 100.16630644, + 100.290201265, + 100.414096091, + 100.537990917, + 100.661885743, + 100.785780568, + 100.909675394, + 101.03357022, + 101.157465046, + 101.281359871, + 101.405254697, + 101.529149523, + 101.653044348, + 101.776939174, + 101.900834, + 102.024728826, + 102.148623651, + 102.272518477, + 102.396413303, + 102.520308129, + 102.644202954, + 102.76809778, + 102.891992606, + 103.015887431, + 103.139782257, + 103.263677083, + 103.387571909, + 103.511466734, + 103.63536156, + 103.759256386, + 103.883151211, + 104.007046037, + 104.130940863, + 104.254835689, + 104.378730514, + 104.50262534, + 104.626520166, + 104.750414992, + 104.874309817, + 104.998204643, + 105.122099469, + 105.245994294, + 105.36988912, + 105.493783946, + 105.617678772, + 105.741573597, + 105.865468423, + 105.989363249, + 106.113258075, + 106.2371529, + 106.361047726, + 106.484942552, + 106.608837377, + 106.732732203, + 106.856627029, + 106.980521855, + 107.10441668, + 107.228311506, + 107.352206332, + 107.476101158, + 107.599995983, + 107.723890809, + 107.847785635, + 107.97168046, + 108.095575286, + 108.219470112, + 108.343364938, + 108.467259763, + 108.591154589, + 108.715049415, + 108.838944241, + 108.962839066, + 109.086733892, + 109.210628718, + 109.334523543, + 109.458418369, + 109.582313195, + 109.706208021, + 109.830102846, + 109.953997672, + 110.077892498, + 110.201787324, + 110.325682149, + 110.449576975, + 110.573471801, + 110.697366626, + 110.821261452, + 110.945156278, + 111.069051104, + 111.192945929, + 111.316840755, + 111.440735581, + 111.564630407, + 111.688525232, + 111.812420058, + 111.936314884, + 112.060209709, + 112.184104535, + 112.307999361, + 112.431894187, + 112.555789012, + 112.679683838, + 112.803578664, + 112.92747349, + 113.051368315, + 113.175263141, + 113.299157967, + 113.423052792, + 113.546947618, + 113.670842444, + 113.79473727, + 113.918632095, + 114.042526921, + 114.166421747, + 114.290316573, + 114.414211398, + 114.538106224, + 114.66200105, + 114.785895875, + 114.909790701, + 115.033685527, + 115.157580353, + 115.281475178, + 115.405370004, + 115.52926483, + 115.653159656, + 115.777054481, + 115.900949307, + 116.024844133, + 116.148738958, + 116.272633784, + 116.39652861, + 116.520423436, + 116.644318261, + 116.768213087, + 116.892107913, + 117.016002739, + 117.139897564, + 117.26379239, + 117.387687216, + 117.511582041, + 117.635476867, + 117.759371693, + 117.883266519, + 118.007161344, + 118.13105617, + 118.254950996, + 118.378845822, + 118.502740647, + 118.626635473, + 118.750530299, + 118.874425124, + 118.99831995, + 119.122214776, + 119.246109602, + 119.370004427, + 119.493899253, + 119.617794079, + 119.741688905, + 119.86558373, + 119.989478556, + 120.113373382, + 120.237268207, + 120.361163033, + 120.485057859, + 120.608952685, + 120.73284751, + 120.856742336, + 120.980637162, + 121.104531988, + 121.228426813, + 121.352321639, + 121.476216465, + 121.60011129, + 121.724006116, + 121.847900942, + 121.971795768, + 122.095690593, + 122.219585419, + 122.343480245, + 122.467375071 + ], + "ys": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0000000833333333333337, + 0.0000002500000000000011, + 0.0000005000000000000022, + 0.0000009166666666666707, + 0.0000015000000000000064, + 0.000002416666666666677, + 0.0000037500000000000158, + 0.0000055000000000000236, + 0.000007750000000000033, + 0.000010666666666666711, + 0.000014666666666666729, + 0.000019916666666666753, + 0.000026750000000000115, + 0.00003525000000000015, + 0.000045666666666666864, + 0.00005816666666666692, + 0.00007325000000000032, + 0.00009116666666666706, + 0.00011258333333333382, + 0.0001380000000000006, + 0.00016808333333333405, + 0.00020375000000000086, + 0.00024575000000000107, + 0.00029500000000000126, + 0.0003524166666666682, + 0.00041900000000000184, + 0.0004959166666666688, + 0.0005849166666666692, + 0.0006871666666666697, + 0.0008035000000000035, + 0.0009350833333333375, + 0.0010834166666666713, + 0.0012507500000000053, + 0.0014390000000000062, + 0.0016500833333333404, + 0.0018866666666666747, + 0.0021502500000000094, + 0.0024430000000000107, + 0.002767500000000012, + 0.0031270000000000134, + 0.0035242500000000152, + 0.003962000000000017, + 0.004443000000000019, + 0.004969750000000021, + 0.005545583333333357, + 0.006172416666666693, + 0.006853166666666697, + 0.007590583333333367, + 0.008388666666666704, + 0.009252250000000042, + 0.010184833333333379, + 0.011190083333333383, + 0.012268833333333388, + 0.01342300000000006, + 0.014655666666666732, + 0.01596866666666674, + 0.017364666666666743, + 0.018846333333333416, + 0.02041500000000009, + 0.02207108333333343, + 0.023817583333333437, + 0.02565450000000011, + 0.027583166666666787, + 0.02960450000000013, + 0.031719416666666805, + 0.03393191666666681, + 0.03624158333333349, + 0.038649583333333494, + 0.0411568333333335, + 0.043762666666666845, + 0.04646791666666686, + 0.049272750000000205, + 0.05218083333333355, + 0.055192500000000234, + 0.05830766666666692, + 0.06152841666666693, + 0.06485583333333361, + 0.06829116666666696, + 0.07183475000000031, + 0.07548991666666699, + 0.07925475000000035, + 0.0831315833333337, + 0.08712141666666705, + 0.0912242500000004, + 0.09543983333333375, + 0.0997641666666671, + 0.10420066666666712, + 0.10874591666666714, + 0.11339458333333383, + 0.11814541666666718, + 0.12299508333333387, + 0.12793925000000056, + 0.1329730000000006, + 0.1380960000000006, + 0.14330675000000062, + 0.14859825000000065, + 0.15396866666666734, + 0.15941383333333403, + 0.1649334166666674, + 0.17051825000000073, + 0.17616425000000074, + 0.18186866666666743, + 0.1876260000000008, + 0.19343400000000083, + 0.19928800000000085, + 0.20518525000000087, + 0.21111916666666758, + 0.21708875000000094, + 0.22309700000000096, + 0.22914041666666765, + 0.23521850000000102, + 0.2413321666666677, + 0.2474800833333344, + 0.25365883333333444, + 0.2598624166666678, + 0.26609166666666784, + 0.2723410833333345, + 0.2786082500000012, + 0.2848880833333346, + 0.29118591666666793, + 0.2975000000000013, + 0.30382475000000136, + 0.31016116666666804, + 0.3165055000000014, + 0.32285683333333476, + 0.32921375000000147, + 0.3355737500000015, + 0.3419356666666682, + 0.34829475000000154, + 0.3546480833333349, + 0.36099183333333495, + 0.367321333333335, + 0.37363391666666834, + 0.3799276666666684, + 0.38620575000000174, + 0.3924670000000018, + 0.3987100000000018, + 0.40493183333333516, + 0.4111304166666685, + 0.4172989166666685, + 0.4234385000000019, + 0.42955091666666856, + 0.4356325000000019, + 0.44168458333333527, + 0.4477058333333353, + 0.45369691666666867, + 0.4596586666666687, + 0.46559091666666874, + 0.4714922500000021, + 0.4773636666666688, + 0.4832025833333355, + 0.4890125000000022, + 0.4947954166666689, + 0.5005521666666689, + 0.5062789166666689, + 0.5119750833333356, + 0.517643666666669, + 0.5232877500000023, + 0.5289073333333356, + 0.5345022500000023, + 0.5400710000000023, + 0.545610666666669, + 0.5511203333333357, + 0.5565981666666691, + 0.5620437500000024, + 0.5674580833333357, + 0.5728388333333357, + 0.5781810000000024, + 0.5834838333333358, + 0.5887478333333358, + 0.5939780833333358, + 0.5991684166666691, + 0.6043145833333358, + 0.6094146666666691, + 0.6144695000000024, + 0.6194770833333358, + 0.6244345000000026, + 0.6293391666666692, + 0.6341899166666692, + 0.6389905833333359, + 0.6437395833333359, + 0.648438833333336, + 0.653090333333336, + 0.6576936666666693, + 0.662250583333336, + 0.6667556666666693, + 0.671209583333336, + 0.6756156666666694, + 0.6799740000000027, + 0.6842830833333361, + 0.6885380833333361, + 0.6927437500000028, + 0.6969010833333361, + 0.7010104166666694, + 0.7050717500000028, + 0.7090864166666695, + 0.7130551666666695, + 0.7169783333333362, + 0.7208571666666695, + 0.7246858333333362, + 0.7284647500000029, + 0.7321935000000029, + 0.7358703333333363, + 0.7394965833333363, + 0.7430693333333364, + 0.7465914166666697, + 0.7500646666666697, + 0.753488000000003, + 0.756864500000003, + 0.7601944166666698, + 0.7634806666666698, + 0.7667224166666698, + 0.7699215833333365, + 0.7730799166666699, + 0.7761972500000032, + 0.7792727500000032, + 0.7823077500000032, + 0.7853030000000032, + 0.7882591666666698, + 0.7911811666666698, + 0.7940715833333365, + 0.7969307500000031, + 0.7997605000000031, + 0.8025590000000031, + 0.8053285000000031, + 0.8080684166666697, + 0.810778250000003, + 0.8134600833333364, + 0.8161105833333364, + 0.8187304166666698, + 0.8213185833333365, + 0.8238742500000031, + 0.8263981666666698, + 0.8288880833333364, + 0.8313455833333364, + 0.8337731666666698, + 0.8361684166666697, + 0.8385305000000031, + 0.8408612500000031, + 0.8431585000000031, + 0.8454205833333365, + 0.8476483333333364, + 0.8498413333333364, + 0.8520022500000031, + 0.8541310833333364, + 0.8562293333333364, + 0.8582961666666697, + 0.860330750000003, + 0.862336250000003, + 0.8643124166666697, + 0.8662610000000031, + 0.8681833333333364, + 0.8700779166666698, + 0.8719457500000031, + 0.8737883333333364, + 0.875604000000003, + 0.8773962500000031, + 0.8791667500000031, + 0.8809145000000032, + 0.8826422500000032, + 0.8843506666666698, + 0.8860396666666699, + 0.8877096666666698, + 0.8893598333333365, + 0.8909908333333365, + 0.8926030833333365, + 0.8941988333333365, + 0.8957795000000032, + 0.8973430000000032, + 0.8988916666666699, + 0.9004245833333365, + 0.9019405000000031, + 0.9034401666666698, + 0.9049260000000031, + 0.9063946666666698, + 0.9078474166666698, + 0.9092830000000032, + 0.9107020000000031, + 0.9121044166666697, + 0.9134880000000031, + 0.9148516666666697, + 0.9161942500000031, + 0.9175165000000031, + 0.9188191666666697, + 0.9201020833333364, + 0.9213650833333364, + 0.9226066666666698, + 0.9238255833333364, + 0.9250238333333364, + 0.9261995000000031, + 0.9273530000000031, + 0.9284865833333364, + 0.9296000000000031, + 0.930690250000003, + 0.9317593333333364, + 0.932807500000003, + 0.9338349166666696, + 0.934840750000003, + 0.9358254166666696, + 0.9367916666666696, + 0.9377424166666696, + 0.9386790000000029, + 0.9396007500000029, + 0.9405065000000029, + 0.9413969166666696, + 0.9422723333333363, + 0.9431347500000029, + 0.9439859166666695, + 0.9448256666666696, + 0.9456550000000029, + 0.9464736666666695, + 0.9472810833333362, + 0.9480785833333362, + 0.9488680833333362, + 0.9496486666666695, + 0.9504193333333362, + 0.9511805000000029, + 0.9519327500000029, + 0.9526761666666695, + 0.9534082500000028, + 0.9541269166666695, + 0.9548334166666694, + 0.9555286666666695, + 0.9562140833333361, + 0.9568889166666694, + 0.9575535000000027, + 0.9582054166666694, + 0.9588430000000027, + 0.959465583333336, + 0.9600729166666693, + 0.9606658333333359, + 0.9612439166666692, + 0.9618074166666692, + 0.9623560833333359, + 0.9628915833333359, + 0.9634151666666693, + 0.9639270833333359, + 0.9644275000000025, + 0.9649170833333359, + 0.9653982500000026, + 0.9658730000000025, + 0.9663395833333359, + 0.9667977500000026, + 0.9672476666666693, + 0.967690083333336, + 0.9681249166666692, + 0.9685550000000025, + 0.9689824166666692, + 0.9694079166666691, + 0.9698316666666691, + 0.9702540833333357, + 0.9706755833333357, + 0.9710952500000024, + 0.9715132500000024, + 0.9719295833333358, + 0.9723438333333357, + 0.9727560833333357, + 0.9731660000000024, + 0.9735734166666691, + 0.9739775833333357, + 0.9743770000000024, + 0.9747727500000024, + 0.9751655833333357, + 0.975554666666669, + 0.9759400833333357, + 0.9763215833333357, + 0.976697666666669, + 0.9770668333333357, + 0.977428916666669, + 0.9777838333333356, + 0.9781312500000023, + 0.978471666666669, + 0.9788058333333356, + 0.979134166666669, + 0.9794562500000022, + 0.9797725000000023, + 0.980083416666669, + 0.9803893333333357, + 0.9806895833333357, + 0.980983916666669, + 0.9812730000000023, + 0.9815570000000022, + 0.9818352500000023, + 0.9821084166666689, + 0.9823760833333356, + 0.9826388333333356, + 0.9828970833333356, + 0.9831515833333356, + 0.9834025833333356, + 0.983650666666669, + 0.9838958333333356, + 0.9841376666666689, + 0.9843757500000022, + 0.9846099166666689, + 0.9848401666666688, + 0.9850668333333356, + 0.9852884166666689, + 0.9855053333333356, + 0.9857180833333355, + 0.9859269166666689, + 0.9861322500000022, + 0.9863340833333355, + 0.9865322500000021, + 0.9867267500000021, + 0.9869182500000021, + 0.9871061666666687, + 0.9872903333333354, + 0.9874700000000021, + 0.9876455000000021, + 0.987816750000002, + 0.987984000000002, + 0.9881474166666686, + 0.9883073333333353, + 0.9884640833333354, + 0.9886175833333354, + 0.9887673333333353, + 0.9889146666666686, + 0.9890593333333353, + 0.9892010833333352, + 0.9893402500000019, + 0.9894763333333353, + 0.9896095833333353, + 0.9897405000000019, + 0.9898695833333352, + 0.9899965000000018, + 0.9901219166666685, + 0.9902461666666685, + 0.9903703333333352, + 0.9904940000000019, + 0.9906172500000019, + 0.9907401666666685, + 0.9908628333333351, + 0.9909850833333351, + 0.9911064166666684, + 0.9912272500000018, + 0.9913478333333351, + 0.9914678333333351, + 0.991587333333335, + 0.9917069166666683, + 0.9918262500000017, + 0.9919457500000016, + 0.9920645833333349, + 0.9921827500000016, + 0.9922994166666682, + 0.9924149166666683, + 0.9925290833333349, + 0.9926417500000015, + 0.9927523333333349, + 0.9928608333333349, + 0.9929671666666682, + 0.9930710833333348, + 0.9931729166666682, + 0.9932729166666682, + 0.9933715833333349, + 0.9934688333333348, + 0.9935644166666682, + 0.9936583333333349, + 0.9937503333333348, + 0.9938401666666682, + 0.9939278333333349, + 0.9940130000000016, + 0.9940962500000016, + 0.9941774166666683, + 0.9942572500000015, + 0.9943354166666682, + 0.9944116666666682, + 0.9944863333333349, + 0.9945595833333349, + 0.9946318333333349, + 0.9947032500000016, + 0.9947738333333349, + 0.9948430000000016, + 0.9949109166666682, + 0.9949772500000015, + 0.9950420000000014, + 0.9951052500000014, + 0.995166916666668, + 0.995227166666668, + 0.9952860833333347, + 0.9953437500000013, + 0.995400416666668, + 0.995456166666668, + 0.995511416666668, + 0.9955659166666679, + 0.9956198333333346, + 0.9956734166666679, + 0.9957264166666678, + 0.9957788333333345, + 0.9958304166666678, + 0.9958809166666678, + 0.9959305833333344, + 0.995979750000001, + 0.996028000000001, + 0.9960756666666677, + 0.9961226666666677, + 0.9961693333333344, + 0.9962159166666676, + 0.9962625000000009, + 0.9963089166666675, + 0.9963551666666676, + 0.9964013333333342, + 0.9964474166666676, + 0.9964929166666676, + 0.9965377500000009, + 0.9965818333333342, + 0.9966251666666675, + 0.9966677500000007, + 0.9967096666666674, + 0.9967510833333341, + 0.9967922500000007, + 0.9968329166666674, + 0.996873083333334, + 0.9969130000000007, + 0.996952333333334, + 0.9969910000000006, + 0.9970287500000006, + 0.9970655000000006, + 0.9971014166666673, + 0.9971367500000006, + 0.9971716666666672, + 0.9972060000000006, + 0.9972395000000006, + 0.9972724166666672, + 0.9973048333333339, + 0.9973368333333339, + 0.9973684166666672, + 0.9973996666666672, + 0.9974305833333339, + 0.9974610000000006, + 0.9974907500000005, + 0.9975200000000005, + 0.9975489166666672, + 0.9975775000000006, + 0.9976058333333339, + 0.9976340833333338, + 0.9976622500000004, + 0.9976901666666671, + 0.9977175000000005, + 0.9977441666666671, + 0.9977700000000004, + 0.9977952500000004, + 0.9978200833333337, + 0.9978445000000004, + 0.9978683333333337, + 0.9978915833333337, + 0.997914166666667, + 0.9979360833333336, + 0.9979573333333336, + 0.9979779166666669, + 0.9979980000000003, + 0.998017916666667, + 0.9980373333333336, + 0.9980564166666669, + 0.9980753333333335, + 0.9980941666666668, + 0.9981130000000001, + 0.9981320833333335, + 0.9981515000000001, + 0.9981711666666667, + 0.9981912500000001, + 0.9982115833333334, + 0.9982325000000001, + 0.9982539166666667, + 0.9982760833333334, + 0.9982989166666667, + 0.9983225, + 0.9983468333333333, + 0.9983719999999999, + 0.9983980833333332, + 0.9984249999999999, + 0.9984520833333332, + 0.9984794999999999, + 0.9985069166666665, + 0.9985341666666665, + 0.9985611666666665, + 0.9985879166666665, + 0.9986142499999998, + 0.9986402499999998, + 0.9986659999999997, + 0.9986914166666664, + 0.9987164166666663, + 0.998740333333333, + 0.998763333333333, + 0.998785333333333, + 0.9988064166666663, + 0.9988266666666662, + 0.9988460833333328, + 0.9988646666666662, + 0.9988824166666662, + 0.9988992499999996, + 0.9989154999999995, + 0.9989311666666661, + 0.9989464999999995, + 0.9989615833333328, + 0.9989764166666661, + 0.9989909999999995, + 0.9990054166666662, + 0.9990196666666662, + 0.9990337499999995, + 0.9990475833333328, + 0.9990611666666661, + 0.9990748333333328, + 0.9990884166666661, + 0.9991019166666661, + 0.9991153333333328, + 0.9991285833333328, + 0.999141666666666, + 0.9991543333333327, + 0.999166666666666, + 0.9991788333333327, + 0.999190916666666, + 0.999203166666666, + 0.9992154166666659, + 0.9992276666666658, + 0.9992398333333325, + 0.9992519166666659, + 0.9992639166666659, + 0.9992759166666659, + 0.9992879999999993, + 0.9993002499999992, + 0.9993128333333325, + 0.9993258333333326, + 0.9993393333333326, + 0.9993532499999992, + 0.9993675833333325, + 0.9993822499999991, + 0.9993972499999991, + 0.9994127499999991, + 0.9994285833333324, + 0.9994445833333324, + 0.9994605833333324, + 0.9994760833333324, + 0.9994911666666657, + 0.9995059166666657, + 0.9995204166666657, + 0.9995346666666657, + 0.9995486666666656, + 0.999562249999999, + 0.9995753333333323, + 0.9995879166666656, + 0.9995998333333322, + 0.9996109166666656, + 0.9996211666666656, + 0.9996306666666656, + 0.9996394166666656, + 0.9996474999999989, + 0.9996549166666656, + 0.9996616666666656, + 0.9996678333333322, + 0.9996734999999989, + 0.9996787499999988, + 0.9996838333333322, + 0.9996887499999989, + 0.9996933333333322, + 0.9996975833333323, + 0.9997014999999989, + 0.9997050833333322, + 0.9997084166666655, + 0.9997114166666655, + 0.9997140833333322, + 0.9997164999999989, + 0.9997187499999989, + 0.9997208333333322, + 0.9997227499999988, + 0.9997244999999988, + 0.9997260833333321, + 0.9997274999999988, + 0.9997287499999987, + 0.9997298333333321, + 0.9997307499999988, + 0.9997314999999988, + 0.9997320833333321, + 0.9997324999999987, + 0.999732833333332, + 0.999733083333332, + 0.9997332499999987, + 0.9997334166666654, + 0.9997335833333321, + 0.9997338333333321, + 0.9997341666666654, + 0.999734583333332, + 0.9997350833333319, + 0.9997356666666652, + 0.9997363333333319, + 0.9997370833333319, + 0.9997379166666652, + 0.9997388333333319, + 0.9997398333333319, + 0.9997409166666653, + 0.9997420833333319, + 0.9997433333333319, + 0.9997446666666652, + 0.9997460833333318, + 0.9997475833333318, + 0.9997491666666651, + 0.9997508333333318, + 0.9997524166666651, + 0.9997539166666651, + 0.9997553333333318, + 0.9997566666666651, + 0.999757916666665, + 0.9997590833333316, + 0.999760166666665, + 0.999761166666665, + 0.9997620833333317, + 0.9997629166666651, + 0.999763666666665, + 0.9997643333333317, + 0.999764916666665, + 0.999765416666665, + 0.9997658333333316, + 0.9997661666666648, + 0.9997664166666649, + 0.9997665833333316, + 0.9997666666666649, + 0.9997666666666649, + 0.9997666666666649, + 0.9997666666666649, + 0.9997666666666649, + 0.9997666666666649, + 0.9997667499999983, + 0.9997669999999983, + 0.9997674166666649, + 0.9997679999999982, + 0.9997687499999982, + 0.9997696666666649, + 0.9997707499999983, + 0.9997719999999982, + 0.9997734999999982, + 0.9997752499999982, + 0.9997772499999982, + 0.9997794999999982, + 0.9997819999999982, + 0.9997847499999981, + 0.9997877499999981, + 0.9997910833333314, + 0.9997948333333314, + 0.9997989999999981, + 0.9998035833333314, + 0.9998085833333314, + 0.9998138333333314, + 0.9998191666666647, + 0.9998245833333314, + 0.9998300833333313, + 0.9998356666666647, + 0.9998413333333314, + 0.9998470833333314, + 0.9998529166666648, + 0.9998586666666648, + 0.9998643333333315, + 0.9998699166666648, + 0.9998754166666648, + 0.9998808333333314, + 0.9998861666666647, + 0.9998914166666647, + 0.9998964166666647, + 0.999900999999998, + 0.9999051666666647, + 0.9999089166666647, + 0.9999122499999981, + 0.999915249999998, + 0.999917999999998, + 0.999920499999998, + 0.999922749999998, + 0.9999247499999979, + 0.9999264999999979, + 0.9999279999999979, + 0.9999292499999979, + 0.9999303333333313, + 0.9999312499999979, + 0.9999319999999979, + 0.9999325833333312, + 0.9999329999999979, + 0.9999332499999979, + 0.9999333333333312, + 0.9999333333333312, + 0.9999333333333312, + 0.9999333333333312, + 0.9999333333333312, + 0.9999333333333312, + 0.9999333333333312, + 0.9999333333333312, + 0.9999333333333312, + 0.9999333333333312, + 0.9999333333333312, + 0.9999333333333312, + 0.9999333333333312, + 0.9999333333333312, + 0.9999333333333312, + 0.9999333333333312, + 0.9999333333333312, + 0.9999333333333312, + 0.9999333333333312, + 0.9999333333333312, + 0.9999333333333312, + 0.9999333333333312, + 0.9999334166666646, + 0.9999335833333313, + 0.9999338333333313, + 0.9999341666666646, + 0.9999345833333312, + 0.9999350833333311, + 0.9999356666666644, + 0.9999363333333311, + 0.9999370833333311, + 0.9999379166666644, + 0.9999388333333311, + 0.9999398333333311, + 0.9999409166666645, + 0.9999420833333311, + 0.9999433333333311, + 0.9999446666666644, + 0.999946083333331, + 0.999947583333331, + 0.9999491666666643, + 0.999950833333331, + 0.9999524166666643, + 0.9999539166666643, + 0.999955333333331, + 0.9999566666666643, + 0.9999579166666642, + 0.9999590833333308, + 0.9999601666666642, + 0.9999611666666642, + 0.9999620833333309, + 0.9999629166666643, + 0.9999636666666643, + 0.9999643333333309, + 0.9999649166666642, + 0.9999654166666642, + 0.9999658333333308, + 0.999966166666664, + 0.9999664166666641, + 0.9999665833333308, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999666666666641, + 0.9999667499999975, + 0.9999669166666642, + 0.9999671666666642, + 0.9999674999999975, + 0.9999679166666641, + 0.999968416666664, + 0.9999689999999973, + 0.999969666666664, + 0.999970416666664, + 0.9999712499999973, + 0.999972166666664, + 0.999973166666664, + 0.9999742499999974, + 0.999975416666664, + 0.999976666666664, + 0.9999779999999973, + 0.9999794166666639, + 0.9999809166666639, + 0.9999824999999972, + 0.9999841666666639, + 0.9999857499999972, + 0.9999872499999972, + 0.9999886666666639, + 0.9999899999999972, + 0.9999912499999971, + 0.9999924166666637, + 0.9999934999999971, + 0.9999944999999971, + 0.9999954166666638, + 0.9999962499999971, + 0.9999969999999971, + 0.9999976666666638, + 0.9999982499999971, + 0.999998749999997, + 0.9999991666666637, + 0.9999994999999969, + 0.999999749999997, + 0.9999999166666637, + 0.999999999999997, + 0.999999999999997, + 0.999999999999997, + 0.999999999999997, + 0.999999999999997, + 0.999999999999997, + 0.999999999999997, + 0.999999999999997, + 0.999999999999997, + 0.999999999999997, + 0.999999999999997, + 0.999999999999997, + 0.999999999999997, + 0.999999999999997, + 0.999999999999997, + 0.999999999999997, + 0.999999999999997, + 0.999999999999997, + 0.999999999999997, + 0.999999999999997 + ] + } +] \ No newline at end of file diff --git a/foretold/components/showcase/index.html b/foretold/components/showcase/index.html new file mode 100644 index 00000000..2493a213 --- /dev/null +++ b/foretold/components/showcase/index.html @@ -0,0 +1,23 @@ + + + + + + + + + + + Showcase + + + +
+ + + + \ No newline at end of file diff --git a/foretold/components/src/AgentLink.re b/foretold/components/src/AgentLink.re new file mode 100644 index 00000000..8a311ebf --- /dev/null +++ b/foretold/components/src/AgentLink.re @@ -0,0 +1,98 @@ +module Styles = { + open Css; + let avatarOuter = + style([float(`left), position(`relative), marginRight(`em(0.4))]); + let avatar = style([marginTop(`em(0.1)), float(`left)]); + let ownerAvatarOuter = + style([ + float(`left), + width(`em(1.)), + height(`percent(100.)), + marginLeft(`em(0.1)), + ]); + let ownerAvatar = style([position(`absolute), bottom(`zero)]); +}; + +module Agent = { + type user = { + name: string, + image: option(string), + onClick: ReactEvent.Mouse.t => unit, + } + and bot = { + name: string, + image: option(string), + onClick: ReactEvent.Mouse.t => unit, + owner: option(t), + } + and t = + | User(user) + | Bot(bot); + + let onClick = agent => + switch (agent) { + | User(u) => u.onClick + | Bot(u) => u.onClick + }; + + let name = agent => + switch (agent) { + | User(u) => u.name + | Bot(u) => u.name + }; + + let image = agent => + switch (agent) { + | User(u) => u.image + | Bot(u) => u.image + }; + + let owner = agent => + switch (agent) { + | User(_) => None + | Bot(b) => b.owner + }; + + let makeUser = (~name: string, ~onClick=_ => (), ~image=?, ()): t => + User({name, image, onClick}); + + let makeBot = (~name: string, ~onClick=_ => (), ~image=?, ~owner=?, ()): t => + Bot({name, image, onClick, owner}); +}; + +module SubItem = { + [@react.component] + let make = (~agent: Agent.t, ~owner: option(Agent.t), ~className) => + +
+
+ Rationale.Option.default(BotDefaultImage.botDefault) + } + /> +
+ {owner + |> E.O.React.fmapOrNull(owner => +
+
+ Rationale.Option.default(BotDefaultImage.botDefault) + } + /> +
+
+ )} +
+ {Agent.name(agent) |> ReasonReact.string} + ; +}; + +[@react.component] +let make = (~agent: Agent.t, ~className="") => + ; diff --git a/foretold/components/src/AppHeader.re b/foretold/components/src/AppHeader.re new file mode 100644 index 00000000..d3455556 --- /dev/null +++ b/foretold/components/src/AppHeader.re @@ -0,0 +1,28 @@ +open Base; + +module Styles = { + open Css; + let outer = + style( + [ + padding2(~v=`em(1.0), ~h=`em(2.)), + backgroundColor(`rgb((255, 255, 255))), + position(`relative), + boxShadows([ + Shadow.box( + ~x=px(1), + ~y=px(1), + ~blur=px(2), + ~spread=px(1), + ~inset=false, + `hex("dee5e9"), + ), + ]), + ] + @ BaseStyles.fullWidthFloatLeft, + ); +}; + +[@react.component] +let make = (~links: ReasonReact.reactElement) => +
links
; diff --git a/foretold/components/src/Base/Alert.re b/foretold/components/src/Base/Alert.re new file mode 100644 index 00000000..84cf42ab --- /dev/null +++ b/foretold/components/src/Base/Alert.re @@ -0,0 +1,35 @@ +/* For the icons, font-awesome (or similar?) is a possibility */ + +module Styles = { + open Css; + let alertBox = + style([ + borderRadius(Settings.BorderRadius.tight), + padding2(~v=`em(0.5), ~h=`em(0.8)), + marginBottom(`em(0.75)), + ]); + + // Colors from https://getbootstrap.com/docs/4.0/components/alerts/ + // They may look better on white background than grey/smokeWhite + let colors = (t: Settings.Alert.t) => + style([ + color(Settings.Alert.color(t)), + backgroundColor(Settings.Alert.background(t)), + ]); +}; + +/** + * Primary - Communicate information like "Welcome, now you can do..." + * Info - Less significant information + * Success + * Warning + * Error + */ + +type type_ = [ | `primary | `info | `success | `warning | `error]; + +[@react.component] +let make = (~type_: type_=`info, ~children) => { + let classes = Styles.alertBox ++ " " ++ Styles.colors(type_); +
children
; +}; \ No newline at end of file diff --git a/foretold/components/src/Base/Avatar.re b/foretold/components/src/Base/Avatar.re new file mode 100644 index 00000000..c4bf5a90 --- /dev/null +++ b/foretold/components/src/Base/Avatar.re @@ -0,0 +1,25 @@ +module Styles = { + open Css; + let imageCropper = width => + style([ + Css.width(`em(width)), + height(`em(width)), + overflow(`hidden), + float(`left), + position(`relative), + borderRadius(`percent(20.)), + ]); + let image = + style([ + float(`left), + margin2(~v=`zero, ~h=`auto), + height(`auto), + width(`percent(100.)), + ]); +}; + +[@react.component] +let make = (~src: string, ~width=1., ()) => + + + ; diff --git a/foretold/components/src/Base/Base.re b/foretold/components/src/Base/Base.re new file mode 100644 index 00000000..54f8426c --- /dev/null +++ b/foretold/components/src/Base/Base.re @@ -0,0 +1,19 @@ +module Types = Types; +module Link = Link; +module Colors = Settings; +module Div = Div; +module E = E; +module Globals = Globals; +module BaseStyles = BaseStyles; +module Button = Button; +module InputLabel = InputLabel; +module TextInput = TextInput; +module TextArea = TextArea; +module DropdownSelect = DropdownSelect; +module Icon = Icon; +module Dropdown = Dropdown; +module Menu = Menu; +module DropdownMenu = DropdownMenu; +module TabList = TabList; +module Alert = Alert; +module Avatar = Avatar; diff --git a/foretold/components/src/Base/BaseStyles.re b/foretold/components/src/Base/BaseStyles.re new file mode 100644 index 00000000..af921493 --- /dev/null +++ b/foretold/components/src/Base/BaseStyles.re @@ -0,0 +1,8 @@ +let floatLeft = Css.float(`left); +let floatRight = Css.float(`right); +let fullWidthFloatLeft = + Css.[floatLeft, width(`percent(100.0)), boxSizing(`borderBox)]; + +let borderNone = Css.[borderBottom(`px(0), `solid, hex("fff"))]; + +let clear = Css.style([Css.clear(`both)]); diff --git a/foretold/components/src/Base/Button.re b/foretold/components/src/Base/Button.re new file mode 100644 index 00000000..e702061b --- /dev/null +++ b/foretold/components/src/Base/Button.re @@ -0,0 +1,135 @@ +type color = [ | `hex(Js.String.t)]; + +/* I made this contain strings instead of colors, + because the type for background is different than + that for the others, which made things pretty messy. */ + +type variantColors = { + text: string, + textHover: string, + border: string, + background: string, + backgroundHover: string, +}; + +type variant = + | Primary + | Secondary; + +type size = + | Small + | MediumShort + | Medium + | Large; + +let varantColors = (variant: variant) => + Settings.( + switch (variant) { + | Primary => { + text: white |> toS, + textHover: white |> toS, + border: link |> toS, + background: link |> toS, + backgroundHover: linkHover |> toS, + } + | Secondary => { + text: textDark |> toS, + textHover: textDark |> toS, + border: accentBlueO8 |> toS, + background: white |> toS, + backgroundHover: buttonHover |> toS, + } + } + ); + +let sizeStyles = size => { + switch (size) { + | Small => + Css.( + style([ + padding2(~v=`em(0.15), ~h=`em(1.0)), + fontSize(`px(14)), + minHeight(`em(1.9)), + ]) + ) + | MediumShort => + Css.(style([padding2(~v=`em(0.2), ~h=`em(1.1)), fontSize(`px(14))])) + | Medium => + Css.(style([padding2(~v=`em(0.25), ~h=`em(1.4)), fontSize(`px(16))])) + | Large => + Css.(style([padding2(~v=`em(0.5), ~h=`em(2.4)), fontSize(`px(16))])) + }; +}; + +let styles = (~isDisabled=false, ~variant, ~size, ~fullWidth=false, ()) => { + let colors = varantColors(variant); + + let main = + Css.( + style([ + fontFamily(Settings.Text.standardFont), + lineHeight(`em(1.5)), + cursor(`pointer), + BaseStyles.floatLeft, + borderRadius(Settings.BorderRadius.medium), + border(`px(1), `solid, `hex(colors.border)), + color(`hex(colors.text)), + background(`hex(colors.background)), + hover([ + background(`hex(colors.backgroundHover)), + color(`hex(colors.textHover)), + ]), + transition( + ~duration=Settings.Transitions.standardLength, + "background", + ), + ]) + ); + + let disabledStyles = + Css.(style([background(Settings.greydisabled), opacity(0.5)])); + + let fullWidthStyle = + Css.( + style([ + width(`percent(100.)), + boxSizing(`borderBox), + textAlign(`center), + Css.float(`none), + display(`block), + ]) + ); + + let total = + switch (isDisabled, fullWidth) { + | (false, false) => main + | (true, false) => Css.merge([main, disabledStyles]) + | (false, true) => Css.merge([main, fullWidthStyle]) + | (true, true) => Css.merge([main, disabledStyles, fullWidthStyle]) + }; + + Css.merge([sizeStyles(size), total]); +}; + +// Button must be button + +[@react.component] +let make = + ( + ~onClick=?, + ~variant=Secondary, + ~size=Medium, + ~isDisabled=false, + ~fullWidth=false, + ~className="", + ~children=ReasonReact.null, + ) => + ; \ No newline at end of file diff --git a/foretold/components/src/Base/Div.re b/foretold/components/src/Base/Div.re new file mode 100644 index 00000000..cf4933b8 --- /dev/null +++ b/foretold/components/src/Base/Div.re @@ -0,0 +1,48 @@ +open Css; + +let fnWithDefault = (fn, r) => + r |> E.O.fmap(e => Css.style(fn(e))) |> E.O.default(""); + +/* TODO: Instead of accepting styles, this should accept "classNames" and use Css.merge */ + +[@react.component] +let make = + ( + ~styles=[], + ~className="", + ~flex=?, + ~flexDirection=?, + ~float=?, + ~alignItems=?, + ~justifyContent=?, + ~alignContent=?, + ~onClick=_ => (), + ~children=ReasonReact.null, + ) => { + let flexStyle = flex |> fnWithDefault(e => [Css.flex(e)]); + let floatStyle = float |> fnWithDefault(e => [Css.float(e)]); + let alignItemsStyle = + alignItems |> fnWithDefault(e => [Css.alignItems(e)]); + let justifyContentStyle = + justifyContent |> fnWithDefault(e => [Css.justifyContent(e)]); + let alignContentStyle = + alignContent |> fnWithDefault(e => [Css.alignContent(e)]); + + let directionStyle = + flexDirection + |> fnWithDefault(e => [display(`flex), Css.flexDirection(e)]); + + let allStyles = + Css.merge([ + flexStyle, + directionStyle, + floatStyle, + alignItemsStyle, + justifyContentStyle, + alignContentStyle, + className, + ...styles, + ]); + +
children
; +}; \ No newline at end of file diff --git a/foretold/components/src/Base/Dropdown.re b/foretold/components/src/Base/Dropdown.re new file mode 100644 index 00000000..901a01ad --- /dev/null +++ b/foretold/components/src/Base/Dropdown.re @@ -0,0 +1,104 @@ +/** + * Dropdown component provides a way to show an overlay element + * at a position relative to it's trigger element (the children given + * to this element), on various triggers: Click, Hover, ContextMenu and Focus. + * + * It is bindings to https://github.com/react-component/dropdown + */ +[@bs.module "rc-dropdown"] +external rcDropDownClass: ReasonReact.reactClass = "default"; + +[%bs.raw {|require("rc-dropdown/assets/index.css")|}]; + +/** On what event to trigger dropdown + * rc-trigger supports an array of triggers. + * This is currently not encoded here currently as + * it was considered a rarer case, many combinations are superfluous, + * and delayed in interest of simplicity. + * If there is only one or a few more, one possiblity + * would be a variant like ClickFocus. + */ +type trigger = + | Click + | Hover + | ContextMenu + | Focus; + +let triggerToString = trigger => + switch (trigger) { + | Click => "click" + | Hover => "hover" + | ContextMenu => "contextMenu" + | Focus => "focus" + }; + +/* In the documentation of rc-dropdown, the overlay + property is specified to be a rc-menu, + but this doesn't seem to be a hard + requirement in the source */ +[@bs.deriving abstract] +type jsProps = { + overlay: ReasonReact.reactElement, + trigger: array(string), + prefixCls: string, + overlayClassName: string, +}; + +module Styles = { + open Css; + // Styles are based on a prefixCls given to the element + // Some styles can be applied to all dropdowns, while + // others are more specific + + // General + // First overlay element, this doesn't apply to submenues, but + // all kinds of direct overlays + global( + ".ft-overlay", + [ + fontFamily(Settings.Text.standardFont), + fontSize(`rem(1.)), + lineHeight(`rem(1.0)), + zIndex(1070), + position(`absolute), + left(`px(-9999)), + top(`px(-9999)), + ], + ); +}; + +/** + * Dropdown component provides a way to show an overlay element + * at a position relative to it's trigger element (the children given + * to this element), on various triggers: Click, Hover, ContextMenu and Focus. + * Can be used for example with the Menu component as overlay + * + * Usage: + * ``` + * let staticOverlay =
{"Todo: style" |> React.string}
; + * + * + *
{"Trigger element" |> React.string}
+ *
+ * ``` + */ +[@react.component] +let make = + ( + ~overlay, + ~trigger=Hover, + ~prefixCls="rc-dropdown", + ~children=ReasonReact.null, + ) => + ReasonReact.wrapJsForReason( + ~reactClass=rcDropDownClass, + ~props= + jsProps( + ~overlay, + ~trigger=[|triggerToString(trigger)|], + ~overlayClassName="ft-overlay", + ~prefixCls, + ), + children, + ) + |> ReasonReact.element; diff --git a/foretold/components/src/Base/DropdownMenu.re b/foretold/components/src/Base/DropdownMenu.re new file mode 100644 index 00000000..27b91f20 --- /dev/null +++ b/foretold/components/src/Base/DropdownMenu.re @@ -0,0 +1,58 @@ +module Styles = { + open Css; + module Colors = Settings; + + // Reverting to "rc-dropdown" brings back some styles from the original css file + let prefixCls = "ft-dropdown"; + let itemVerticalPadding = 5; + let itemHorizontalPadding = 12; + let bgColor = Colors.white; + let textColor = Colors.textDarker; + let hoverColor = `hex("ebfaff"); + let textSize = `rem(0.8); + let textLineHeight = `em(1.3); + + Menu.Styles.createStyle( + ~prefixCls, + ~itemVerticalPadding, + ~itemHorizontalPadding, + ~textColor, + ~bgColor, + ~hoverColor, + ~textSize, + ~textLineHeight, + (), + ); + + let dropdownTrigger = + style([ + border(`px(1), `solid, Settings.border), + borderRadius(`px(3)), + // Subtracting 2 from horizontal padding to account for border + padding2( + ~v=`px(itemVerticalPadding), + ~h=`px(itemHorizontalPadding - 2), + ), + backgroundColor(bgColor), + fontSize(textSize), + lineHeight(textLineHeight), + fontFamily(Settings.Text.standardFont), + color(textColor), + // Selector for trigger element with overlay open + selector( + "&." ++ prefixCls ++ "-open", + [borderColor(`hex("40a9ff")), color(`hex("40a9ff"))], + ), + ]); +}; + +[@react.component] +let make = (~title, ~trigger=Dropdown.Hover, ~children) => { + let overlay =
children
; + + + ; +}; diff --git a/foretold/components/src/Base/E.re b/foretold/components/src/Base/E.re new file mode 100644 index 00000000..d78578d1 --- /dev/null +++ b/foretold/components/src/Base/E.re @@ -0,0 +1,175 @@ +/* O for option */ +open Rationale.Function.Infix; + +/* Utils */ +module U = { + let isEqual = (a, b) => a == b; + let toA = a => [|a|]; + let id = e => e; +}; + +module O = { + let dimap = (sFn, rFn, e) => + switch (e) { + | Some(r) => sFn(r) + | None => rFn() + }; + (); + let fmap = Rationale.Option.fmap; + let bind = Rationale.Option.bind; + let default = Rationale.Option.default; + let isSome = Rationale.Option.isSome; + let toExn = Rationale.Option.toExn; + let some = Rationale.Option.some; + let flatApply = (fn, b) => + Rationale.Option.apply(fn, Some(b)) |> Rationale.Option.flatten; + + let toResult = (error, e) => + switch (e) { + | Some(r) => Belt.Result.Ok(r) + | None => Error(error) + }; + + module React = { + let defaultNull = default(ReasonReact.null); + let fmapOrNull = fn => fmap(fn) ||> default(ReasonReact.null); + let flatten = default(ReasonReact.null); + }; +}; + +module Bool = { + type t = bool; + let toString = (t: t) => t ? "TRUE" : "FALSE"; + let fromString = str => str == "TRUE" ? true : false; +}; + +module Float = { + let toString = Js.Float.toFixed; + let with3DigitsPrecision = Js.Float.toPrecisionWithPrecision(_, ~digits=3); +}; + +module I = { + let increment = n => n + 1; + let decrement = n => n - 1; +}; + +let safe_fn_of_string = (fn, s: string): option('a) => + try(Some(fn(s))) { + | _ => None + }; + +module S = { + let toReact = ReasonReact.string; + let safe_float = float_of_string->safe_fn_of_string; + let safe_int = int_of_string->safe_fn_of_string; +}; + +module JsDate = { + let fromString = Js.Date.fromString; + let now = Js.Date.now; + let make = Js.Date.make; + let valueOf = Js.Date.valueOf; +}; + +/* List */ +module L = { + let fmap = List.map; + let toArray = Array.of_list; + let fmapi = List.mapi; + let concat = List.concat; + let find = List.find; + let filter = List.filter; + let for_all = List.for_all; + let exists = List.exists; + let sort = List.sort; + let length = List.length; + let filter_opt = Rationale.RList.filter_opt; + let uniqBy = Rationale.RList.uniqBy; + let join = Rationale.RList.join; + let head = Rationale.RList.head; + let uniq = Rationale.RList.uniq; + let flatten = List.flatten; + let last = Rationale.RList.last; + let append = List.append; + let getBy = Belt.List.getBy; + let dropLast = Rationale.RList.dropLast; + let contains = Rationale.RList.contains; + let without = Rationale.RList.without; + let update = Rationale.RList.update; + let iter = List.iter; + let findIndex = Rationale.RList.findIndex; + let withIdx = xs => + xs + |> Rationale.RList.zip( + Rationale.RList.times(Rationale.Function.identity, length(xs)), + ); + module React = { + let fmap = (f, xs) => xs |> fmap(f) |> toArray |> React.array; + let fmapi = (f, xs) => xs |> fmapi(f) |> toArray |> React.array; + }; +}; + +/* A for Array */ +module A = { + let fmap: ('a => 'b, array('a)) => array('b) = Array.map; + let fmapi = Array.mapi; + let to_list = Array.to_list; + let of_list = Array.of_list; + let length = Array.length; + let append = Array.append; + // let empty = [||]; + let unsafe_get = Array.unsafe_get; + let get = Belt.Array.get; + let fold_left = Array.fold_left; + let fold_right = Array.fold_right; + let concatMany = Belt.Array.concatMany; + let keepMap = Belt.Array.keepMap; + let stableSortBy = Belt.SortArray.stableSortBy; + /* TODO: Is there a better way of doing this? */ + + /* TODO: Is -1 still the indicator that this is false (as is true with js findIndex)? Wasn't sure. */ + let findIndex = (e, i) => + Js.Array.findIndex(e, i) + |> ( + r => + switch (r) { + | (-1) => None + | r => Some(r) + } + ); + let filter = (o, e) => Js.Array.filter(o, e); + module O = { + let concatSomes = (optionals: Js.Array.t(option('a))): Js.Array.t('a) => + optionals + |> Js.Array.filter(Rationale.Option.isSome) + |> Js.Array.map( + Rationale.Option.toExn("Warning: This should not have happened"), + ); + let concatSome = (optionals: array(option('a))): array('a) => + optionals + |> Js.Array.filter(Rationale.Option.isSome) + |> Js.Array.map( + Rationale.Option.toExn("Warning: This should not have happened"), + ); + let defaultEmpty = (o: option(array('a))): array('a) => + switch (o) { + | Some(o) => o + | None => [||] + }; + }; +}; + +module JsArray = { + let concatSomes = (optionals: Js.Array.t(option('a))): Js.Array.t('a) => + optionals + |> Js.Array.filter(Rationale.Option.isSome) + |> Js.Array.map( + Rationale.Option.toExn("Warning: This should not have happened"), + ); + let filter = Js.Array.filter; +}; + +module FloatArray = { + let min = r => r |> A.fold_left((a, b) => a < b ? a : b, max_float); + let max = r => r |> A.fold_left((a, b) => a > b ? a : b, min_float); +}; \ No newline at end of file diff --git a/foretold/components/src/Base/Globals.re b/foretold/components/src/Base/Globals.re new file mode 100644 index 00000000..ff62b892 --- /dev/null +++ b/foretold/components/src/Base/Globals.re @@ -0,0 +1,17 @@ +let load = () => { + Css.( + global( + "body", + [ + fontFamily(Settings.Text.standardFont), + margin(`zero), + height(`percent(100.0)), + background(`hex("F0F1F3")), + fontSize(`px(16)), + lineHeight(`em(1.5)), + ], + ) + ); + + Css.(global("html", [height(`percent(100.0))])); +}; diff --git a/foretold/components/src/Base/Icon.re b/foretold/components/src/Base/Icon.re new file mode 100644 index 00000000..6be67047 --- /dev/null +++ b/foretold/components/src/Base/Icon.re @@ -0,0 +1,61 @@ +module Questionmark = { + // Adapted to pagecard title + let backgroundBlue = Css.background(`hex("C0D0E9")); + let mainBlue = `hex("#1c67c8"); + let circle = + Css.( + style([ + width(`em(1.0)), + height(`em(1.0)), + borderRadius(`percent(50.)), + backgroundBlue, + ]) + ); + + let insideStyle = + Css.(style([color(mainBlue), cursor(`pointer), fontSize(`em(0.9))])); + // Local icon style + let questionMarkstyle = isInteractive => + Css.( + style([ + width(`em(1.0)), + height(`em(1.0)), + textAlign(`center), + borderRadius(`percent(50.)), + display(`inlineBlock), + backgroundBlue, + lineHeight(`em(1.0)), + fontSize(`em(1.0)), + opacity(0.6), + fontWeight(`num(600)), + cursor(`pointer), + hover(isInteractive ? [opacity(1.0)] : []), + ]) + ); + + [@react.component] + let make = (~isInteractive=true) => +
+ {React.string("?")} +
; +}; + +module DownArrow = { + /* Down array from ant */ + let buttonStyle = Css.(style([marginLeft(`px(8))])); + + [@react.component] + let make = () => + + + ; +}; \ No newline at end of file diff --git a/foretold/components/src/Base/Link.re b/foretold/components/src/Base/Link.re new file mode 100644 index 00000000..9a6ffa1c --- /dev/null +++ b/foretold/components/src/Base/Link.re @@ -0,0 +1,29 @@ +let headerLink = (~className, ~isDisabled=false, ()) => { + let primaryStyles = + Css.( + style([ + textDecoration(`none), + userSelect(`none), + color(Settings.Text.LightBackground.main), + hover([color(Settings.Text.LightBackground.light)]), + focus([textDecoration(`none)]), + ]) + ); + + let disabledStyles = + isDisabled ? Css.(style([pointerEvents(`none), cursor(`default)])) : ""; + + Css.(merge([primaryStyles, className, disabledStyles])); +}; + +[@react.component] +let make = + (~href="#", ~onClick=?, ~isDisabled=false, ~className="", ~children) => { + + children + ; +}; diff --git a/foretold/components/src/Base/Menu.re b/foretold/components/src/Base/Menu.re new file mode 100644 index 00000000..674627d6 --- /dev/null +++ b/foretold/components/src/Base/Menu.re @@ -0,0 +1,375 @@ +/** + * Menu component and sibling components provides define menu items, + * submenues and dividers. See make for usage. + * + * It is binding to https://github.com/react-component/menu + */ +[@bs.module "rc-menu"] +external rcMenuClass: ReasonReact.reactClass = "default"; + +[@bs.module "rc-menu"] +external rcSubMenuClass: ReasonReact.reactClass = "SubMenu"; + +[@bs.module "rc-menu"] external rcItemClass: ReasonReact.reactClass = "Item"; + +[@bs.module "rc-menu"] +external rcDividerClass: ReasonReact.reactClass = "Divider"; + +[%bs.raw {|require("rc-menu/assets/index.css")|}]; + +module Styles = { + open Css; + let menuBorderRadius = `px(3); + // Menu general, applied to menu
+
+ | FreeformTab => + | CustomTab => +
+
+ + +
+ + + "Input is not a valid PDF"->React.string + + +